Home | History | Annotate | Download | only in jpeg-6b

Lines Matching full:temp

356   register int temp, temp2;
362 temp = temp2 = block[0] - last_dc_val;
364 if (temp < 0) {
365 temp = -temp; /* temp is abs value of input */
373 while (temp) {
375 temp >>= 1;
398 if ((temp = block[jpeg_natural_order[k]]) == 0) {
408 temp2 = temp;
409 if (temp < 0) {
410 temp = -temp; /* temp is abs value of input */
417 while ((temp >>= 1))
575 register int temp;
581 temp = block[0] - last_dc_val;
582 if (temp < 0)
583 temp = -temp;
587 while (temp) {
589 temp >>= 1;
605 if ((temp = block[jpeg_natural_order[k]]) == 0) {
615 if (temp < 0)
616 temp = -temp;
620 while ((temp >>= 1))