Lines Matching defs:temp2
484 register int temp, temp2, temp3;
509 temp2 = IRIGHT_SHIFT((int)((*block)[0]), Al);
512 temp = temp2 - entropy->last_dc_val[ci];
513 entropy->last_dc_val[ci] = temp2;
525 /* For a negative input, want temp2 = bitwise complement of abs(input) */
526 temp2 = temp ^ temp3;
542 emit_bits(entropy, (unsigned int)temp2, nbits);
574 * interwoven with finding the abs value (temp) and output bits (temp2). \
576 temp2 = temp >> (CHAR_BIT * sizeof(int) - 1); \
577 temp ^= temp2; \
578 temp -= temp2; /* temp is abs value of input */ \
583 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */ \
584 temp2 ^= temp; \
586 values[k + DCTSIZE2] = temp2; \
596 register int k, temp, temp2;
633 temp2 = cvalue[DCTSIZE2]; \
652 emit_bits(entropy, (unsigned int)temp2, nbits); \
663 register int temp, temp2;
808 temp2 = temp >> (CHAR_BIT * sizeof(int) - 1); \
809 temp ^= temp2; \
810 temp -= temp2; /* temp is abs value of input */ \
814 signbits |= ((size_t)(temp2 + 1)) << k; \
827 register int k, temp, temp2;