Home
last modified time | relevance | path

Searched refs:limit1 (Results 1 – 25 of 51) sorted by relevance

123

/external/libaom/libaom/aom_dsp/x86/
Dhighbd_loopfilter_avx2.c22 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in aom_highbd_lpf_horizontal_14_dual_avx2() argument
25 blimit1, limit1, thresh1, bd); in aom_highbd_lpf_horizontal_14_dual_avx2()
30 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in aom_highbd_lpf_vertical_14_dual_avx2() argument
33 limit1, thresh1, bd); in aom_highbd_lpf_vertical_14_dual_avx2()
38 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in aom_highbd_lpf_horizontal_4_dual_avx2() argument
41 limit1, thresh1, bd); in aom_highbd_lpf_horizontal_4_dual_avx2()
46 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in aom_highbd_lpf_horizontal_8_dual_avx2() argument
49 limit1, thresh1, bd); in aom_highbd_lpf_horizontal_8_dual_avx2()
54 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in aom_highbd_lpf_vertical_4_dual_avx2() argument
57 limit1, thresh1, bd); in aom_highbd_lpf_vertical_4_dual_avx2()
[all …]
/external/icu/icu4c/source/common/
Dunormcmp.cpp150 const UChar *start1, *start2, *limit1, *limit2; in unorm_cmpEquivFold() local
192 limit1=NULL; in unorm_cmpEquivFold()
194 limit1=s1+length1; in unorm_cmpEquivFold()
217 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
233 limit1=stack1[level1].limit; /*Not uninitialized*/ in unorm_cmpEquivFold()
283 if(s1!=limit1 && U16_IS_TRAIL(c=*s1)) { in unorm_cmpEquivFold()
339 stack1[0].limit=limit1; in unorm_cmpEquivFold()
353 limit1=fold1+length; in unorm_cmpEquivFold()
429 stack1[level1].limit=limit1; in unorm_cmpEquivFold()
439 limit1=p+length; in unorm_cmpEquivFold()
[all …]
Dustring.cpp690 const UChar *start1, *start2, *limit1, *limit2; in uprv_strCompare() local
718 limit1=limit2=NULL; in uprv_strCompare()
725 limit1=start1+length1; in uprv_strCompare()
729 if(s1==limit1) { in uprv_strCompare()
761 limit1=start1+length1; in uprv_strCompare()
764 limit1=start1+length1; in uprv_strCompare()
767 limit1=start1+length2; in uprv_strCompare()
776 if(s1==limit1) { in uprv_strCompare()
790 limit1=start1+length1; in uprv_strCompare()
798 (c1<=0xdbff && (s1+1)!=limit1 && U16_IS_TRAIL(*(s1+1))) || in uprv_strCompare()
Dustrcase.cpp1403 const UChar *start1, *start2, *limit1, *limit2; in _cmpFold() local
1446 limit1=NULL; in _cmpFold()
1448 limit1=s1+length1; in _cmpFold()
1471 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in _cmpFold()
1487 limit1=stack1[level1].limit; /*Not uninitialized*/ in _cmpFold()
1538 } else if(s1==limit1) { in _cmpFold()
1581 if(s1!=limit1 && U16_IS_TRAIL(c=*s1)) { in _cmpFold()
1638 stack1[0].limit=limit1; in _cmpFold()
1652 limit1=fold1+length; in _cmpFold()
1725 (c1<=0xdbff && s1!=limit1 && U16_IS_TRAIL(*s1)) || in _cmpFold()
/external/skia/src/core/
DSkLineClipper.cpp13 template <typename T> T pin_unsorted(T value, T limit0, T limit1) { in pin_unsorted() argument
14 if (limit1 < limit0) { in pin_unsorted()
16 swap(limit0, limit1); in pin_unsorted()
19 SkASSERT(limit0 <= limit1); in pin_unsorted()
23 } else if (value > limit1) { in pin_unsorted()
24 value = limit1; in pin_unsorted()
166 SkScalar limit0, SkScalar limit1) { in is_between_unsorted() argument
167 if (limit0 < limit1) { in is_between_unsorted()
168 return limit0 <= value && value <= limit1; in is_between_unsorted()
170 return limit1 <= value && value <= limit0; in is_between_unsorted()
/external/skqp/src/core/
DSkLineClipper.cpp13 template <typename T> T pin_unsorted(T value, T limit0, T limit1) { in pin_unsorted() argument
14 if (limit1 < limit0) { in pin_unsorted()
16 swap(limit0, limit1); in pin_unsorted()
19 SkASSERT(limit0 <= limit1); in pin_unsorted()
23 } else if (value > limit1) { in pin_unsorted()
24 value = limit1; in pin_unsorted()
166 SkScalar limit0, SkScalar limit1) { in is_between_unsorted() argument
167 if (limit0 < limit1) { in is_between_unsorted()
168 return limit0 <= value && value <= limit1; in is_between_unsorted()
170 return limit1 <= value && value <= limit0; in is_between_unsorted()
/external/libopus/silk/
DMacroCount.h669 static OPUS_INLINE opus_int silk_LIMIT_int(opus_int a, opus_int limit1, opus_int limit2) in silk_LIMIT_int() argument
674 ret = ((limit1) > (limit2) ? ((a) > (limit1) ? (limit1) : ((a) < (limit2) ? (limit2) : (a))) \ in silk_LIMIT_int()
675 : ((a) > (limit2) ? (limit2) : ((a) < (limit1) ? (limit1) : (a)))); in silk_LIMIT_int()
681 static OPUS_INLINE opus_int16 silk_LIMIT_16(opus_int16 a, opus_int16 limit1, opus_int16 limit2) in silk_LIMIT_16() argument
686 ret = ((limit1) > (limit2) ? ((a) > (limit1) ? (limit1) : ((a) < (limit2) ? (limit2) : (a))) \ in silk_LIMIT_16()
687 : ((a) > (limit2) ? (limit2) : ((a) < (limit1) ? (limit1) : (a)))); in silk_LIMIT_16()
694 static OPUS_INLINE opus_int32 silk_LIMIT_32(opus_int32 a, opus_int32 limit1, opus_int32 limit2) in silk_LIMIT_32() argument
699 ret = ((limit1) > (limit2) ? ((a) > (limit1) ? (limit1) : ((a) < (limit2) ? (limit2) : (a))) \ in silk_LIMIT_32()
700 : ((a) > (limit2) ? (limit2) : ((a) < (limit1) ? (limit1) : (a)))); in silk_LIMIT_32()
DSigProc_FIX.h602 #define silk_LIMIT( a, limit1, limit2) ((limit1) > (limit2) ? ((a) > (limit1) ? (limit1) : ((a… argument
603 … : ((a) > (limit2) ? (limit2) : ((a) < (limit1) ? (limit1) : (a))))
/external/libvpx/libvpx/vpx_dsp/mips/
Dloopfilter_filters_dspr2.c287 const uint8_t *limit1, const uint8_t *thresh1) { in vpx_lpf_horizontal_4_dual_dspr2() argument
289 vpx_lpf_horizontal_4_dspr2(s + 8, p, blimit1, limit1, thresh1); in vpx_lpf_horizontal_4_dual_dspr2()
295 const uint8_t *limit1, const uint8_t *thresh1) { in vpx_lpf_horizontal_8_dual_dspr2() argument
297 vpx_lpf_horizontal_8_dspr2(s + 8, p, blimit1, limit1, thresh1); in vpx_lpf_horizontal_8_dual_dspr2()
304 const uint8_t *limit1, in vpx_lpf_vertical_4_dual_dspr2() argument
307 vpx_lpf_vertical_4_dspr2(s + 8 * p, p, blimit1, limit1, thresh1); in vpx_lpf_vertical_4_dual_dspr2()
314 const uint8_t *limit1, in vpx_lpf_vertical_8_dual_dspr2() argument
317 vpx_lpf_vertical_8_dspr2(s + 8 * p, p, blimit1, limit1, thresh1); in vpx_lpf_vertical_8_dual_dspr2()
Dloopfilter_4_msa.c47 v16u8 mask, hev, flat, thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; in vpx_lpf_horizontal_4_dual_msa() local
62 limit1 = (v16u8)__msa_fill_b(*limit1_ptr); in vpx_lpf_horizontal_4_dual_msa()
63 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); in vpx_lpf_horizontal_4_dual_msa()
108 v16u8 thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; in vpx_lpf_vertical_4_dual_msa() local
131 limit1 = (v16u8)__msa_fill_b(*limit1_ptr); in vpx_lpf_vertical_4_dual_msa()
132 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); in vpx_lpf_vertical_4_dual_msa()
/external/libaom/libaom/aom_dsp/mips/
Dloopfilter_filters_dspr2.c289 const uint8_t *limit1, const uint8_t *thresh1) { in aom_lpf_horizontal_4_dual_dspr2() argument
291 aom_lpf_horizontal_4_dspr2(s + 8, p, blimit1, limit1, thresh1); in aom_lpf_horizontal_4_dual_dspr2()
297 const uint8_t *limit1, const uint8_t *thresh1) { in aom_lpf_horizontal_8_dual_dspr2() argument
299 aom_lpf_horizontal_8_dspr2(s + 8, p, blimit1, limit1, thresh1); in aom_lpf_horizontal_8_dual_dspr2()
306 const uint8_t *limit1, in aom_lpf_vertical_4_dual_dspr2() argument
309 aom_lpf_vertical_4_dspr2(s + 8 * p, p, blimit1, limit1, thresh1); in aom_lpf_vertical_4_dual_dspr2()
316 const uint8_t *limit1, in aom_lpf_vertical_8_dual_dspr2() argument
319 aom_lpf_vertical_8_dspr2(s + 8 * p, p, blimit1, limit1, thresh1); in aom_lpf_vertical_8_dual_dspr2()
Dloopfilter_4_msa.c47 v16u8 mask, hev, flat, thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; in aom_lpf_horizontal_4_dual_msa() local
62 limit1 = (v16u8)__msa_fill_b(*limit1_ptr); in aom_lpf_horizontal_4_dual_msa()
63 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); in aom_lpf_horizontal_4_dual_msa()
108 v16u8 thresh0, b_limit0, limit0, thresh1, b_limit1, limit1; in aom_lpf_vertical_4_dual_msa() local
131 limit1 = (v16u8)__msa_fill_b(*limit1_ptr); in aom_lpf_vertical_4_dual_msa()
132 limit0 = (v16u8)__msa_ilvr_d((v2i64)limit1, (v2i64)limit0); in aom_lpf_vertical_4_dual_msa()
/external/libaom/libaom/aom_dsp/
Dloopfilter.c153 const uint8_t *blimit1, const uint8_t *limit1, in aom_lpf_horizontal_4_dual_c() argument
156 aom_lpf_horizontal_4_c(s + 4, p, blimit1, limit1, thresh1); in aom_lpf_horizontal_4_dual_c()
177 const uint8_t *blimit1, const uint8_t *limit1, in aom_lpf_vertical_4_dual_c() argument
180 aom_lpf_vertical_4_c(s + 4 * pitch, pitch, blimit1, limit1, thresh1); in aom_lpf_vertical_4_dual_c()
242 const uint8_t *blimit1, const uint8_t *limit1, in aom_lpf_horizontal_6_dual_c() argument
245 aom_lpf_horizontal_6_c(s + 4, p, blimit1, limit1, thresh1); in aom_lpf_horizontal_6_dual_c()
270 const uint8_t *blimit1, const uint8_t *limit1, in aom_lpf_horizontal_8_dual_c() argument
273 aom_lpf_horizontal_8_c(s + 4, p, blimit1, limit1, thresh1); in aom_lpf_horizontal_8_dual_c()
294 const uint8_t *blimit1, const uint8_t *limit1, in aom_lpf_vertical_6_dual_c() argument
297 aom_lpf_vertical_6_c(s + 4 * pitch, pitch, blimit1, limit1, thresh1); in aom_lpf_vertical_6_dual_c()
[all …]
Daom_dsp_rtcd_defs.pl376 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
385 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
391 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
397 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
403 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
409 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
415 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
421 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
430 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
433 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
[all …]
/external/libvpx/libvpx/test/
Dlpf_test.cc46 const uint8_t *blimit1, const uint8_t *limit1,
56 const uint8_t *blimit1, const uint8_t *limit1,
305 limit1[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, in TEST_P()
312 const uint8_t limit = *limit0 < *limit1 ? *limit0 : *limit1; in TEST_P()
316 limit1, thresh1, bit_depth_); in TEST_P()
318 thresh0, blimit1, limit1, thresh1, in TEST_P()
322 limit1, thresh1); in TEST_P()
324 thresh0, blimit1, limit1, thresh1)); in TEST_P()
368 limit1[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, in TEST_P()
381 limit1, thresh1, bit_depth_); in TEST_P()
[all …]
/external/libaom/libaom/test/
Dlpf_test.cc45 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, \
156 op(s, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1, bd); in call_dualfilter()
160 op(s, p, blimit0, limit0, thresh0, blimit1, limit1, thresh1); in call_dualfilter()
313 limit1[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, \
320 const uint8_t limit = *limit0 < *limit1 ? *limit0 : *limit1; \
323 limit1, thresh1, bit_depth_, ref_loopfilter_op_); \
326 limit1, thresh1, bit_depth_, loopfilter_op_)); \
370 limit1[16]) = { tmp, tmp, tmp, tmp, tmp, tmp, tmp, tmp, \
382 limit1, thresh1, bit_depth_, ref_loopfilter_op_); \
385 limit1, thresh1, bit_depth_, loopfilter_op_)); \
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dloopfilter.c132 const uint8_t *blimit1, const uint8_t *limit1, in vpx_lpf_horizontal_4_dual_c() argument
135 vpx_lpf_horizontal_4_c(s + 8, pitch, blimit1, limit1, thresh1); in vpx_lpf_horizontal_4_dual_c()
156 const uint8_t *blimit1, const uint8_t *limit1, in vpx_lpf_vertical_4_dual_c() argument
159 vpx_lpf_vertical_4_c(s + 8 * pitch, pitch, blimit1, limit1, thresh1); in vpx_lpf_vertical_4_dual_c()
205 const uint8_t *blimit1, const uint8_t *limit1, in vpx_lpf_horizontal_8_dual_c() argument
208 vpx_lpf_horizontal_8_c(s + 8, pitch, blimit1, limit1, thresh1); in vpx_lpf_horizontal_8_dual_c()
229 const uint8_t *blimit1, const uint8_t *limit1, in vpx_lpf_vertical_8_dual_c() argument
232 vpx_lpf_vertical_8_c(s + 8 * pitch, pitch, blimit1, limit1, thresh1); in vpx_lpf_vertical_8_dual_c()
476 const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, in vpx_highbd_lpf_horizontal_4_dual_c() argument
479 vpx_highbd_lpf_horizontal_4_c(s + 8, pitch, blimit1, limit1, thresh1, bd); in vpx_highbd_lpf_horizontal_4_dual_c()
[all …]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationSettings.java206 int limit1 = pair >>> 24; in setReordering() local
207 while(b < limit1) { in setReordering()
213 table[limit1] = 0; in setReordering()
214 b = limit1 + 1; in setReordering()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationSettings.java208 int limit1 = pair >>> 24; in setReordering() local
209 while(b < limit1) { in setReordering()
215 table[limit1] = 0; in setReordering()
216 b = limit1 + 1; in setReordering()
/external/icu/icu4c/source/i18n/
Dcollationsettings.cpp161 int32_t limit1 = (int32_t)(pair >> 24); in setReordering() local
162 while(b < limit1) { in setReordering()
168 table[limit1] = 0; in setReordering()
169 b = limit1 + 1; in setReordering()
/external/libvpx/libvpx/vpx_dsp/arm/
Dloopfilter_8_neon.asm75 ; const uint8_t *limit1,
83 ; sp + 8 const uint8_t *limit1,
92 ldr r3, [sp, #24] ; limit1
182 ; const uint8_t *limit1,
190 ; sp + 8 const uint8_t *limit1,
199 ldr r3, [sp, #24] ; limit1
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNormalizer.java2167 int s1, s2, limit1, limit2; in cmpEquivFold() local
2212 limit1=cs1.length(); in cmpEquivFold()
2229 if(s1==limit1) { in cmpEquivFold()
2245 limit1=cs1.length(); in cmpEquivFold()
2295 if(s1!=limit1 && Character.isLowSurrogate(c=cs1.charAt(s1))) { in cmpEquivFold()
2368 limit1=fold1.length(); in cmpEquivFold()
2460 limit1=decomp1.length(); in cmpEquivFold()
2531 (c1<=0xdbff && s1!=limit1 && Character.isLowSurrogate(cs1.charAt(s1))) || in cmpEquivFold()
/external/libvpx/config/arm-neon/vpx_dsp/arm/
Dloopfilter_8_neon.asm.S85 @ const uint8_t *limit1,
93 @ sp + 8 const uint8_t *limit1,
103 ldr r3, [sp, #24] @ limit1
194 @ const uint8_t *limit1,
202 @ sp + 8 const uint8_t *limit1,
212 ldr r3, [sp, #24] @ limit1
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNormalizer.java2116 int s1, s2, limit1, limit2; in cmpEquivFold() local
2161 limit1=cs1.length(); in cmpEquivFold()
2178 if(s1==limit1) { in cmpEquivFold()
2194 limit1=cs1.length(); in cmpEquivFold()
2244 if(s1!=limit1 && Character.isLowSurrogate(c=cs1.charAt(s1))) { in cmpEquivFold()
2317 limit1=fold1.length(); in cmpEquivFold()
2409 limit1=decomp1.length(); in cmpEquivFold()
2480 (c1<=0xdbff && s1!=limit1 && Character.isLowSurrogate(cs1.charAt(s1))) || in cmpEquivFold()
/external/libaom/config/x86_64/config/
Daom_dsp_rtcd.h829 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
830 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
837 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
838 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
845 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
846 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
853 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
854 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
861 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
862 … *limit0, const uint8_t *thresh0, const uint8_t *blimit1, const uint8_t *limit1, const uint8_t *th…
[all …]

123