/external/libvpx/libvpx/test/ |
D | idct8x8_test.cc | 52 double temp_in[8], temp_out[8]; in reference_dct_2d() local 55 reference_dct_1d(temp_in, temp_out); in reference_dct_2d() 57 output[j*8 + i] = temp_out[j]; in reference_dct_2d() 61 double temp_in[8], temp_out[8]; in reference_dct_2d() local 64 reference_dct_1d(temp_in, temp_out); in reference_dct_2d() 66 output[j + i*8] = temp_out[j]; in reference_dct_2d() 90 double temp_in[8], temp_out[8]; in reference_idct_2d() local 93 reference_idct_1d(temp_in, temp_out); in reference_idct_2d() 95 out[j + i*8] = temp_out[j]; in reference_idct_2d() 99 double temp_in[8], temp_out[8]; in reference_idct_2d() local [all …]
|
D | dct32x32_test.cc | 58 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local 61 reference_32x32_dct_1d(temp_in, temp_out, 1); in reference_32x32_dct_2d() 63 output[j * 32 + i] = temp_out[j]; in reference_32x32_dct_2d() 67 double temp_in[32], temp_out[32]; in reference_32x32_dct_2d() local 70 reference_32x32_dct_1d(temp_in, temp_out, 1); in reference_32x32_dct_2d() 73 output[j + i * 32] = temp_out[j] / 4; in reference_32x32_dct_2d()
|
D | dct16x16_test.cc | 241 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local 244 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d() 246 output[j * 16 + i] = temp_out[j]; in reference_16x16_dct_2d() 250 double temp_in[16], temp_out[16]; in reference_16x16_dct_2d() local 253 butterfly_16x16_dct_1d(temp_in, temp_out); in reference_16x16_dct_2d() 256 output[j + i * 16] = temp_out[j]/2; in reference_16x16_dct_2d()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_idct.c | 123 int16_t temp_in[4], temp_out[4]; in vp9_idct4x4_16_add_c() local 136 idct4_1d(temp_in, temp_out); in vp9_idct4x4_16_add_c() 138 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_idct4x4_16_add_c() 208 int16_t temp_in[8], temp_out[8]; in vp9_idct8x8_64_add_c() local 221 idct8_1d(temp_in, temp_out); in vp9_idct8x8_64_add_c() 223 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) in vp9_idct8x8_64_add_c() 295 int16_t temp_in[4], temp_out[4]; in vp9_iht4x4_16_add_c() local 308 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c() 310 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_iht4x4_16_add_c() 403 int16_t temp_in[8], temp_out[8]; in vp9_iht8x8_64_add_c() local [all …]
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 159 int16_t temp_in[4], temp_out[4]; in vp9_short_fht4x4_c() local 168 ht.cols(temp_in, temp_out); in vp9_short_fht4x4_c() 170 outptr[j * 4 + i] = temp_out[j]; in vp9_short_fht4x4_c() 177 ht.rows(temp_in, temp_out); in vp9_short_fht4x4_c() 179 output[j + i * 4] = (temp_out[j] + 1) >> 2; in vp9_short_fht4x4_c() 567 int16_t temp_in[8], temp_out[8]; in vp9_short_fht8x8_c() local 574 ht.cols(temp_in, temp_out); in vp9_short_fht8x8_c() 576 outptr[j * 8 + i] = temp_out[j]; in vp9_short_fht8x8_c() 583 ht.rows(temp_in, temp_out); in vp9_short_fht8x8_c() 585 output[j + i * 8] = (temp_out[j] + (temp_out[j] < 0)) >> 1; in vp9_short_fht8x8_c() [all …]
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
D | vp9_itrans4_dspr2.c | 370 int16_t temp_in[4 * 4], temp_out[4]; in vp9_iht4x4_16_add_dspr2() local 391 iadst4_1d_dspr2(outptr, temp_out); in vp9_iht4x4_16_add_dspr2() 395 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_iht4x4_16_add_dspr2() 425 iadst4_1d_dspr2(temp_in, temp_out); in vp9_iht4x4_16_add_dspr2() 429 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) in vp9_iht4x4_16_add_dspr2()
|
D | vp9_itrans8_dspr2.c | 554 int16_t temp_in[8 * 8], temp_out[8]; in vp9_iht8x8_64_add_dspr2() local 573 iadst8_1d_dspr2(&out[i * 8], temp_out); in vp9_iht8x8_64_add_dspr2() 577 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) in vp9_iht8x8_64_add_dspr2() 606 iadst8_1d_dspr2(temp_in, temp_out); in vp9_iht8x8_64_add_dspr2() 610 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) in vp9_iht8x8_64_add_dspr2()
|
D | vp9_itrans16_dspr2.c | 1090 int16_t temp_out[16]; in vp9_iht16x16_256_add_dspr2() local 1111 iadst16_1d(outptr, temp_out); in vp9_iht16x16_256_add_dspr2() 1115 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) in vp9_iht16x16_256_add_dspr2() 1156 iadst16_1d(temp_in, temp_out); in vp9_iht16x16_256_add_dspr2() 1159 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) in vp9_iht16x16_256_add_dspr2()
|
/external/libvpx/libvpx/vp9/common/arm/neon/ |
D | vp9_short_idct4x4_add_neon.asm | 160 ; temp_out[0, 1] = d16, d17 = q8 161 ; temp_out[2, 3] = d19, d18 = q9 swapped 163 ; ROUND_POWER_OF_TWO(temp_out[j], 4) 172 ; ROUND_POWER_OF_TWO(temp_out[j], 4) + dest[j * dest_stride + i]
|
D | vp9_short_idct8x8_add_neon.asm | 255 ; ROUND_POWER_OF_TWO(temp_out[j], 5) 278 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i] 461 ; ROUND_POWER_OF_TWO(temp_out[j], 5) 484 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i]
|
D | vp9_short_iht4x4_add_neon.asm | 210 ; ROUND_POWER_OF_TWO(temp_out[j], 4) 219 ; ROUND_POWER_OF_TWO(temp_out[j], 4) + dest[j * dest_stride + i]
|
D | vp9_short_iht8x8_add_neon.asm | 641 ; ROUND_POWER_OF_TWO(temp_out[j], 5) 664 ; ROUND_POWER_OF_TWO(temp_out[j], 5) + dest[j * dest_stride + i]
|