Lines Matching defs:TmpOffset
271 uint64_t TmpOffset = Addr.getOffset();
283 TmpOffset += SL->getElementOffset(Idx);
289 TmpOffset += CI->getSExtValue() * S;
303 TmpOffset += CI->getSExtValue() * S;
314 if (int64_t(TmpOffset) >= 0) {
316 Addr.setOffset(TmpOffset);
348 uint64_t TmpOffset = Addr.getOffset() + CI->getSExtValue();
349 if (int64_t(TmpOffset) >= 0) {
350 Addr.setOffset(TmpOffset);
368 int64_t TmpOffset = Addr.getOffset() - CI->getSExtValue();
369 if (TmpOffset >= 0) {
370 Addr.setOffset(TmpOffset);