• Home
  • Raw
  • Download

Lines Matching refs:CONST_BITS

55 #define CONST_BITS  13  macro
96 const int tmp0 = (ACCESS_COL(0) + ACCESS_COL(4)) << CONST_BITS; in idct()
97 const int tmp1 = (ACCESS_COL(0) - ACCESS_COL(4)) << CONST_BITS; in idct()
116 pTemp[0] = DESCALE(tmp10 + btmp3, CONST_BITS-PASS1_BITS); in idct()
117 pTemp[7] = DESCALE(tmp10 - btmp3, CONST_BITS-PASS1_BITS); in idct()
118 pTemp[1] = DESCALE(tmp11 + btmp2, CONST_BITS-PASS1_BITS); in idct()
119 pTemp[6] = DESCALE(tmp11 - btmp2, CONST_BITS-PASS1_BITS); in idct()
120 pTemp[2] = DESCALE(tmp12 + btmp1, CONST_BITS-PASS1_BITS); in idct()
121 pTemp[5] = DESCALE(tmp12 - btmp1, CONST_BITS-PASS1_BITS); in idct()
122 pTemp[3] = DESCALE(tmp13 + btmp0, CONST_BITS-PASS1_BITS); in idct()
123 pTemp[4] = DESCALE(tmp13 - btmp0, CONST_BITS-PASS1_BITS); in idct()
172 const int tmp0 = (ACCESS_ROW(0) + ACCESS_ROW(4)) << CONST_BITS; in idct()
173 const int tmp1 = (ACCESS_ROW(0) - ACCESS_ROW(4)) << CONST_BITS; in idct()
192 int i = DESCALE_ZEROSHIFT(tmp10 + btmp3, CONST_BITS+PASS1_BITS+3); in idct()
195 i = DESCALE_ZEROSHIFT(tmp10 - btmp3, CONST_BITS+PASS1_BITS+3); in idct()
198 i = DESCALE_ZEROSHIFT(tmp11 + btmp2, CONST_BITS+PASS1_BITS+3); in idct()
201 i = DESCALE_ZEROSHIFT(tmp11 - btmp2, CONST_BITS+PASS1_BITS+3); in idct()
204 i = DESCALE_ZEROSHIFT(tmp12 + btmp1, CONST_BITS+PASS1_BITS+3); in idct()
207 i = DESCALE_ZEROSHIFT(tmp12 - btmp1, CONST_BITS+PASS1_BITS+3); in idct()
210 i = DESCALE_ZEROSHIFT(tmp13 + btmp0, CONST_BITS+PASS1_BITS+3); in idct()
213 i = DESCALE_ZEROSHIFT(tmp13 - btmp0, CONST_BITS+PASS1_BITS+3); in idct()