Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:AlignedSize

439     uint64_t AlignedSize =  getAlignedAllocaSize(&AI);
440 TotalStackSize += AlignedSize;
1258 uint64_t AlignedSize = getAlignedAllocaSize(AI);
1259 assert(AlignedSize - SizeInBytes < RedzoneSize());
1262 Pos += AlignedSize;
1265 if (SizeInBytes < AlignedSize) {
1270 size_t AddressableBytes = RedzoneSize() - (AlignedSize - SizeInBytes);
1345 uint64_t AlignedSize = getAlignedAllocaSize(AI);
1346 assert((AlignedSize % RedzoneSize()) == 0);
1352 Pos += AlignedSize + RedzoneSize();