HomeSort by relevance Sort by last modified time
    Searched full:vector (Results 151 - 175 of 20677) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/clang/test/Sema/
ext_vector_components.c 17 vec2.z; // expected-error {{vector component access exceeds type 'float2'}}
18 vec2.xyzw; // expected-error {{vector component access exceeds type 'float2'}}
20 vec4.xyzc; // expected-error {{illegal vector component name 'c'}}
21 vec4.s01z; // expected-error {{illegal vector component name 'z'}}
29 vec4_2.xyzx = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}}
30 vec4_2.xyzz = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}}
31 vec4_2.xyyw = vec4.xyzw; // expected-error {{vector is not assignable (contains duplicate components)}}
33 vec2.xx = vec2_2.xy; // expected-error {{vector is not assignable (contains duplicate components)}}
36 vec4.xy.w; // expected-error {{vector component access exceeds type 'float2'}}
37 vec4.s06; // expected-error {{vector component access exceeds type 'float4'}
    [all...]
  /external/eigen/blas/
double.cpp 26 if(*incx==1 && *incy==1) return (vector(x,*n).cast<double>().cwiseProduct(vector(y,*n).cast<double>())).sum();
27 else if(*incx>0 && *incy>0) return (vector(x,*n,*incx).cast<double>().cwiseProduct(vector(y,*n,*incy).cast<double>())).sum();
28 else if(*incx<0 && *incy>0) return (vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(vector(y,*n,*incy).cast<double>())).sum();
29 else if(*incx>0 && *incy<0) return (vector(x,*n,*incx).cast<double>().cwiseProduct(vector(y,*n,-*incy).reverse().cast<double>())).sum();
30 else if(*incx<0 && *incy<0) return (vector(x,*n,-*incx).reverse().cast<double>().cwiseProduct(vector(y,*n,-*incy).reverse().cast<double>())).sum()
    [all...]
  /external/libcxx/test/containers/sequences/vector/vector.cons/
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
23 std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
37 std::vector<int, min_allocator<int> > l(3, 2, min_allocator<int>());
38 std::vector<int, min_allocator<int> > l2(l, min_allocator<int>())
    [all...]
construct_default.pass.cpp 10 // <vector>
12 // vector(const Alloc& = Alloc());
14 #include <vector>
51 test0<std::vector<int> >();
52 test0<std::vector<NotConstructible> >();
53 test1<std::vector<int, test_allocator<int> > >(test_allocator<int>(3));
54 test1<std::vector<NotConstructible, test_allocator<NotConstructible> > >
58 std::vector<int, stack_allocator<int, 10> > v;
63 test0<std::vector<int, min_allocator<int>> >();
64 test0<std::vector<NotConstructible, min_allocator<NotConstructible>> >()
    [all...]
  /external/libcxx/test/containers/sequences/vector/vector.special/
swap.pass.cpp 10 // <vector>
13 // void swap(vector<T,Alloc>& x, vector<T,Alloc>& y);
15 #include <vector>
25 std::vector<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
26 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
28 assert(c1 == std::vector<int>(a2, a2+sizeof(a2)/sizeof(a2[0])));
29 assert(c2 == std::vector<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
34 std::vector<int> c1(a1, a1);
35 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]))
    [all...]
  /external/libcxx/test/containers/sequences/vector.bool/
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5));
23 std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3));
29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
37 std::vector<bool, min_allocator<bool> > l(3, 2, min_allocator<bool>());
38 std::vector<bool, min_allocator<bool> > l2(l, min_allocator<bool>())
    [all...]
copy.pass.cpp 10 // <vector>
11 // vector<bool>
13 // vector(const vector& v);
15 #include <vector>
36 test(std::vector<bool>(a, an));
39 std::vector<bool, test_allocator<bool> > v(3, 2, test_allocator<bool>(5));
40 std::vector<bool, test_allocator<bool> > v2 = v;
46 std::vector<bool, other_allocator<bool> > v(3, 2, other_allocator<bool>(5));
47 std::vector<bool, other_allocator<bool> > v2 = v
    [all...]
move.pass.cpp 10 // <vector>
12 // vector(vector&& c);
14 #include <vector>
23 std::vector<bool, test_allocator<bool> > l(test_allocator<bool>(5));
24 std::vector<bool, test_allocator<bool> > lo(test_allocator<bool>(5));
30 std::vector<bool, test_allocator<bool> > l2 = std::move(l);
36 std::vector<bool, other_allocator<bool> > l(other_allocator<bool>(5));
37 std::vector<bool, other_allocator<bool> > lo(other_allocator<bool>(5));
43 std::vector<bool, other_allocator<bool> > l2 = std::move(l)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.cons/
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<int, test_allocator<int> > l(3, 2, test_allocator<int>(5));
23 std::vector<int, test_allocator<int> > l2(l, test_allocator<int>(3));
29 std::vector<int, other_allocator<int> > l(3, 2, other_allocator<int>(5));
30 std::vector<int, other_allocator<int> > l2(l, other_allocator<int>(3));
37 std::vector<int, min_allocator<int> > l(3, 2, min_allocator<int>());
38 std::vector<int, min_allocator<int> > l2(l, min_allocator<int>())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.special/
swap.pass.cpp 10 // <vector>
13 // void swap(vector<T,Alloc>& x, vector<T,Alloc>& y);
15 #include <vector>
26 std::vector<int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
27 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
31 assert(c1 == std::vector<int>(a2, a2+sizeof(a2)/sizeof(a2[0])));
32 assert(c2 == std::vector<int>(a1, a1+sizeof(a1)/sizeof(a1[0])));
39 std::vector<int> c1(a1, a1);
40 std::vector<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
assign_copy.pass.cpp 10 // <vector>
12 // vector& operator=(const vector& c);
14 #include <vector>
22 std::vector<bool, test_allocator<bool> > l(3, 2, test_allocator<bool>(5));
23 std::vector<bool, test_allocator<bool> > l2(l, test_allocator<bool>(3));
29 std::vector<bool, other_allocator<bool> > l(3, 2, other_allocator<bool>(5));
30 std::vector<bool, other_allocator<bool> > l2(l, other_allocator<bool>(3));
37 std::vector<bool, min_allocator<bool> > l(3, 2, min_allocator<bool>());
38 std::vector<bool, min_allocator<bool> > l2(l, min_allocator<bool>())
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_vector.i 4 * SWIG typemaps for std::vector
10 // std::vector
12 // The aim of all that follows would be to integrate std::vector with
18 // -- f(std::vector<T>), f(const std::vector<T>&), f(const std::vector<T>*):
20 // previously wrapped std::vector<T> can be passed.
21 // -- f(std::vector<T>&), f(std::vector<T>*):
22 // the parameter must be modified; therefore, only a wrapped std::vector
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
std_vector.i 8 // std::vector
10 // The aim of all that follows would be to integrate std::vector with
16 // -- f(std::vector< T >), f(const std::vector< T >&), f(const std::vector< T >*):
18 // previously wrapped std::vector< T > can be passed.
19 // -- f(std::vector< T >&), f(std::vector< T >*):
20 // the parameter must be modified; therefore, only a wrapped std::vector
22 // -- std::vector< T > f()
    [all...]
  /external/llvm/test/CodeGen/X86/
vselect-minmax.ll 7 vector.ph:
8 br label %vector.body
10 vector.body: ; preds = %vector.body, %vector.ph
11 %index = phi i64 [ 0, %vector.ph ], [ %index.next, %vector.body ]
23 br i1 %loop, label %for.end, label %vector.body
25 for.end: ; preds = %vector.body
39 vector.ph
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __iterator_tracker<typename _Base::iterator, vector>
57 typedef __iterator_tracker<typename _Base::const_iterator, vector>
78 vector(const _Allocator& __a = _Allocator())
87 vector(size_type __n, const _Allocator& __a = _Allocator()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __iterator_tracker<typename _Base::iterator, vector>
57 typedef __iterator_tracker<typename _Base::const_iterator, vector>
78 vector(const _Allocator& __a = _Allocator())
87 vector(size_type __n, const _Allocator& __a = _Allocator()
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __iterator_tracker<typename _Base::iterator, vector>
57 typedef __iterator_tracker<typename _Base::const_iterator, vector>
78 vector(const _Allocator& __a = _Allocator())
87 vector(size_type __n
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __iterator_tracker<typename _Base::iterator, vector>
57 typedef __iterator_tracker<typename _Base::const_iterator, vector>
78 vector(const _Allocator& __a = _Allocator())
87 vector(size_type __n
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/profile/
vector 1 // Profiling vector implementation -*- C++ -*-
24 /** @file profile/vector
31 #include <vector>
42 class vector
43 : public _GLIBCXX_STD_C::vector<_Tp, _Allocator>
45 typedef _GLIBCXX_STD_C::vector<_Tp, _Allocator> _Base;
55 typedef __iterator_tracker<typename _Base::iterator, vector>
57 typedef __iterator_tracker<typename _Base::const_iterator, vector>
78 vector(const _Allocator& __a = _Allocator())
87 vector(size_type __n, const _Allocator& __a = _Allocator()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 61 uint32_t vec_used; /** used/free vector registers bitmask */
89 ** float vector arithmetic
92 /** vector float add */
96 /** vector float substract */
100 /** vector float min */
104 /** vector float max */
108 /** vector float mult add: vD = vA * vB + vC */
112 /** vector float negative mult subtract: vD = vA - vB * vC */
116 /** vector float compare greater than */
120 /** vector float compare greater than or equal to *
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 61 uint32_t vec_used; /** used/free vector registers bitmask */
89 ** float vector arithmetic
92 /** vector float add */
96 /** vector float substract */
100 /** vector float min */
104 /** vector float max */
108 /** vector float mult add: vD = vA * vB + vC */
112 /** vector float negative mult subtract: vD = vA - vB * vC */
116 /** vector float compare greater than */
120 /** vector float compare greater than or equal to *
    [all...]
  /external/chromium_org/base/memory/
scoped_vector.h 8 #include <vector>
15 // ScopedVector wraps a vector deleting the elements from its
22 typedef typename std::vector<T*>::allocator_type allocator_type;
23 typedef typename std::vector<T*>::size_type size_type;
24 typedef typename std::vector<T*>::difference_type difference_type;
25 typedef typename std::vector<T*>::pointer pointer;
26 typedef typename std::vector<T*>::const_pointer const_pointer;
27 typedef typename std::vector<T*>::reference reference;
28 typedef typename std::vector<T*>::const_reference const_reference;
29 typedef typename std::vector<T*>::value_type value_type
    [all...]
  /external/chromium_org/chrome/browser/chromeos/power/
cpu_data_collector.h 11 #include <vector>
39 // For idle state samples, the name of the state at index i in this vector
40 // is the name at index i in the vector returned by cpu_idle_state_names().
41 // Similarly, for freq state occupancy, similar information is in the vector
43 std::vector<int64> time_in_state;
48 const std::vector<std::string>& cpu_idle_state_names() const {
52 const std::vector<StateOccupancySampleDeque>& cpu_idle_state_data() const {
56 const std::vector<std::string>& cpu_freq_state_names() const {
60 const std::vector<StateOccupancySampleDeque>& cpu_freq_state_data() const {
82 const std::vector<std::string>* cpu_idle_state_names
    [all...]
  /external/javassist/sample/vector/
VectorAssistant.java 1 package sample.vector;
11 * <ul>import java.util.Vector by sample.vector.VectorAssistant(int)</ul>
17 * import java.util.Vector;
18 * import sample.vector.intVector;
25 * package sample.vector;
27 * public class intVector extends Vector {
39 * <code>sample.vector.Sample</code> and <code>sample.vector.Sample2</code>
44 public final String packageName = "sample.vector."
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
LocaleMac.h 37 #include "wtf/Vector.h"
54 virtual const Vector<String>& weekDayShortLabels() OVERRIDE;
65 virtual const Vector<String>& monthLabels() OVERRIDE;
66 virtual const Vector<String>& shortMonthLabels() OVERRIDE;
67 virtual const Vector<String>& standAloneMonthLabels() OVERRIDE;
68 virtual const Vector<String>& shortStandAloneMonthLabels() OVERRIDE;
69 virtual const Vector<String>& timeAMPMLabels() OVERRIDE;
78 Vector<String> m_weekDayShortLabels;
79 Vector<String> m_monthLabels;
92 Vector<String> m_shortMonthLabels
    [all...]

Completed in 2017 milliseconds

1 2 3 4 5 67 8 91011>>