Searched defs:ndigits (Results 1 - 6 of 6) sorted by relevance

/external/openssh/openbsd-compat/
H A Dfmt_scaled.c80 unsigned int i, ndigits = 0, fract_digits = 0; local
130 if (++ndigits >= MAX_DIGITS) {
/external/stlport/src/
H A Dnum_get_float.cpp87 char ndigits[11] = "0123456789"; local
92 ct.widen(ndigits + 0, ndigits + 10, digits);
/external/llvm/lib/Support/
H A Dregcomp.c615 int ndigits = 0; local
619 ndigits++;
622 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
/external/icu4c/common/
H A Dunames.c474 int ndigits, i; local
481 for (cp = code, ndigits = 0; cp; ++ndigits, cp >>= 4)
483 if (ndigits < 4)
484 ndigits = 4;
485 for (cp = code, i = ndigits; (cp || i > 0) && bufferLength; cp >>= 4, bufferLength--) {
489 buffer += ndigits;
490 length += ndigits;
/external/webkit/Source/JavaScriptCore/wtf/
H A Ddtoa.cpp1313 void dtoa(DtoaBuffer result, double dd, int ndigits, bool& signOut, int& exponentOut, unsigned& precisionOut) argument
1427 ndigits = 0;
1430 if (ndigits <= 0)
1431 ndigits = 1;
1432 ilim = ilim1 = i = ndigits;
1435 i = ndigits + k + 1;
1547 if (ndigits < 0 && ilim <= 0) {
1793 void dtoaRoundSF(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision) argument
1796 dtoa<false, true, false, false>(result, dd, ndigits, sign, exponent, precision);
1799 void dtoaRoundDP(DtoaBuffer result, double dd, int ndigits, boo argument
[all...]
/external/chromium/base/third_party/dmg_fp/
H A Ddtoa.cc520 char *dtoa(double d, int mode, int ndigits,
3524 (dd, mode, ndigits, decpt, sign, rve)
3525 double dd; int mode, ndigits, *decpt, *sign; char **rve; member in namespace:dmg_fp
3527 (double dd, int mode, int ndigits, int *decpt, int *sign, char **rve)
3530 /* Arguments ndigits, decpt, sign are similar to those
3542 2 ==> max(1,ndigits) significant digits. This gives a
3545 3 ==> through ndigits past the decimal point. This
3548 ndigits can be negative.
3754 ndigits = 0;
3760 if (ndigits <
[all...]

Completed in 91 milliseconds