Lines Matching defs:OffsetByte
280 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
282 OffsetByte = -(AllocBefore / 8 + 1);
284 OffsetByte = -((AllocBefore + 7) / 8 + (BitWidth + 7) / 8);
297 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
299 OffsetByte = AllocAfter / 8;
301 OffsetByte = (AllocAfter + 7) / 8;
1864 int64_t OffsetByte;
1867 setBeforeReturnValues(TargetsForSlot, AllocBefore, BitWidth, OffsetByte,
1870 setAfterReturnValues(TargetsForSlot, AllocAfter, BitWidth, OffsetByte,
1880 exportConstant(Slot, CSByConstantArg.first, "byte", OffsetByte,
1886 // Rewrite each call to a load from OffsetByte/OffsetBit.
1887 Constant *ByteConst = ConstantInt::get(Int32Ty, OffsetByte);