Home
last modified time | relevance | path

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

/src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlocal_cache.h53 const uptr ClassSize = C->ClassSize; in allocate() local
55 Stats.add(StatAllocated, ClassSize); in allocate()
56 Stats.sub(StatFree, ClassSize); in allocate()
69 const uptr ClassSize = C->ClassSize; in deallocate() local
72 Stats.sub(StatAllocated, ClassSize); in deallocate()
73 Stats.add(StatFree, ClassSize); in deallocate()
116 const uptr ClassSize = I == BatchClassId in getStats() local
118 : PerClassArray[I].ClassSize; in getStats()
121 Str->append(" %02zu (%6zu): cached: %4zu max: %4zu\n", I, ClassSize, in getStats()
142 uptr ClassSize; member
[all …]
/src/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3644 int ClassSize = kMinStackMallocSize << StackMallocIdx; in processStaticAllocas() local
3645 ShadowAfterReturn.resize(ClassSize / L.Granularity, in processStaticAllocas()
3651 ConstantInt::get(IntptrTy, ClassSize - ASan.LongSize / 8)); in processStaticAllocas()