Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:ptrSize

302   CharUnits ptrSize, ptrAlign, intSize, intAlign;
303 std::tie(ptrSize, ptrAlign) = C.getTypeInfoInChars(C.VoidPtrTy);
307 assert(intSize <= ptrSize && "layout assumptions horribly violated");
309 CharUnits headerSize = ptrSize;
310 if (2 * intSize < ptrAlign) headerSize += ptrSize;
312 headerSize += 2 * ptrSize;