Home
last modified time | relevance | path

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

/netbsd-src/sys/external/bsd/acpica/dist/compiler/
H A Ddtexpress.c117 UINT64 RightValue) in DtDoOperator() argument
128 Result = ~RightValue; in DtDoOperator()
133 Result = !RightValue; in DtDoOperator()
138 Result = LeftValue * RightValue; in DtDoOperator()
143 if (!RightValue) in DtDoOperator()
150 Result = LeftValue / RightValue; in DtDoOperator()
155 if (!RightValue) in DtDoOperator()
162 Result = LeftValue % RightValue; in DtDoOperator()
166 Result = LeftValue + RightValue; in DtDoOperator()
171 Result = LeftValue - RightValue; in DtDoOperator()
[all …]
H A Ddtcompiler.h293 UINT64 RightValue);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp208 int64_t RightValue = cantFail(RightOperand.getSignedValue()); in operator +() local
209 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue); in operator +()
226 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator +() local
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue); in operator +()
240 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local
242 if (RightValue > (uint64_t)std::numeric_limits<int64_t>::max()) in operator -()
245 checkedSub(LeftValue, static_cast<int64_t>(RightValue)); in operator -()
262 uint64_t RightValue = cantFail(RightOperand.getUnsignedValue()); in operator -() local
263 if (LeftValue >= RightValue) in operator -()
264 return ExpressionValue(LeftValue - RightValue); in operator -()
[all …]
/netbsd-src/external/apache2/llvm/dist/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()