/external/libaom/libaom/av1/encoder/ |
D | pickrst.c | 223 int flt0_stride, int32_t *flt1, in av1_lowbd_pixel_proj_error_c() argument 233 assert(flt1[j] < (1 << 15) && flt1[j] > -(1 << 15)); in av1_lowbd_pixel_proj_error_c() 237 v += xq[0] * (flt0[j] - u) + xq[1] * (flt1[j] - u); in av1_lowbd_pixel_proj_error_c() 245 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_c() 265 assert(flt1[j] < (1 << 15) && flt1[j] > -(1 << 15)); in av1_lowbd_pixel_proj_error_c() 268 v += xq[1] * (flt1[j] - u); in av1_lowbd_pixel_proj_error_c() 275 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_c() 296 int32_t *flt1, int flt1_stride, int xq[2], in av1_highbd_pixel_proj_error_c() argument 312 int32_t v1 = flt1[j] - u; in av1_highbd_pixel_proj_error_c() 321 flt1 += flt1_stride; in av1_highbd_pixel_proj_error_c() [all …]
|
/external/libaom/libaom/av1/encoder/x86/ |
D | pickrst_avx2.c | 504 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_lowbd_pixel_proj_error_avx2() argument 524 _mm256_packs_epi32(yy_loadu_256(flt1 + j), in av1_lowbd_pixel_proj_error_avx2() 525 yy_loadu_256(flt1 + j + 8)), in av1_lowbd_pixel_proj_error_avx2() 545 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_lowbd_pixel_proj_error_avx2() 552 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_avx2() 564 const int32_t *flt = (params->r[0] > 0) ? flt0 : flt1; in av1_lowbd_pixel_proj_error_avx2() 638 int32_t *flt1, int flt1_stride, int64_t H[2][2], int64_t C[2]) { in calc_proj_params_r0_r1_avx2() argument 653 __m256i f2 = _mm256_loadu_si256((__m256i *)(flt1 + i * flt1_stride + j)); in calc_proj_params_r0_r1_avx2() 790 int dat_stride, int32_t *flt1, in calc_proj_params_r1_avx2() argument 806 __m256i f2 = _mm256_loadu_si256((__m256i *)(flt1 + i * flt1_stride + j)); in calc_proj_params_r1_avx2() [all …]
|
D | pickrst_sse4.c | 507 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_lowbd_pixel_proj_error_sse4_1() argument 525 _mm_packs_epi32(xx_loadu_128(flt1 + j), xx_loadu_128(flt1 + j + 4)); in av1_lowbd_pixel_proj_error_sse4_1() 542 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_lowbd_pixel_proj_error_sse4_1() 549 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_sse4_1() 559 const int32_t *flt = (params->r[0] > 0) ? flt0 : flt1; in av1_lowbd_pixel_proj_error_sse4_1() 631 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_highbd_pixel_proj_error_sse4_1() argument 665 const __m128i flt1l = xx_loadu_128(flt1 + j); in av1_highbd_pixel_proj_error_sse4_1() 666 const __m128i flt1h = xx_loadu_128(flt1 + j + 4); in av1_highbd_pixel_proj_error_sse4_1() 713 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_highbd_pixel_proj_error_sse4_1() 720 flt1 += flt1_stride; in av1_highbd_pixel_proj_error_sse4_1() [all …]
|
/external/libaom/libaom/av1/common/ |
D | av1_rtcd_defs.pl | 337 …t uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, i… 340 …t uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, i… 344 …t uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, i… 406 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
D | restoration.c | 872 int dgd_stride, int32_t *flt0, int32_t *flt1, in av1_selfguided_restoration_c() argument 906 selfguided_restoration_internal(dgd32, width, height, dgd32_stride, flt1, in av1_selfguided_restoration_c() 917 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in av1_apply_selfguided_restoration_c() local 921 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in av1_apply_selfguided_restoration_c() 939 if (params->r[1] > 0) v += xq[1] * (flt1[k] - u); in av1_apply_selfguided_restoration_c()
|
/external/libaom/libaom/av1/common/x86/ |
D | selfguided_sse4.c | 506 int32_t *flt1, int flt_stride, in av1_selfguided_restoration_sse4_1() argument 578 final_filter(flt1, flt_stride, A, B, buf_stride, dgd8, dgd_stride, width, in av1_selfguided_restoration_sse4_1() 591 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in av1_apply_selfguided_restoration_sse4_1() local 594 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in av1_apply_selfguided_restoration_sse4_1() 634 const __m128i f2_0 = _mm_sub_epi32(xx_loadu_128(&flt1[k]), u_0); in av1_apply_selfguided_restoration_sse4_1() 637 const __m128i f2_1 = _mm_sub_epi32(xx_loadu_128(&flt1[k + 4]), u_1); in av1_apply_selfguided_restoration_sse4_1()
|
D | selfguided_avx2.c | 551 int32_t *flt1, int flt_stride, in av1_selfguided_restoration_avx2() argument 626 final_filter(flt1, flt_stride, A, B, buf_stride, dgd8, dgd_stride, width, in av1_selfguided_restoration_avx2() 639 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in av1_apply_selfguided_restoration_avx2() local 642 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in av1_apply_selfguided_restoration_avx2() 687 const __m256i f2_0 = _mm256_sub_epi32(yy_loadu_256(&flt1[k]), u_0); in av1_apply_selfguided_restoration_avx2() 690 const __m256i f2_1 = _mm256_sub_epi32(yy_loadu_256(&flt1[k + 8]), u_1); in av1_apply_selfguided_restoration_avx2()
|
/external/libaom/libaom/test/ |
D | pickrst_test.cc | 35 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params); 200 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params); 371 int32_t *flt1, int flt1_stride,
|
/external/libaom/libaom/av1/common/arm/ |
D | selfguided_neon.c | 1406 int stride, int32_t *flt0, int32_t *flt1, in av1_selfguided_restoration_neon() argument 1447 restoration_internal(dgd16, width, height, dgd16_stride, flt1, flt_stride, in av1_selfguided_restoration_neon() 1458 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in av1_apply_selfguided_restoration_neon() local 1498 restoration_internal(dgd16, width, height, dgd16_stride, flt1, width, in av1_apply_selfguided_restoration_neon() 1547 f00 = vld1q_s32(flt1 + count); in av1_apply_selfguided_restoration_neon() 1548 f10 = vld1q_s32(flt1 + count + 4); in av1_apply_selfguided_restoration_neon() 1584 flt1 += width; in av1_apply_selfguided_restoration_neon()
|
/external/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | fpcmpa.ll | 54 define void @flt1() { 59 ; CHECK-LABEL: flt1:
|
/external/llvm-project/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | fpcmpa.ll | 54 define void @flt1() { 59 ; CHECK-LABEL: flt1:
|
/external/libaom/config/arm64/config/ |
D | av1_rtcd.h | 323 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride, 326 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/arm/config/ |
D | av1_rtcd.h | 323 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride, 326 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/x86/config/ |
D | av1_rtcd.h | 328 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/x86_64/config/ |
D | av1_rtcd.h | 331 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|