Searched defs:vector (Results 126 - 150 of 276) sorted by relevance

1234567891011>>

/external/openfst/src/include/fst/extensions/pdt/
H A Dpdt.h45 // The stacks are stored in a tree. The nodes are stored in vector
47 // ID'ed by its position in the vector. Its parent node represents
58 PdtStack(const vector<pair<Label, Label> > &parens) argument
139 vector<pair<Label, Label> > parens_;
140 vector<StackNode> nodes_;
/external/openfst/src/include/fst/
H A Dutil.h35 #include <vector>
36 using std::vector;
123 void StlReserve(vector<S, T> *c, int64 n) {
143 READ_STL_SEQ_TYPE(vector);
223 WRITE_STL_SEQ_TYPE(vector);
276 vector<pair<I, I> >* pairs,
292 vector<char *> col;
316 const vector<pair<I, I> >& pairs) {
343 vector<pair<Label, Label> >* pairs,
350 vector<pai
315 WriteIntPairs(const string& filename, const vector<pair<I, I> >& pairs) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftcalc.c794 FT_Vector_Transform_Scaled( FT_Vector* vector, argument
803 if ( !vector || !matrix )
806 xz = FT_MulDiv( vector->x, matrix->xx, val ) +
807 FT_MulDiv( vector->y, matrix->xy, val );
809 yz = FT_MulDiv( vector->x, matrix->yx, val ) +
810 FT_MulDiv( vector->y, matrix->yy, val );
812 vector->x = xz;
813 vector->y = yz;
/external/ppp/pppd/plugins/radius/
H A Dsendserver.c40 unsigned char *buf, *vector, *lenptr; local
107 vector = (char *)auth->vector;
111 memcpy ((char *) md5buf + secretlen, vector,
116 vector = buf;
143 memcpy ((char *) md5buf + secretlen, (char *) auth->vector,
210 unsigned char vector[AUTH_VECTOR_LEN]; local
272 memset((char *) auth->vector, 0, AUTH_VECTOR_LEN);
275 rc_md5_calc (vector, (char *) auth, total_length + secretlen);
276 memcpy ((char *) auth->vector, (cha
395 rc_check_reply(AUTH_HDR *auth, int bufferlen, char *secret, unsigned char *vector, unsigned char seq_nbr) argument
483 rc_random_vector(unsigned char *vector) argument
[all...]
/external/qemu/hw/intc/
H A Dioapic.c58 uint8_t vector; local
79 vector = pic_read_irq(isa_pic);
81 vector = entry & 0xff;
84 vector, polarity, trig_mode);
90 void ioapic_set_irq(void *opaque, int vector, int level) argument
98 if (vector == 0)
99 vector = 2;
101 if (vector >= 0 && vector < IOAPIC_NUM_PINS) {
102 uint32_t mask = 1 << vector;
[all...]
/external/qemu/hw/mips/
H A Dmips_r4k.c75 uint64_t vector; member in struct:ResetData
154 env->active_tc.PC = s->vector;
191 reset_info->vector = env->active_tc.PC;
252 reset_info->vector = load_kernel();
/external/qemu/target-i386/
H A Dhax-darwin.c312 int hax_inject_interrupt(CPUState *cpu, int vector) argument
320 ret = ioctl(fd, HAX_VCPU_IOCTL_INTERRUPT, &vector);
H A Dhax-windows.c500 int hax_inject_interrupt(CPUState *cpu, int vector) argument
515 &vector, sizeof(vector),
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drelabel.h32 // new labels are specified using a vector of pair<Label,Label>.
37 // \param relabel_pairs vector of pairs indicating old to new mapping
43 const vector<pair<typename A::Label, typename A::Label> >& ipairs,
44 const vector<pair<typename A::Label, typename A::Label> >& opairs) {
107 vector<pair<Label, Label> > ipairs;
117 vector<pair<Label, Label> > opairs;
127 // call relabel using vector of relabel pairs.
164 const vector<pair<Label, Label> >& ipairs,
165 const vector<pair<Label, Label> >& opairs,
329 const vector<pai
163 RelabelFstImpl(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
328 RelabelFst(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs) argument
333 RelabelFst(const Fst<A>& fst, const vector<pair<Label, Label> >& ipairs, const vector<pair<Label, Label> >& opairs, const RelabelFstOptions &opts) argument
[all...]
/external/stlport/stlport/stl/debug/
H A D_vector.h37 #define _STLP_NON_DBG_VECTOR _STLP_PRIV _STLP_NON_DBG_NAME(vector) <_Tp, _Alloc>
98 class vector : class in inherits:_STLP_PRIV__construct_checker,__stlport_class
104 , public __stlport_class<vector<_Tp, _Alloc> >
109 typedef vector<_Tp, _Alloc> _Self;
174 explicit vector(const allocator_type& __a = allocator_type())
178 explicit vector(size_type __n, const _Tp& __x = _Tp(),
180 vector(size_type __n, const _Tp& __x,
186 explicit vector(size_type __n)
190 vector(const _Self& __x)
194 vector(__move_sourc
[all...]
/external/stlport/stlport/stl/pointers/
H A D_vector.h29 #define VECTOR_IMPL _STLP_PTR_IMPL_NAME(vector)
37 # define vector _STLP_NON_DBG_NAME(vector) macro
42 class vector class in inherits:__stlport_class
43 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector)
44 : public __stlport_class<vector<_Tp, _Alloc> >
47 /* In the vector implementation iterators are pointer which give a number
50 * So vector implementation will always use a qualified void pointer type and
56 typedef vector<_Tp, _Alloc> _Self;
106 explicit vector(cons function in class:vector
110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type), function in class:vector
119 explicit vector(size_type __n) function in class:vector
123 vector(const _Self& __x) function in class:vector
127 explicit vector(__move_source<_Self> src) function in class:vector
133 vector(_InputIterator __first, _InputIterator __last, function in class:vector
140 vector(_InputIterator __first, _InputIterator __last) function in class:vector
145 vector(const_iterator __first, const_iterator __last, function in class:vector
235 # undef vector macro
[all...]
/external/stlport/test/unit/
H A Dptrspec_test.cpp1 #include <vector>
55 TEST_INSTANCIATE_CONTAINER(vector); variable
83 vector<void*> void_vect;
93 vector<FType> func_vector;
100 vector<MFType> mem_func_vector;
105 vector<int*> pint_vect;
106 vector<int*> pint_vect2;
107 vector<int const*> pcint_vect;
121 vector<int*> pint_vect_from_list(pint_list.begin(), pint_list.end());
229 vector<Fun
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_filterbank.c226 void WebRtcVad_LogOfEnergy(int16_t* vector, argument
234 int32_t energy = WebRtcSpl_Energy(vector, vector_length, &shfts);
/external/stlport/stlport/stl/
H A D_vector.h51 // The vector base class serves one purpose, its constructor and
101 # define vector _STLP_PTR_IMPL_NAME(vector) macro
103 # define vector _STLP_NON_DBG_NAME(vector) macro
109 class vector : protected _STLP_PRIV _Vector_base<_Tp, _Alloc> class in inherits:_STLP_PRIV_Vector_base,__stlport_class
110 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (vector)
111 , public __stlport_class<vector<_Tp, _Alloc> >
116 typedef vector<_Tp, _Alloc> _Self;
214 explicit vector(cons function in class:vector
230 explicit vector(size_type __n) function in class:vector
233 vector(size_type __n, const _Tp& __val, const allocator_type& __a = allocator_type()) function in class:vector
246 vector(const _Self& __x) function in class:vector
253 vector(__move_source<_Self> src) function in class:vector
277 vector(_InputIterator __first, _InputIterator __last, function in class:vector
286 vector(_InputIterator __first, _InputIterator __last) function in class:vector
294 vector(const _Tp* __first, const _Tp* __last, function in class:vector
710 # undef vector macro
[all...]
/external/chromium_org/base/i18n/
H A Dbuild_utf8_validator_tables.cc36 #include <vector>
109 // A vector of Ranges is like a simple regular expression--it corresponds to
112 typedef std::vector<Range> StringSet;
115 typedef std::vector<uint8> Character;
124 typedef std::vector<Pair> PairVector;
168 // Start by filling a PairVector with characters. The resulting vector goes from
171 PairVector vector; local
186 vector.push_back(pair);
188 return vector;
279 // A single state in the state machine is represented by a sorted vector o
[all...]
/external/chromium_org/chromeos/network/
H A Dclient_cert_resolver.cc54 typedef std::vector<ClientCertResolver::NetworkAndMatchingCert>
59 // Returns true if |vector| contains |value|.
61 bool ContainsValue(const std::vector<T>& vector, const T& value) { argument
62 return find(vector.begin(), vector.end(), value) != vector.end();
121 const std::vector<std::string>& issuer_ca_pems = pattern.issuer_ca_pems();
132 std::vector<CertAndIssuer> CreateSortedCertAndIssuerList(
136 std::vector<CertAndIssue
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathParser.cpp547 void Parser::registerPredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >* vector) argument
550 if (vector == 0)
553 ASSERT(!m_predicateVectors.contains(vector));
555 m_predicateVectors.add(vector);
559 void Parser::deletePredicateVector(WillBeHeapVector<OwnPtrWillBeMember<Predicate> >* vector) argument
562 if (vector == 0)
565 ASSERT(m_predicateVectors.contains(vector));
567 m_predicateVectors.remove(vector);
568 delete vector;
573 void Parser::registerExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >* vector) argument
585 deleteExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >* vector) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DVisitor.h302 void trace(const Vector<T, inlineCapacity>& vector) argument
304 OffHeapCollectionTraceTrait<Vector<T, inlineCapacity, WTF::DefaultAllocator> >::trace(this, vector);
465 static void trace(Visitor* visitor, const Vector& vector) argument
467 if (vector.isEmpty())
469 for (typename Vector::const_iterator it = vector.begin(), end = vector.end(); it != end; ++it)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashMap.h470 inline void copyKeysToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector) argument
474 vector.resize(collection.size());
479 vector[i] = *it;
483 inline void copyValuesToVector(const HashMap<T, U, V, W, X, Y>& collection, Z& vector) argument
487 vector.resize(collection.size());
492 vector[i] = *it;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.h206 static PassRefPtr<StringImpl> create8BitIfPossible(const Vector<UChar, inlineCapacity>& vector) argument
208 return create8BitIfPossible(vector.data(), vector.size());
/external/chromium_org/third_party/freetype/src/base/
H A Dftoutln.c680 FT_Vector_Transform( FT_Vector* vector, argument
686 if ( !vector || !matrix )
689 xz = FT_MulFix( vector->x, matrix->xx ) +
690 FT_MulFix( vector->y, matrix->xy );
692 yz = FT_MulFix( vector->x, matrix->yx ) +
693 FT_MulFix( vector->y, matrix->yy );
695 vector->x = xz;
696 vector->y = yz;
941 /* compute incoming normalized vector */
958 /* compute outgoing normalized vector */
[all...]
/external/chromium_org/v8/src/
H A Dconversions.cc106 Vector<const uint8_t> vector,
109 unicode_cache, vector.start(), vector.start() + vector.length(), radix);
114 Vector<const uc16> vector,
117 unicode_cache, vector.start(), vector.start() + vector.length(), radix);
105 StringToInt(UnicodeCache* unicode_cache, Vector<const uint8_t> vector, int radix) argument
113 StringToInt(UnicodeCache* unicode_cache, Vector<const uc16> vector, int radix) argument
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h26 class vector { class in namespace:std
31 vector() : _start(0), _finish(0), _end_of_storage(0) {} function in class:std::vector
32 ~vector();
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp113 allocator < _Tp > >struct vector:_Vector_base < _Tp, _Alloc > { }; struct in inherits:_Vector_base
121 template < class SSS > struct EEE:vector < HHH < SSS > > { };
126 vector < HHH < X1 > >aaa;
143 template < typename _Tp, typename _Alloc = std::allocator < _Tp > >class vector:_Vector_base < _Tp, class in namespace:std
288 vector <
/external/clang/test/SemaTemplate/
H A Ddefault-expr-arguments.cpp158 struct vector { struct in namespace:PR5810
159 vector(const allocator<T>& = allocator<T>()) {} // expected-note2 {{instantiation of}} function in struct:PR5810::vector
167 vector<A> Result;
171 vector<A> Result;
176 vector<B> bs;

Completed in 2430 milliseconds

1234567891011>>