Lines Matching refs:WORD16

101     WORD16 *pi2_dst,  in ihevce_hadamard_4x4_8bit()
105 WORD16 m[16]; in ihevce_hadamard_4x4_8bit()
155 WORD16 *pi2_dst, in ihevce_hadamard_8x8_8bit()
189 WORD16 a0 = pi2_dst[idx]; in ihevce_hadamard_8x8_8bit()
190 WORD16 a1 = pi2_dst[4 + idx]; in ihevce_hadamard_8x8_8bit()
191 WORD16 a2 = pi2_dst[(4 * dst_strd) + idx]; in ihevce_hadamard_8x8_8bit()
192 WORD16 a3 = pi2_dst[(4 * dst_strd) + 4 + idx]; in ihevce_hadamard_8x8_8bit()
194 WORD16 b0 = (a0 + a1); in ihevce_hadamard_8x8_8bit()
195 WORD16 b1 = (a0 - a1); in ihevce_hadamard_8x8_8bit()
196 WORD16 b2 = (a2 + a3); in ihevce_hadamard_8x8_8bit()
197 WORD16 b3 = (a2 - a3); in ihevce_hadamard_8x8_8bit()
211 WORD16 *pi2_dst, in ihevce_hadamard_16x16_8bit()
245 WORD16 a0 = pi2_dst[idx]; in ihevce_hadamard_16x16_8bit()
246 WORD16 a1 = pi2_dst[8 + idx]; in ihevce_hadamard_16x16_8bit()
247 WORD16 a2 = pi2_dst[(8 * dst_strd) + idx]; in ihevce_hadamard_16x16_8bit()
248 WORD16 a3 = pi2_dst[(8 * dst_strd) + 8 + idx]; in ihevce_hadamard_16x16_8bit()
250 WORD16 b0 = (a0 + a1) >> 1; in ihevce_hadamard_16x16_8bit()
251 WORD16 b1 = (a0 - a1) >> 1; in ihevce_hadamard_16x16_8bit()
252 WORD16 b2 = (a2 + a3) >> 1; in ihevce_hadamard_16x16_8bit()
253 WORD16 b3 = (a2 - a3) >> 1; in ihevce_hadamard_16x16_8bit()
267 WORD16 *pi2_dst, in ihevce_hadamard_32x32_8bit()
302 WORD16 a0 = pi2_dst[idx] >> 2; in ihevce_hadamard_32x32_8bit()
303 WORD16 a1 = pi2_dst[16 + idx] >> 2; in ihevce_hadamard_32x32_8bit()
304 WORD16 a2 = pi2_dst[(16 * dst_strd) + idx] >> 2; in ihevce_hadamard_32x32_8bit()
305 WORD16 a3 = pi2_dst[(16 * dst_strd) + 16 + idx] >> 2; in ihevce_hadamard_32x32_8bit()
307 WORD16 b0 = (a0 + a1); in ihevce_hadamard_32x32_8bit()
308 WORD16 b1 = (a0 - a1); in ihevce_hadamard_32x32_8bit()
309 WORD16 b2 = (a2 + a3); in ihevce_hadamard_32x32_8bit()
310 WORD16 b3 = (a2 - a3); in ihevce_hadamard_32x32_8bit()
360 WORD16 *pi2_dst, in ihevce_HAD_4x4_8bit()
364 WORD16 v[16]; in ihevce_HAD_4x4_8bit()
419 WORD16 *pi2_dst, in ihevce_HAD_8x8_8bit()
424 WORD16 v[64]; in ihevce_HAD_8x8_8bit()
478 WORD16 *pi2_dst, in ihevce_compute_ac_had_8x8_8bit()
483 WORD16 v[64]; in ihevce_compute_ac_had_8x8_8bit()
538 WORD16 *pi2_dst, in ihevce_HAD_16x16_8bit()
543 WORD16 v[256]; in ihevce_HAD_16x16_8bit()
597 WORD16 *pi2_dst, in ihevce_HAD_32x32_8bit()
602 WORD16 v[32 * 32]; in ihevce_HAD_32x32_8bit()
646 WORD16 *pi2_4x4_had, in ihevce_compute_8x8HAD_using_4x4()
648 WORD16 *pi2_dst, in ihevce_compute_8x8HAD_using_4x4()
657 WORD16 *pi2_y0 = pi2_4x4_had; in ihevce_compute_8x8HAD_using_4x4()
658 WORD16 *pi2_y1 = pi2_4x4_had + 4; in ihevce_compute_8x8HAD_using_4x4()
659 WORD16 *pi2_y2 = pi2_4x4_had + had4_strd * 4; in ihevce_compute_8x8HAD_using_4x4()
660 WORD16 *pi2_y3 = pi2_4x4_had + had4_strd * 4 + 4; in ihevce_compute_8x8HAD_using_4x4()
663 WORD16 *pi2_dst0 = pi2_dst; in ihevce_compute_8x8HAD_using_4x4()
664 WORD16 *pi2_dst1 = pi2_dst + 4; in ihevce_compute_8x8HAD_using_4x4()
665 WORD16 *pi2_dst2 = pi2_dst + dst_strd * 4; in ihevce_compute_8x8HAD_using_4x4()
666 WORD16 *pi2_dst3 = pi2_dst + dst_strd * 4 + 4; in ihevce_compute_8x8HAD_using_4x4()
681 WORD16 a0 = pi2_y0[src_idx]; in ihevce_compute_8x8HAD_using_4x4()
682 WORD16 a1 = pi2_y1[src_idx]; in ihevce_compute_8x8HAD_using_4x4()
683 WORD16 a2 = pi2_y2[src_idx]; in ihevce_compute_8x8HAD_using_4x4()
684 WORD16 a3 = pi2_y3[src_idx]; in ihevce_compute_8x8HAD_using_4x4()
686 WORD16 b0 = (a0 + a1); in ihevce_compute_8x8HAD_using_4x4()
687 WORD16 b1 = (a0 - a1); in ihevce_compute_8x8HAD_using_4x4()
688 WORD16 b2 = (a2 + a3); in ihevce_compute_8x8HAD_using_4x4()
689 WORD16 b3 = (a2 - a3); in ihevce_compute_8x8HAD_using_4x4()
763 WORD16 *pi2_dst4x4, in ihevce_had4_4x4()
777 WORD16 *pi2_dst; in ihevce_had4_4x4()
873 WORD16 *pi2_dst, in ihevce_had_8x8_using_4_4x4()
879 WORD16 ai2_4x4_had[64]; in ihevce_had_8x8_using_4_4x4()
951 WORD16 *pi2_dst, in ihevce_had_8x8_using_4_4x4_r()
967 WORD16 ai2_4x4_had[64]; in ihevce_had_8x8_using_4_4x4_r()
1076 WORD16 *pi2_8x8_had, in ihevce_compute_16x16HAD_using_8x8()
1078 WORD16 *pi2_dst, in ihevce_compute_16x16HAD_using_8x8()
1087 WORD16 *pi2_y0 = pi2_8x8_had; in ihevce_compute_16x16HAD_using_8x8()
1088 WORD16 *pi2_y1 = pi2_8x8_had + 8; in ihevce_compute_16x16HAD_using_8x8()
1089 WORD16 *pi2_y2 = pi2_8x8_had + had8_strd * 8; in ihevce_compute_16x16HAD_using_8x8()
1090 WORD16 *pi2_y3 = pi2_8x8_had + had8_strd * 8 + 8; in ihevce_compute_16x16HAD_using_8x8()
1093 WORD16 *pi2_dst0 = pi2_dst; in ihevce_compute_16x16HAD_using_8x8()
1094 WORD16 *pi2_dst1 = pi2_dst + 8; in ihevce_compute_16x16HAD_using_8x8()
1095 WORD16 *pi2_dst2 = pi2_dst + dst_strd * 8; in ihevce_compute_16x16HAD_using_8x8()
1096 WORD16 *pi2_dst3 = pi2_dst + dst_strd * 8 + 8; in ihevce_compute_16x16HAD_using_8x8()
1111 WORD16 a0 = pi2_y0[src_idx]; in ihevce_compute_16x16HAD_using_8x8()
1112 WORD16 a1 = pi2_y1[src_idx]; in ihevce_compute_16x16HAD_using_8x8()
1113 WORD16 a2 = pi2_y2[src_idx]; in ihevce_compute_16x16HAD_using_8x8()
1114 WORD16 a3 = pi2_y3[src_idx]; in ihevce_compute_16x16HAD_using_8x8()
1116 WORD16 b0 = (a0 + a1) >> 1; in ihevce_compute_16x16HAD_using_8x8()
1117 WORD16 b1 = (a0 - a1) >> 1; in ihevce_compute_16x16HAD_using_8x8()
1118 WORD16 b2 = (a2 + a3) >> 1; in ihevce_compute_16x16HAD_using_8x8()
1119 WORD16 b3 = (a2 - a3) >> 1; in ihevce_compute_16x16HAD_using_8x8()
1208 WORD16 *pi2_dst, in ihevce_had_16x16_r()
1224 WORD16 ai2_8x8_had[256]; in ihevce_had_16x16_r()
1244 WORD16 *pi2_y0; in ihevce_had_16x16_r()
1388 WORD16 *pi2_16x16_had, in ihevce_compute_32x32HAD_using_16x16()
1390 WORD16 *pi2_dst, in ihevce_compute_32x32HAD_using_16x16()
1399 WORD16 *pi2_y0 = pi2_16x16_had; in ihevce_compute_32x32HAD_using_16x16()
1400 WORD16 *pi2_y1 = pi2_16x16_had + 16; in ihevce_compute_32x32HAD_using_16x16()
1401 WORD16 *pi2_y2 = pi2_16x16_had + had16_strd * 16; in ihevce_compute_32x32HAD_using_16x16()
1402 WORD16 *pi2_y3 = pi2_16x16_had + had16_strd * 16 + 16; in ihevce_compute_32x32HAD_using_16x16()
1405 WORD16 *pi2_dst0 = pi2_dst; in ihevce_compute_32x32HAD_using_16x16()
1406 WORD16 *pi2_dst1 = pi2_dst + 16; in ihevce_compute_32x32HAD_using_16x16()
1407 WORD16 *pi2_dst2 = pi2_dst + dst_strd * 16; in ihevce_compute_32x32HAD_using_16x16()
1408 WORD16 *pi2_dst3 = pi2_dst + dst_strd * 16 + 16; in ihevce_compute_32x32HAD_using_16x16()
1423 WORD16 a0 = pi2_y0[src_idx] >> 2; in ihevce_compute_32x32HAD_using_16x16()
1424 WORD16 a1 = pi2_y1[src_idx] >> 2; in ihevce_compute_32x32HAD_using_16x16()
1425 WORD16 a2 = pi2_y2[src_idx] >> 2; in ihevce_compute_32x32HAD_using_16x16()
1426 WORD16 a3 = pi2_y3[src_idx] >> 2; in ihevce_compute_32x32HAD_using_16x16()
1428 WORD16 b0 = (a0 + a1); in ihevce_compute_32x32HAD_using_16x16()
1429 WORD16 b1 = (a0 - a1); in ihevce_compute_32x32HAD_using_16x16()
1430 WORD16 b2 = (a2 + a3); in ihevce_compute_32x32HAD_using_16x16()
1431 WORD16 b3 = (a2 - a3); in ihevce_compute_32x32HAD_using_16x16()
1521 WORD16 *pi2_dst, in ihevce_had_32x32_r()
1538 WORD16 ai2_16x16_had[1024]; in ihevce_had_32x32_r()
1559 WORD16 *pi2_y0 = ai2_16x16_had; in ihevce_had_32x32_r()
1560 WORD16 *pi2_y1 = ai2_16x16_had + 16; in ihevce_had_32x32_r()
1561 WORD16 *pi2_y2 = ai2_16x16_had + 32 * 16; in ihevce_had_32x32_r()
1562 WORD16 *pi2_y3 = ai2_16x16_had + 32 * 16 + 16; in ihevce_had_32x32_r()