Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:OldSize

2097   // redzones, and OldSize is number of allocated blocks with
2099 // OldSize * ElementSize.
2102 Value *OldSize =
2106 // PartialSize = OldSize % 32
2107 Value *PartialSize = IRB.CreateAnd(OldSize, AllocaRzMask);
2122 Value *NewSize = IRB.CreateAdd(OldSize, AdditionalChunkSize);
2133 IRB.CreateCall(AsanAllocaPoisonFunc, {NewAddress, OldSize});