Home
last modified time | relevance | path

Searched refs:UsableSize (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/scudo/
H A Dscudo_allocator.cpp522 const uptr UsableSize = Chunk::getUsableSize(OldPtr, &OldHeader); in reallocate() local
525 if (NewSize <= UsableSize && in reallocate()
526 (UsableSize - NewSize) < (SizeClassMap::kMaxSize / 2)) { in reallocate()
529 OldHeader.ClassId ? NewSize : UsableSize - NewSize; in reallocate()
538 UsableSize - OldHeader.SizeOrUnusedBytes; in reallocate()
539 memcpy(NewPtr, OldPtr, Min(NewSize, UsableSize)); in reallocate()
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mman_test.cpp97 TEST(Mman, UsableSize) { in TEST() argument