Home | History | Annotate | Download | only in libpng

Lines Matching refs:times

3168 png_muldiv(png_fixed_point_p res, png_fixed_point a, png_int_32 times,
3171 /* Return a * times / divisor, rounded. */
3174 if (a == 0 || times == 0)
3183 r *= times;
3203 if (times < 0)
3204 negative = !negative, T = -times;
3206 T = times;
3218 /* Can't overflow because the a*times bit is only 30
3287 png_muldiv_warn(png_const_structrp png_ptr, png_fixed_point a, png_int_32 times,
3292 if (png_muldiv(&result, a, times, divisor))
3971 * multiple times is a performance hit - it's harmless but the ability to call
3972 * png_read_update_info() multiple times is new in 1.5.6 so it seems sensible