Home
last modified time | relevance | path

Searched refs:user_size (Results 1 – 19 of 19) sorted by relevance

/llvm-project/lldb/source/Breakpoint/
H A DWatchpointAlgorithms.cpp85 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 DWatchpointAlgorithmsTests.cpp89 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 Dmemprof_allocator.cpp315 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 Dmemprof_allocator.h43 uptr user_size) const { in OnMapSecondary()
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp118 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 Dsanitizer_allocator_report.h33 void NORETURN ReportAllocationSizeTooBig(uptr user_size, uptr max_size,
H A Dsanitizer_allocator.h68 uptr user_size) const {} in OnMapSecondary()
/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpointAlgorithms.h98 size_t user_size,
/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.h58 uptr user_size) const { in OnMapSecondary()
/llvm-project/compiler-rt/lib/asan/
H A Dasan_report.h74 void ReportAllocationSizeTooBig(uptr user_size, uptr total_size, uptr max_size,
H A Dasan_errors.h237 uptr user_size; member
246 user_size(user_size_), in ErrorAllocationSizeTooBig()
H A Dasan_report.cpp310 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 Dasan_allocator.h117 void OnMapSecondary(uptr p, uptr size, uptr user_begin, uptr user_size) const;
H A Dasan_errors.cpp260 user_size, total_size, max_size, AsanThreadIdAndName(tid).c_str()); in Print()
H A Dasan_allocator.cpp292 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 Ddfsan_allocator.cpp36 uptr user_size) const { in OnMapSecondary()
/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp37 uptr user_size) const {} in OnUnmap()
/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp31 uptr user_size) const {}; in OnMapSecondary()
/llvm-project/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp488 uptr user_size) const { in OnMapSecondary()