/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_platform_posix.cpp | 82 static bool TryProtectRange(uptr beg, uptr end) { in TryProtectRange() 89 static void ProtectRange(uptr beg, uptr end) { in ProtectRange()
|
/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_linux.cpp | 42 void ReportMapRange(const char *descr, uptr beg, uptr size) { in ReportMapRange() argument 49 static bool CheckMemoryRangeAvailability(uptr beg, uptr size, bool verbose) { in CheckMemoryRangeAvailability() argument 62 static bool ProtectMemoryRange(uptr beg, uptr size, const char *name) { in ProtectMemoryRange() argument [all...] |
H A D | msan_poisoning.cpp | 48 uptr beg = d & ~3UL; in CopyOrigin() local 116 uptr beg = d & ~3UL; ReverseCopyOrigin() local 235 uptr beg = x & ~3UL; // align down. SetOrigin() local [all...] |
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_report.h | 24 uptr beg; member
|
H A D | asan_interface_internal.h | 49 uptr beg; // The address of the global. member
|
H A D | asan_poisoning.cpp | 109 ShadowSegmentEndpoint beg(beg_addr); __asan_poison_memory_region() local 149 ShadowSegmentEndpoint beg(beg_addr); __asan_unpoison_memory_region() local 173 __asan_region_is_poisoned(uptr beg,uptr size) __asan_region_is_poisoned() argument 600 uptr beg = reinterpret_cast<uptr>(beg_p); __sanitizer_contiguous_container_find_bad_address() local 635 uptr beg = reinterpret_cast<uptr>(container_beg_p); __sanitizer_double_ended_contiguous_container_find_bad_address() local [all...] |
H A D | asan_fake_stack.cpp | 118 uptr beg = reinterpret_cast<uptr>(GetFrame(stack_size_log, 0, 0)); in AddrIsInFakeStack() local 293 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg, in __asan_addr_is_in_fake_stack()
|
/llvm-project/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/ |
H A D | user_defined_char_type.pass.cpp | 89 for (; beg != end; ++beg) in scan_is() argument 96 for (; beg != end; ++beg) in scan_not() argument 110 widen(const char * beg,const char * end,char_type * dst) const widen() argument 117 narrow(const char_type * beg,const char_type * end,char,char * dst) const narrow() argument [all...] |
/llvm-project/libcxx/test/std/ranges/range.utility/range.subrange/ |
H A D | primitives.pass.cpp | 46 SizedSentinelForwardIter beg(buff, &minusWasCalled), end(buff + 5, &minusWasCalled); in test() local
|
/llvm-project/compiler-rt/test/asan/TestCases/Posix/ |
H A D | gc-test.cpp | 24 void *beg, *end; in Thread() local
|
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFAttribute.cpp | 22 collection::const_iterator beg = m_infos.begin(); in FindAttributeIndex() local
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_tls_get_addr.h | 48 uptr beg, size; member
|
H A D | sanitizer_linux.h | 130 inline void ReleaseMemoryPagesToOSAndZeroFill(uptr beg, uptr end) { in ReleaseMemoryPagesToOSAndZeroFill() argument
|
H A D | sanitizer_allocator_primary32.h | 146 void UnmapWithCallback(uptr beg, uptr size) { in UnmapWithCallback() argument 160 uptr beg = ComputeRegionBeg(mem); in GetMetaData() local 209 uptr beg = ComputeRegionBeg(mem); in GetBlockBegin() local
|
H A D | sanitizer_coverage_libcdep_new.cpp | 191 Cov8bitCountersInit(char * beg,char * end) Cov8bitCountersInit() argument 197 CovPcsInit(const uptr * beg,const uptr * end) CovPcsInit() argument 277 SANITIZER_INTERFACE_WEAK_DEF(void,__sanitizer_cov_pcs_init,const uptr * beg,const uptr * end) SANITIZER_INTERFACE_WEAK_DEF() argument
|
H A D | sanitizer_common_libcdep.cpp | 162 void ReserveShadowMemoryRange(uptr beg, uptr end, const char *name, in ReserveShadowMemoryRange() argument [all...] |
H A D | sanitizer_allocator_primary64.h | 266 uptr beg = chunk_idx * size; GetBlockBegin() local 711 MapWithCallback(uptr beg,uptr size,const char * name) MapWithCallback() argument 723 MapWithCallbackOrDie(uptr beg,uptr size,const char * name) MapWithCallbackOrDie() argument 733 UnmapWithCallbackOrDie(uptr beg,uptr size) UnmapWithCallbackOrDie() argument [all...] |
H A D | sanitizer_posix_libcdep.cpp | 58 void ReleaseMemoryPagesToOS(uptr beg, uptr end) { in ReleaseMemoryPagesToOS() argument 291 IsAccessibleMemoryRange(uptr beg,uptr size) IsAccessibleMemoryRange() argument
|
H A D | sanitizer_file.cpp | 214 const char *beg = path; FindPathToBinary() local
|
H A D | sanitizer_allocator_secondary.h | 230 uptr beg = 0, end = n - 1; in GetBlockBeginFastLocked() local
|
/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan.cpp | 250 uptr beg = OriginAlignDown(d); in CopyOrigin() local 302 uptr beg in ReverseCopyOrigin() local 365 uptr beg = OriginAlignDown(x); SetOrigin() local 506 WriteZeroShadowInRange(uptr beg,uptr end) WriteZeroShadowInRange() argument 1133 CheckMemoryRangeAvailability(uptr beg,uptr size,bool verbose) CheckMemoryRangeAvailability() argument 1147 ProtectMemoryRange(uptr beg,uptr size,const char * name) ProtectMemoryRange() argument [all...] |
H A D | dfsan_allocator.cpp | 187 void *beg = allocator.GetBlockBegin(p); AllocationBegin() local 201 const void *beg = allocator.GetBlockBegin(p); AllocationSize() local
|
/llvm-project/compiler-rt/test/asan/TestCases/ |
H A D | contiguous_container.cpp | 125 char *beg = st_beg; in TestDoubleEndedContainer() local
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_interceptors.cpp | 200 uptr beg = reinterpret_cast<uptr>(res); in mmap_interceptor() local 219 uptr beg = reinterpret_cast<uptr>(addr); in munmap_interceptor() local
|
H A D | hwasan_allocator.cpp | 419 const void *beg = allocator.GetBlockBegin(untagged_ptr); AllocationBegin() local 434 const void *beg = allocator.GetBlockBegin(untagged_ptr); AllocationSize() local
|