HomeSort by: relevance | last modified time | path
    Searched refs:LeftValue (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
dtexpress.c 103 * PARAMETERS: LeftValue - First 64-bit operand
115 UINT64 LeftValue,
138 Result = LeftValue * RightValue;
150 Result = LeftValue / RightValue;
162 Result = LeftValue % RightValue;
166 Result = LeftValue + RightValue;
171 Result = LeftValue - RightValue;
176 Result = LeftValue >> RightValue;
181 Result = LeftValue << RightValue;
186 Result = LeftValue < RightValue
    [all...]
dtcompiler.h 291 UINT64 LeftValue,
  /src/external/apache2/llvm/dist/llvm/lib/FileCheck/
FileCheck.cpp 207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue());
209 Optional<int64_t> Result = checkedAdd<int64_t>(LeftValue, RightValue);
225 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue());
228 checkedAddUnsigned<uint64_t>(LeftValue, RightValue);
239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue());
245 checkedSub(LeftValue, static_cast<int64_t>(RightValue));
261 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue());
263 if (LeftValue >= RightValue)
264 return ExpressionValue(LeftValue - RightValue);
266 uint64_t AbsoluteDifference = RightValue - LeftValue;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InductiveRangeCheckElimination.cpp 801 Value *LeftValue = ICI->getOperand(0);
802 const SCEV *LeftSCEV = SE.getSCEV(LeftValue);
803 IntegerType *IndVarTy = cast<IntegerType>(LeftValue->getType());
812 std::swap(LeftValue, RightValue);
1045 Result.IndVarBase = LeftValue;

Completed in 21 milliseconds