Home
last modified time | relevance | path

Searched refs:fcvt_buf (Results 1 – 4 of 4) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Decvtbuf.c182 char *fcvt_buf) in fcvtbuf() argument
189 if (fcvt_buf == NULL) in fcvtbuf()
196 if ((fcvt_buf = (char *) realloc (_cvtbuf, in fcvtbuf()
200 _cvtbuf = fcvt_buf; in fcvtbuf()
203 fcvt_buf = _cvtbuf ; in fcvtbuf()
206 save = fcvt_buf; in fcvtbuf()
214 strcpy(fcvt_buf, p); in fcvtbuf()
215 return fcvt_buf; in fcvtbuf()
224 *fcvt_buf++ = *p++; in fcvtbuf()
230 *fcvt_buf++ = '0'; in fcvtbuf()
[all …]
/picolibc-latest/newlib/libc/tinystdio/
Dfcvt.c46 static NEWLIB_THREAD_LOCAL char fcvt_buf[FCVT_MAXDIG]; variable
54 if (fcvt_r(invalue, ndigit, decpt, sign, fcvt_buf, sizeof(fcvt_buf)) < 0) in fcvt()
56 return fcvt_buf; in fcvt()
Dfcvtl.c44 static NEWLIB_THREAD_LOCAL char fcvt_buf[FCVTL_MAXDIG]; variable
52 if (fcvtl_r(invalue, ndigit, decpt, sign, fcvt_buf, sizeof(fcvt_buf)) < 0) in fcvtl()
54 return fcvt_buf; in fcvtl()
/picolibc-latest/newlib/libm/test/
Ddcvt.c547 char *fcvt_buf) in fcvtbuf() argument
550 in.buffer = fcvt_buf; in fcvtbuf()
555 return print_nan(fcvt_buf, invalue, ndigit); in fcvtbuf()
576 char *fcvt_buf) in ecvtbuf() argument
579 in.buffer = fcvt_buf; in ecvtbuf()
583 return print_nan(fcvt_buf, invalue, ndigit); in ecvtbuf()