Searched refs:rve (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_3/Zend/ |
| H A D | zend_strtod.c | 535 static char * nrv_alloc(char *s, char **rve, int n) argument 543 if (rve) { 544 *rve = t; 1443 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve) argument 1447 the returned string. If not null, *rve is set to point 1513 return nrv_alloc("Infinity", rve, 8); 1515 return nrv_alloc("NaN", rve, 3); 1523 return nrv_alloc("0", rve, 1); 2035 if (rve) 2036 *rve [all...] |
| H A D | zend_strtod.h | 29 ZEND_API char * zend_dtoa(double _d, int mode, int ndigits, int *decpt, int *sign, char **rve);
|
| /PHP_5_3/main/ |
| H A D | snprintf.c | 69 char *p, *rve, c; local 82 if ((rve = s = (char *)malloc(ndigit?siz:2)) == NULL) { 85 *rve++ = '0'; 86 *rve = '\0'; 91 p = zend_dtoa(value, fmode + 2, ndigit, decpt, sign, &rve); 99 /* Make a local copy and adjust rve to be in terms of s */ 108 rve = s + (rve - p); 114 siz -= rve - s; 116 *rve [all...] |
Completed in 6 milliseconds