/external/libvpx/libvpx/test/ |
idct8x8_test.cc | 52 double temp_in[8], temp_out[8]; local 55 reference_dct_1d(temp_in, temp_out); 57 output[j*8 + i] = temp_out[j]; 61 double temp_in[8], temp_out[8]; local 64 reference_dct_1d(temp_in, temp_out); 66 output[j + i*8] = temp_out[j]; 90 double temp_in[8], temp_out[8]; local 93 reference_idct_1d(temp_in, temp_out); 95 out[j + i*8] = temp_out[j]; 99 double temp_in[8], temp_out[8] local [all...] |
dct32x32_test.cc | 58 double temp_in[32], temp_out[32]; local 61 reference_32x32_dct_1d(temp_in, temp_out, 1); 63 output[j * 32 + i] = temp_out[j]; 67 double temp_in[32], temp_out[32]; local 70 reference_32x32_dct_1d(temp_in, temp_out, 1); 73 output[j + i * 32] = temp_out[j] / 4;
|
dct16x16_test.cc | 241 double temp_in[16], temp_out[16]; local 244 butterfly_16x16_dct_1d(temp_in, temp_out); 246 output[j * 16 + i] = temp_out[j]; 250 double temp_in[16], temp_out[16]; local 253 butterfly_16x16_dct_1d(temp_in, temp_out); 256 output[j + i * 16] = temp_out[j]/2;
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans4_dspr2.c | 370 int16_t temp_in[4 * 4], temp_out[4]; local 391 iadst4_1d_dspr2(outptr, temp_out); 395 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 425 iadst4_1d_dspr2(temp_in, temp_out); 429 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
|
vp9_itrans8_dspr2.c | 554 int16_t temp_in[8 * 8], temp_out[8]; local 573 iadst8_1d_dspr2(&out[i * 8], temp_out); 577 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) 606 iadst8_1d_dspr2(temp_in, temp_out); 610 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) [all...] |
vp9_itrans16_dspr2.c | 1090 int16_t temp_out[16]; local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 123 int16_t temp_in[4], temp_out[4]; local 136 idct4_1d(temp_in, temp_out); 138 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 208 int16_t temp_in[8], temp_out[8]; local 221 idct8_1d(temp_in, temp_out); 223 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) 295 int16_t temp_in[4], temp_out[4]; local 308 IHT_4[tx_type].cols(temp_in, temp_out); 310 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 403 int16_t temp_in[8], temp_out[8] local 428 int16_t temp_in[8], temp_out[8]; local 618 int16_t temp_in[16], temp_out[16]; local 821 int16_t temp_in[16], temp_out[16]; local 845 int16_t temp_in[16], temp_out[16]; local 1250 int16_t temp_in[32], temp_out[32]; local 1287 int16_t temp_in[32], temp_out[32]; local [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 159 int16_t temp_in[4], temp_out[4]; local 168 ht.cols(temp_in, temp_out); 170 outptr[j * 4 + i] = temp_out[j]; 177 ht.rows(temp_in, temp_out); 179 output[j + i * 4] = (temp_out[j] + 1) >> 2; 567 int16_t temp_in[8], temp_out[8]; local 574 ht.cols(temp_in, temp_out); 576 outptr[j * 8 + i] = temp_out[j]; 583 ht.rows(temp_in, temp_out); 585 output[j + i * 8] = (temp_out[j] + (temp_out[j] < 0)) >> 1 960 int16_t temp_in[16], temp_out[16]; local 1323 int temp_in[32], temp_out[32]; local 1333 int temp_in[32], temp_out[32]; local 1351 int temp_in[32], temp_out[32]; local 1364 int temp_in[32], temp_out[32]; local [all...] |
/external/libvpx/libvpx/vp9/common/arm/neon/ |
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]
|
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]
|