Home | History | Annotate | Download | only in stdio

Lines Matching refs:dtoaresult

80   char* dtoaresult = NULL;
330 if (dtoaresult) __freedtoa(dtoaresult);
333 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend);
334 if (dtoaresult == NULL) {
340 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend);
341 if (dtoaresult == NULL) {
346 if (prec < 0) prec = dtoaend - dtoaresult;
349 cp = convbuf = helpers::mbsconv(dtoaresult, -1);
351 ndig = dtoaend - dtoaresult;
371 if (dtoaresult) __freedtoa(dtoaresult);
374 dtoaresult = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
375 if (dtoaresult == NULL) {
381 dtoaresult = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend);
382 if (dtoaresult == NULL) {
389 cp = convbuf = helpers::mbsconv(dtoaresult, -1);
391 ndig = dtoaend - dtoaresult;
674 if (dtoaresult) __freedtoa(dtoaresult);