Searched defs:vector (Results 201 - 225 of 276) sorted by relevance

1234567891011>>

/external/qemu/hw/intc/
H A Dapic.c139 static void apic_local_deliver(CPUOldState *env, int vector) argument
143 uint32_t lvt = s->lvt[vector];
164 if ((vector == APIC_LVT_LINT0 || vector == APIC_LVT_LINT1) &&
/external/qemu/include/
H A Dqemu-common.h463 /* vector definitions */
470 #undef vector macro
476 /* altivec.h may redefine the bool macro as vector type.
/external/stlport/stlport/stl/
H A D_bvector.h265 // Bit-vector base class, which encapsulates the difference between
316 // partial specialization of vector<T, Alloc> if we have the necessary
334 # define vector _STLP_NON_DBG_NAME(vector) macro
342 # define __BVECTOR_QUALIFIED vector<bool, _Alloc>
344 # define __BVECTOR_QUALIFIED vector<bool, allocator<bool> >
349 # define __BVECTOR vector
499 __stl_throw_range_error("vector<bool>");
654 __stl_throw_length_error("vector<bool>");
828 #undef vector macro
[all...]
/external/chromium_org/third_party/mesa/src/include/CL/
H A Dcl.hpp65 * also the supplied vector and string classes, see following sections for
92 * std::vector<cl::Platform> platforms;
103 * std::vector<cl::Device> devices = context.getInfo<CL_CONTEXT_DEVICES>();
171 #include <vector>
418 #include <vector>
419 #define VECTOR_CLASS std::vector
421 #define VECTOR_CLASS cl::vector
428 /*! \class vector
429 * \brief Fixed sized vector implementation that mirroring
430 * std::vector functionalit
433 class vector class in namespace:cl
440 vector() : function in class:cl::vector
478 vector(const vector<T, N>& vec) argument
487 vector(unsigned int size, const T& val = T()) : function in class:cl::vector
496 operator =(const vector<T, N>& rhs) argument
[all...]
/external/mesa3d/include/CL/
H A Dcl.hpp65 * also the supplied vector and string classes, see following sections for
92 * std::vector<cl::Platform> platforms;
103 * std::vector<cl::Device> devices = context.getInfo<CL_CONTEXT_DEVICES>();
171 #include <vector>
418 #include <vector>
419 #define VECTOR_CLASS std::vector
421 #define VECTOR_CLASS cl::vector
428 /*! \class vector
429 * \brief Fixed sized vector implementation that mirroring
430 * std::vector functionalit
433 class vector class in namespace:cl
440 vector() : function in class:cl::vector
478 vector(const vector<T, N>& vec) argument
487 vector(unsigned int size, const T& val = T()) : function in class:cl::vector
496 operator =(const vector<T, N>& rhs) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java1415 protected int findInSortedSuballocatedIntVector(SuballocatedIntVector vector, int lookfor) argument
1419 if(vector != null) {
1421 int last = vector.size() - 1;
1425 int test = lookfor-vector.elementAt(i);
/external/chromium_org/net/websockets/
H A Dwebsocket_channel_test.cc12 #include <vector>
71 const ScopedVector<WebSocketFrame>& vector) {
74 for (ScopedVector<WebSocketFrame>::const_iterator it = vector.begin();
75 it != vector.end();
88 const ScopedVector<WebSocketFrame>* vector) {
89 return os << '&' << *vector;
157 const std::vector<char>&)); // NOLINT
203 const std::vector<char>& data) OVERRIDE {
370 *listener << "the vector size is " << actual_frames->size();
707 const std::vector<st
70 operator <<(std::ostream& os, const ScopedVector<WebSocketFrame>& vector) argument
87 operator <<(std::ostream& os, const ScopedVector<WebSocketFrame>* vector) argument
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp1167 FT_Vector vector; local
1168 vector.x = fFace->glyph->metrics.vertBearingX - fFace->glyph->metrics.horiBearingX;
1169 vector.y = -fFace->glyph->metrics.vertBearingY - fFace->glyph->metrics.horiBearingY;
1170 FT_Vector_Transform(&vector, &fMatrix22);
1171 bbox->xMin += vector.x;
1172 bbox->xMax += vector.x;
1173 bbox->yMin += vector.y;
1174 bbox->yMax += vector.y;
1258 FT_Vector vector; local
1259 vector
1372 FT_Vector vector; local
[all...]
/external/chromium_org/ui/views/
H A Dview_unittest.cc80 const std::vector<ui::Layer*> children = parent->children();
252 std::vector<gfx::Rect> scheduled_paint_rects_;
3231 const std::vector<ui::Layer*>& child_layers_pre = v->layer()->children();
3240 const std::vector<ui::Layer*>& child_layers_post = v->layer()->children();
3263 const std::vector<ui::Layer*>& child_layers_pre = root_layer->children();
3271 const std::vector<ui::Layer*>& child_layers_post = root_layer->children();
3595 std::string ToString(const gfx::Vector2dF& vector) { argument
3596 return base::StringPrintf("%.2f %0.2f", vector.x(), vector.y());
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_win.cc57 void InsetBottomRight(gfx::Rect* rect, gfx::Vector2d vector) { argument
58 rect->Inset(0, 0, vector.x(), vector.y());
292 std::vector<SkIRect> rects;
/external/chromium_org/v8/src/
H A Dfull-codegen.cc369 Handle<FixedArray> vector = FeedbackVector(); local
370 if (!vector->get(slot)->IsAllocationSite()) {
373 vector->set(slot, *allocation_site);
/external/chromium_org/v8/src/ic/
H A Dic.cc47 // Type-vector-based ICs resolve state to one of the above.
423 // Type vector based ICs update these statistics at a different time because
1892 Handle<TypeFeedbackVector> vector,
1901 IC::State old_state = FeedbackToState(vector, slot);
1902 Object* feedback = vector->get(slot->value());
1906 vector->set(slot->value(), *new_site);
1917 IC::State new_state = FeedbackToState(vector, slot);
1927 Handle<TypeFeedbackVector> vector,
1930 IC::State old_state = FeedbackToState(vector, slot);
1933 vector
1891 DoCustomHandler(Handle<Object> receiver, Handle<Object> function, Handle<TypeFeedbackVector> vector, Handle<Smi> slot, const CallICState& state) argument
1926 PatchMegamorphic(Handle<Object> function, Handle<TypeFeedbackVector> vector, Handle<Smi> slot) argument
1953 HandleMiss(Handle<Object> receiver, Handle<Object> function, Handle<TypeFeedbackVector> vector, Handle<Smi> slot) argument
2013 Handle<TypeFeedbackVector> vector = args.at<TypeFeedbackVector>(2); local
2027 Handle<TypeFeedbackVector> vector = args.at<TypeFeedbackVector>(2); local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-strings.cc1124 explicit OneByteVectorResource(i::Vector<const char> vector) argument
1125 : data_(vector) {}
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dkvm.h86 __u8 vector; member in struct:kvm_ioapic_state::__anon22783::__anon22784
/external/linux-tools-perf/perf-3.12.0/arch/x86/include/uapi/asm/
H A Dkvm.h86 __u8 vector; member in struct:kvm_ioapic_state::__anon25132::__anon25133
/external/openfst/src/include/fst/
H A Dreplace.h32 #include <vector>
33 using std::vector;
60 // ReplaceStateTable(const vector<pair<Label, const Fst<A>*> > &fst_tuples,
120 ReplaceFingerprint(const vector<uint64> *size_array)
130 const vector<uint64> *cumulative_size_array_;
185 const vector<pair<Label, const Fst<A>*> > &fst_tuples,
230 vector<uint64> cumulative_size_array_;
254 const vector<pair<Label, const Fst<A>*> > &fst_tuples,
341 ReplaceFstImpl(const vector< pair<Label, const Fst<A>* > >& fst_tuples,
366 vector<uint6
184 VectorHashReplaceStateTable( const vector<pair<Label, const Fst<A>*> > &fst_tuples, Label root) argument
253 DefaultReplaceStateTable( const vector<pair<Label, const Fst<A>*> > &fst_tuples, Label root) argument
970 ReplaceFst(const vector<pair<Label, const Fst<A>* > >& fst_array, Label root) argument
974 ReplaceFst(const vector<pair<Label, const Fst<A>* > >& fst_array, const ReplaceFstOptions<A, T> &opts) argument
[all...]
/external/ppp/pppd/plugins/radius/
H A Dradiusclient.h65 u_char vector[AUTH_VECTOR_LEN]; member in struct:pw_auth_hdr
/external/qemu/android/config/linux-x86/asm/
H A Dkvm.h64 __u8 vector; member in struct:kvm_ioapic_state::__anon29060::__anon29061
/external/qemu/android/config/linux-x86_64/asm/
H A Dkvm.h64 __u8 vector; member in struct:kvm_ioapic_state::__anon29082::__anon29083
/external/skia/src/ports/
H A DSkFontHost_FreeType.cpp1168 FT_Vector vector; local
1169 vector.x = fFace->glyph->metrics.vertBearingX - fFace->glyph->metrics.horiBearingX;
1170 vector.y = -fFace->glyph->metrics.vertBearingY - fFace->glyph->metrics.horiBearingY;
1171 FT_Vector_Transform(&vector, &fMatrix22);
1172 bbox->xMin += vector.x;
1173 bbox->xMax += vector.x;
1174 bbox->yMin += vector.y;
1175 bbox->yMax += vector.y;
1259 FT_Vector vector; local
1260 vector
1371 FT_Vector vector; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.cpp911 const EventListenerVector& vector = info.eventListenerVector; local
912 for (size_t j = 0; j < vector.size(); ++j) {
913 const RegisteredEventListener& listener = vector[j];
925 const EventListenerVector& vector = info.eventListenerVector; local
926 for (size_t j = 0; j < vector.size(); ++j) {
927 const RegisteredEventListener& listener = vector[j];
/external/chromium_org/v8/src/arm/
H A Dcode-stubs-arm.cc1972 // Check that the number of captures fit in the static offsets vector buffer.
1975 // Check (number_of_captures + 1) * 2 <= offsets vector size
1976 // Or number_of_captures * 2 <= offsets vector size - 2
2118 // Argument 5 (sp[4]): static offsets vector buffer.
2261 // Get the static offsets vector filled by the native regexp code.
2267 // r2: offsets vector
2277 // Read the value from the static offsets vector buffer.
2336 // Cache the called function in a feedback vector slot. Cache states
2341 // r2 : Feedback vector
2342 // r3 : slot in feedback vector (Sm
2609 EmitLoadTypeFeedbackVector(MacroAssembler* masm, Register vector) argument
[all...]
H A Dlithium-arm.cc2115 LOperand* vector = NULL; local
2117 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
2120 new(zone()) LLoadGlobalGeneric(context, global_object, vector);
2174 LOperand* vector = NULL; local
2176 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
2180 DefineFixed(new(zone()) LLoadNamedGeneric(context, object, vector), r0);
2241 LOperand* vector = NULL; local
2243 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
2247 DefineFixed(new(zone()) LLoadKeyedGeneric(context, object, key, vector),
H A Dlithium-arm.h1626 LLoadNamedGeneric(LOperand* context, LOperand* object, LOperand* vector) { argument
1629 temps_[0] = vector;
1698 LOperand* vector) {
1702 temps_[0] = vector;
1725 LOperand* vector) {
1728 temps_[0] = vector;
1697 LLoadKeyedGeneric(LOperand* context, LOperand* object, LOperand* key, LOperand* vector) argument
1724 LLoadGlobalGeneric(LOperand* context, LOperand* global_object, LOperand* vector) argument
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc1675 LOperand* vector = NULL; local
1677 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
1681 new(zone()) LLoadGlobalGeneric(context, global_object, vector);
1738 LOperand* vector = NULL; local
1740 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
1744 DefineFixed(new(zone()) LLoadKeyedGeneric(context, object, key, vector),
1760 LOperand* vector = NULL; local
1762 vector = FixedTemp(VectorLoadICDescriptor::VectorRegister());
1766 DefineFixed(new(zone()) LLoadNamedGeneric(context, object, vector), x0);

Completed in 589 milliseconds

1234567891011>>