Searched refs:rve (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10/Libc-1044.1.2/stdlib/OpenBSD/
H A Decvt.c36 char *p, *rve, c; local
60 if ((rve = s = (char *)malloc(siz)) == NULL)
62 *rve++ = '0';
63 *rve = '\0';
65 p = __dtoa(value, fmode + 2, ndigit, decpt, sign, &rve);
75 /* Make a local copy and adjust rve to be in terms of s */
83 rve = s + (rve - p);
89 siz -= rve - s;
91 *rve
[all...]
/macosx-10.10/Libc-1044.1.2/gdtoa/FreeBSD/
H A D_hdtoa.c120 * Outputs: decpt, sign, rve
124 char **rve)
141 return (nrv_alloc("0", rve, 1));
153 return (nrv_alloc(INFSTR, rve, sizeof(INFSTR) - 1));
156 return (nrv_alloc(NANSTR, rve, sizeof(NANSTR) - 1));
210 if (rve != NULL)
211 *rve = s;
226 char **rve)
243 return (nrv_alloc("0", rve, 1));
250 return (nrv_alloc(INFSTR, rve, sizeo
123 __hdtoa(double d, const char *xdigs, int ndigits, int *decpt, int *sign, char **rve) argument
225 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, char **rve) argument
319 __hldtoa(long double e, const char *xdigs, int ndigits, int *decpt, int *sign, char **rve) argument
[all...]
H A D_ldtoa.c47 char **rve)
51 char * ret = __dtoa((double)*ld, mode, ndigits, decpt, sign, rve);
113 ret = gdtoa(&fpi, be, vbits, &kind, mode, ndigits, decpt, rve);
46 __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, char **rve) argument
H A Dgdtoa-dmisc.c63 nrv_alloc(s, rve, n) char *s, **rve; int n;
65 nrv_alloc(char *s, char **rve, int n)
73 if (rve)
74 *rve = t;
H A Dgdtoa-strtodg.c345 int j, k, nbits, nd, nd0, nf, nz, nz0, rd, rvbits, rve, rve1, sign; local
689 rvb = d2b(dval(&rv), &rve, &rvbits); /* rv = rvb * 2^rve */
690 rve += e2;
694 rve += j;
697 e2 = rve + rvbits - nbits;
700 rve1 = rve + rvbits - nbits;
703 j = rve - emin;
728 rve = rve1 = emin;
745 bbe = rve
[all...]
H A Dgdtoa.h107 int *sign, char **rve));
109 int mode, int ndigits, int *decpt, char **rve));
H A Dgdtoa-dtoa.c78 (d0, mode, ndigits, decpt, sign, rve)
79 double d0; int mode, ndigits, *decpt, *sign; char **rve;
81 (double d0, int mode, int ndigits, int *decpt, int *sign, char **rve)
86 the returned string. If not null, *rve is set to point
173 return nrv_alloc("Infinity", rve, 8);
175 return nrv_alloc("NaN", rve, 3);
183 return nrv_alloc("0", rve, 1);
763 if (rve)
764 *rve = s;
H A Dgdtoa-gdtoa.c114 (fpi, be, bits, kindp, mode, ndigits, decpt, rve)
116 int *kindp, mode, ndigits, *decpt; char **rve;
118 (FPI *fpi, int be, ULong *bits, int *kindp, int mode, int ndigits, int *decpt, char **rve)
123 the returned string. If not null, *rve is set to point
180 return nrv_alloc("Infinity", rve, 8);
183 return nrv_alloc("NaN", rve, 3);
198 return nrv_alloc("0", rve, 1);
741 if (rve)
742 *rve = s;
H A Dgdtoaimp.h591 int *decpt, int *sign, char **rve));
/macosx-10.10/ruby-106/ruby/
H A Dvsnprintf.c1228 char *digits, *bp, *rve; local
1246 ndigits, decpt, &dsgn, &rve);
1249 digits = BSD__dtoa(value, mode, ndigits, decpt, &dsgn, &rve);
1251 buf[0] = 0; /* rve - digits may be 0 */
1252 memcpy(buf, digits, rve - digits);
1254 rve = buf + (rve - digits);
1263 while (rve < bp)
1264 *rve++ = '0';
1266 *length = (int)(rve
[all...]
H A Dutil.c3027 nrv_alloc(const char *s, char **rve, size_t n)
3033 if (rve)
3034 *rve = t;
3038 #define rv_strdup(s, rve) nrv_alloc((s), (rve), strlen(s)+1)
3093 ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve)
3097 the returned string. If not null, *rve is set to point
3176 return rv_strdup(INFSTR, rve);
3178 return rv_strdup(NANSTR, rve);
3186 return rv_strdup(ZEROSTR, rve);
[all...]
H A Dmarshal.c357 char *ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve);
H A Dnumeric.c662 char *ruby_dtoa(double d_, int mode, int ndigits, int *decpt, int *sign, char **rve);
/macosx-10.10/Security-57031.1.35/Security/utilities/src/
H A Dder_date.c273 extern char *__dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
/macosx-10.10/Security-57031.1.35/Security/utilities/utilities/
H A Dder_date.c273 extern char *__dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);

Completed in 143 milliseconds