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

/external/llvm/include/llvm/Support/
H A DScaledNumber.h253 int compare(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) { argument
258 return RDigits ? -1 : 0;
259 if (!RDigits)
264 int32_t lgL = getLgFloor(LDigits, LScale), lgR = getLgFloor(RDigits, RScale);
270 return compareImpl(LDigits, RDigits, RScale - LScale);
272 return -compareImpl(RDigits, LDigits, LScale - RScale);
281 /// If the output value of \c LDigits (\c RDigits) is \c 0, the output value of
288 int16_t matchScales(DigitsT &LDigits, int16_t &LScale, DigitsT &RDigits, argument
294 return matchScales(RDigits, RScale, LDigits, LScale);
297 if (!RDigits || LScal
334 getSum(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) argument
[all...]

Completed in 92 milliseconds