Home
last modified time | relevance | path

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

/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c225 UINT64 RightValue) in DtDoOperator() argument
236 Result = ~RightValue; in DtDoOperator()
241 Result = !RightValue; in DtDoOperator()
246 Result = LeftValue * RightValue; in DtDoOperator()
251 if (!RightValue) in DtDoOperator()
258 Result = LeftValue / RightValue; in DtDoOperator()
263 if (!RightValue) in DtDoOperator()
270 Result = LeftValue % RightValue; in DtDoOperator()
274 Result = LeftValue + RightValue; in DtDoOperator()
279 Result = LeftValue - RightValue; in DtDoOperator()
[all …]
H A Ddtcompiler.h401 UINT64 RightValue);
/freebsd-13.1/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()
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 /()
341 int64_t RightValue = cantFail(RightOperand.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.cpp805 Value *RightValue = ICI->getOperand(1); in parseLoopStructure() local
806 const SCEV *RightSCEV = SE.getSCEV(RightValue); in parseLoopStructure()
812 std::swap(LeftValue, RightValue); in parseLoopStructure()
878 if (auto *I = dyn_cast<Instruction>(RightValue)) in parseLoopStructure()
1029 RightValue = in parseLoopStructure()
1047 Result.LoopExitAt = RightValue; in parseLoopStructure()