Searched refs:ndigits (Results 1 - 16 of 16) sorted by relevance

/external/chromium/base/third_party/dmg_fp/
H A Ddmg_fp.h18 char* dtoa(double d, int mode, int ndigits,
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...]
/external/chromium_org/base/third_party/dmg_fp/
H A Ddmg_fp.h18 char* dtoa(double d, int mode, int ndigits,
H A Ddtoa.cc526 char *dtoa(double d, int mode, int ndigits,
3530 (dd, mode, ndigits, decpt, sign, rve)
3531 double dd; int mode, ndigits, *decpt, *sign; char **rve; member in namespace:dmg_fp
3533 (double dd, int mode, int ndigits, int *decpt, int *sign, char **rve)
3536 /* Arguments ndigits, decpt, sign are similar to those
3548 2 ==> max(1,ndigits) significant digits. This gives a
3551 3 ==> through ndigits past the decimal point. This
3554 ndigits can be negative.
3760 ndigits = 0;
3766 if (ndigits <
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprdtoa.h82 NSPR_API(PRStatus) PR_dtoa(PRFloat64 d, PRIntn mode, PRIntn ndigits,
/external/chromium_org/third_party/WebKit/Source/wtf/
H A Ddtoa.h38 WTF_EXPORT void dtoaRoundSF(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision);
39 WTF_EXPORT void dtoaRoundDP(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision);
H A Ddtoa.cpp740 void dtoa(DtoaBuffer result, double dd, int ndigits, bool& signOut, int& exponentOut, unsigned& precisionOut) argument
854 ndigits = 0;
857 if (ndigits <= 0)
858 ndigits = 1;
859 ilim = ilim1 = i = ndigits;
862 i = ndigits + k + 1;
974 if (ndigits < 0 && ilim <= 0) {
1220 void dtoaRoundSF(DtoaBuffer result, double dd, int ndigits, bool& sign, int& exponent, unsigned& precision) argument
1223 dtoa<false, true, false, false>(result, dd, ndigits, sign, exponent, precision);
1226 void dtoaRoundDP(DtoaBuffer result, double dd, int ndigits, boo argument
[all...]
/external/bison/lib/
H A Dvasnprintf.c3658 size_t ndigits; local
3667 ndigits = strlen (digits);
3669 if (ndigits > precision)
3672 --ndigits;
3673 *p++ = digits[ndigits];
3675 while (ndigits > precision);
3678 /* Here ndigits <= precision. */
3682 for (; precision > ndigits; precision--)
3684 while (ndigits > 0)
3686 --ndigits;
3713 size_t ndigits; local
3824 size_t ndigits = precision; local
3848 size_t ndigits; local
4123 size_t ndigits; local
4175 size_t ndigits; local
4298 size_t ndigits = precision; local
4322 size_t ndigits; local
[all...]
/external/openssh/openbsd-compat/
H A Dfmt_scaled.c80 unsigned int i, ndigits = 0, fract_digits = 0; local
130 if (++ndigits >= MAX_DIGITS) {
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dprinting.py137 ndigits = 1
139 ndigits = int(math.log10(len(num))) + 1
140 return ndigits
/external/stlport/src/
H A Dnum_get_float.cpp87 char ndigits[11] = "0123456789"; local
92 ct.widen(ndigits + 0, ndigits + 10, digits);
/external/chromium_org/third_party/icu/source/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/icu4c/common/
H A Dunames.cpp476 int ndigits, i; local
483 for (cp = code, ndigits = 0; cp; ++ndigits, cp >>= 4)
485 if (ndigits < 4)
486 ndigits = 4;
487 for (cp = code, i = ndigits; (cp || i > 0) && bufferLength; cp >>= 4, bufferLength--) {
491 buffer += ndigits;
492 length += ndigits;
/external/llvm/lib/Support/
H A Dregcomp.c643 int ndigits = 0; local
647 ndigits++;
650 REQUIRE(ndigits > 0 && count <= DUPMAX, REG_BADBR);
/external/qemu/
H A Dsockets.c333 format_hex( char* buf, char* end, unsigned val, int ndigits )
335 int shift = 4*ndigits;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 446 milliseconds