Home | History | Annotate | Download | only in libjpeg

Lines Matching defs:temp2

380   register int temp, temp2;
405 temp2 = IRIGHT_SHIFT((int) ((*block)[0]), Al);
408 temp = temp2 - entropy->last_dc_val[ci];
409 entropy->last_dc_val[ci] = temp2;
412 temp2 = temp;
415 /* For a negative input, want temp2 = bitwise complement of abs(input) */
417 temp2--;
438 emit_bits(entropy, (unsigned int) temp2, nbits);
467 register int temp, temp2;
497 * interwoven with finding the abs value (temp) and output bits (temp2).
502 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */
503 temp2 = ~temp;
506 temp2 = temp;
536 emit_bits(entropy, (unsigned int) temp2, nbits);