Searched refs:png_muldiv (Results 1 – 12 of 12) sorted by relevance
/external/pdfium/samples/fx_lpng/lpng_v163/ |
D | fx_png.c | 985 (!png_muldiv(>est, colorspace->gamma, PNG_FP_1, gAMA) || 1137 if (!png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d)) return 1; 1138 if (!png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d)) return 1; 1144 if (!png_muldiv(&xy->greenx, XYZ->green_X, PNG_FP_1, d)) return 1; 1145 if (!png_muldiv(&xy->greeny, XYZ->green_Y, PNG_FP_1, d)) return 1; 1151 if (!png_muldiv(&xy->bluex, XYZ->blue_X, PNG_FP_1, d)) return 1; 1152 if (!png_muldiv(&xy->bluey, XYZ->blue_Y, PNG_FP_1, d)) return 1; 1160 if (!png_muldiv(&xy->whitex, whiteX, PNG_FP_1, dwhite)) return 1; 1161 if (!png_muldiv(&xy->whitey, whiteY, PNG_FP_1, dwhite)) return 1; 1364 if (!png_muldiv(&left, xy->greenx-xy->bluex, xy->redy - xy->bluey, 7)) [all …]
|
D | fx_pngget.c | 207 if (png_muldiv(&res, (png_int_32)info_ptr->y_pixels_per_unit, PNG_FP_1, in png_get_pixel_aspect_ratio_fixed() 308 if (ppm <= PNG_UINT_31_MAX && png_muldiv(&result, (png_int_32)ppm, 127, in ppi_from_ppm()
|
D | pngpriv.h | 1876 PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,
|
D | fx_pngread.c | 3618 if (png_muldiv(>est, output_gamma, png_ptr->colorspace.gamma, in png_image_read_direct()
|
D | fx_pngrtran.c | 1084 return !png_muldiv(>est, screen_gamma, file_gamma, PNG_FP_1) || in png_gamma_threshold()
|
/external/libpng/ |
D | png.c | 1049 (png_muldiv(>est, colorspace->gamma, PNG_FP_1, gAMA) == 0 || 1202 if (png_muldiv(&xy->redx, XYZ->red_X, PNG_FP_1, d) == 0) 1204 if (png_muldiv(&xy->redy, XYZ->red_Y, PNG_FP_1, d) == 0) 1211 if (png_muldiv(&xy->greenx, XYZ->green_X, PNG_FP_1, d) == 0) 1213 if (png_muldiv(&xy->greeny, XYZ->green_Y, PNG_FP_1, d) == 0) 1220 if (png_muldiv(&xy->bluex, XYZ->blue_X, PNG_FP_1, d) == 0) 1222 if (png_muldiv(&xy->bluey, XYZ->blue_Y, PNG_FP_1, d) == 0) 1231 if (png_muldiv(&xy->whitex, whiteX, PNG_FP_1, dwhite) == 0) 1233 if (png_muldiv(&xy->whitey, whiteY, PNG_FP_1, dwhite) == 0) 1438 if (png_muldiv(&left, xy->greenx-xy->bluex, xy->redy - xy->bluey, 7) == 0) [all …]
|
D | pngget.c | 222 if (png_muldiv(&res, (png_int_32)info_ptr->y_pixels_per_unit, PNG_FP_1, in png_get_pixel_aspect_ratio_fixed() 339 if (ppm <= PNG_UINT_31_MAX && png_muldiv(&result, (png_int_32)ppm, 127, in ppi_from_ppm()
|
D | pngpriv.h | 1793 PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,
|
D | pngread.c | 3926 if (png_muldiv(>est, output_gamma, png_ptr->colorspace.gamma, in png_image_read_direct()
|
D | pngrtran.c | 1089 return !png_muldiv(>est, screen_gamma, file_gamma, PNG_FP_1) || in png_gamma_threshold()
|
/external/skia/third_party/libpng/ |
D | pngprefix.h | 192 #define png_muldiv skia_png_muldiv macro
|
/external/libpng/contrib/libtests/ |
D | tarith.c | 694 if (png_muldiv(&result, a, times, div) != ok) in validation_muldiv()
|