/external/qemu/distrib/libpng-1.2.19/ |
D | pngset.c | 73 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 …]
|
D | png.h | 918 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 …]
|
D | pngget.c | 410 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()
|
D | pngconf.h | 1193 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;
|
D | pngrutil.c | 581 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 …]
|
D | pngwutil.c | 691 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()
|
D | pngrtran.c | 655 png_fixed_point red, png_fixed_point green) in png_set_rgb_to_gray_fixed()
|
/external/libpng/ |
D | png.c | 859 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x, in png_check_cHRM_fixed() 860 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y, in png_check_cHRM_fixed() 861 png_fixed_point blue_x, png_fixed_point blue_y) in png_check_cHRM_fixed() 880 if (white_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 881 white_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 882 red_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 883 red_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 884 green_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 885 green_y > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() 886 blue_x > (png_fixed_point) PNG_UINT_31_MAX || in png_check_cHRM_fixed() [all …]
|
D | pngset.c | 59 info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5); in png_set_cHRM() 60 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5); in png_set_cHRM() 61 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5); in png_set_cHRM() 62 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5); in png_set_cHRM() 63 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5); in png_set_cHRM() 64 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5); in png_set_cHRM() 65 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5); in png_set_cHRM() 66 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5); in png_set_cHRM() 75 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x, in png_set_cHRM_fixed() 76 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y, in png_set_cHRM_fixed() [all …]
|
D | png.h | 1082 png_fixed_point int_gamma PNG_DEPSTRUCT; /* gamma of image, if (valid & PNG_INFO_gAMA) */ 1086 png_fixed_point int_x_white PNG_DEPSTRUCT; 1087 png_fixed_point int_y_white PNG_DEPSTRUCT; 1088 png_fixed_point int_x_red PNG_DEPSTRUCT; 1089 png_fixed_point int_y_red PNG_DEPSTRUCT; 1090 png_fixed_point int_x_green PNG_DEPSTRUCT; 1091 png_fixed_point int_y_green PNG_DEPSTRUCT; 1092 png_fixed_point int_x_blue PNG_DEPSTRUCT; 1093 png_fixed_point int_y_blue PNG_DEPSTRUCT; 1537 png_fixed_point int_gamma PNG_DEPSTRUCT; [all …]
|
D | pngget.c | 441 png_fixed_point *white_x, png_fixed_point *white_y, png_fixed_point *red_x, in png_get_cHRM_fixed() 442 png_fixed_point *red_y, png_fixed_point *green_x, png_fixed_point *green_y, in png_get_cHRM_fixed() 443 png_fixed_point *blue_x, png_fixed_point *blue_y) in png_get_cHRM_fixed() 491 png_fixed_point *int_file_gamma) in png_get_gAMA_fixed()
|
D | pngrutil.c | 697 png_fixed_point igamma; in png_handle_gAMA() 739 igamma = (png_fixed_point)png_get_uint_32(buf); in png_handle_gAMA() 848 png_fixed_point int_x_white, int_y_white, int_x_red, int_y_red, int_x_green, in png_handle_cHRM() 891 int_x_white = (png_fixed_point)uint_x; in png_handle_cHRM() 892 int_y_white = (png_fixed_point)uint_y; in png_handle_cHRM() 896 int_x_red = (png_fixed_point)uint_x; in png_handle_cHRM() 897 int_y_red = (png_fixed_point)uint_y; in png_handle_cHRM() 901 int_x_green = (png_fixed_point)uint_x; in png_handle_cHRM() 902 int_y_green = (png_fixed_point)uint_y; in png_handle_cHRM() 906 int_x_blue = (png_fixed_point)uint_x; in png_handle_cHRM() [all …]
|
D | pngconf.h | 1316 typedef png_int_32 png_fixed_point; typedef 1327 typedef png_fixed_point FAR * png_fixed_point_p; 1349 typedef png_fixed_point FAR * FAR * png_fixed_point_pp;
|
D | pngwutil.c | 730 png_write_gAMA_fixed(png_structp png_ptr, png_fixed_point file_gamma) in png_write_gAMA_fixed() 998 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, in png_write_cHRM() 1037 png_write_cHRM_fixed(png_structp png_ptr, png_fixed_point white_x, in png_write_cHRM_fixed() 1038 png_fixed_point white_y, png_fixed_point red_x, png_fixed_point red_y, in png_write_cHRM_fixed() 1039 png_fixed_point green_x, png_fixed_point green_y, png_fixed_point blue_x, in png_write_cHRM_fixed() 1040 png_fixed_point blue_y) in png_write_cHRM_fixed()
|
D | pngtest.c | 923 png_fixed_point white_x, white_y, red_x, red_y, green_x, green_y, blue_x, in test_one_file() 935 png_fixed_point gamma; in test_one_file()
|
D | pngrtran.c | 700 png_fixed_point red, png_fixed_point green) in png_set_rgb_to_gray_fixed()
|
D | CHANGES | 600 Added new type "png_fixed_point" for integers that hold float*100000 values 1247 Used proper type png_fixed_point, to avoid problems on 16-bit platforms,
|