/external/libvpx/libvpx/vpx_dsp/mips/ |
loopfilter_4_msa.c | 47 v16u8 mask, hev, flat, thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; local 61 limit0 = (v16u8)__msa_fill_b(*limit0_ptr); 63 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); 65 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit0, b_limit0, thresh0, hev, 108 v16u8 thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; local 130 limit0 = (v16u8)__msa_fill_b(*limit0_ptr); 132 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); 134 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit0, b_limit0, thresh0, hev [all...] |
loopfilter_filters_dspr2.c | 286 const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, 288 vpx_lpf_horizontal_4_dspr2(s, p, blimit0, limit0, thresh0); 294 const uint8_t *limit0, const uint8_t *thresh0, const uint8_t *blimit1, 296 vpx_lpf_horizontal_8_dspr2(s, p, blimit0, limit0, thresh0); 301 const uint8_t *limit0, 306 vpx_lpf_vertical_4_dspr2(s, p, blimit0, limit0, thresh0); 311 const uint8_t *limit0, 316 vpx_lpf_vertical_8_dspr2(s, p, blimit0, limit0, thresh0);
|
loopfilter_8_msa.c | 83 uint8_t *src, int32_t pitch, const uint8_t *b_limit0, const uint8_t *limit0, 106 limit = (v16u8)__msa_fill_b(*limit0); 229 const uint8_t *b_limit0, const uint8_t *limit0, 264 limit = (v16u8)__msa_fill_b(*limit0);
|
/external/skia/src/core/ |
SkLineClipper.cpp | 10 template <typename T> T pin_unsorted(T value, T limit0, T limit1) { 11 if (limit1 < limit0) { 12 SkTSwap(limit0, limit1); 15 SkASSERT(limit0 <= limit1); 17 if (value < limit0) { 18 value = limit0; 151 SkScalar limit0, SkScalar limit1) { 152 if (limit0 < limit1) { 153 return limit0 <= value && value <= limit1; 155 return limit1 <= value && value <= limit0; [all...] |
/external/skqp/src/core/ |
SkLineClipper.cpp | 10 template <typename T> T pin_unsorted(T value, T limit0, T limit1) { 11 if (limit1 < limit0) { 12 SkTSwap(limit0, limit1); 15 SkASSERT(limit0 <= limit1); 17 if (value < limit0) { 18 value = limit0; 151 SkScalar limit0, SkScalar limit1) { 152 if (limit0 < limit1) { 153 return limit0 <= value && value <= limit1; 155 return limit1 <= value && value <= limit0; [all...] |
/external/libvpx/libvpx/test/ |
lpf_test.cc | 44 const uint8_t *limit0, const uint8_t *thresh0, 54 const uint8_t *limit0, const uint8_t *thresh0, 292 limit0[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, 311 const uint8_t limit = *limit0 < *limit1 ? *limit0 : *limit1; 314 ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, 316 ASM_REGISTER_STATE_CHECK(loopfilter_op_(s + 8 + p * 8, p, blimit0, limit0, 320 ref_loopfilter_op_(ref_s + 8 + p * 8, p, blimit0, limit0, thresh0, blimit1, 322 ASM_REGISTER_STATE_CHECK(loopfilter_op_(s + 8 + p * 8, p, blimit0, limit0, 355 limit0[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp [all...] |
/external/libvpx/libvpx/vpx_dsp/ |
loopfilter.c | 130 const uint8_t *limit0, const uint8_t *thresh0, 133 vpx_lpf_horizontal_4_c(s, p, blimit0, limit0, thresh0); 154 const uint8_t *limit0, const uint8_t *thresh0, 157 vpx_lpf_vertical_4_c(s, pitch, blimit0, limit0, thresh0); 201 const uint8_t *limit0, const uint8_t *thresh0, 204 vpx_lpf_horizontal_8_c(s, p, blimit0, limit0, thresh0); 225 const uint8_t *limit0, const uint8_t *thresh0, 228 vpx_lpf_vertical_8_c(s, pitch, blimit0, limit0, thresh0); 467 uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, 470 vpx_highbd_lpf_horizontal_4_c(s, p, blimit0, limit0, thresh0, bd) [all...] |
/external/libvpx/libvpx/vp8/common/mips/msa/ |
loopfilter_filters_msa.c | 217 v16u8 thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; local 229 limit0 = (v16u8)__msa_fill_b(*limit0_ptr); 231 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); 233 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit0, b_limit0, thresh0, hev, 248 v16u8 thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; local 269 limit0 = (v16u8)__msa_fill_b(*limit0_ptr); 271 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); 273 LPF_MASK_HEV(p3, p2, p1, p0, q0, q1, q2, q3, limit0, b_limit0, thresh0, hev [all...] |
/art/runtime/arch/x86/ |
thread_x86.cc | 32 uint16_t limit0; member in struct:descriptor_table_entry_t 64 entry.limit0 = (limit & 0x0ffff);
|
/external/icu/icu4c/source/common/ |
bmpset.cpp | 537 const uint8_t *limit0=limit; 546 * including it if that is part of the span, otherwise set limit0 to before 557 limit0=limit; 563 limit0=limit; 570 limit0=limit; 586 return limit0; 595 return limit0; 664 return limit0;
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
loopfilter_8_neon.asm | 72 ; const uint8_t *limit0, 80 ; r3 const uint8_t *limit0, 179 ; const uint8_t *limit0, 187 ; r3 const uint8_t *limit0,
|
highbd_loopfilter_neon.c | 580 uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, 583 vpx_highbd_lpf_horizontal_4_neon(s, p, blimit0, limit0, thresh0, bd); 605 uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, 608 vpx_highbd_lpf_vertical_4_neon(s, p, blimit0, limit0, thresh0, bd); 629 uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, 632 vpx_highbd_lpf_horizontal_8_neon(s, p, blimit0, limit0, thresh0, bd); 657 uint16_t *s, int p, const uint8_t *blimit0, const uint8_t *limit0, 660 vpx_highbd_lpf_vertical_8_neon(s, p, blimit0, limit0, thresh0, bd);
|
loopfilter_4_neon.asm | 253 ; const uint8_t *limit0, 261 ; r3 const uint8_t *limit0, 272 vld1.8 {d2}, [r3] ; load limit0 to first half q 318 ; const uint8_t *limit0, 326 ; r3 const uint8_t *limit0, 337 vld1.8 {d2}, [r3] ; load limit0 to first half q
|
loopfilter_neon.c | 35 const uint8_t *blimit0, const uint8_t *limit0, const uint8_t *thresh0, 39 *limit_vec = vcombine_u8(vld1_dup_u8(limit0), vld1_dup_u8(limit1)); [all...] |
/external/libvpx/config/mips32-dspr2/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/arm-neon/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/arm64/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/arm/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/generic/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/mips32/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/mips64/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/x86/ |
vpx_dsp_rtcd.h | [all...] |
/external/libvpx/config/x86_64/ |
vpx_dsp_rtcd.h | [all...] |
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/arc/ |
taux.s | 37 lr r5, [limit0]
|
/external/libvpx/config/mips32-msa/ |
vpx_dsp_rtcd.h | [all...] |