/external/toybox/toys/pending/ |
D | mdev.c | 99 char *end2; in make_device() local 111 for (end2 = pos; in make_device() 112 end2<end && !isspace(*end2) && *end2!='#'; end2++); in make_device() 117 char *regex = strndup(pos, end2-pos); in make_device() 141 for(s = pos; s<end2 && *s!=':'; s++); in make_device() 142 if (s==end2) goto end_line; in make_device() 157 if (end2!=s2) { in make_device() 159 char *str = strndup(s, end2-s); in make_device() 182 if(pos < end2){ in make_device() 184 char *name = malloc(end2-pos+1); in make_device() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_suppressions.cc | 114 const char *end2 = end; in Parse() local 115 while (line != end2 && in Parse() 116 (end2[-1] == ' ' || end2[-1] == '\t' || end2[-1] == '\r')) in Parse() 117 end2--; in Parse() 132 s.templ = (char*)InternalAlloc(end2 - line + 1); in Parse() 133 internal_memcpy(s.templ, line, end2 - line); in Parse() 134 s.templ[end2 - line] = 0; in Parse()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_suppressions.cpp | 127 const char *end2 = end; in Parse() local 128 while (line != end2 && in Parse() 129 (end2[-1] == ' ' || end2[-1] == '\t' || end2[-1] == '\r')) in Parse() 130 end2--; in Parse() 145 s.templ = (char*)InternalAlloc(end2 - line + 1); in Parse() 146 internal_memcpy(s.templ, line, end2 - line); in Parse() 147 s.templ[end2 - line] = 0; in Parse()
|
/external/llvm/test/MC/ARM/ |
D | thumb-branches.s | 9 bl end2 11 .global end2 symbol 12 end2: label 23 @ CHECK: 0x400003 R_ARM_THM_CALL end2 0x0
|
/external/llvm-project/llvm/test/Transforms/ConstantHoisting/PowerPC/ |
D | masks.ll | 17 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/Transforms/ConstantHoisting/PowerPC/ |
D | masks.ll | 17 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-project/llvm/test/Transforms/SCCP/ |
D | ipsccp-phi-one-pred-dead.ll | 10 ; CHECK-NEXT: br i1 undef, label %end1, label %end2 17 ; CHECK: end2: 27 br i1 %0, label %end1, label %end2 39 end2:
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | InstrumentingClassWriter.java | 60 int end2 = b2.length(); in getCommonSuperClass() local 63 int start2 = b2.lastIndexOf(';', end2 - 1); in getCommonSuperClass() 65 && end1 - start1 == end2 - start2) { in getCommonSuperClass() 67 String p2 = b2.substring(start2 + 1, end2); in getCommonSuperClass() 71 end2 = start2; in getCommonSuperClass()
|
/external/llvm/test/CodeGen/X86/ |
D | code_placement_loop_rotation2.ll | 34 br label %if.end2 38 br label %if.end2 40 if.end2: 88 br label %if.end2 92 br label %if.end2 94 if.end2:
|
D | phielim-split.ll | 4 ; 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
|
D | code_placement_outline_optional_branches.ll | 47 br i1 %cmp2, label %if.then2, label %if.end2, !prof !1 51 br label %if.end2 53 if.end2:
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | code_placement_loop_rotation2.ll | 34 br label %if.end2 38 br label %if.end2 40 if.end2: 88 br label %if.end2 92 br label %if.end2 94 if.end2:
|
D | phielim-split.ll | 4 ; 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
|
/external/llvm-project/polly/test/ScopInfo/ |
D | max-loop-depth.ll | 28 br i1 %cmp2, label %for.body2, label %for.end2 41 br i1 %cmp3, label %for.body2, label %for.end2 44 for.end2: ; preds = %for.inc2, %for.body1 48 for.body3: ; preds = %for.end2 49 %i.2 = phi i64 [ 0, %for.end2 ], [ %i.next.2, %for.inc3 ] 61 for.end3: ; preds = %for.inc3, %for.end2
|
/external/llvm-project/pstl/test/std/algorithms/alg.sorting/alg.lex.comparison/ |
D | lexicographical_compare.pass.cpp | 27 …rator()(ExecutionPolicy&& exec, Iterator1 begin1, Iterator1 end1, Iterator2 begin2, Iterator2 end2, in operator ()() 30 const bool expected = std::lexicographical_compare(begin1, end1, begin2, end2, pred); in operator ()() 31 const bool actual = std::lexicographical_compare(exec, begin1, end1, begin2, end2, pred); in operator ()() 37 …rator()(ExecutionPolicy&& exec, Iterator1 begin1, Iterator1 end1, Iterator2 begin2, Iterator2 end2) in operator ()() 39 const bool expected = std::lexicographical_compare(begin1, end1, begin2, end2); in operator ()() 40 const bool actual = std::lexicographical_compare(exec, begin1, end1, begin2, end2); in operator ()()
|
/external/llvm-project/llvm/test/Transforms/HotColdSplit/ |
D | outline-if-then-else.ll | 22 ; CHECK: br i1 {{.*}}, label %codeRepl, label %if.end2 25 ; CHECK-LABEL: if.end2: 33 br i1 %tobool, label %if.then, label %if.end2 52 if.end2: ; preds = %entry
|
/external/llvm-project/llvm/test/MC/ARM/ |
D | thumb2-branch-ranges.s | 13 b.w end2 15 .global end2 symbol 16 end2: label
|
D | thumb-branches.s | 24 bl end2 26 .global end2 symbol 27 end2: label
|
/external/libcxx/test/support/ |
D | filesystem_test_helper.hpp | 363 , Iter2 start2, Iter2 const end2 in checkCollectionsEqual() argument 366 while (start1 != end1 && start2 != end2) { in checkCollectionsEqual() 372 return (start1 == end1 && start2 == end2); in checkCollectionsEqual() 379 , Iter2 const start2, Iter2 end2 in checkCollectionsEqualBackwards() argument 382 while (start1 != end1 && start2 != end2) { in checkCollectionsEqualBackwards() 383 --end1; --end2; in checkCollectionsEqualBackwards() 384 if (*end1 != *end2) { in checkCollectionsEqualBackwards() 388 return (start1 == end1 && start2 == end2); in checkCollectionsEqualBackwards()
|
/external/lzma/CPP/Common/ |
D | StringToInt.cpp | 38 const wchar_t *end2; in CONVERT_STRING_TO_UINT_FUNC() local 39 UInt32 res = ConvertStringToUInt32(s2, &end2); in CONVERT_STRING_TO_UINT_FUNC() 48 *end = end2; in CONVERT_STRING_TO_UINT_FUNC()
|
/external/skqp/src/sksl/ir/ |
D | SkSLProgram.h | 144 iterator(inner begin1, inner end1, inner begin2, inner end2) in iterator() 148 , fEnd2(end2) {} in iterator() 187 const_iterator(inner begin1, inner end1, inner begin2, inner end2) in const_iterator() 191 , fEnd2(end2) {} in const_iterator()
|
/external/llvm/test/CodeGen/Hexagon/ |
D | ifcvt-edge-weight.ll | 27 br label %if.end2 29 if.end2: 38 br i1 %cmp2, label %if.end2, label %if.else2, !prof !2
|
/external/llvm-project/llvm/test/CodeGen/Hexagon/ |
D | ifcvt-edge-weight.ll | 27 br label %if.end2 29 if.end2: 38 br i1 %cmp2, label %if.end2, label %if.else2, !prof !2
|
/external/libchrome/base/files/ |
D | file_util.cc | 113 std::string::size_type end2 = line2.find_last_not_of("\r\n"); in TextContentsEqual() local 114 if (end2 == std::string::npos) in TextContentsEqual() 116 else if (end2 + 1 < line2.length()) in TextContentsEqual() 117 line2.erase(end2 + 1); in TextContentsEqual()
|
/external/llvm-project/llvm/test/CodeGen/RISCV/ |
D | exception-pointer-register.ll | 39 ; RV32I-NEXT: .LBB0_3: # %end2 76 ; RV64I-NEXT: .LBB0_3: # %end2 97 invoke void @bar(i1* %p) to label %end2 unwind label %lpad 107 end2:
|