Lines Matching refs:col
65 /* row idct is multiple by 16 * sqrt(2.0), col idct4 is normalized,
69 static inline void idct4col_put(uint8_t *dest, ptrdiff_t line_size, const int16_t *col)
73 a0 = col[8*0];
74 a1 = col[8*2];
75 a2 = col[8*4];
76 a3 = col[8*6];
148 static inline void idct4col_add(uint8_t *dest, ptrdiff_t line_size, const int16_t *col)
152 a0 = col[8*0];
153 a1 = col[8*1];
154 a2 = col[8*2];
155 a3 = col[8*3];