Home
last modified time | relevance | path

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

12

/external/toybox/toys/pending/
Dmdev.c97 char *end2; in make_device() local
108 for (end2 = pos; in make_device()
109 end2<end && !isspace(*end2) && *end2!='#'; end2++); in make_device()
114 char *regex = strndup(pos, end2-pos); in make_device()
138 for(s = pos; s<end2 && *s!=':'; s++); in make_device()
139 if (s==end2) goto end_line; in make_device()
154 if (end2!=s2) { in make_device()
156 char *str = strndup(s, end2-s); in make_device()
168 if (pos!=end2) goto end_line; in make_device()
172 pos=end2; in make_device()
Ddiff.c516 start1, end1, start2, end2; in do_diff() local
607 end2 = ptr2->prev - ptr2->b + ptr2->d; 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/compiler-rt/lib/sanitizer_common/
Dsanitizer_suppressions.cc116 const char *end2 = end; in Parse() local
117 while (line != end2 && (end2[-1] == ' ' || end2[-1] == '\t')) in Parse()
118 end2--; in Parse()
133 s.templ = (char*)InternalAlloc(end2 - line + 1); in Parse()
134 internal_memcpy(s.templ, line, end2 - line); in Parse()
135 s.templ[end2 - line] = 0; in Parse()
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/llvm/test/Transforms/ConstantHoisting/PowerPC/
Dmasks.ll17 br i1 undef, label %if.end167, label %end2
28 br i1 %cmp178, label %end1, label %end2
33 end2:
47 br i1 undef, label %if.end167, label %end2
58 br i1 %cmp178, label %end1, label %end2
63 end2:
/external/llvm/test/CodeGen/X86/
Dphielim-split.ll4 ; The critical edge from for.cond to if.end2 should be split to avoid injecting
17 br i1 %cmp, label %for.cond, label %if.end2
24 br i1 %tobool, label %for.cond, label %if.end2
26 if.end2: ; preds = %for.cond, %entry
Dcode_placement_outline_optional_branches.ll47 br i1 %cmp2, label %if.then2, label %if.end2, !prof !1
51 br label %if.end2
53 if.end2:
Drd-mod-wr-eflags.ll101 br i1 %tobool3, label %if.end2, label %return
104 if.end2:
155 br i1 %tobool3, label %if.end2, label %return
158 if.end2:
/external/llvm/test/Transforms/SimplifyCFG/AArch64/
Dprefer-fma.ll50 br label %if.end2
62 br label %if.end2
64 if.end2: ; preds = %if.else, %if.then
/external/llvm/test/CodeGen/AArch64/
Dtst-br.ll35 br i1 %tst3, label %end2, label %end1
38 end2:
Dmachine-copy-prop.ll65 br i1 %cmp2, label %if.end2, label %if.then2
69 br label %if.end2
71 if.end2: ; preds = %if.then682, %if.end
/external/v8/tools/
Dcodemap.js157 var start2 = node.key, end2 = start2 + node.value.size;
158 if (start2 < end && start < end2) to_delete.push(start2);
/external/wpa_supplicant_8/src/wps/
Dhttpread.c103 int end2 = 0; in word_eq() local
112 end2 = !isgraph(c2); in word_eq()
113 if (end1 || end2 || c1 != c2) in word_eq()
116 return end1 && end2; /* reached end of both words? */ in word_eq()
Dwps_upnp_ssdp.c43 int end2 = 0; in token_eq() local
52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-'); in token_eq()
53 if (end1 || end2 || c1 != c2) in token_eq()
56 return end1 && end2; /* reached end of both words? */ in token_eq()
/external/llvm/test/Transforms/Inline/
Dinline_cleanup.ll89 br i1 %cmp2, label %then2, label %end2
93 br label %end2
95 end2:
/external/libxml2/include/libxml/
DparserInternals.h526 xmlChar end2,
534 xmlChar end2,
624 xmlChar end2,
/external/skia/src/pathops/
DSkPathOpsCubic.cpp162 int end2 = hullOrder[hullIndex]; in hullIntersects() local
163 endPt[1] = &fPts[end2]; in hullIntersects()
168 int oddManMask = other_two(end1, end2); in hullIntersects()
171 int oddMan2 = end2 ^ oddManMask; in hullIntersects()
195 end1 = end2; in hullIntersects()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp332 BasicBlock::iterator end2 = Block2->getTerminator(); in CompareIfRegionBlock() local
336 if (iter2 != end2) in CompareIfRegionBlock()
/external/libxml2/
Dlegacy.c32 xmlChar end2, xmlChar end3);
52 xmlChar end2 ATTRIBUTE_UNUSED, in htmlDecodeEntities()
413 xmlChar end2 ATTRIBUTE_UNUSED, in xmlDecodeEntities()
/external/valgrind/memcheck/
Dmc_leakcheck.c1745 Addr end2 = ch2->data + ch2->szB - 1; in MC_() local
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/llvm/test/Transforms/JumpThreading/
Dcrash.ll527 br i1 %cmp2, label %bb, label %if.end2
530 br label %if.end2
532 if.end2:
/external/libxml2/os400/libxmlrpg/
DparserInternals.rpgle415 d end2 value like(xmlChar)
425 d end2 value like(xmlChar)
566 d end2 value like(xmlChar)
/external/valgrind/coregrind/m_debuginfo/
Dstorage.c1633 Addr sta1, sta2, end1, end2, toc1, toc2; in canonicaliseSymtab() local
1787 end2 = sta2 + di->symtab[i+1].size - 1; in canonicaliseSymtab()
1799 if (end1 > end2) { in canonicaliseSymtab()
1800 sta1 = end2 + 1; in canonicaliseSymtab()
1801 SWAP(Addr,sta1,sta2); SWAP(Addr,end1,end2); SWAP(Addr,toc1,toc2); in canonicaliseSymtab()
1805 if (end1 < end2) { in canonicaliseSymtab()
1822 di->symtab[i+1].size = end2 - sta2 + 1; in canonicaliseSymtab()
/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()
/external/wpa_supplicant_8/hs20/client/
Dosu_client.c2692 const char *pos, *end, *end2; in get_hostname() local
2707 end2 = os_strchr(pos, ':'); in get_hostname()
2708 if ((end && end2 && end2 < end) || (!end && end2)) in get_hostname()
2709 end = end2; in get_hostname()

12