HomeSort by relevance Sort by last modified time
    Searched refs:Vec (Results 1 - 25 of 127) sorted by null

1 2 3 4 5 6

  /external/opencv3/3rdparty/openexr/Imath/
ImathVecAlgo.h 60 template <class Vec> Vec project (const Vec &s, const Vec &t);
68 template <class Vec> Vec orthogonal (const Vec &s, const Vec &t);
76 template <class Vec> Vec reflect (const Vec &s, const Vec &t)
    [all...]
ImathRandom.h 187 template <class Vec, class Rand>
188 Vec
197 template <class Vec, class Rand>
198 Vec
218 template <class Vec, class Rand>
219 Vec
332 template <class Vec, class Rand>
333 Vec
336 Vec v;
340 for (unsigned int i = 0; i < Vec::dimensions(); i++
    [all...]
  /external/llvm/unittests/ADT/
PackedVectorTest.cpp 22 PackedVector<unsigned, 2> Vec;
23 EXPECT_EQ(0U, Vec.size());
24 EXPECT_TRUE(Vec.empty());
26 Vec.resize(5);
27 EXPECT_EQ(5U, Vec.size());
28 EXPECT_FALSE(Vec.empty());
30 Vec.resize(11);
31 EXPECT_EQ(11U, Vec.size());
32 EXPECT_FALSE(Vec.empty());
38 Vec.clear()
    [all...]
SparseBitVectorTest.cpp 18 SparseBitVector<> Vec;
19 EXPECT_EQ(0U, Vec.count());
20 EXPECT_FALSE(Vec.test(17));
21 Vec.set(5);
22 EXPECT_TRUE(Vec.test(5));
23 EXPECT_FALSE(Vec.test(17));
24 Vec.reset(6);
25 EXPECT_TRUE(Vec.test(5));
26 EXPECT_FALSE(Vec.test(6));
27 Vec.reset(5)
    [all...]
BitVectorTest.cpp 30 TypeParam Vec;
31 EXPECT_EQ(0U, Vec.count());
32 EXPECT_EQ(0U, Vec.size());
33 EXPECT_FALSE(Vec.any());
34 EXPECT_TRUE(Vec.all());
35 EXPECT_TRUE(Vec.none());
36 EXPECT_TRUE(Vec.empty());
38 Vec.resize(5, true);
39 EXPECT_EQ(5U, Vec.count());
40 EXPECT_EQ(5U, Vec.size())
    [all...]
RangeAdapterTest.cpp 24 std::vector<int> Vec;
27 ReverseOnlyVector(std::initializer_list<int> list) : Vec(list) {}
30 reverse_iterator rbegin() { return Vec.rbegin(); }
31 reverse_iterator rend() { return Vec.rend(); }
38 std::vector<int> Vec;
41 BidirectionalVector(std::initializer_list<int> list) : Vec(list) {}
48 reverse_iterator rbegin() { return Vec.rbegin(); }
49 reverse_iterator rend() { return Vec.rend(); }
  /external/clang/test/CodeGenCXX/
mangle-alias-template.cpp 7 template<typename T> using Vec = vector<T>;
9 template<typename T> void f(Vec<T> v);
20 Vec<double> VD;
24 h<Vec>(VI);
34 Vec<char> VC;
35 g<Vec<char>>(VC);
38 Vec<Vec<int>> VVI;
  /frameworks/base/media/mca/filterpacks/native/base/
vec_types.h 49 class Vec : public VecBase<T,dim> {
51 Vec() {}
52 Vec<T,dim>& operator = (const Vec<T, dim> &x) {
59 Vec<T, dim> operator + (const Vec<T,dim> &x, const Vec<T,dim> &y) {
60 Vec<T, dim> out;
67 Vec<T, dim> operator - (const Vec<T,dim> &x, const Vec<T,dim> &y)
    [all...]
  /external/clang/include/clang/AST/
DeclContextInternals.h 86 if (DeclsTy *Vec = getAsVector())
87 Data = DeclsAndHasExternalTy(Vec, true);
114 DeclsTy &Vec = *getAsVector();
115 DeclsTy::iterator I = std::find(Vec.begin(), Vec.end(), D);
116 assert(I != Vec.end() && "list does not contain decl");
117 Vec.erase(I);
119 assert(std::find(Vec.begin(), Vec.end(), D)
120 == Vec.end() && "list still contains decl")
    [all...]
  /external/clang/test/Index/
complete-cxx-inline-methods.cpp 4 vec.x = 0;
8 struct Vec { int x, y; };
9 Vec vec; member in class:__anon8505::MyCls
13 vec.x = 0;
28 // CHECK: CXXMethod:{ResultType MyCls::Vec &}{TypedText operator=}{LeftParen (}{Placeholder const MyCls::Vec &}{RightParen )} (34)
29 // CHECK-NEXT: StructDecl:{TypedText Vec}{Text ::} (75)
32 // CHECK-NEXT: CXXDestructor:{ResultType void}{TypedText ~Vec}{LeftParen (}{RightParen )} (34)
  /external/eigen/bench/
bench_sum.cpp 8 typedef Matrix<SCALAR,Eigen::Dynamic,1> Vec;
9 Vec v(SIZE);
vdw_new.cpp 18 typedef Matrix<SCALAR, Eigen::Dynamic, 1> Vec;
22 SCALAR E_VDW(const Vec &interactions1, const Vec &interactions2)
43 Vec interactions1(SIZE), interactions2(SIZE); // SIZE is the number of vdw interactions in our system
  /prebuilts/go/darwin-x86/test/bench/shootout/
spectral-norm.go 49 type Vec []float64
51 func (v Vec) Times(u Vec) {
60 func (v Vec) TimesTransp(u Vec) {
69 func (v Vec) ATimesTransp(u Vec) {
70 x := make(Vec, len(u))
78 u := make(Vec, N)
82 v := make(Vec, N
    [all...]
spectral-norm-parallel.go 51 type Vec []float64
53 func (v Vec) Times(i, n int, u Vec, c chan int) {
63 func (v Vec) TimesTransp(i, n int, u Vec, c chan int) {
79 func (v Vec) ATimesTransp(u Vec) {
80 x := make(Vec, len(u))
96 u := make(Vec, N)
100 v := make(Vec, N
    [all...]
  /prebuilts/go/linux-x86/test/bench/shootout/
spectral-norm.go 49 type Vec []float64
51 func (v Vec) Times(u Vec) {
60 func (v Vec) TimesTransp(u Vec) {
69 func (v Vec) ATimesTransp(u Vec) {
70 x := make(Vec, len(u))
78 u := make(Vec, N)
82 v := make(Vec, N
    [all...]
spectral-norm-parallel.go 51 type Vec []float64
53 func (v Vec) Times(i, n int, u Vec, c chan int) {
63 func (v Vec) TimesTransp(i, n int, u Vec, c chan int) {
79 func (v Vec) ATimesTransp(u Vec) {
80 x := make(Vec, len(u))
96 u := make(Vec, N)
100 v := make(Vec, N
    [all...]
  /external/llvm/include/llvm/ADT/
ArrayRef.h 73 /*implicit*/ ArrayRef(const SmallVectorTemplateCommon<T, U> &Vec)
74 : Data(Vec.data()), Length(Vec.size()) {
79 /*implicit*/ ArrayRef(const std::vector<T, A> &Vec)
80 : Data(Vec.data()), Length(Vec.size()) {}
88 /*implicit*/ ArrayRef(const std::initializer_list<T> &Vec)
89 : Data(Vec.begin() == Vec.end() ? (T*)nullptr : Vec.begin())
    [all...]
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 50 public static class Vec {
53 public Vec() {
56 public Vec(float _x, float _y) {
60 public Vec add(Vec v) {
61 return new Vec(x + v.x, y + v.y);
63 public Vec mul(float a) {
64 return new Vec(x * a, y * a);
66 public Vec sub(Vec v)
    [all...]
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker_commons.hpp 61 template <typename ET, int n> struct pixelInfo_<Vec<ET, n> >
102 template <typename ET> struct calcDist_<Vec<ET, 2> >
104 static inline int f(const Vec<ET, 2> a, const Vec<ET, 2> b)
110 template <typename ET> struct calcDist_<Vec<ET, 3> >
112 static inline int f(const Vec<ET, 3> a, const Vec<ET, 3> b)
121 template <typename ET> struct calcDist_<Vec<ET, 4> >
123 static inline int f(const Vec<ET, 4> a, const Vec<ET, 4> b
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
matx.hpp 163 Vec<_Tp, n> solve(const Vec<_Tp, m>& rhs, int method) const;
270 /////////////////////// Vec (used as element of multi-channel images /////////////////////
283 In addition to the universal notation like Vec<float, 3>, you can use shorter aliases
284 for the most popular specialized variants of Vec, e.g. Vec3f ~ Vec<float, 3>.
286 It is possible to convert Vec\<T,2\> to/from Point_, Vec\<T,3\> to/from Point3_ , and Vec\<T,4\>
287 to CvScalar or Scalar_. Use operator[] to access the elements of Vec
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.alias/
p2.cpp 19 template<class T> using Vec = vector<T, Alloc<T>>;
20 Vec<int> v;
23 void process(Vec<T>& v) // expected-note {{previous definition is here}}
  /external/libcxx/test/std/containers/sequences/vector/vector.cons/
assign_initializer_list.pass.cpp 20 template <typename Vec>
21 void test ( Vec &v )
assign_size_value.pass.cpp 24 template <typename Vec>
25 void test ( Vec &v )
  /external/clang/tools/libclang/
ARCMigrate.cpp 26 std::vector<std::pair<std::string, std::string> > Vec;
62 bool err = arcmt::getFileRemappings(remap->Vec, migrate_dir_path,&diagBuffer);
106 bool err = arcmt::getFileRemappingsFromFileList(remap->Vec, Files,
124 return static_cast<Remap *>(map)->Vec.size();
132 static_cast<Remap *>(map)->Vec[index].first);
135 static_cast<Remap *>(map)->Vec[index].second);
  /external/opencv3/modules/features2d/misc/java/src/cpp/
features2d_converters.cpp 17 Vec<float, 7> v = mat.at< Vec<float, 7> >(i, 0);
32 mat.at< Vec<float, 7> >(i, 0) = Vec<float, 7>(kp.pt.x, kp.pt.y, kp.size, kp.angle, kp.response, (float)kp.octave, (float)kp.class_id);
43 Vec<float, 4> v = mat.at< Vec<float, 4> >(i, 0);
58 mat.at< Vec<float, 4> >(i, 0) = Vec<float, 4>((float)dm.queryIdx, (float)dm.trainIdx, (float)dm.imgIdx, dm.distance);

Completed in 1260 milliseconds

1 2 3 4 5 6