Home
last modified time | relevance | path

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

12345678

/external/javassist/src/test/test/javassist/bytecode/analysis/
DScannerTest.java32 Subroutine[] subs = scanner.scan(method.getMethodInfo2()); in testNestedFinally() local
34 verifySubroutine(subs, 31, 31, new int[]{125, 25}); in testNestedFinally()
35 verifySubroutine(subs, 32, 31, new int[]{125, 25}); in testNestedFinally()
36 verifySubroutine(subs, 33, 31, new int[]{125, 25}); in testNestedFinally()
37 verifySubroutine(subs, 60, 31, new int[]{125, 25}); in testNestedFinally()
38 verifySubroutine(subs, 61, 31, new int[]{125, 25}); in testNestedFinally()
39 verifySubroutine(subs, 63, 31, new int[]{125, 25}); in testNestedFinally()
40 verifySubroutine(subs, 66, 31, new int[]{125, 25}); in testNestedFinally()
41 verifySubroutine(subs, 69, 31, new int[]{125, 25}); in testNestedFinally()
42 verifySubroutine(subs, 71, 31, new int[]{125, 25}); in testNestedFinally()
[all …]
/external/icu4c/test/intltest/
Dmnkytst.cpp84 UnicodeString subs, subt; in TestCollationKey() local
86 source.extract(MIN(s, slen), MAX(s, slen), subs); in TestCollationKey()
93 myCollator->getCollationKey(subs, collationKey1, status1); in TestCollationKey()
97 report( subs, subt, result, revResult); in TestCollationKey()
100 myCollator->getCollationKey(subs, collationKey1, status1); in TestCollationKey()
104 report( subs, subt, result, revResult); in TestCollationKey()
107 myCollator->getCollationKey(subs, collationKey1, status1); in TestCollationKey()
111 report(subs, subt, result, revResult); in TestCollationKey()
114 UnicodeString addOne(subs); in TestCollationKey()
117 myCollator->getCollationKey(subs, collationKey1, status1); in TestCollationKey()
[all …]
/external/eigen/test/
Dbandmatrix.cpp22 Index subs = _m.subs(); in bandmatrix() local
24 MatrixType m(rows,cols,supers,subs); in bandmatrix()
36 for (int i=1; i<=m.subs();++i) in bandmatrix()
51 Index b = std::max<Index>(0,rows-d-subs); in bandmatrix()
54 dm1.block(subs+1,0,rows-subs-1-b,rows-subs-1-b).template triangularView<Lower>().setZero(); in bandmatrix()
55 if(b>0) dm1.block(d+subs,0,b,cols).setZero(); in bandmatrix()
71 Index subs = internal::random<Index>(0,rows-1); in test_bandmatrix() local
72 CALL_SUBTEST(bandmatrix(BandMatrix<float>(rows,cols,sups,subs)) ); in test_bandmatrix()
/external/elfutils/libebl/
Deblwstrtab.c270 struct Ebl_WStrent *subs; in ebl_wstrtabadd() local
273 for (subs = (*sep)->next; subs != NULL; subs = subs->next) in ebl_wstrtabadd()
274 if (subs->len == newstr->len) in ebl_wstrtabadd()
281 return subs; in ebl_wstrtabadd()
322 struct Ebl_WStrent *subs; in copystrings() local
332 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
334 assert (subs->len < nodep->len); in copystrings()
335 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
336 assert (subs->offset != 0 || subs->string[0] == '\0'); in copystrings()
Deblgstrtab.c276 struct Ebl_GStrent *subs; in ebl_gstrtabadd() local
279 for (subs = (*sep)->next; subs != NULL; subs = subs->next) in ebl_gstrtabadd()
280 if (subs->len == newstr->len) in ebl_gstrtabadd()
287 return subs; in ebl_gstrtabadd()
328 struct Ebl_GStrent *subs; in copystrings() local
338 for (subs = nodep->next; subs != NULL; subs = subs->next) in copystrings()
340 assert (subs->len < nodep->len); in copystrings()
341 subs->offset = nodep->offset + (nodep->len - subs->len) * nodep->width; in copystrings()
342 assert (subs->offset != 0 || subs->string[0] == '\0'); in copystrings()
Deblstrtab.c260 for (struct Ebl_Strent *subs = (*sep)->next; subs != NULL; in ebl_strtabadd() local
261 subs = subs->next) in ebl_strtabadd()
262 if (subs->len == newstr->len) in ebl_strtabadd()
269 return subs; in ebl_strtabadd()
318 for (struct Ebl_Strent *subs = nodep->next; subs != NULL; subs = subs->next) in copystrings() local
320 assert (subs->len < nodep->len); in copystrings()
321 subs->offset = nodep->offset + nodep->len - subs->len; in copystrings()
322 assert (subs->offset != 0 || subs->string[0] == '\0'); in copystrings()
/external/regex-re2/re2/
Dprefilter_tree.cc50 vector<Prefilter*>* subs = prefilter->subs(); in KeepPart() local
51 for (int i = 0; i < subs->size(); i++) in KeepPart()
52 if (KeepPart((*subs)[i], level + 1)) in KeepPart()
53 (*subs)[j++] = (*subs)[i]; in KeepPart()
55 delete (*subs)[i]; in KeepPart()
57 subs->resize(j); in KeepPart()
62 for (int i = 0; i < prefilter->subs()->size(); i++) in KeepPart()
63 if (!KeepPart((*prefilter->subs())[i], level + 1)) in KeepPart()
149 for (int i = 0; i < node->subs()->size() ; i++) { in NodeString()
152 s += Itoa((*node->subs())[i]->unique_id()); in NodeString()
[all …]
Dsimplify.cc43 Regexp** subs; in ComputeSimple() local
62 subs = sub(); in ComputeSimple()
64 if (!subs[i]->simple_) in ComputeSimple()
73 subs = sub(); in ComputeSimple()
74 return subs[0]->simple_; in ComputeSimple()
78 subs = sub(); in ComputeSimple()
79 if (!subs[0]->simple_) in ComputeSimple()
81 switch (subs[0]->op_) { in ComputeSimple()
201 Regexp** subs = re->sub(); in PostVisit() local
203 Regexp* sub = subs[i]; in PostVisit()
[all …]
Dprefilter.h40 vector<Prefilter*>* subs() { in subs() function
47 void set_subs(vector<Prefilter*>* subs) { subs_ = subs; } in set_subs() argument
/external/llvm/test/CodeGen/Thumb2/
Dthumb2-sub3.ll6 ; CHECK: subs r0, #171
15 ; CHECK: subs.w r0, r0, #1179666
24 ; CHECK: subs.w r0, r0, #872428544
33 ; CHECK: subs.w r0, r0, #1448498774
42 ; CHECK: subs.w r0, r0, #66846720
51 ; CHECK: subs r0, #2
Dthumb2-sbc.ll5 ; CHECK: subs r0, r0, r2
13 ; CHECK: subs r0, #2
22 ; CHECK: subs r0, #2
31 ; CHECK: subs r0, #2
40 ; CHECK: subs r0, #2
49 ; CHECK: subs r0, #2
/external/skia/src/opts/
Dmemset16_neon.S40 subs r2, r2, #2
96 subs r12, r12, #1
104 subs r12, r12, #1
113 subs r12, r12, #1
127 subs r2, r2, #8
132 subs r2, r2, #4
/external/skia/legacy/src/opts/
Dmemset16_neon.S40 subs r2, r2, #2
96 subs r12, r12, #1
104 subs r12, r12, #1
113 subs r12, r12, #1
127 subs r2, r2, #8
132 subs r2, r2, #4
/external/eigen/Eigen/src/Core/
DBandMatrix.h57 inline Index subs() const { return derived().subs(); } in subs() function
78 else if (i>=rows()-subs()) in col()
79 len = std::max<Index>(0,coeffs().rows() - (i + 1 - rows() + subs())); in col()
123 eigen_assert((i<0 && -i<=subs()) || (i>=0 && i<=supers())); in diagonal()
130 eigen_assert((i<0 && -i<=subs()) || (i>=0 && i<=supers())); in diagonal()
141 for (Index i=1; i<=subs();++i) in evalTo()
207 inline BandMatrix(Index rows=Rows, Index cols=Cols, Index supers=Supers, Index subs=Subs)
208 : m_coeffs(1+supers+subs,cols),
209 m_rows(rows), m_supers(supers), m_subs(subs)
223 inline Index subs() const { return m_subs.value(); }
[all …]
/external/compiler-rt/lib/arm/
Dumodsi3.S33 subs i, r3, r2
49 subs r, a, b, lsl i
56 subs r, a, b
Dudivmodsi4.S47 subs i, r3, r4
64 subs r, a, b, lsl i
72 subs r, a, b
Dudivsi3.S58 subs i, r3, r2
75 subs r, a, b, lsl i
83 subs r, a, b
/external/libvpx/libvpx/vpx_scale/arm/neon/
Dvp8_vpxyv12_copyframe_func_neon.asm69 subs r12, r12, #1
82 subs lr, lr, #1
125 subs r12, r12, #1
134 subs lr, lr, #1
148 subs r1, r1, #1
182 subs r12, r12, #16
188 subs lr, lr, #1
217 subs r12, r12, #8
223 subs lr, lr, #1
Dvp8_vpxyv12_extendframeborders_neon.asm60 subs r12, r12, #1
99 subs r7, r7, #1
120 subs r12, r12, #1
165 subs r12, r12, #1
206 subs r7, r7, #1
223 subs r12, r12, #1
231 subs r10, r10, #1
246 subs r9, r9, #1
268 subs r7, r7, #1
280 subs r9, r9, #1
[all …]
/external/chromium/chrome/browser/safe_browsing/
Dsafe_browsing_store.cc22 void KnockoutSubs(std::vector<S>* subs, in KnockoutSubs() argument
31 typename std::vector<S>::iterator sub_out = subs->begin(); in KnockoutSubs()
39 typename std::vector<S>::iterator sub_iter = subs->begin(); in KnockoutSubs()
41 while (add_iter != adds->end() && sub_iter != subs->end()) { in KnockoutSubs()
64 subs->erase(sub_out, sub_iter); in KnockoutSubs()
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
Dregexp-dna.js1693 subs = { variable
1710 for(k in subs)
1711 …dnaInput = dnaInput.replace(k, subs[k]) // FIXME: Would like this to be a global substitution in a…
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
Dregexp-dna.js1693 subs = { variable
1710 for(k in subs)
1711 dnaInput = dnaInput.replace(k, subs[k], "g")
/external/e2fsprogs/
DMakefile.in25 all:: subs
30 subs: $(DEP_SUBSTITUTE)
38 all-progs-recursive all-libs-recursive: subs
61 install: subs all-libs-recursive install-progs-recursive \
65 install-strip: subs all-libs-recursive install-strip-progs-recursive \
143 check:: subs check-recursive
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DTextTrackImpl.java39 List<Line> subs = new LinkedList<Line>(); field in TextTrackImpl
42 return subs; in getSubs()
70 for (Line sub : subs) { in getSamples()
99 for (Line sub : subs) { in getDecodingTimeEntries()
/external/llvm/test/CodeGen/ARM/
Dsub.ll6 ; CHECK: subs r0, r0, #171
15 ; CHECK: subs r0, r0, #66846720
24 ; CHECK: subs r0, r0, #2

12345678