Searched refs:UsedSize (Results 1 - 17 of 17) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_memory_profile.cc38 total_allocated_user_size_ += cv.UsedSize();
42 Insert(id, cv.UsedSize());
44 total_quarantined_user_size_ += cv.UsedSize();
H A Dasan_allocator.cc116 uptr UsedSize(bool locked_version = false) { function in struct:__asan::AsanChunk
132 return (addr >= Beg()) && (addr < Beg() + UsedSize(locked_version));
148 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
163 thread_stats.really_freed += m->UsedSize();
300 uptr end = ac->Beg() + ac->UsedSize(true);
580 if (m->UsedSize() >= kChunkHeader2Size) { // Skip Header2 in user area.
581 uptr size_to_fill = m->UsedSize() - kChunkHeader2Size;
589 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
594 thread_stats.freed += m->UsedSize();
601 m->UsedSize());
810 uptr AsanChunkView::UsedSize() const { return chunk_->UsedSize(); } function in class:__asan::AsanChunkView
[all...]
H A Dasan_allocator.h60 uptr UsedSize() const; // Size requested by the user.
H A Dasan_descriptions.cc123 descr->chunk_size = chunk.UsedSize();
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_memory_profile.cc36 total_allocated_user_size_ += cv.UsedSize();
40 Insert(id, cv.UsedSize());
42 total_quarantined_user_size_ += cv.UsedSize();
H A Dasan_allocator.cc114 uptr UsedSize(bool locked_version = false) { function in struct:__asan::AsanChunk
130 return (addr >= Beg()) && (addr < Beg() + UsedSize(locked_version));
146 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
161 thread_stats.really_freed += m->UsedSize();
298 uptr end = ac->Beg() + ac->UsedSize(true);
578 if (m->UsedSize() >= kChunkHeader2Size) { // Skip Header2 in user area.
579 uptr size_to_fill = m->UsedSize() - kChunkHeader2Size;
587 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
592 thread_stats.freed += m->UsedSize();
599 m->UsedSize());
808 uptr AsanChunkView::UsedSize() const { return chunk_->UsedSize(); } function in class:__asan::AsanChunkView
[all...]
H A Dasan_allocator.h58 uptr UsedSize() const; // Size requested by the user.
H A Dasan_descriptions.cc121 descr->chunk_size = chunk.UsedSize();
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_memory_profile.cpp37 total_allocated_user_size_ += cv.UsedSize();
41 Insert(id, cv.UsedSize());
43 total_quarantined_user_size_ += cv.UsedSize();
H A Dasan_allocator.cpp104 uptr UsedSize() const { function in class:__asan::ChunkHeader
116 CHECK_EQ(UsedSize(), size);
161 return (addr >= Beg()) && (addr < Beg() + UsedSize());
214 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
220 thread_stats.really_freed += m->UsedSize();
364 uptr end = ac->Beg() + ac->UsedSize();
645 if (m->UsedSize() >= kChunkHeader2Size) { // Skip Header2 in user area.
646 uptr size_to_fill = m->UsedSize() - kChunkHeader2Size;
654 RoundUpTo(m->UsedSize(), SHADOW_GRANULARITY),
659 thread_stats.freed += m->UsedSize();
885 uptr AsanChunkView::UsedSize() const { return chunk_->UsedSize(); } function in class:__asan::AsanChunkView
[all...]
H A Dasan_allocator.h60 uptr UsedSize() const; // Size requested by the user.
H A Dasan_descriptions.cpp121 descr->chunk_size = chunk.UsedSize();
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_allocator.h87 uptr UsedSize() const; // Size requested by the user
H A Dhwasan_allocator.cpp62 return Beg() + UsedSize();
64 uptr HwasanChunkView::UsedSize() const { function in class:__hwasan::HwasanChunkView
H A Dhwasan_report.cpp322 untagged_addr, offset, whence, chunk.UsedSize(), chunk.Beg(),
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp1950 unsigned UsedSize;
1957 UsedSize = getPSPSlotOffsetFromSP(MF) + SlotSize;
1960 UsedSize = MF.getFrameInfo().getMaxCallFrameSize();
1965 unsigned FrameSizeMinusRBP = alignTo(CSSize + UsedSize, getStackAlign());
/netbsd-current/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaChecking.cpp612 Optional<llvm::APSInt> UsedSize; local
642 UsedSize = llvm::APSInt::getUnsigned(H.getSizeLowerBound())
752 if (!UsedSize) {
757 UsedSize = Result.Val.getInt().extOrTrunc(SizeTypeWidth);
760 if (UsedSize.getValue().ule(ObjectSize))
776 << UsedSize.getValue().toString(/*Radix=*/10));

Completed in 298 milliseconds