Lines Matching refs:Offset
600 // 'x ? 2^n + C : C'. Then we can offset both arms by C, use the logic
602 ConstantInt *Offset = 0;
605 Offset = FalseVal;
607 Offset = TrueVal;
611 // Adjust TrueVal and FalseVal to the offset.
613 TrueVal->getValue() - Offset->getValue());
615 FalseVal->getValue() - Offset->getValue());
643 // Apply an offset if needed.
644 if (Offset)
645 V = Builder->CreateAdd(V, Offset);