Lines Matching defs:OffsetByte
309 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
311 OffsetByte = -(AllocBefore / 8 + 1);
313 OffsetByte = -((AllocBefore + 7) / 8 + (BitWidth + 7) / 8);
326 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
328 OffsetByte = AllocAfter / 8;
330 OffsetByte = (AllocAfter + 7) / 8;
1905 int64_t OffsetByte;
1908 setBeforeReturnValues(TargetsForSlot, AllocBefore, BitWidth, OffsetByte,
1911 setAfterReturnValues(TargetsForSlot, AllocAfter, BitWidth, OffsetByte,
1921 exportConstant(Slot, CSByConstantArg.first, "byte", OffsetByte,
1927 // Rewrite each call to a load from OffsetByte/OffsetBit.
1928 Constant *ByteConst = ConstantInt::get(Int32Ty, OffsetByte);