/external/libgav1/libgav1/src/dsp/arm/ |
D | inverse_transform_neon.cc | 276 LIBGAV1_ALWAYS_INLINE void StoreDst(int16_t* dst, int32_t stride, int32_t idx, in StoreDst() function 552 StoreDst<8, 8>(dst, step, 0, output); in Dct4_NEON() 554 StoreDst<16, 4>(dst, step, 0, s); in Dct4_NEON() 560 StoreDst<8, 4>(dst, step, 0, s); in Dct4_NEON() 629 StoreDst<16, 4>(dst, step, 0, output); in Dct8_NEON() 631 StoreDst<8, 8>(dst, step, 0, s); in Dct8_NEON() 635 StoreDst<16, 8>(dst, step, 0, s); in Dct8_NEON() 637 StoreDst<16, 8>(dst, step, 0, s); in Dct8_NEON() 748 StoreDst<16, 4>(dst, step, 0, output); in Dct16_NEON() 750 StoreDst<16, 4>(dst, step, 8, output); in Dct16_NEON() [all …]
|
D | inverse_transform_10bit_neon.cc | 70 LIBGAV1_ALWAYS_INLINE void StoreDst(int32_t* dst, int32_t stride, int32_t idx, in StoreDst() function 305 StoreDst<4>(dst, step, 0, s); in Dct4_NEON() 383 StoreDst<4>(dst, step, 0, &s[0]); in Dct8_NEON() 384 StoreDst<4>(dst, step, 4, &s[4]); in Dct8_NEON() 386 StoreDst<8>(dst, step, 0, &s[0]); in Dct8_NEON() 502 StoreDst<4>(dst, step, idx, &s[idx]); in Dct16_NEON() 503 StoreDst<4>(dst, step, idx + 4, &s[idx + 4]); in Dct16_NEON() 506 StoreDst<16>(dst, step, 0, &s[0]); in Dct16_NEON() 694 StoreDst<4>(dst, step, idx, &output[0]); in Dct32_NEON() 695 StoreDst<4>(dst, step, idx + 4, &output[4]); in Dct32_NEON() [all …]
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | inverse_transform_sse4.cc | 44 LIBGAV1_ALWAYS_INLINE void StoreDst(int16_t* dst, int32_t stride, int32_t idx, in StoreDst() function 343 StoreDst<8, 8>(dst, step, 0, output); in Dct4_SSE4_1() 345 StoreDst<16, 4>(dst, step, 0, s); in Dct4_SSE4_1() 351 StoreDst<8, 4>(dst, step, 0, s); in Dct4_SSE4_1() 424 StoreDst<16, 4>(dst, step, 0, output); in Dct8_SSE4_1() 426 StoreDst<8, 8>(dst, step, 0, s); in Dct8_SSE4_1() 432 StoreDst<16, 8>(dst, step, 0, output); in Dct8_SSE4_1() 434 StoreDst<16, 8>(dst, step, 0, s); in Dct8_SSE4_1() 542 StoreDst<16, 4>(dst, step, 0, output); in Dct16_SSE4_1() 544 StoreDst<16, 4>(dst, step, 8, output); in Dct16_SSE4_1() [all …]
|