Home | History | Annotate | Download | only in libjpeg

Lines Matching full:boxp

278   register boxptr boxp;
283 for (i = 0, boxp = boxlist; i < numboxes; i++, boxp++) {
284 if (boxp->colorcount > maxc && boxp->volume > 0) {
285 which = boxp;
286 maxc = boxp->colorcount;
298 register boxptr boxp;
303 for (i = 0, boxp = boxlist; i < numboxes; i++, boxp++) {
304 if (boxp->volume > maxv) {
305 which = boxp;
306 maxv = boxp->volume;
314 update_box (j_decompress_ptr cinfo, boxptr boxp)
326 c0min = boxp->c0min; c0max = boxp->c0max;
327 c1min = boxp->c1min; c1max = boxp->c1max;
328 c2min = boxp->c2min; c2max = boxp->c2max;
336 boxp->c0min = c0min = c0;
347 boxp->c0max = c0max = c0;
358 boxp->c1min = c1min = c1;
369 boxp->c1max = c1max = c1;
380 boxp->c2min = c2min = c2;
391 boxp->c2max = c2max = c2;
408 boxp->volume = dist0*dist0 + dist1*dist1 + dist2*dist2;
420 boxp->colorcount = ccount;
500 compute_color (j_decompress_ptr cinfo, boxptr boxp, int icolor)
516 c0min = boxp->c0min; c0max = boxp->c0max;
517 c1min = boxp->c1min; c1max = boxp->c1max;
518 c2min = boxp->c2min; c2max = boxp->c2max;