Searched defs:RScale (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
264 int32_t lgL = getLgFloor(LDigits, LScale), lgR = getLgFloor(RDigits, RScale);
269 if (LScale < RScale)
270 return compareImpl(LDigits, RDigits, RScale - LScale);
272 return -compareImpl(RDigits, LDigits, LScale - RScale);
282 /// \c LScale (\c RScale) is unspecified.
289 int16_t &RScale) {
292 if (LScale < RScale)
294 return matchScales(RDigits, RScale, LDigits, LScale);
296 return RScale;
288 matchScales(DigitsT &LDigits, int16_t &LScale, DigitsT &RDigits, int16_t &RScale) argument
334 getSum(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) argument
[all...]

Completed in 212 milliseconds