Searched refs:LeftValue (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c211 * PARAMETERS: LeftValue - First 64-bit operand
223 UINT64 LeftValue,
246 Result = LeftValue * RightValue;
258 Result = LeftValue / RightValue;
270 Result = LeftValue % RightValue;
274 Result = LeftValue + RightValue;
279 Result = LeftValue - RightValue;
284 Result = LeftValue >> RightValue;
289 Result = LeftValue << RightValue;
294 Result = LeftValue < RightValu
222 DtDoOperator( UINT64 LeftValue, UINT32 Operator, UINT64 RightValue) argument
[all...]
H A Ddtcompiler.h399 UINT64 LeftValue,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp155 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); local
157 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue);
173 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue());
176 checkedAddUnsigned<uint64_t>(LeftValue, RightValue);
187 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); local
193 checkedSub(LeftValue, static_cast<int64_t>(RightValue));
209 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue());
211 if (LeftValue >= RightValue)
212 return ExpressionValue(LeftValue - RightValue);
214 uint64_t AbsoluteDifference = RightValue - LeftValue;
255 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); local
288 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); local
294 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp805 Value *LeftValue = ICI->getOperand(0); local
806 const SCEV *LeftSCEV = SE.getSCEV(LeftValue);
807 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType());
816 std::swap(LeftValue, RightValue);
1049 Result.IndVarBase = LeftValue;

Completed in 107 milliseconds