• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/jpeg-6b/

Lines Matching defs:cquantize

227   my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
230 register hist3d histogram = cquantize->histogram;
317 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
318 hist3d histogram = cquantize->histogram;
504 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
505 hist3d histogram = cquantize->histogram;
860 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
861 hist3d histogram = cquantize->histogram;
919 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
920 hist3d histogram = cquantize->histogram;
953 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
954 hist3d histogram = cquantize->histogram;
968 int *error_limit = cquantize->error_limiter;
977 if (cquantize->on_odd_row) {
983 errorptr = cquantize->fserrors + (width+1)*3; /* => entry after last column */
984 cquantize->on_odd_row = FALSE; /* flip for next time */
989 errorptr = cquantize->fserrors; /* => entry before first real column */
990 cquantize->on_odd_row = TRUE; /* flip for next time */
1111 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
1118 cquantize->error_limiter = table;
1145 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
1148 cinfo->colormap = cquantize->sv_colormap;
1149 select_colors(cinfo, cquantize->desired);
1151 cquantize->needs_zeroed = TRUE;
1169 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
1170 hist3d histogram = cquantize->histogram;
1180 cquantize->pub.color_quantize = prescan_quantize;
1181 cquantize->pub.finish_pass = finish_pass1;
1182 cquantize->needs_zeroed = TRUE; /* Always zero histogram */
1186 cquantize->pub.color_quantize = pass2_fs_dither;
1188 cquantize->pub.color_quantize = pass2_no_dither;
1189 cquantize->pub.finish_pass = finish_pass2;
1202 if (cquantize->fserrors == NULL)
1203 cquantize->fserrors = (FSERRPTR) (*cinfo->mem->alloc_large)
1206 jzero_far((void FAR *) cquantize->fserrors, arraysize);
1208 if (cquantize->error_limiter == NULL)
1210 cquantize->on_odd_row = FALSE;
1215 if (cquantize->needs_zeroed) {
1220 cquantize->needs_zeroed = FALSE;
1232 my_cquantize_ptr cquantize = (my_cquantize_ptr) cinfo->cquantize;
1235 cquantize->needs_zeroed = TRUE;
1246 my_cquantize_ptr cquantize;
1249 cquantize = (my_cquantize_ptr)
1252 cinfo->cquantize = (struct jpeg_color_quantizer *) cquantize;
1253 cquantize->pub.start_pass = start_pass_2_quant;
1254 cquantize->pub.new_color_map = new_color_map_2_quant;
1255 cquantize->fserrors = NULL; /* flag optional arrays not allocated */
1256 cquantize->error_limiter = NULL;
1263 cquantize->histogram = (hist3d) (*cinfo->mem->alloc_small)
1266 cquantize->histogram[i] = (hist2d) (*cinfo->mem->alloc_large)
1270 cquantize->needs_zeroed = TRUE; /* histogram is garbage now */
1285 cquantize->sv_colormap = (*cinfo->mem->alloc_sarray)
1287 cquantize->desired = desired;
1289 cquantize->sv_colormap = NULL;
1302 cquantize->fserrors = (FSERRPTR) (*cinfo->mem->alloc_large)