Home
last modified time | relevance | path

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

/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c223 UINT64 LeftValue, in DtDoOperator() argument
246 Result = LeftValue * RightValue; in DtDoOperator()
258 Result = LeftValue / RightValue; in DtDoOperator()
270 Result = LeftValue % RightValue; in DtDoOperator()
274 Result = LeftValue + RightValue; in DtDoOperator()
279 Result = LeftValue - RightValue; in DtDoOperator()
294 Result = LeftValue < RightValue; in DtDoOperator()
299 Result = LeftValue > RightValue; in DtDoOperator()
324 Result = LeftValue & RightValue; in DtDoOperator()
329 Result = LeftValue ^ RightValue; in DtDoOperator()
[all …]
H A Ddtcompiler.h399 UINT64 LeftValue,
/freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -() local
263 if (LeftValue >= RightValue) in operator -()
264 return ExpressionValue(LeftValue - RightValue); in operator -()
266 uint64_t AbsoluteDifference = RightValue - LeftValue; in operator -()
310 checkedMulUnsigned<uint64_t>(LeftValue, RightValue); in operator *()
334 return ExpressionValue(LeftValue / RightValue); in operator /()
340 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in max() local
342 return ExpressionValue(std::max(LeftValue, RightValue)); in max()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp801 Value *LeftValue = ICI->getOperand(0); in parseLoopStructure() local
802 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()