Home | History | Annotate | Download | only in libpng

Lines Matching defs:out

286          /* Temporarily fake out the longjmp information until we have
343 /* Use the internal API that does not (or at least should not) error out, so
696 png_convert_to_rfc1123_buffer(char out[29], png_const_timep ptime)
702 if (out == NULL)
716 # define APPEND_STRING(string) pos = png_safecat(out, 29, pos, (string))
719 # define APPEND(ch) if (pos < 28) out[pos++] = (ch)
795 * used with your application, print out PNG_LIBPNG_VER_STRING, which
1096 errmsg = "gamma value out of range";
1644 /* The consistency check is performed on the chromaticities; this factors out
2333 "out-of-date sRGB profile with no signature",
2890 * works even if 10^exp_b10 is out of range because of the
3650 * To deal with this the following exp() function works out the exponent of the
3782 * 16-bit platforms, it is assigned a value which might be out of
3962 * pow(out,g) is an *input* value. 'last' is the last input value set.
3981 png_uint_16 out = (png_uint_16)(i * 257U); /* 16-bit output value */
3984 png_uint_32 bound = png_gamma_16bit_correct(out+128U, gamma_val);
3991 table[last & (0xffU >> shift)][last >> (8U - shift)] = out;