• Home
  • Raw
  • Download

Lines Matching refs:png_fixed_point

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()
90 png_fixed_point blue_x, png_fixed_point blue_y) in png_set_cHRM_fixed()
115 if (white_x > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
116 white_y > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
117 red_x > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
118 red_y > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
119 green_x > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
120 green_y > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
121 blue_x > (png_fixed_point) PNG_UINT_31_MAX/100000L || in png_set_cHRM_fixed()
122 blue_y > (png_fixed_point) PNG_UINT_31_MAX/100000L) in png_set_cHRM_fixed()
180 png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point in png_set_gAMA_fixed()
183 png_fixed_point gamma; in png_set_gAMA_fixed()
189 if (int_gamma > (png_fixed_point) PNG_UINT_31_MAX) in png_set_gAMA_fixed()
612 png_fixed_point int_file_gamma; in png_set_sRGB_gAMA_and_cHRM()
620 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x, in png_set_sRGB_gAMA_and_cHRM()