/llvm-project/lldb/source/Breakpoint/ |
H A D | WatchpointAlgorithms.cpp | 85 WatchpointAlgorithms::PowerOf2Watchpoints(addr_t user_addr, size_t user_size, in PowerOf2Watchpoints() argument 94 user_addr, user_size, min_byte_size, max_byte_size, in PowerOf2Watchpoints() 98 if (user_size == 0) in PowerOf2Watchpoints() 101 size_t aligned_size = std::max(user_size, min_byte_size); in PowerOf2Watchpoints() 112 aligned_start + aligned_size >= user_addr + user_size) in PowerOf2Watchpoints() 132 aligned_start + aligned_size >= user_addr + user_size) in PowerOf2Watchpoints() 148 const addr_t user_end_address = user_addr + user_size; in PowerOf2Watchpoints()
|
/llvm-project/lldb/unittests/Breakpoint/ |
H A D | WatchpointAlgorithmsTests.cpp | 89 size_t user_size = test.user.size; in TEST() local 94 user_addr, user_size, min_byte_size, max_byte_size, address_byte_size); in TEST() 114 size_t user_size = test.user.size; in TEST() local 119 user_addr, user_size, min_byte_size, max_byte_size, address_byte_size); in TEST() 170 size_t user_size = test.user.size; in TEST() local 175 user_addr, user_size, min_byte_size, max_byte_size, address_byte_size); in TEST()
|
/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_allocator.cpp | 315 static MemInfoBlock CreateNewMIB(uptr p, MemprofChunk *m, u64 user_size) { in CreateNewMIB() 317 return CreateNewMIBWithHistogram(p, m, user_size); in CreateNewMIB() 319 return CreateNewMIBWithoutHistogram(p, m, user_size); in CreateNewMIB() 324 u64 user_size) { in CreateNewMIBWithHistogram() 326 u64 c = GetShadowCountHistogram(p, user_size); in CreateNewMIBWithHistogram() 329 RoundUpTo(user_size, HISTOGRAM_GRANULARITY) / HISTOGRAM_GRANULARITY; in CreateNewMIBWithHistogram() 338 MemInfoBlock newMIB(user_size, c, m->timestamp_ms, curtime, m->cpu_id, in CreateNewMIBWithHistogram() 344 u64 user_size) { in CreateNewMIBWithoutHistogram() 345 u64 c = GetShadowCount(p, user_size); in CreateNewMIBWithoutHistogram() 347 MemInfoBlock newMIB(user_size, in CreateNewMIBWithoutHistogram() [all...] |
H A D | memprof_allocator.h | 43 uptr user_size) const { in OnMapSecondary()
|
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_report.cpp | 118 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size, in ReportAllocationSizeTooBig() argument 123 "supported size of 0x%zx\n", SanitizerToolName, user_size, max_size); in ReportAllocationSizeTooBig()
|
H A D | sanitizer_allocator_report.h | 33 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size,
|
H A D | sanitizer_allocator.h | 68 uptr user_size) const {} in OnMapSecondary()
|
/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | WatchpointAlgorithms.h | 98 size_t user_size,
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocator.h | 58 uptr user_size) const { in OnMapSecondary()
|
/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_report.h | 74 void ReportAllocationSizeTooBig(uptr user_size, uptr total_size, uptr max_size,
|
H A D | asan_errors.h | 237 uptr user_size; member 246 user_size(user_size_), in ErrorAllocationSizeTooBig()
|
H A D | asan_report.cpp | 310 void ReportAllocationSizeTooBig(uptr user_size, uptr total_size, uptr max_size, in ReportAllocationSizeTooBig() argument 313 ErrorAllocationSizeTooBig error(GetCurrentTidOrInvalid(), stack, user_size, in ReportAllocationSizeTooBig()
|
H A D | asan_allocator.h | 117 void OnMapSecondary(uptr p, uptr size, uptr user_begin, uptr user_size) const;
|
H A D | asan_errors.cpp | 260 user_size, total_size, max_size, AsanThreadIdAndName(tid).c_str()); in Print()
|
H A D | asan_allocator.cpp | 292 uptr user_size) const { in OnMapSecondary() 293 uptr user_end = RoundDownTo(user_begin + user_size, ASAN_SHADOW_GRANULARITY); in OnMapSecondary()
|
/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_allocator.cpp | 36 uptr user_size) const { in OnMapSecondary()
|
/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_allocator.cpp | 37 uptr user_size) const {} in OnUnmap()
|
/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_mman.cpp | 31 uptr user_size) const {}; in OnMapSecondary()
|
/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
H A D | sanitizer_allocator_test.cpp | 488 uptr user_size) const { in OnMapSecondary()
|