Lines Matching refs:outbuf
2811 char *outbuf = outbuf_sml; in __ldtoa() local
2862 outbuf = (char *) malloc (ndec + MAX_EXP_DIGITS + 10); in __ldtoa()
2863 if (!outbuf) in __ldtoa()
2866 outbuf = outbuf_sml; in __ldtoa()
2870 etoasc (e, outbuf, (int) ndec, ndigits, mode, ldp); in __ldtoa()
2871 s = outbuf; in __ldtoa()
2882 s = outbuf; in __ldtoa()
2903 while (*s != 'E' && s > outbuf) in __ldtoa()
2910 p = outbuf; in __ldtoa()
2915 s = outbuf; in __ldtoa()
2928 while (*(s - 1) == '0' && ((s - outbuf) > k)) in __ldtoa()
2935 s = outbuf; in __ldtoa()
2952 strcpy (outstr, outbuf); in __ldtoa()
2955 *rve = outstr + (s - outbuf); in __ldtoa()
2957 if (outbuf != outbuf_sml) in __ldtoa()
2958 free (outbuf); in __ldtoa()