Home
last modified time | relevance | path

Searched refs:granularity (Results 1 – 25 of 34) sorted by relevance

12

/freebsd-12.1/contrib/compiler-rt/lib/asan/
H A Dasan_premap_shadow.cc29 uptr granularity = GetMmapGranularity(); in PremapShadowSize() local
30 return RoundUpTo(GetMaxVirtualAddress() >> SHADOW_SCALE, granularity); in PremapShadowSize()
36 uptr granularity = GetMmapGranularity(); in PremapShadow() local
37 uptr alignment = granularity * 8; in PremapShadow()
38 uptr left_padding = granularity; in PremapShadow()
H A Dasan_linux.cc106 uptr granularity = GetMmapGranularity(); in FindPremappedShadowStart() local
109 uptr shadow_size = RoundUpTo(kHighShadowEnd, granularity); in FindPremappedShadowStart()
122 uptr granularity = GetMmapGranularity(); in FindDynamicShadowStart() local
123 uptr alignment = granularity * 8; in FindDynamicShadowStart()
124 uptr left_padding = granularity; in FindDynamicShadowStart()
125 uptr shadow_size = RoundUpTo(kHighShadowEnd, granularity); in FindDynamicShadowStart()
H A Dasan_poisoning.cc366 uptr granularity = SHADOW_GRANULARITY; in __sanitizer_annotate_contiguous_container() local
368 IsAligned(beg, granularity))) { in __sanitizer_annotate_contiguous_container()
376 uptr a = RoundDownTo(Min(old_mid, new_mid), granularity); in __sanitizer_annotate_contiguous_container()
377 uptr c = RoundUpTo(Max(old_mid, new_mid), granularity); in __sanitizer_annotate_contiguous_container()
378 uptr d1 = RoundDownTo(old_mid, granularity); in __sanitizer_annotate_contiguous_container()
388 if (a + granularity <= d1) in __sanitizer_annotate_contiguous_container()
394 uptr b1 = RoundDownTo(new_mid, granularity); in __sanitizer_annotate_contiguous_container()
395 uptr b2 = RoundUpTo(new_mid, granularity); in __sanitizer_annotate_contiguous_container()
401 CHECK_EQ(b2 - b1, granularity); in __sanitizer_annotate_contiguous_container()
H A Dasan_mac.cc59 uptr granularity = GetMmapGranularity(); in FindDynamicShadowStart() local
60 uptr alignment = 8 * granularity; in FindDynamicShadowStart()
61 uptr left_padding = granularity; in FindDynamicShadowStart()
68 FindAvailableMemoryRange(space_size, alignment, granularity, in FindDynamicShadowStart()
89 shadow_start = FindAvailableMemoryRange(space_size, alignment, granularity, in FindDynamicShadowStart()
H A Dasan_win.cc229 uptr granularity = GetMmapGranularity(); in FindDynamicShadowStart() local
230 uptr alignment = 8 * granularity; in FindDynamicShadowStart()
231 uptr left_padding = granularity; in FindDynamicShadowStart()
234 granularity, nullptr, nullptr); in FindDynamicShadowStart()
H A Dasan_errors.cc320 uptr granularity = SHADOW_GRANULARITY; in Print() local
321 if (!IsAligned(beg, granularity)) in Print()
322 Report("ERROR: beg is not aligned by %d\n", granularity); in Print()
/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_dynamic_shadow.cc43 const uptr granularity = GetMmapGranularity(); in MapDynamicShadow() local
44 const uptr min_alignment = granularity << kShadowScale; in MapDynamicShadow()
50 RoundUpTo(shadow_size_bytes, granularity); in MapDynamicShadow()
95 const uptr granularity = GetMmapGranularity(); in FindPremappedShadowStart() local
98 const uptr shadow_size = RoundUpTo(shadow_size_bytes, granularity); in FindPremappedShadowStart()
/freebsd-12.1/contrib/compiler-rt/lib/interception/
H A Dinterception_win.cc317 static void *AllocateTrampolineRegion(uptr image_address, size_t granularity) { in AllocateTrampolineRegion() argument
327 if (info.State == MEM_FREE && info.RegionSize >= granularity) { in AllocateTrampolineRegion()
328 void *page = ::VirtualAlloc((void*)RoundUpTo(address, granularity), in AllocateTrampolineRegion()
329 granularity, in AllocateTrampolineRegion()
342 granularity, in AllocateTrampolineRegion()
/freebsd-12.1/lib/libomp/
H A Dkmp_i18n_default.inc217 "Threads may migrate across all available OS procs (granularity setting too coarse).",
278 … "%1$s: Tiles are only supported if KMP_TOPOLOGY_METHOD=hwloc, using granularity=package instead",
279 "%1$s: Tiles requested but were not detected on this HW, using granularity=package instead",
329 …"Cannot use affinity granularity \"%1$s\" with multiple Windows* OS processor groups, using \"%2$s…
333 "%1$s: granularity=core will be used.",
336 "%1$s: granularity=%2$s will be used.",
349 …"%1$s: granularity=%2$s is not supported with KMP_TOPOLOGY_METHOD=group. Using \"granularity=fine\…
350 … "%1$s: granularity=group is not supported with KMP_AFFINITY=%2$s. Using \"granularity=core\".",
/freebsd-12.1/contrib/processor-trace/libipt/src/windows/
H A Dpt_section_windows.c116 static DWORD granularity(void) in granularity() function
140 adjustment = offset % granularity(); in pt_sec_windows_map()
/freebsd-12.1/contrib/openmp/runtime/src/i18n/
H A Den_US.txt263 AffThreadsMayMigrate "Threads may migrate across all available OS procs (granularity settin…
329 … "%1$s: Tiles are only supported if KMP_TOPOLOGY_METHOD=hwloc, using granularity=package instead"
330 … "%1$s: Tiles requested but were not detected on this HW, using granularity=package instead"
392 AffGranCantUseMultGroups "Cannot use affinity granularity \"%1$s\" with multiple Windows* OS pr…
396 OBSOLETE "%1$s: granularity=core will be used."
399 AffGranUsing "%1$s: granularity=%2$s will be used."
413 …fGranTopGroup "%1$s: granularity=%2$s is not supported with KMP_TOPOLOGY_METHOD=group…
414 AffGranGroupType "%1$s: granularity=group is not supported with KMP_AFFINITY=%2$s. Usin…
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DMemory.inc79 // granularity may be larger than a single page (in practice, it is 64K)
96 // If the requested address is not aligned to the allocation granularity,
/freebsd-12.1/sys/contrib/ncsw/Peripherals/FM/Port/
H A Dfman_port.c973 uint32_t granularity, tmp; in fman_port_set_rate_limiter() local
981 granularity = BMI_RATE_LIMIT_GRAN_TX; in fman_port_set_rate_limiter()
986 granularity = BMI_RATE_LIMIT_GRAN_OP; in fman_port_set_rate_limiter()
998 while (rate_limiter->rate < (granularity / factor)) { in fman_port_set_rate_limiter()
1009 tmp = (uint32_t)(rate_limiter->rate * factor / granularity - 1); in fman_port_set_rate_limiter()
/freebsd-12.1/sys/sys/
H A Dmtio.h184 uint32_t granularity; member
/freebsd-12.1/usr.bin/mt/
H A Dmt.c396 (1 << rblim.granularity), in main()
397 MT_PLURAL((1 << rblim.granularity))); in main()
/freebsd-12.1/usr.sbin/bsnmpd/modules/snmp_bridge/
H A DBRIDGE-MIB.txt118 802.1D-1998 specifies a settable granularity of no more
509 granularity of this timer is specified by 802.1D-1998 to
524 bridge is acting as the root. The granularity of this
542 granularity of this timer is specified by 802.1D-1998 to
/freebsd-12.1/contrib/binutils/gprof/po/
H A Dgprof.pot127 "granularity: each sample hit covers %ld byte(s)"
H A Dms.po142 "granularity: each sample hit covers %ld byte(s)"
/freebsd-12.1/sys/gnu/dts/arm/
H A Dtegra30-colibri.dtsi815 * granularity
H A Dtegra30-apalis.dtsi946 * granularity
H A Dtegra30-apalis-v1.1.dtsi964 * granularity
/freebsd-12.1/contrib/llvm/include/llvm/Target/
H A DTargetSchedule.td475 // are defined at register class granularity (see field `Costs`).
/freebsd-12.1/sys/conf/
H A DNOTES1231 # The granularity of operation is controlled by the kernel option HZ whose
1232 # default value (1000 on most architectures) means a granularity of 1ms
1233 # (1s/HZ). Historically, the default was 100, but finer granularity is
1236 # that reducing the granularity too much might cause excessive overhead in
/freebsd-12.1/contrib/opie/
H A DREADME142 subdirectory and split into files with fine granularity. Ditto with missing
/freebsd-12.1/contrib/ntp/sntp/libevent/
H A Dwhatsnew-2.1.txt399 microsecond-granularity timeouts.

12