Home | History | Annotate | Download | only in libpng-1.2.19

Lines Matching full:100000

73    info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
74 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
75 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5);
76 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5);
77 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
78 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
79 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5);
80 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5);
115 if (white_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
116 white_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
117 red_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
118 red_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
119 green_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
120 green_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
121 blue_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
122 blue_y > (png_fixed_point) PNG_UINT_31_MAX/100000L)
138 info_ptr->x_white = (float)(white_x/100000.);
139 info_ptr->y_white = (float)(white_y/100000.);
140 info_ptr->x_red = (float)( red_x/100000.);
141 info_ptr->y_red = (float)( red_y/100000.);
142 info_ptr->x_green = (float)(green_x/100000.);
143 info_ptr->y_green = (float)(green_y/100000.);
144 info_ptr->x_blue = (float)( blue_x/100000.);
145 info_ptr->y_blue = (float)( blue_y/100000.);
172 info_ptr->int_gamma = (int)(gamma*100000.+.5);
205 info_ptr->gamma = (float)(gamma/100000.);