Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4hc.c353 const BYTE* start2=NULL; in LZ4HC_compress_generic() local
382 …HC_InsertAndGetWiderMatch(ctx, ip + ml - 2, ip + 1, matchlimit, ml, &ref2, &start2, maxNbAttempts); in LZ4HC_compress_generic()
393 if (start2 < ip + ml0) /* empirical */ in LZ4HC_compress_generic()
402 if ((start2 - ip) < 3) /* First Match too small : removed */ in LZ4HC_compress_generic()
405 ip = start2; in LZ4HC_compress_generic()
416 if ((start2 - ip) < OPTIMAL_ML) in LZ4HC_compress_generic()
421 if (ip+new_ml > start2 + ml2 - MINMATCH) new_ml = (int)(start2 - ip) + ml2 - MINMATCH; in LZ4HC_compress_generic()
422 correction = new_ml - (int)(start2 - ip); in LZ4HC_compress_generic()
425 start2 += correction; in LZ4HC_compress_generic()
432 if (start2 + ml2 < mflimit) in LZ4HC_compress_generic()
[all …]
/external/icu/icu4c/source/common/
Dunormcmp.cpp149 const UChar *start1, *start2, *limit1, *limit2; in unorm_cmpEquivFold() local
201 start2=s2; in unorm_cmpEquivFold()
257 start2=stack2[level2].start; /*Not uninitialized*/ in unorm_cmpEquivFold()
258 } while(start2==NULL); in unorm_cmpEquivFold()
308 if(start2<=(s2-2) && U16_IS_LEAD(c=*(s2-2))) { in unorm_cmpEquivFold()
386 stack2[0].start=start2; in unorm_cmpEquivFold()
401 start2=s2=fold2; in unorm_cmpEquivFold()
472 stack2[level2].start=start2; in unorm_cmpEquivFold()
483 start2=s2=p; in unorm_cmpEquivFold()
522 (U16_IS_TRAIL(c2) && start2!=(s2-1) && U16_IS_LEAD(*(s2-2))) in unorm_cmpEquivFold()
Dustrcase.cpp492 const UChar *start1, *start2, *limit1, *limit2; in _cmpFold() local
541 start2=m2=org2=s2; in _cmpFold()
597 start2=stack2[level2].start; /*Not uninitialized*/ in _cmpFold()
598 } while(start2==NULL); in _cmpFold()
692 if(start2<=(s2-2) && U16_IS_LEAD(c=*(s2-2))) { in _cmpFold()
772 stack2[0].start=start2; in _cmpFold()
787 start2=s2=fold2; in _cmpFold()
826 (U16_IS_TRAIL(c2) && start2!=(s2-1) && U16_IS_LEAD(*(s2-2))) in _cmpFold()
Dustring.cpp687 const UChar *start1, *start2, *limit1, *limit2; in uprv_strCompare() local
692 start2=s2; in uprv_strCompare()
743 limit2=start2+length1; /* use length1 here, too, to enforce assumption */ in uprv_strCompare()
788 limit2=start2+length2; in uprv_strCompare()
806 (U16_IS_TRAIL(c2) && start2!=s2 && U16_IS_LEAD(*(s2-1))) in uprv_strCompare()
Dubidi.c2106 int32_t i, start1, start2; in resolveImplicitLevels() local
2157 start2=start; /* to make Java compiler happy */ in resolveImplicitLevels()
2215 start2=i; in resolveImplicitLevels()
2218 processPropertySeq(pBiDi, &levState, resProp, start1, start2); in resolveImplicitLevels()
2219 processPropertySeq(pBiDi, &levState, DirProp_ON, start2, i); in resolveImplicitLevels()
2223 processPropertySeq(pBiDi, &levState, resProp, start1, start2); in resolveImplicitLevels()
2224 start1=start2; in resolveImplicitLevels()
2225 start2=i; in resolveImplicitLevels()
/external/openfst/src/include/fst/
Dconcat.h91 StateId start2 = fst2.Start(); in Concat() local
96 if (start2 != kNoStateId) in Concat()
97 fst1->AddArc(s1, Arc(0, 0, final, start2 + numstates1)); in Concat()
100 if (start2 != kNoStateId) in Concat()
130 StateId start2 = fst2->Start(); in Concat() local
131 if (start2 == kNoStateId) { in Concat()
148 fst2->AddArc(s2, Arc(0, 0, final, start2)); in Concat()
Dunion.h64 StateId start2 = fst2.Start(); in Union() local
65 if (start2 == kNoStateId) { in Union()
92 fst1->SetStart(start2); in Union()
98 fst1->AddArc(start1, Arc(0, 0, Weight::One(), start2 + numstates1)); in Union()
103 fst1->AddArc(nstart1, Arc(0, 0, Weight::One(), start2 + numstates1)); in Union()
/external/llvm/test/CodeGen/SystemZ/
Dframe-15.ll40 %start2 = getelementptr inbounds [978 x float], [978 x float]* %region2, i64 0, i64 0
41 call void @foo(float *%start1, float *%start2)
67 %start2 = getelementptr inbounds [978 x float], [978 x float]* %region2, i64 0, i64 0
68 call void @foo(float *%start1, float *%start2)
94 %start2 = getelementptr inbounds [978 x float], [978 x float]* %region2, i64 0, i64 0
95 call void @foo(float *%start1, float *%start2)
121 %start2 = getelementptr inbounds [2002 x float], [2002 x float]* %region2, i64 0, i64 0
122 call void @foo(float *%start1, float *%start2)
148 %start2 = getelementptr inbounds [2002 x float], [2002 x float]* %region2, i64 0, i64 0
149 call void @foo(float *%start1, float *%start2)
[all …]
/external/v8/tools/
Dcodemap.js157 var start2 = node.key, end2 = start2 + node.value.size;
158 if (start2 < end && start < end2) to_delete.push(start2);
159 addr = start2 - 1;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DTrieBuilder.java201 protected static final boolean equal_int(int[] array, int start1, int start2, int length) { in equal_int() argument
202 while(length>0 && array[start1]==array[start2]) { in equal_int()
204 ++start2; in equal_int()
DNormalizer2Impl.java394 CharSequence s2, int start2, int limit2) { in equal() argument
395 if((limit1-start1)!=(limit2-start2)) { in equal()
398 if(s1==s2 && start1==start2) { in equal()
402 if(s1.charAt(start1++)!=s2.charAt(start2++)) { in equal()
/external/scrypt/lib/crypto/
Dcrypto_scrypt-neon-salsa208.h59 uint32x4_t start2 = x8x13x2x7; in salsa20_8_intrinsic() local
65 uint32x4_t diag2 = start2; in salsa20_8_intrinsic()
103 x8x13x2x7 = diag2 + start2; in salsa20_8_intrinsic()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_posix.cc280 uptr start2, uptr end2) { in IntervalsAreSeparate() argument
282 CHECK(start2 <= end2); in IntervalsAreSeparate()
283 return (end1 < start2) || (end2 < start1); in IntervalsAreSeparate()
/external/v8/src/
Dprofile-generator.cc368 Address start2 = locator.key(), end2 = start2 + locator.value().size; in DeleteAllCoveredCode() local
369 if (start2 < end && start < end2) to_delete.Add(start2); in DeleteAllCoveredCode()
370 addr = start2 - 1; in DeleteAllCoveredCode()
/external/toybox/toys/pending/
Ddiff.c516 start1, end1, start2, end2; in do_diff() local
606 start2 = MAX(1, ptr1->c - (ptr1->a - ptr1->suff)); in do_diff()
613 printf("+%ld", (end2 - start2 + 1) ? start2: (start2 -1)); in do_diff()
614 if ((end2 - start2 +1) != 1) printf(",%ld ", (end2 - start2 +1)); in do_diff()
/external/e2fsprogs/lib/ext2fs/
Dpunch.c69 blk_t start2; in ind_punch() local
76 start2 = (start > offset) ? start - offset : 0; in ind_punch()
79 start2, count - offset, in ind_punch()
/external/valgrind/memcheck/
Dmc_leakcheck.c1743 Addr start2 = ch2->data; in MC_() local
1749 if (end1 < start2) { in MC_()
1756 } else if (start1 >= start2 && end1 <= end2 && isCustom1 && !isCustom2) { in MC_()
1764 } else if (start2 >= start1 && end2 <= end1 && isCustom2 && !isCustom1) { in MC_()
1774 start1, end1, start2, end2); in MC_()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBidi.java3381 int i, start1, start2; in resolveImplicitLevels() local
3430 start2 = start; /* to make the Java compiler happy */ in resolveImplicitLevels()
3490 start2 = i; in resolveImplicitLevels()
3493 processPropertySeq(levState, resProp, start1, start2); in resolveImplicitLevels()
3494 processPropertySeq(levState, _ON, start2, i); in resolveImplicitLevels()
3498 processPropertySeq(levState, resProp, start1, start2); in resolveImplicitLevels()
3499 start1 = start2; in resolveImplicitLevels()
3500 start2 = i; in resolveImplicitLevels()
/external/scrypt/patches/
Darm-neon.patch65 + uint32x4_t start2 = x8x13x2x7;
71 + uint32x4_t diag2 = start2;
109 + x8x13x2x7 = diag2 + start2;
/external/valgrind/coregrind/m_aspacemgr/
Daspacemgr-linux.c2727 Addr start2 = start1; in VG_() local
2730 if (extra < 0) start2 += extra; // this moves it down :-) in VG_()
2735 aspacem_assert(VG_IS_PAGE_ALIGNED(start2)); in VG_()
2738 startI = find_nsegment_idx( start2 ); in VG_()
2752 aspacem_assert(nsegments[startI].start <= start2); in VG_()
/external/icu/icu4c/source/test/cintltst/
Dncnvtst.c1902 UChar32 start, end, start2, end2, notStart, notEnd; member
2055 … (nameRanges[i].start2>=0 && !uset_containsRange(set, nameRanges[i].start2, nameRanges[i].end2)) in TestUnicodeSet()
/external/valgrind/VEX/priv/
Dguest_s390_toIR.c10669 s390_irgen_CLC(UChar length, IRTemp start1, IRTemp start2) in s390_irgen_CLC() argument
10674 s390_irgen_CLC_EX(len, start1, start2); in s390_irgen_CLC()
10835 s390_irgen_XC_EX(IRTemp length, IRTemp start1, IRTemp start2) in s390_irgen_XC_EX() argument
10837 s390_irgen_xonc(Iop_Xor8, length, start1, start2); in s390_irgen_XC_EX()
10842 s390_irgen_NC_EX(IRTemp length, IRTemp start1, IRTemp start2) in s390_irgen_NC_EX() argument
10844 s390_irgen_xonc(Iop_And8, length, start1, start2); in s390_irgen_NC_EX()
10849 s390_irgen_OC_EX(IRTemp length, IRTemp start1, IRTemp start2) in s390_irgen_OC_EX() argument
10851 s390_irgen_xonc(Iop_Or8, length, start1, start2); in s390_irgen_OC_EX()
10856 s390_irgen_CLC_EX(IRTemp length, IRTemp start1, IRTemp start2) in s390_irgen_CLC_EX() argument
10867 assign(current2, load(Ity_I8, binop(Iop_Add64, mkexpr(start2), in s390_irgen_CLC_EX()
[all …]
/external/skia/src/pathops/
DSkPathOpsTSect.h2023 const SkDPoint& start2 = sect2->fCurve[0]; in BinarySearch() local
2025 double t = head2->closestBoundedT(start2); in BinarySearch()
2026 if (sect1->fCurve.ptAtT(t).approximatelyEqual(start2)) { in BinarySearch()
2027 intersections->insert(t, 0, start2); in BinarySearch()
/external/chromium-trace/trace-viewer/tracing/third_party/components/polymer/
Dpolymer.js5702 function intersect(start1, end1, start2, end2) { argument
5704 if (end1 < start2 || end2 < start1)
5708 if (end1 == start2 || end2 == start1)
5712 if (start1 < start2) {
5714 return end1 - start2; // Overlap
5716 return end2 - start2; // Contained
/external/llvm/lib/Target/SystemZ/
DSystemZInstrFormats.td1576 (ins GR64:$start1, GR64:$start2, GR32:$char),
1577 [(set GR64:$end, (operator GR64:$start1, GR64:$start2,