Searched defs:LDigits (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
257 if (!LDigits)
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);
295 if (!LDigits)
308 // Shift LDigits lef
334 getSum(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) argument
[all...]

Completed in 229 milliseconds