Searched refs:RealAllocationSize (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dutilities_posix.cpp45 static size_t alignBionic(size_t RealAllocationSize) { argument
46 if (RealAllocationSize % 8 == 0)
47 return RealAllocationSize;
48 return RealAllocationSize + 8 - (RealAllocationSize % 8);
51 static size_t alignPowerOfTwo(size_t RealAllocationSize) { argument
52 if (RealAllocationSize <= 2)
53 return RealAllocationSize;
54 if (RealAllocationSize <= 4)
56 if (RealAllocationSize <
71 rightAlignedAllocationSize(size_t RealAllocationSize, AlignmentStrategy Align) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dutilities.h29 size_t RealAllocationSize,

Completed in 157 milliseconds