Home
last modified time | relevance | path

Searched refs:rve (Results 1 – 12 of 12) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dgdtoa.h122 int *sign, char **rve));
124 int *sign, char **rve));
126 int *sign, char **rve));
128 int *decpt, int *sign, char **rve));
131 int mode, int ndigits, int *decpt, char **rve));
Dldtoa.c56 ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, char **rve) in ldtoa() argument
106 ret = gdtoa(&fpi, be, (ULong *)bits, &kind, mode, ndigits, decpt, rve); in ldtoa()
111 return dtoa((double)*ld, mode, ndigits, decpt, sign, rve); in ldtoa()
Dstrtodg.c314 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; in strtodg() local
605 rvb = d2b(dval(rv), &rve, &rvbits); /* rv = rvb * 2^rve */ in strtodg()
608 rve += e2; in strtodg()
612 rve += j; in strtodg()
615 e2 = rve + rvbits - nbits; in strtodg()
618 rve1 = rve + rvbits - nbits; in strtodg()
621 j = rve - emin; in strtodg()
642 rve = rve1 = emin; in strtodg()
663 bbe = rve + bb0; in strtodg()
756 rve = rve1 - 1; in strtodg()
[all …]
Ddmisc.c69 nrv_alloc(s, rve, n) CONST char *s; char **rve; size_t n; in nrv_alloc() argument
71 nrv_alloc(CONST char *s, char **rve, size_t n)
81 if (rve)
82 *rve = t;
Ddtoa.c87 (d, mode, ndigits, decpt, sign, rve) in dtoa() argument
88 double d; int mode, ndigits, *decpt, *sign; char **rve; in dtoa()
90 (double d, int mode, int ndigits, int *decpt, int *sign, char **rve)
173 return nrv_alloc("Infinity", rve, 8);
175 return nrv_alloc("NaN", rve, 3);
183 return nrv_alloc("0", rve, 1);
818 if (rve)
819 *rve = s;
Dgdtoa.c131 (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve) in gdtoa() argument
195 return nrv_alloc("Infinity", rve, 8); in gdtoa()
198 return nrv_alloc("NaN", rve, 3); in gdtoa()
215 return nrv_alloc("0", rve, 1); in gdtoa()
823 if (rve) in gdtoa()
824 *rve = s; in gdtoa()
Dgdtoaimp.h563 int *decpt, int *sign, char **rve);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Ddtoa.h8 int *decpt, int *sign, char **rve);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Ddtoa.h8 int *decpt, int *sign, char **rve);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Ddtoa.c2278 nrv_alloc(char *s, char **rve, int n) in nrv_alloc() argument
2287 if (rve) in nrv_alloc()
2288 *rve = t; in nrv_alloc()
2346 int *decpt, int *sign, char **rve) in _Py_dg_dtoa() argument
2413 return nrv_alloc("Infinity", rve, 8); in _Py_dg_dtoa()
2414 return nrv_alloc("NaN", rve, 3); in _Py_dg_dtoa()
2418 return nrv_alloc("0", rve, 1); in _Py_dg_dtoa()
2929 if (rve) in _Py_dg_dtoa()
2930 *rve = s; in _Py_dg_dtoa()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Ddtoa.c2247 nrv_alloc(char *s, char **rve, int n) in nrv_alloc() argument
2256 if (rve) in nrv_alloc()
2257 *rve = t; in nrv_alloc()
2315 int *decpt, int *sign, char **rve) in _Py_dg_dtoa() argument
2382 return nrv_alloc("Infinity", rve, 8); in _Py_dg_dtoa()
2383 return nrv_alloc("NaN", rve, 3); in _Py_dg_dtoa()
2387 return nrv_alloc("0", rve, 1); in _Py_dg_dtoa()
2898 if (rve) in _Py_dg_dtoa()
2899 *rve = s; in _Py_dg_dtoa()
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dvfwprintf.c1976 char *digits, *bp, *rve; in cvt() local
1995 digits = __dtoa(value, mode, ndigits, decpt, &dsgn, &rve); in cvt()
2010 while (rve < bp) in cvt()
2011 *rve++ = '0'; in cvt()
2013 *length = rve - digits; in cvt()