Home
last modified time | relevance | path

Searched refs:cdigit (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/boost/multiprecision/detail/
Dfloat_string_cvt.hpp128 ui_type cdigit; in convert_to_string() local
142 eval_convert_to(&cdigit, digit); in convert_to_string()
143 result += static_cast<char>('0' + cdigit); in convert_to_string()
153 eval_convert_to(&cdigit, digit); in convert_to_string()
155 if ((cdigit == 5) && (t.compare(ui_type(0)) == 0)) in convert_to_string()
163 else if (cdigit >= 5) in convert_to_string()
/third_party/boost/boost/math/cstdfloat/
Dcstdfloat_iostream.hpp485 int cdigit; in convert_to_string() local
502 eval_convert_to(&cdigit, digit); in convert_to_string()
504 result += static_cast<char>('0' + cdigit); in convert_to_string()
514 eval_convert_to(&cdigit, digit); in convert_to_string()
517 if((cdigit == 5) && (t == 0)) in convert_to_string()
526 else if(cdigit >= 5) in convert_to_string()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp50 inline static unsigned getDigit(char cdigit, uint8_t radix) { in getDigit() argument
54 r = cdigit - '0'; in getDigit()
58 r = cdigit - 'A'; in getDigit()
62 r = cdigit - 'a'; in getDigit()
69 r = cdigit - '0'; in getDigit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp50 inline static unsigned getDigit(char cdigit, uint8_t radix) { in getDigit() argument
54 r = cdigit - '0'; in getDigit()
58 r = cdigit - 'A'; in getDigit()
62 r = cdigit - 'a'; in getDigit()
69 r = cdigit - '0'; in getDigit()
/third_party/python/Objects/
Dlongobject.c1865 char cdigit; \ in long_format_binary()
1866 cdigit = (char)(accum & (base - 1)); \ in long_format_binary()
1867 cdigit += (cdigit < 10) ? '0' : 'a'-10; \ in long_format_binary()
1868 *--p = cdigit; \ in long_format_binary()