/external/libvpx/libvpx/vp9/common/ |
vp9_idct.h | 41 static const int cospi_2_64 = 16305; variable
|
vp9_idct.c | 333 s0 = cospi_2_64 * x0 + cospi_30_64 * x1; 334 s1 = cospi_30_64 * x0 - cospi_2_64 * x1; 481 temp1 = step1[8] * cospi_30_64 - step1[15] * cospi_2_64; 482 temp2 = step1[8] * cospi_2_64 + step1[15] * cospi_30_64; 951 temp1 = step1[8] * cospi_30_64 - step1[15] * cospi_2_64; 952 temp2 = step1[8] * cospi_2_64 + step1[15] * cospi_30_64; [all...] |
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_itrans8_dspr2.c | 491 s0 = cospi_2_64 * x0 + cospi_30_64 * x1; 492 s1 = cospi_30_64 * x0 - cospi_2_64 * x1; [all...] |
vp9_itrans16_dspr2.c | 96 "msub $ac1, %[load6], %[cospi_2_64] \n\t" 112 "madd $ac2, %[load5], %[cospi_2_64] \n\t" 141 [cospi_30_64] "r" (cospi_30_64), [cospi_2_64] "r" (cospi_2_64), 492 "msub $ac1, %[load6], %[cospi_2_64] \n\t" 508 "madd $ac2, %[load5], %[cospi_2_64] \n\t" 537 [cospi_30_64] "r" (cospi_30_64), [cospi_2_64] "r" (cospi_2_64), [all...] |
vp9_itrans32_cols_dspr2.c | 311 "msub $ac1, %[load2], %[cospi_2_64] \n\t" 313 "madd $ac3, %[load1], %[cospi_2_64] \n\t" 351 [cospi_30_64] "r" (cospi_30_64), [cospi_2_64] "r" (cospi_2_64), [all...] |
vp9_itrans32_dspr2.c | 362 "msub $ac1, %[load2], %[cospi_2_64] \n\t" 365 "madd $ac3, %[load1], %[cospi_2_64] \n\t" 407 [cospi_30_64] "r" (cospi_30_64), [cospi_2_64] "r" (cospi_2_64), [all...] |
/external/libvpx/libvpx/vp9/common/arm/neon/ |
vp9_short_iht8x8_add_neon.asm | 21 ; generate cospi_2_64 = 16305 287 vdup.16 d14, r0 ; duplicate cospi_2_64 290 ; cospi_2_64 * x0 301 ; s0 = cospi_2_64 * x0 + cospi_30_64 * x1; 305 ; s1 = cospi_30_64 * x0 - cospi_2_64 * x1
|
vp9_short_idct16x16_add_neon.asm | 314 ; generate cospi_2_64 = 16305 323 vdup.16 d13, r12 ; duplicate cospi_2_64 338 ; step1[8] * cospi_2_64 342 ; temp1 = step1[8] * cospi_30_64 - step1[15] * cospi_2_64 346 ; temp2 = step1[8] * cospi_2_64 + step1[15] * cospi_30_64 [all...] |
vp9_short_idct32x32_add_neon.asm | 14 cospi_2_64 EQU 16305 define 776 ;temp1 = input[2 * 32] * cospi_30_64 - input[30 * 32] * cospi_2_64; 777 ;temp2 = input[2 * 32] * cospi_2_64 + input[30 * 32] * cospi_30_64; 781 DO_BUTTERFLY_STD cospi_30_64, cospi_2_64, d0, d1, d4, d5 [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 457 temp1 = step1[0] * cospi_30_64 + step1[7] * cospi_2_64; 470 temp2 = step1[0] * -cospi_2_64 + step1[7] * cospi_30_64; 497 s0 = cospi_2_64 * x0 + cospi_30_64 * x1; 498 s1 = cospi_30_64 * x0 - cospi_2_64 * x1; 765 temp1 = step1[0] * cospi_30_64 + step1[7] * cospi_2_64; 781 temp2 = step1[0] * -cospi_2_64 + step1[7] * cospi_30_64; [all...] |
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_idct_intrin_sse2.c | 665 const __m128i k__cospi_p02_p30 = pair_set_epi16(cospi_2_64, cospi_30_64); 666 const __m128i k__cospi_p30_m02 = pair_set_epi16(cospi_30_64, -cospi_2_64); [all...] |
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_sse2.c | [all...] |
vp9_dct32x32_sse2.c | 55 const __m128i k__cospi_p30_p02 = pair_set_epi16(+cospi_30_64, cospi_2_64); 62 const __m128i k__cospi_m02_p30 = pair_set_epi16(-cospi_2_64, cospi_30_64); [all...] |