Home | History | Annotate | Download | only in jpeg

Lines Matching refs:temp

318   register int temp, nbits;
321 temp = entropy->EOBRUN;
323 while ((temp >>= 1))
380 register int temp, temp2;
408 temp = temp2 - entropy->last_dc_val[ci];
412 temp2 = temp;
413 if (temp < 0) {
414 temp = -temp; /* temp is abs value of input */
422 while (temp) {
424 temp >>= 1;
467 register int temp, temp2;
490 if ((temp = (*block)[jpeg_natural_order[k]]) == 0) {
497 * interwoven with finding the abs value (temp) and output bits (temp2).
499 if (temp < 0) {
500 temp = -temp; /* temp is abs value of input */
501 temp >>= Al; /* apply the point transform */
503 temp2 = ~temp;
505 temp >>= Al; /* apply the point transform */
506 temp2 = temp;
509 if (temp == 0) {
525 while ((temp >>= 1))
574 register int temp;
592 temp = (*block)[0];
593 emit_bits(entropy, (unsigned int) (temp >> Al), 1);
621 register int temp;
647 temp = (*block)[jpeg_natural_order[k]];
652 if (temp < 0)
653 temp = -temp; /* temp is abs value of input */
654 temp >>= Al; /* apply the point transform */
655 absvalues[k] = temp; /* save abs value for main pass */
656 if (temp == 1)
667 if ((temp = absvalues[k]) == 0) {
690 if (temp > 1) {
692 BR_buffer[BR++] = (char) (temp & 1);
703 temp = ((*block)[jpeg_natural_order[k]] < 0) ? 0 : 1;
704 emit_bits(entropy, (unsigned int) temp, 1);