Lines Matching refs:ascii
2903 png_ascii_from_fp(png_const_structrp png_ptr, png_charp ascii, size_t size,
2924 *ascii++ = 45; /* '-' PLUS 1 TOTAL 1 */
3032 int ch = *--ascii;
3039 ch = *--ascii; ++size;
3063 int ch = *--ascii;
3106 *ascii++ = 46; --size;
3111 *ascii++ = 48; --czero;
3118 *ascii++ = 46; --size; /* counted above */
3123 *ascii++ = (char)(48 + (int)d); ++cdigits;
3146 while (exp_b10-- > 0) *ascii++ = 48;
3148 *ascii = 0;
3164 *ascii++ = 69; --size; /* 'E': PLUS 1 TOTAL 2+precision */
3175 *ascii++ = 45; --size; /* '-': PLUS 1 TOTAL 3+precision */
3196 while (cdigits > 0) *ascii++ = exponent[--cdigits];
3198 *ascii = 0;
3206 *ascii++ = 48; /* '0' */
3207 *ascii = 0;
3212 *ascii++ = 105; /* 'i' */
3213 *ascii++ = 110; /* 'n' */
3214 *ascii++ = 102; /* 'f' */
3215 *ascii = 0;
3233 png_ascii_from_fixed(png_const_structrp png_ptr, png_charp ascii,
3246 *ascii++ = 45; num = (png_uint_32)(-fp);
3272 while (ndigits > 5) *ascii++ = digits[--ndigits];
3280 *ascii++ = 46; /* decimal point */
3287 *ascii++ = 48; --i;
3289 while (ndigits >= first) *ascii++ = digits[--ndigits];
3294 *ascii++ = 48;
3297 *ascii = 0;