/external/bison/lib/ |
D | vasnprintf.c | 3658 size_t ndigits; in VASNPRINTF() local 3667 ndigits = strlen (digits); in VASNPRINTF() 3669 if (ndigits > precision) in VASNPRINTF() 3672 --ndigits; in VASNPRINTF() 3673 *p++ = digits[ndigits]; in VASNPRINTF() 3675 while (ndigits > precision); in VASNPRINTF() 3682 for (; precision > ndigits; precision--) in VASNPRINTF() 3684 while (ndigits > 0) in VASNPRINTF() 3686 --ndigits; in VASNPRINTF() 3687 *p++ = digits[ndigits]; in VASNPRINTF() [all …]
|
/external/libweave/third_party/chromium/base/third_party/dmg_fp/ |
D | dmg_fp.h | 18 char* dtoa(double d, int mode, int ndigits,
|
D | dtoa.cc | 520 char *dtoa(double d, int mode, int ndigits, 3544 (dd, mode, ndigits, decpt, sign, rve) 3545 double dd; int mode, ndigits, *decpt, *sign; char **rve; variable 3547 (double dd, int mode, int ndigits, int *decpt, int *sign, char **rve) 3773 ndigits = 0; 3779 if (ndigits <= 0) 3780 ndigits = 1; 3781 ilim = ilim1 = i = ndigits; 3787 i = ndigits + k + 1; 3910 if (ndigits < 0 && ilim <= 0) { [all …]
|
/external/opencv3/3rdparty/libpng/ |
D | png.c | 1840 unsigned int ndigits = 0, first = 16 /* flag value */; 1848 digits[ndigits++] = (char)(48 + num); 1853 first = ndigits; 1857 if (ndigits > 0) 1859 while (ndigits > 5) *ascii++ = digits[--ndigits]; 1872 while (ndigits < i) *ascii++ = 48, --i; 1873 while (ndigits >= first) *ascii++ = digits[--ndigits];
|
/external/icu/icu4c/source/common/ |
D | unames.cpp | 451 int ndigits, i; in getExtName() local 458 for (cp = code, ndigits = 0; cp; ++ndigits, cp >>= 4) in getExtName() 460 if (ndigits < 4) in getExtName() 461 ndigits = 4; in getExtName() 462 for (cp = code, i = ndigits; (cp || i > 0) && bufferLength; cp >>= 4, bufferLength--) { in getExtName() 466 buffer += ndigits; in getExtName() 467 length += ndigits; in getExtName()
|
/external/libpng/contrib/tools/ |
D | pngfix.c | 189 int ndigits = 0; in uarb_set() local 193 result[ndigits++] = (png_uint_16)(val & 0xffff); in uarb_set() 197 return ndigits; in uarb_set() 335 uarb_shift(uarb inout, int ndigits, unsigned int right_shift) in uarb_shift() argument 340 FIX_GCC int i = ndigits; in uarb_shift() 355 if (i == ndigits-1 && temp == 0) in uarb_shift() 356 ndigits = i; in uarb_shift() 359 return ndigits; in uarb_shift() 2246 max_window_bits(uarbc size, int ndigits) in max_window_bits() argument 2251 if (ndigits > 1) in max_window_bits()
|
/external/pdfium/third_party/lpng_v163/ |
D | png.c | 3025 unsigned int ndigits = 0, first = 16 /* flag value */; 3033 digits[ndigits++] = (char)(48 + num); 3038 first = ndigits; 3042 if (ndigits > 0) 3044 while (ndigits > 5) *ascii++ = digits[--ndigits]; 3057 while (ndigits < i) *ascii++ = 48, --i; 3058 while (ndigits >= first) *ascii++ = digits[--ndigits];
|
/external/libpng/ |
D | png.c | 3161 unsigned int ndigits = 0, first = 16 /* flag value */; 3169 digits[ndigits++] = (char)(48 + num); 3174 first = ndigits; 3178 if (ndigits > 0) 3180 while (ndigits > 5) *ascii++ = digits[--ndigits]; 3193 while (ndigits < i) *ascii++ = 48, --i; 3194 while (ndigits >= first) *ascii++ = digits[--ndigits];
|
/external/icu/icu4c/source/i18n/ |
D | plurrule.cpp | 1523 for (int ndigits=0; ndigits<=3; ndigits++) { in decimals() local 1524 double scaledN = n * p10[ndigits]; in decimals() 1526 return ndigits; in decimals()
|
/external/libchrome/base/third_party/nspr/ |
D | prtime.cc | 860 int ndigits = end - rest; in PR_ParseTimeString() local 861 while (ndigits++ < 6) in PR_ParseTimeString()
|
/external/llvm/lib/Support/ |
D | regcomp.c | 651 int ndigits = 0; in p_count() local 655 ndigits++; in p_count() 658 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR); in p_count()
|