/external/libaom/libaom/av1/encoder/ |
D | pickrst.c | 186 int flt0_stride, int32_t *flt1, in av1_lowbd_pixel_proj_error_c() argument 196 assert(flt1[j] < (1 << 15) && flt1[j] > -(1 << 15)); in av1_lowbd_pixel_proj_error_c() 200 v += xq[0] * (flt0[j] - u) + xq[1] * (flt1[j] - u); in av1_lowbd_pixel_proj_error_c() 208 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_c() 228 assert(flt1[j] < (1 << 15) && flt1[j] > -(1 << 15)); in av1_lowbd_pixel_proj_error_c() 231 v += xq[1] * (flt1[j] - u); in av1_lowbd_pixel_proj_error_c() 238 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_c() 258 int32_t *flt1, int flt1_stride, int xq[2], in av1_highbd_pixel_proj_error_c() argument 274 int32_t v1 = flt1[j] - u; in av1_highbd_pixel_proj_error_c() 283 flt1 += flt1_stride; in av1_highbd_pixel_proj_error_c() [all …]
|
/external/libaom/libaom/av1/encoder/x86/ |
D | pickrst_avx2.c | 496 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_lowbd_pixel_proj_error_avx2() argument 516 _mm256_packs_epi32(yy_loadu_256(flt1 + j), in av1_lowbd_pixel_proj_error_avx2() 517 yy_loadu_256(flt1 + j + 8)), in av1_lowbd_pixel_proj_error_avx2() 537 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_lowbd_pixel_proj_error_avx2() 544 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_avx2() 556 const int32_t *flt = (params->r[0] > 0) ? flt0 : flt1; in av1_lowbd_pixel_proj_error_avx2() 628 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_highbd_pixel_proj_error_avx2() argument 659 const __m256i flt1l = yy_loadu_256(flt1 + j); in av1_highbd_pixel_proj_error_avx2() 660 const __m256i flt1h = yy_loadu_256(flt1 + j + 8); in av1_highbd_pixel_proj_error_avx2() 712 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_highbd_pixel_proj_error_avx2() [all …]
|
D | pickrst_sse4.c | 505 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_lowbd_pixel_proj_error_sse4_1() argument 523 _mm_packs_epi32(xx_loadu_128(flt1 + j), xx_loadu_128(flt1 + j + 4)); in av1_lowbd_pixel_proj_error_sse4_1() 540 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_lowbd_pixel_proj_error_sse4_1() 547 flt1 += flt1_stride; in av1_lowbd_pixel_proj_error_sse4_1() 557 const int32_t *flt = (params->r[0] > 0) ? flt0 : flt1; in av1_lowbd_pixel_proj_error_sse4_1() 628 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params) { in av1_highbd_pixel_proj_error_sse4_1() argument 662 const __m128i flt1l = xx_loadu_128(flt1 + j); in av1_highbd_pixel_proj_error_sse4_1() 663 const __m128i flt1h = xx_loadu_128(flt1 + j + 4); in av1_highbd_pixel_proj_error_sse4_1() 710 int32_t v = xq[0] * (flt0[k] - u) + xq[1] * (flt1[k] - u); in av1_highbd_pixel_proj_error_sse4_1() 717 flt1 += flt1_stride; in av1_highbd_pixel_proj_error_sse4_1() [all …]
|
/external/libaom/libaom/av1/common/x86/ |
D | selfguided_sse4.c | 504 int32_t *flt1, int flt_stride, in av1_selfguided_restoration_sse4_1() argument 576 final_filter(flt1, flt_stride, A, B, buf_stride, dgd8, dgd_stride, width, in av1_selfguided_restoration_sse4_1() 589 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in apply_selfguided_restoration_sse4_1() local 592 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in apply_selfguided_restoration_sse4_1() 632 const __m128i f2_0 = _mm_sub_epi32(xx_loadu_128(&flt1[k]), u_0); in apply_selfguided_restoration_sse4_1() 635 const __m128i f2_1 = _mm_sub_epi32(xx_loadu_128(&flt1[k + 4]), u_1); in 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 apply_selfguided_restoration_avx2() local 642 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in apply_selfguided_restoration_avx2() 687 const __m256i f2_0 = _mm256_sub_epi32(yy_loadu_256(&flt1[k]), u_0); in apply_selfguided_restoration_avx2() 690 const __m256i f2_1 = _mm256_sub_epi32(yy_loadu_256(&flt1[k + 8]), u_1); in apply_selfguided_restoration_avx2()
|
/external/libaom/libaom/av1/common/ |
D | av1_rtcd_defs.pl | 306 …t uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, i… 309 …t uint8_t *dat8, int dat_stride, int32_t *flt0, int flt0_stride, int32_t *flt1, int flt1_stride, i… 357 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
D | restoration.c | 863 int dgd_stride, int32_t *flt0, int32_t *flt1, in av1_selfguided_restoration_c() argument 897 selfguided_restoration_internal(dgd32, width, height, dgd32_stride, flt1, in av1_selfguided_restoration_c() 908 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in apply_selfguided_restoration_c() local 912 dat8, width, height, stride, flt0, flt1, width, eps, bit_depth, highbd); in apply_selfguided_restoration_c() 930 if (params->r[1] > 0) v += xq[1] * (flt1[k] - u); in apply_selfguided_restoration_c()
|
/external/libaom/libaom/test/ |
D | pickrst_test.cc | 33 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params); 198 int32_t *flt1, int flt1_stride, int xq[2], const sgr_params_type *params);
|
/external/libaom/libaom/av1/common/arm/ |
D | selfguided_neon.c | 1345 int stride, int32_t *flt0, int32_t *flt1, in av1_selfguided_restoration_neon() argument 1378 restoration_internal(dgd16, width, height, dgd16_stride, flt1, flt_stride, in av1_selfguided_restoration_neon() 1389 int32_t *flt1 = flt0 + RESTORATION_UNITPELS_MAX; in apply_selfguided_restoration_neon() local 1422 restoration_internal(dgd16, width, height, dgd16_stride, flt1, width, in apply_selfguided_restoration_neon() 1471 f00 = vld1q_s32(flt1 + count); in apply_selfguided_restoration_neon() 1472 f10 = vld1q_s32(flt1 + count + 4); in apply_selfguided_restoration_neon() 1502 flt1 += width; in apply_selfguided_restoration_neon()
|
/external/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | fpcmpa.ll | 54 define void @flt1() { 59 ; CHECK-LABEL: flt1:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/Fast-ISel/ |
D | fpcmpa.ll | 54 define void @flt1() { 59 ; CHECK-LABEL: flt1:
|
/external/libaom/config/arm/config/ |
D | av1_rtcd.h | 279 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride, 282 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/arm64/config/ |
D | av1_rtcd.h | 279 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride, 282 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/x86/config/ |
D | av1_rtcd.h | 283 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|
/external/libaom/config/x86_64/config/ |
D | av1_rtcd.h | 286 int dgd_stride, int32_t *flt0, int32_t *flt1, int flt_stride,
|