Searched refs:LeftValue (Results 1 – 4 of 4) sorted by relevance
115 UINT64 LeftValue, in DtDoOperator() argument138 Result = LeftValue * RightValue; in DtDoOperator()150 Result = LeftValue / RightValue; in DtDoOperator()162 Result = LeftValue % RightValue; in DtDoOperator()166 Result = LeftValue + RightValue; in DtDoOperator()171 Result = LeftValue - RightValue; in DtDoOperator()176 Result = LeftValue >> RightValue; in DtDoOperator()181 Result = LeftValue << RightValue; in DtDoOperator()186 Result = LeftValue < RightValue; in DtDoOperator()191 Result = LeftValue > RightValue; in DtDoOperator()[all …]
291 UINT64 LeftValue,
207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() local209 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()225 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator +() local228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() local245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()261 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator -() local263 if (LeftValue >= RightValue) in operator -()264 return ExpressionValue(LeftValue - RightValue); in operator -()266 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -()[all …]
801 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local802 const SCEV *LeftSCEV = SE.getSCEV(LeftValue); in parseLoopStructure()803 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType()); in parseLoopStructure()812 std::swap(LeftValue, RightValue); in parseLoopStructure()1045 Result.IndVarBase = LeftValue; in parseLoopStructure()