Searched refs:RDigits (Results 1 - 1 of 1) sorted by relevance
/external/llvm/include/llvm/Support/ |
H A D | ScaledNumber.h | 252 int compare(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) { argument 257 return RDigits ? -1 : 0; 258 if (!RDigits) 263 int32_t lgL = getLgFloor(LDigits, LScale), lgR = getLgFloor(RDigits, RScale); 269 return compareImpl(LDigits, RDigits, RScale - LScale); 271 return -compareImpl(RDigits, LDigits, LScale - RScale); 280 /// If the output value of \c LDigits (\c RDigits) is \c 0, the output value of 287 int16_t matchScales(DigitsT &LDigits, int16_t &LScale, DigitsT &RDigits, argument 293 return matchScales(RDigits, RScale, LDigits, LScale); 296 if (!RDigits || LScal 333 getSum(DigitsT LDigits, int16_t LScale, DigitsT RDigits, int16_t RScale) argument [all...] |
Completed in 465 milliseconds