Searched defs:subs (Results 1 - 25 of 27) sorted by relevance

12

/external/eigen/test/
H A Dbandmatrix.cpp22 Index subs = _m.subs(); local
24 MatrixType m(rows,cols,supers,subs);
36 for (int i=1; i<=m.subs();++i)
51 Index b = std::max<Index>(0,rows-d-subs);
54 dm1.block(subs+1,0,rows-subs-1-b,rows-subs-1-b).template triangularView<Lower>().setZero();
55 if(b>0) dm1.block(d+subs,0,b,cols).setZero();
71 Index subs local
[all...]
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DScannerTest.java32 Subroutine[] subs = scanner.scan(method.getMethodInfo2());
34 verifySubroutine(subs, 31, 31, new int[]{125, 25});
35 verifySubroutine(subs, 32, 31, new int[]{125, 25});
36 verifySubroutine(subs, 33, 31, new int[]{125, 25});
37 verifySubroutine(subs, 60, 31, new int[]{125, 25});
38 verifySubroutine(subs, 61, 31, new int[]{125, 25});
39 verifySubroutine(subs, 63, 31, new int[]{125, 25});
40 verifySubroutine(subs, 66, 31, new int[]{125, 25});
41 verifySubroutine(subs, 69, 31, new int[]{125, 25});
42 verifySubroutine(subs, 7
69 verifySubroutine(Subroutine[] subs, int pos, int start, int[] callers) argument
[all...]
/external/libselinux/src/
H A Dlabel_internal.h67 struct selabel_sub *subs; member in struct:selabel_handle
/external/llvm/test/MC/AArch64/
H A Darm64-diags.s299 subs w9, w10, sym@PAGEOFF label
300 subs x20, x30, sym@PAGEOFF label
302 ; CHECK-ERRORS: subs w9, w10, sym@PAGEOFF
305 ; CHECK-ERRORS: subs x20, x30, sym@PAGEOFF
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DQuicktimeTextTrackImpl.java43 List<Line> subs = new LinkedList<Line>(); field in class:QuicktimeTextTrackImpl
46 return subs;
67 for (Line sub : subs) {
96 for (Line sub : subs) {
H A DTextTrackImpl.java39 List<Line> subs = new LinkedList<Line>(); field in class:TextTrackImpl
42 return subs;
70 for (Line sub : subs) {
99 for (Line sub : subs) {
/external/regex-re2/re2/
H A Dprefilter.h27 AND, // All in subs() must match
28 OR, // One of subs() must match
40 vector<Prefilter*>* subs() { function in class:re2::Prefilter
45 // Set the children vector. Prefilter takes ownership of subs and
47 void set_subs(vector<Prefilter*>* subs) { subs_ = subs; } argument
H A Dsimplify.cc43 Regexp** subs; local
62 subs = sub();
64 if (!subs[i]->simple_)
73 subs = sub();
74 return subs[0]->simple_;
78 subs = sub();
79 if (!subs[0]->simple_)
81 switch (subs[0]->op_) {
201 Regexp** subs = re->sub(); local
203 Regexp* sub = subs[
301 Regexp** subs = re->sub(); local
[all...]
H A Dprefilter_tree.cc50 vector<Prefilter*>* subs = prefilter->subs(); local
51 for (int i = 0; i < subs->size(); i++)
52 if (KeepPart((*subs)[i], level + 1))
53 (*subs)[j++] = (*subs)[i];
55 delete (*subs)[i];
57 subs->resize(j);
62 for (int i = 0; i < prefilter->subs()->size(); i++)
63 if (!KeepPart((*prefilter->subs())[
182 const vector<Prefilter*>& subs = *f->subs(); local
[all...]
H A Dregexp.cc137 Regexp** subs = re->sub(); local
139 Regexp* sub = subs[i];
152 delete[] subs;
234 Regexp** subs = re->sub(); local
236 subs[i] = ConcatOrAlternate(op, sub+i*kMaxNsub, kMaxNsub, flags, false);
237 subs[nbigsub - 1] = ConcatOrAlternate(op, sub+(nbigsub-1)*kMaxNsub,
246 Regexp** subs = re->sub(); local
248 subs[i] = sub[i];
/external/selinux/libselinux/src/
H A Dlabel_internal.h72 struct selabel_sub *subs; member in struct:selabel_handle
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.cpp84 UnicodeString subs, subt; local
86 source.extract(MIN(s, slen), MAX(s, slen), subs); local
93 myCollator->getCollationKey(subs, collationKey1, status1);
97 report( subs, subt, result, revResult);
100 myCollator->getCollationKey(subs, collationKey1, status1);
104 report( subs, subt, result, revResult);
107 myCollator->getCollationKey(subs, collationKey1, status1);
111 report(subs, subt, result, revResult);
114 UnicodeString addOne(subs);
117 myCollator->getCollationKey(subs, collationKey
159 UnicodeString subs, subt; local
161 source.extract(MIN(s, slen), MAX(s, slen), subs); local
[all...]
/external/eigen/Eigen/src/Core/
H A DBandMatrix.h57 inline Index subs() const { return derived().subs(); } function in class:Eigen::internal::BandMatrixBase
78 else if (i>=rows()-subs())
79 len = std::max<Index>(0,coeffs().rows() - (i + 1 - rows() + subs()));
123 eigen_assert((i<0 && -i<=subs()) || (i>=0 && i<=supers()));
130 eigen_assert((i<0 && -i<=subs()) || (i>=0 && i<=supers()));
141 for (Index i=1; i<=subs();++i)
207 inline BandMatrix(Index rows=Rows, Index cols=Cols, Index supers=Supers, Index subs=Subs) argument
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(); } function in class:Eigen::internal::BandMatrix
269 BandMatrixWrapper(const CoefficientsType& coeffs, Index rows=_Rows, Index cols=_Cols, Index supers=_Supers, Index subs=_Subs) argument
287 inline Index subs() const { return m_subs.value(); } function in class:Eigen::internal::BandMatrixWrapper
[all...]
/external/elfutils/src/libebl/
H A Deblgstrtab.c255 struct Ebl_GStrent *subs; local
258 for (subs = (*sep)->next; subs != NULL; subs = subs->next)
259 if (subs->len == newstr->len)
266 return subs;
307 struct Ebl_GStrent *subs; local
317 for (subs = nodep->next; subs !
[all...]
H A Deblwstrtab.c249 struct Ebl_WStrent *subs; local
252 for (subs = (*sep)->next; subs != NULL; subs = subs->next)
253 if (subs->len == newstr->len)
260 return subs;
301 struct Ebl_WStrent *subs; local
311 for (subs = nodep->next; subs !
[all...]
/external/valgrind/coregrind/m_demangle/
H A Dcp-demangle.h110 struct demangle_component **subs; member in struct:d_info
113 /* The number of available entries in the subs array. */
115 /* The number of substitutions which we actually made from the subs
/external/freetype/src/sfnt/
H A Dttcmap.c241 /* subs 518 SUBHEAD[NSUBS] sub-headers array */
248 /* Note that for any n, `keys[n]' is a byte offset within the `subs' */
278 /* within the glyph IDs table (and not within the `subs' table itself or */
293 FT_Byte* subs; /* sub-headers */ local
328 subs = p;
329 glyph_ids = subs + (max_subs + 1) * 8;
405 FT_Byte* subs = table + 518; /* subheaders table */ local
414 sub = subs; /* jump to first sub-header */
431 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) );
434 if ( sub == subs )
[all...]
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttcmap.c241 /* subs 518 SUBHEAD[NSUBS] sub-headers array */
248 /* Note that for any n, `keys[n]' is a byte offset within the `subs' */
278 /* within the glyph IDs table (and not within the `subs' table itself or */
293 FT_Byte* subs; /* sub-headers */ local
328 subs = p;
329 glyph_ids = subs + (max_subs + 1) * 8;
405 FT_Byte* subs = table + 518; /* subheaders table */ local
414 sub = subs; /* jump to first sub-header */
431 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) );
434 if ( sub == subs )
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp63 printf("subs:\n");
64 for (auto& v : db.subs)
291 if (!db.subs.empty())
293 for (const auto& n : db.subs.front())
318 if (sub < db.subs.size())
320 for (const auto& n : db.subs[sub])
968 db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator()));
984 db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator()));
1002 db.subs.push_back(typename C::sub_type(1, db.names.back(), db.names.get_allocator()));
1904 db.subs
4876 template_param_type subs; member in struct:__cxxabiv1::__anon7853::Db
[all...]
/external/vixl/src/vixl/a64/
H A Dassembler-a64.cc890 void Assembler::subs(const Register& rd, function in class:vixl::Assembler
899 subs(zr, rn, operand);
911 subs(rd, zr, operand);
4592 // adds/subs <Wd>, wsp, <Wm> [, LSL #0-3 ]
/external/v8/src/arm64/
H A Dassembler-arm64.cc1112 void Assembler::subs(const Register& rd, function in class:v8::internal::Assembler
1121 subs(zr, rn, operand);
1133 subs(rd, zr, operand);
2170 // adds/subs <Wd>, wsp, <Wm> [, LSL #0-3 ]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 773 milliseconds

12