HomeSort by relevance Sort by last modified time
    Searched defs:dtoa (Results 1 - 3 of 3) sorted by null

  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
dtoa.c 34 /* dtoa for IEEE arithmetic (dmg): convert double to ASCII string.
76 dtoa function
gdtoaimp.h 29 /* This is a variation on dtoa.c that converts arbitary binary
42 * before invoking strtod or dtoa. If the machine uses (the equivalent
92 * computation of dtoa and gdtoa. This will cause modes 4 and 5 to be
164 * dtoa. You may do so whether or not MULTIPLE_THREADS is #defined.
168 * dtoa.c).
492 #define dtoa __dtoa macro
589 extern char *dtoa ANSI((double d, int mode, int ndigits,
  /external/chromium_org/third_party/WebKit/Source/wtf/
dtoa.cpp 26 * before invoking strtod or dtoa. If the machine uses (the equivalent
36 #include "dtoa.h"
100 // 64-bit emulation provided by the compiler is likely to be slower than dtoa own code on 32-bit hardware.
697 /* dtoa for IEEE arithmetic (dmg): convert double to ASCII string.
733 void dtoa(DtoaBuffer result, double dd, int ndigits, bool& signOut, int& exponentOut, unsigned& precisionOut) function in namespace:WTF
1207 void dtoa(DtoaBuffer result, double dd, bool& sign, int& exponent, unsigned& precision) function
1210 dtoa<true, false, false, true>(result, dd, 0, sign, exponent, precision);
1216 dtoa<false, true, false, false>(result, dd, ndigits, sign, exponent, precision);
1222 dtoa<false, false, true, false>(result, dd, ndigits, sign, exponent, precision);
    [all...]

Completed in 176 milliseconds