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

12

/external/eigen/test/
H A Dbandmatrix.cpp21 Index subs = _m.subs(); local
23 MatrixType m(rows,cols,supers,subs);
35 for (int i=1; i<=m.subs();++i)
50 Index b = std::max<Index>(0,rows-d-subs);
53 dm1.block(subs+1,0,rows-subs-1-b,rows-subs-1-b).template triangularView<Lower>().setZero();
54 if(b>0) dm1.block(d+subs,0,b,cols).setZero();
68 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/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/parameter-framework/upstream/test/functional-tests/include/
H A DConfigFiles.hpp77 std::string format(std::string format, std::map<std::string, std::string> subs) argument
79 for (auto &sub : subs) {
/external/boringssl/src/crypto/curve25519/asm/
H A Dx25519-asm-arm.S1561 subs r5,r2,#1 label
1806 subs r5,r5,#1 label
/external/icu/icu4c/source/test/intltest/
H A Dmnkytst.cpp86 UnicodeString subs, subt; local
88 source.extract(MIN(s, slen), MAX(s, slen), subs); local
95 myCollator->getCollationKey(subs, collationKey1, status1);
99 report( subs, subt, result, revResult);
102 myCollator->getCollationKey(subs, collationKey1, status1);
106 report( subs, subt, result, revResult);
109 myCollator->getCollationKey(subs, collationKey1, status1);
113 report(subs, subt, result, revResult);
116 UnicodeString addOne(subs);
119 myCollator->getCollationKey(subs, collationKey
161 UnicodeString subs, subt; local
163 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 explicit 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/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.h109 struct demangle_component **subs; member in struct:d_info
112 /* The number of available entries in the subs array. */
114 /* The number of substitutions which we actually made from the subs
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorConcatenation.h197 // Collect dimension-wise indices (subs).
198 array<Index, NumDims> subs; local
201 subs[i] = index / m_outputStrides[i];
202 index -= subs[i] * m_outputStrides[i];
204 subs[0] = index;
207 subs[i] = index / m_outputStrides[i];
208 index -= subs[i] * m_outputStrides[i];
210 subs[NumDims - 1] = index;
214 if (subs[m_axis] < left_dims[m_axis]) {
217 left_index = subs[
319 array<Index, Base::NumDims> subs; local
[all...]
/external/pcre/dist2/src/
H A Dpcre2_substitute.c221 int subs; local
294 subs = 0;
367 if (subs == INT_MAX)
372 subs++;
825 rc = subs;
/external/google-benchmark/test/
H A Doutput_test_helper.cc64 SubMap const& subs = GetSubstitutions(); local
66 for (auto const& KV : subs) {
351 auto& subs = internal::GetSubstitutions(); local
355 for (auto& EKV : subs) {
362 if (!exists) subs.push_back(std::move(KV));
/external/libcxx/utils/google-benchmark/test/
H A Doutput_test_helper.cc64 SubMap const& subs = GetSubstitutions(); local
66 for (auto const& KV : subs) {
351 auto& subs = internal::GetSubstitutions(); local
355 for (auto& EKV : subs) {
362 if (!exists) subs.push_back(std::move(KV));
/external/selinux/libselinux/src/
H A Dlabel_file.h93 struct selabel_sub *subs; member in struct:saved_data
/external/freetype/src/sfnt/
H A Dttcmap.c252 /* subs 518 SUBHEAD[NSUBS] sub-headers array */
259 /* Note that for any n, `keys[n]' is a byte offset within the `subs' */
289 /* within the glyph IDs table (and not within the `subs' table itself or */
304 FT_Byte* subs; /* sub-headers */ local
339 subs = p;
340 glyph_ids = subs + ( max_subs + 1 ) * 8;
416 FT_Byte* subs = table + 518; /* subheaders table */ local
425 sub = subs; /* jump to first sub-header */
442 sub = subs + ( FT_PAD_FLOOR( TT_PEEK_USHORT( p ), 8 ) );
445 if ( sub == subs )
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
H A DItaniumDemangle.cpp222 if (!db.subs.empty()) {
223 for (const auto &n : db.subs.front())
246 if (sub < db.subs.size()) {
247 for (const auto &n : db.subs[sub])
834 db.subs.push_back(typename C::sub_type(1, db.names.back()));
847 db.subs.push_back(typename C::sub_type(1, db.names.back()));
862 db.subs.push_back(typename C::sub_type(1, db.names.back()));
1662 db.subs.pop_back();
1663 db.subs.emplace_back();
1689 db.subs
4207 template_param_type subs; member in struct:__anon23394::Db
[all...]
/external/freetype/src/pfr/
H A Dpfrtypes.h319 PFR_SubGlyphRec* subs; member in struct:PFR_GlyphRec_
/external/vixl/src/aarch64/
H A Dassembler-aarch64.cc427 void Assembler::subs(const Register& rd, function in class:vixl::aarch64::Assembler
436 subs(zr, rn, operand);
448 subs(rd, zr, operand);
3959 // adds/subs <Wd>, wsp, <Wm> [, LSL #0-3 ]
/external/v8/src/arm64/
H A Dassembler-arm64.cc1121 void Assembler::subs(const Register& rd, function in class:v8::internal::Assembler
1130 subs(zr, rn, operand);
1142 subs(rd, zr, operand);
2269 // adds/subs <Wd>, wsp, <Wm> [, LSL #0-3 ]
/external/vixl/src/aarch32/
H A Dassembler-aarch32.cc12264 void Assembler::subs(Condition cond, function in class:vixl::aarch32::Assembler
12405 Delegate(kSubs, &Assembler::subs, cond, size, rd, rn, operand);
12408 void Assembler::subs(Register rd, const Operand& operand) { function in class:vixl::aarch32::Assembler
12422 Delegate(kSubs, &Assembler::subs, rd, operand);
H A Dassembler-aarch32.h3482 void subs(Condition cond,
3487 void subs(Register rd, Register rn, const Operand& operand) { function in class:vixl::aarch32::Assembler
3488 subs(al, Best, rd, rn, operand);
3490 void subs(Condition cond, Register rd, Register rn, const Operand& operand) { function in class:vixl::aarch32::Assembler
3491 subs(cond, Best, rd, rn, operand);
3493 void subs(EncodingSize size, function in class:vixl::aarch32::Assembler
3497 subs(al, size, rd, rn, operand);
3500 void subs(Register rd, const Operand& operand);
H A Ddisasm-aarch32.cc3173 void Disassembler::subs(Condition cond, function in class:vixl::aarch32::Disassembler
3187 void Disassembler::subs(Register rd, const Operand& operand) { function in class:vixl::aarch32::Disassembler
7057 subs(Condition::None(),
7097 subs(Condition::None(),
7260 subs(Register(rd), imm);
7263 subs(Condition::None(), Narrow, Register(rd), Register(rd), imm);
8995 subs(CurrentCond(), Best, Register(rd), sp, imm);
9018 subs(Condition::None(),
9025 subs(CurrentCond(),
9738 subs(CurrentCon
[all...]

Completed in 8934 milliseconds

12