Home
last modified time | relevance | path

Searched refs:png_fixed_point (Results 1 – 19 of 19) sorted by relevance

/external/qemu/distrib/libpng-1.2.19/
Dpngset.c73 info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5); in png_set_cHRM()
74 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5); in png_set_cHRM()
75 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5); in png_set_cHRM()
76 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5); in png_set_cHRM()
77 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5); in png_set_cHRM()
78 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5); in png_set_cHRM()
79 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5); in png_set_cHRM()
80 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5); in png_set_cHRM()
88 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x, in png_set_cHRM_fixed()
89 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y, in png_set_cHRM_fixed()
[all …]
Dpng.h918 png_fixed_point int_gamma; /* gamma of image, if (valid & PNG_INFO_gAMA) */
922 png_fixed_point int_x_white;
923 png_fixed_point int_y_white;
924 png_fixed_point int_x_red;
925 png_fixed_point int_y_red;
926 png_fixed_point int_x_green;
927 png_fixed_point int_y_green;
928 png_fixed_point int_x_blue;
929 png_fixed_point int_y_blue;
1352 png_fixed_point int_gamma;
[all …]
Dpngget.c410 png_fixed_point *white_x, png_fixed_point *white_y, png_fixed_point *red_x, in png_get_cHRM_fixed()
411 png_fixed_point *red_y, png_fixed_point *green_x, png_fixed_point *green_y, in png_get_cHRM_fixed()
412 png_fixed_point *blue_x, png_fixed_point *blue_y) in png_get_cHRM_fixed()
458 png_fixed_point *int_file_gamma) in png_get_gAMA_fixed()
Dpngconf.h1193 typedef png_int_32 png_fixed_point; typedef
1204 typedef png_fixed_point FAR * png_fixed_point_p;
1226 typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
Dpngrutil.c581 png_fixed_point igamma; in png_handle_gAMA()
623 igamma = (png_fixed_point)png_get_uint_32(buf); in png_handle_gAMA()
732 png_fixed_point int_x_white, int_y_white, int_x_red, int_y_red, int_x_green, in png_handle_cHRM()
782 int_x_white = (png_fixed_point)uint_x; in png_handle_cHRM()
783 int_y_white = (png_fixed_point)uint_y; in png_handle_cHRM()
797 int_x_red = (png_fixed_point)uint_x; in png_handle_cHRM()
798 int_y_red = (png_fixed_point)uint_y; in png_handle_cHRM()
812 int_x_green = (png_fixed_point)uint_x; in png_handle_cHRM()
813 int_y_green = (png_fixed_point)uint_y; in png_handle_cHRM()
827 int_x_blue = (png_fixed_point)uint_x; in png_handle_cHRM()
[all …]
Dpngwutil.c691 png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma) in png_write_gAMA_fixed()
1003 png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x, in png_write_cHRM_fixed()
1004 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y, in png_write_cHRM_fixed()
1005 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x, in png_write_cHRM_fixed()
1006 png_fixed_point blue_y) in png_write_cHRM_fixed()
Dpngrtran.c655 png_fixed_point red, png_fixed_point green) in png_set_rgb_to_gray_fixed()
/external/libpng/
Dpng.c857 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x, in png_check_cHRM_fixed()
858 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y, in png_check_cHRM_fixed()
859 png_fixed_point blue_x, png_fixed_point blue_y) in png_check_cHRM_fixed()
877 if (white_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
878 white_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
879 red_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
880 red_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
881 green_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
882 green_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
883 blue_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed()
[all …]
Dpng.h1005 png_fixed_point int_gamma; /* gamma of image, if (valid & PNG_INFO_gAMA) */
1009 png_fixed_point int_x_white;
1010 png_fixed_point int_y_white;
1011 png_fixed_point int_x_red;
1012 png_fixed_point int_y_red;
1013 png_fixed_point int_x_green;
1014 png_fixed_point int_y_green;
1015 png_fixed_point int_x_blue;
1016 png_fixed_point int_y_blue;
1443 png_fixed_point int_gamma;
[all …]
Dpngset.c56 info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5); in png_set_cHRM()
57 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5); in png_set_cHRM()
58 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5); in png_set_cHRM()
59 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5); in png_set_cHRM()
60 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5); in png_set_cHRM()
61 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5); in png_set_cHRM()
62 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5); in png_set_cHRM()
63 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5); in png_set_cHRM()
72 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x, in png_set_cHRM_fixed()
73 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y, in png_set_cHRM_fixed()
[all …]
Dpngget.c435 png_fixed_point *white_x, png_fixed_point *white_y, png_fixed_point *red_x, in png_get_cHRM_fixed()
436 png_fixed_point *red_y, png_fixed_point *green_x, png_fixed_point *green_y, in png_get_cHRM_fixed()
437 png_fixed_point *blue_x, png_fixed_point *blue_y) in png_get_cHRM_fixed()
483 png_fixed_point *int_file_gamma) in png_get_gAMA_fixed()
Dpngconf.h1220 typedef png_int_32 png_fixed_point; typedef
1231 typedef png_fixed_point FAR * png_fixed_point_p;
1253 typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
Dpngrutil.c638 png_fixed_point igamma; in png_handle_gAMA()
680 igamma = (png_fixed_point)png_get_uint_32(buf); in png_handle_gAMA()
789 png_fixed_point int_x_white, int_y_white, int_x_red, int_y_red, int_x_green, in png_handle_cHRM()
832 int_x_white = (png_fixed_point)uint_x; in png_handle_cHRM()
833 int_y_white = (png_fixed_point)uint_y; in png_handle_cHRM()
837 int_x_red = (png_fixed_point)uint_x; in png_handle_cHRM()
838 int_y_red = (png_fixed_point)uint_y; in png_handle_cHRM()
842 int_x_green = (png_fixed_point)uint_x; in png_handle_cHRM()
843 int_y_green = (png_fixed_point)uint_y; in png_handle_cHRM()
847 int_x_blue = (png_fixed_point)uint_x; in png_handle_cHRM()
[all …]
Dpngwutil.c718 png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma) in png_write_gAMA_fixed()
974 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, in png_write_cHRM()
1013 png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x, in png_write_cHRM_fixed()
1014 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y, in png_write_cHRM_fixed()
1015 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x, in png_write_cHRM_fixed()
1016 png_fixed_point blue_y) in png_write_cHRM_fixed()
Dpngtest.c912 png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x, in test_one_file()
924 png_fixed_point gamma; in test_one_file()
Dpngrtran.c668 png_fixed_point red, png_fixed_point green) in png_set_rgb_to_gray_fixed()
DCHANGES599 Added new type "png_fixed_point" for integers that hold float*100000 values
1246 Used proper type png_fixed_point, to avoid problems on 16-bit platforms,
/external/tesseract/include/
Dpng.h990 png_fixed_point int_gamma; /* gamma of image, if (valid & PNG_INFO_gAMA) */
994 png_fixed_point int_x_white;
995 png_fixed_point int_y_white;
996 png_fixed_point int_x_red;
997 png_fixed_point int_y_red;
998 png_fixed_point int_x_green;
999 png_fixed_point int_y_green;
1000 png_fixed_point int_x_blue;
1001 png_fixed_point int_y_blue;
1428 png_fixed_point int_gamma;
[all …]
Dpngconf.h1208 typedef png_int_32 png_fixed_point; typedef
1219 typedef png_fixed_point FAR * png_fixed_point_p;
1241 typedef png_fixed_point FAR * FAR * png_fixed_point_pp;