HomeSort by relevance Sort by last modified time
    Searched refs:dtoaresult (Results 1 - 3 of 3) sorted by null

  /bionic/libc/stdio/
vfwprintf.cpp 80 char* dtoaresult = NULL; local
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;
674 if (dtoaresult) __freedtoa(dtoaresult); variable
    [all...]
vfprintf.cpp 80 char* dtoaresult = NULL; local
352 if (dtoaresult) __freedtoa(dtoaresult);
355 dtoaresult = cp = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend);
356 if (dtoaresult == NULL) {
362 dtoaresult = cp = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend);
363 if (dtoaresult == NULL) {
368 if (prec < 0) prec = dtoaend - dtoaresult;
389 if (dtoaresult) __freedtoa(dtoaresult);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 653 char *dtoaresult; /* buffer allocated by dtoa */ local
1066 dtoaresult =
1071 dtoaresult =
1075 if (dtoaresult == NULL)
1079 prec = dtoaend - dtoaresult;
1082 ndig = dtoaend - dtoaresult;
1086 result = convbuf = __mbsconv(dtoaresult, -1);
1089 result = convbuf = strdup(dtoaresult);
1093 __freedtoa(dtoaresult);
1115 dtoaresult =
    [all...]

Completed in 81 milliseconds