Home
last modified time | relevance | path

Searched refs:png_muldiv (Results 1 – 12 of 12) sorted by relevance

/external/pdfium/samples/fx_lpng/lpng_v163/
Dfx_png.c985 (!png_muldiv(&gtest, 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 …]
Dfx_pngget.c207 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()
Dpngpriv.h1876 PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,
Dfx_pngread.c3618 if (png_muldiv(&gtest, output_gamma, png_ptr->colorspace.gamma, in png_image_read_direct()
Dfx_pngrtran.c1084 return !png_muldiv(&gtest, screen_gamma, file_gamma, PNG_FP_1) || in png_gamma_threshold()
/external/libpng/
Dpng.c1049 (png_muldiv(&gtest, 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 …]
Dpngget.c222 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()
Dpngpriv.h1793 PNG_INTERNAL_FUNCTION(int,png_muldiv,(png_fixed_point_p res, png_fixed_point a,
Dpngread.c3926 if (png_muldiv(&gtest, output_gamma, png_ptr->colorspace.gamma, in png_image_read_direct()
Dpngrtran.c1089 return !png_muldiv(&gtest, screen_gamma, file_gamma, PNG_FP_1) || in png_gamma_threshold()
/external/skia/third_party/libpng/
Dpngprefix.h192 #define png_muldiv skia_png_muldiv macro
/external/libpng/contrib/libtests/
Dtarith.c694 if (png_muldiv(&result, a, times, div) != ok) in validation_muldiv()