| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/dfsan/ |
| D | dfsan_allocator.cpp | 28 uptr requested_size; member 109 meta->requested_size = size; in DFsanAllocate() 122 uptr size = meta->requested_size; in dfsan_deallocate() 123 meta->requested_size = 0; in dfsan_deallocate() 139 uptr old_size = meta->requested_size; in DFsanReallocate() 143 meta->requested_size = new_size; in DFsanReallocate() 174 return b->requested_size; in AllocationSize()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/lsan/ |
| D | lsan_allocator.cpp | 66 m->requested_size = size; in RegisterAllocation() 148 return m->requested_size; in GetMallocUsableSize() 262 if (addr < chunk + m->requested_size) in PointsIntoChunk() 264 if (IsSpecialCaseOfOperatorNew0(chunk, m->requested_size, addr)) in PointsIntoChunk() 290 uptr LsanMetadata::requested_size() const { in requested_size() function in __lsan::LsanMetadata 291 return reinterpret_cast<ChunkMetadata *>(metadata_)->requested_size; in requested_size() 307 if (m->allocated && (uptr)p < (uptr)chunk + m->requested_size) { in IgnoreObjectLocked()
|
| D | lsan_common.cpp | 209 pp, p, chunk, chunk + m.requested_size(), m.requested_size()); in ScanRangeForPointers() 215 chunk, chunk + m.requested_size(), m.requested_size()); in ScanRangeForPointers() 433 ScanRangeForPointers(next_chunk, next_chunk + m.requested_size(), frontier, in FloodFillTag() 444 ScanRangeForPointers(chunk, chunk + m.requested_size(), in MarkIndirectlyLeakedCb() 463 chunk + m.requested_size(), m.requested_size()); in IgnoredSuppressedCb() 475 chunk, chunk + m.requested_size(), m.requested_size()); in CollectIgnoredCb() 610 leak_report->AddLeakedChunk(chunk, stack_trace_id, m.requested_size(), in CollectLeaksCb()
|
| D | lsan_allocator.h | 44 uptr requested_size : 54; member 46 uptr requested_size : 32; member
|
| D | lsan_common.h | 265 uptr requested_size() const;
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/msan/ |
| D | msan_allocator.cpp | 28 uptr requested_size; member 181 meta->requested_size = size; in MsanAllocate() 200 uptr size = meta->requested_size; in MsanDeallocate() 201 meta->requested_size = 0; in MsanDeallocate() 226 uptr old_size = meta->requested_size; in MsanReallocate() 230 meta->requested_size = new_size; in MsanReallocate() 262 return b->requested_size; in AllocationSize()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_allocator_report.cpp | 128 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack) { in ReportOutOfMemory() argument 132 "bytes\n", SanitizerToolName, requested_size); in ReportOutOfMemory()
|
| D | sanitizer_allocator.cpp | 140 static void NORETURN ReportInternalAllocatorOutOfMemory(uptr requested_size) { in ReportInternalAllocatorOutOfMemory() argument 143 "0x%zx bytes\n", SanitizerToolName, requested_size); in ReportInternalAllocatorOutOfMemory()
|
| D | sanitizer_allocator_report.h | 35 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack);
|
| /freebsd-12-stable/sys/dev/mlx4/mlx4_core/ |
| D | mlx4_qp.c | 599 u32 requested_size; in mlx4_create_zones() local 607 requested_size = min((u32)MLX4_QP_TABLE_RAW_ETH_SIZE, bf_mask + 1); in mlx4_create_zones() 613 !((last_offset + requested_size - 1) & in mlx4_create_zones() 615 size = requested_size; in mlx4_create_zones() 631 requested_size); in mlx4_create_zones() 632 if (size < requested_size) { in mlx4_create_zones() 638 requested_size); in mlx4_create_zones()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| D | hwasan_report.cpp | 152 h.tagged_addr + h.requested_size > tagged_addr) { in FindHeapAllocation() 163 UntagAddr(h.tagged_addr) + h.requested_size > UntagAddr(tagged_addr)) { in FindHeapAllocation() 173 untag_4b(h.tagged_addr) + h.requested_size > untag_4b(tagged_addr)) { in FindHeapAllocation() 456 har.requested_size, UntagAddr(har.tagged_addr), in PrintAddressDescription() 457 UntagAddr(har.tagged_addr) + har.requested_size); in PrintAddressDescription()
|
| D | hwasan_allocator.h | 106 u32 requested_size; member
|
| D | hwasan_allocator.cpp | 50 static uptr AlignRight(uptr addr, uptr requested_size) { in AlignRight() argument 51 uptr tail_size = requested_size % kShadowAlignment; in AlignRight()
|
| /freebsd-12-stable/contrib/libstdc++/include/bits/ |
| D | stl_tempbuf.h | 108 requested_size() const in _GLIBCXX_BEGIN_NAMESPACE()
|
| D | stl_algo.h | 2232 _DistanceType(__buf.requested_size()), in stable_partition() 2237 _DistanceType(__buf.requested_size())); in stable_partition()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| D | asan_report.h | 76 void ReportOutOfMemory(uptr requested_size, BufferedStackTrace *stack);
|
| D | asan_errors.h | 264 uptr requested_size; member 270 requested_size(requested_size_) {} in ErrorOutOfMemory()
|
| D | asan_report.cpp | 321 void ReportOutOfMemory(uptr requested_size, BufferedStackTrace *stack) { in ReportOutOfMemory() argument 323 ErrorOutOfMemory error(GetCurrentTidOrInvalid(), stack, requested_size); in ReportOutOfMemory()
|
| D | asan_errors.cpp | 286 "0x%zx bytes\n", requested_size); in Print()
|
| D | asan_allocator.cpp | 1153 uptr LsanMetadata::requested_size() const { in requested_size() function in __lsan::LsanMetadata
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/ |
| D | memory | 172 * functions, as well as requested_size(). For non-trivial types, copies 179 * copy of [first,last), but if size() is less than requested_size(),
|
| /freebsd-12-stable/contrib/llvm-project/openmp/runtime/src/ |
| D | kmp_alloc.cpp | 425 static void *bget(kmp_info_t *th, bufsize requested_size) { in bget() argument 427 bufsize size = requested_size; in bget() 622 th, requested_size); /* This can't, I say, can't get into a loop. */ in bget()
|