Lines Matching defs:TmpOffset
267 uint64_t TmpOffset = Addr.getOffset();
279 TmpOffset += SL->getElementOffset(Idx);
285 TmpOffset += CI->getSExtValue() * S;
299 TmpOffset += CI->getSExtValue() * S;
310 if (int64_t(TmpOffset) >= 0) {
312 Addr.setOffset(TmpOffset);
350 uint64_t TmpOffset = Addr.getOffset() + CI->getSExtValue();
351 if (int64_t(TmpOffset) >= 0) {
352 Addr.setOffset(TmpOffset);
376 int64_t TmpOffset = Addr.getOffset() - CI->getSExtValue();
377 if (TmpOffset >= 0) {
378 Addr.setOffset(TmpOffset);