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

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c213 * RightValue - Second 64-bit operand
225 UINT64 RightValue)
236 Result = ~RightValue;
241 Result = !RightValue;
246 Result = LeftValue * RightValue;
251 if (!RightValue)
258 Result = LeftValue / RightValue;
263 if (!RightValue)
270 Result = LeftValue % RightValue;
274 Result = LeftValue + RightValue;
222 DtDoOperator( UINT64 LeftValue, UINT32 Operator, UINT64 RightValue) argument
[all...]
H A Ddtcompiler.h401 UINT64 RightValue);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp156 int64_t RightValue = cantFail(RightOperand.getSignedValue()); local
157 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue);
174 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
176 checkedAddUnsigned<uint64_t>(LeftValue, RightValue);
188 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
190 if (RightValue > (uint64_t)std::numeric_limits<int64_t>::max())
193 checkedSub(LeftValue, static_cast<int64_t>(RightValue));
210 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
211 if (LeftValue >= RightValue)
212 return ExpressionValue(LeftValue - RightValue);
256 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
281 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
289 int64_t RightValue = cantFail(RightOperand.getSignedValue()); local
295 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp809 Value *RightValue = ICI->getOperand(1); local
810 const SCEV *RightSCEV = SE.getSCEV(RightValue);
816 std::swap(LeftValue, RightValue);
880 // If RightValue resides within loop (but still being loop invariant),
882 if (auto *I = dyn_cast<Instruction>(RightValue))
1033 RightValue =
1051 Result.LoopExitAt = RightValue;

Completed in 133 milliseconds