Home | History | Annotate | Download | only in stdio

Lines Matching defs:dtoaresult

657 	char *dtoaresult;	/* buffer allocated by dtoa */
1071 dtoaresult =
1078 dtoaresult =
1082 if (dtoaresult == NULL)
1087 dtoaend - dtoaresult));
1088 prec = (int)(dtoaend - dtoaresult);
1092 _DIAGASSERT(__type_fit(int, dtoaend - dtoaresult));
1093 ndig = (int)(dtoaend - dtoaresult);
1097 result = convbuf = __mbsconv(dtoaresult, -1, loc);
1100 result = convbuf = strdup(dtoaresult);
1104 __freedtoa(dtoaresult);
1129 dtoaresult =
1136 dtoaresult =
1142 if (dtoaresult == NULL)
1144 _DIAGASSERT(__type_fit(int, dtoaend - dtoaresult));
1145 ndig = (int)(dtoaend - dtoaresult);
1149 result = convbuf = __mbsconv(dtoaresult, -1, loc);
1152 result = convbuf = strdup(dtoaresult);
1156 __freedtoa(dtoaresult);