Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dlocal_cache.h77 const uptr ClassSize = C->ClassSize; in allocate() local
79 Stats.add(StatAllocated, ClassSize); in allocate()
80 Stats.sub(StatFree, ClassSize); in allocate()
93 const uptr ClassSize = C->ClassSize; in deallocate() local
96 Stats.sub(StatAllocated, ClassSize); in deallocate()
97 Stats.add(StatFree, ClassSize); in deallocate()
135 uptr ClassSize; member
155 P->ClassSize = Size; in initCache()
159 P->ClassSize = 0; in initCache()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3317 int ClassSize = kMinStackMallocSize << StackMallocIdx; in processStaticAllocas() local
3318 ShadowAfterReturn.resize(ClassSize / L.Granularity, in processStaticAllocas()
3324 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8)); in processStaticAllocas()