Lines Matching refs:tran_low_t

105                                tran_low_t *coeff) {  in vpx_highbd_hadamard_8x8_c()
126 for (idx = 0; idx < 64; ++idx) coeff[idx] = (tran_low_t)buffer2[idx]; in vpx_highbd_hadamard_8x8_c()
131 tran_low_t *coeff) { in vpx_highbd_hadamard_16x16_c()
142 tran_low_t a0 = coeff[0]; in vpx_highbd_hadamard_16x16_c()
143 tran_low_t a1 = coeff[64]; in vpx_highbd_hadamard_16x16_c()
144 tran_low_t a2 = coeff[128]; in vpx_highbd_hadamard_16x16_c()
145 tran_low_t a3 = coeff[192]; in vpx_highbd_hadamard_16x16_c()
147 tran_low_t b0 = (a0 + a1) >> 1; in vpx_highbd_hadamard_16x16_c()
148 tran_low_t b1 = (a0 - a1) >> 1; in vpx_highbd_hadamard_16x16_c()
149 tran_low_t b2 = (a2 + a3) >> 1; in vpx_highbd_hadamard_16x16_c()
150 tran_low_t b3 = (a2 - a3) >> 1; in vpx_highbd_hadamard_16x16_c()
163 tran_low_t *coeff) { in vpx_highbd_hadamard_32x32_c()
174 tran_low_t a0 = coeff[0]; in vpx_highbd_hadamard_32x32_c()
175 tran_low_t a1 = coeff[256]; in vpx_highbd_hadamard_32x32_c()
176 tran_low_t a2 = coeff[512]; in vpx_highbd_hadamard_32x32_c()
177 tran_low_t a3 = coeff[768]; in vpx_highbd_hadamard_32x32_c()
179 tran_low_t b0 = (a0 + a1) >> 2; in vpx_highbd_hadamard_32x32_c()
180 tran_low_t b1 = (a0 - a1) >> 2; in vpx_highbd_hadamard_32x32_c()
181 tran_low_t b2 = (a2 + a3) >> 2; in vpx_highbd_hadamard_32x32_c()
182 tran_low_t b3 = (a2 - a3) >> 2; in vpx_highbd_hadamard_32x32_c()
230 tran_low_t *coeff) { in vpx_hadamard_8x8_c()
251 for (idx = 0; idx < 64; ++idx) coeff[idx] = (tran_low_t)buffer2[idx]; in vpx_hadamard_8x8_c()
256 tran_low_t *coeff) { in vpx_hadamard_16x16_c()
267 tran_low_t a0 = coeff[0]; in vpx_hadamard_16x16_c()
268 tran_low_t a1 = coeff[64]; in vpx_hadamard_16x16_c()
269 tran_low_t a2 = coeff[128]; in vpx_hadamard_16x16_c()
270 tran_low_t a3 = coeff[192]; in vpx_hadamard_16x16_c()
272 tran_low_t b0 = (a0 + a1) >> 1; // (a0 + a1): 16 bit, [-32640, 32640] in vpx_hadamard_16x16_c()
273 tran_low_t b1 = (a0 - a1) >> 1; // b0-b3: 15 bit, dynamic range in vpx_hadamard_16x16_c()
274 tran_low_t b2 = (a2 + a3) >> 1; // [-16320, 16320] in vpx_hadamard_16x16_c()
275 tran_low_t b3 = (a2 - a3) >> 1; in vpx_hadamard_16x16_c()
287 tran_low_t *coeff) { in vpx_hadamard_32x32_c()
298 tran_low_t a0 = coeff[0]; in vpx_hadamard_32x32_c()
299 tran_low_t a1 = coeff[256]; in vpx_hadamard_32x32_c()
300 tran_low_t a2 = coeff[512]; in vpx_hadamard_32x32_c()
301 tran_low_t a3 = coeff[768]; in vpx_hadamard_32x32_c()
303 tran_low_t b0 = (a0 + a1) >> 2; // (a0 + a1): 16 bit, [-32640, 32640] in vpx_hadamard_32x32_c()
304 tran_low_t b1 = (a0 - a1) >> 2; // b0-b3: 15 bit, dynamic range in vpx_hadamard_32x32_c()
305 tran_low_t b2 = (a2 + a3) >> 2; // [-16320, 16320] in vpx_hadamard_32x32_c()
306 tran_low_t b3 = (a2 - a3) >> 2; in vpx_hadamard_32x32_c()
320 int vpx_highbd_satd_c(const tran_low_t *coeff, int length) { in vpx_highbd_satd_c()
332 int vpx_satd_c(const tran_low_t *coeff, int length) { in vpx_satd_c()