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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
ext_vector_comparisons.c 6 int4 vec, rv; local
9 return vec == vec; // expected-warning{{self-comparison always evaluates to a constant}}
10 return vec != vec; // expected-warning{{self-comparison always evaluates to a constant}}
11 return vec < vec; // expected-warning{{self-comparison always evaluates to a constant}}
12 return vec <= vec; // expected-warning{{self-comparison always evaluates to a constant}}
13 return vec > vec; // expected-warning{{self-comparison always evaluates to a constant}
21 float4 vec, rv; local
    [all...]
  /external/eigen/test/
commainitializer.cpp 30 Vector3d vec[3]; local
31 vec[0] << 1, 4, 7;
32 vec[1] << 2, 5, 8;
33 vec[2] << 3, 6, 9;
35 m3 << vec[0], vec[1], vec[2]; local
38 vec[0] << 1, 2, 3;
39 vec[1] << 4, 5, 6;
40 vec[2] << 7, 8, 9
    [all...]
  /external/eigen/test/eigen2/
eigen2_commainitializer.cpp 30 Vector3d vec[3]; local
31 vec[0] << 1, 4, 7;
32 vec[1] << 2, 5, 8;
33 vec[2] << 3, 6, 9;
35 m3 << vec[0], vec[1], vec[2]; local
38 vec[0] << 1, 2, 3;
39 vec[1] << 4, 5, 6;
40 vec[2] << 7, 8, 9
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BERApplicationSpecific.java 6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec)
8 super(tagNo, vec);
  /external/ltrace/
vect.c 27 slot(struct vect *vec, size_t i)
29 return ((unsigned char *)vec->data) + vec->elt_size * i;
33 cslot(const struct vect *vec, size_t i)
35 return ((const unsigned char *)vec->data) + vec->elt_size * i;
39 vect_init(struct vect *vec, size_t elt_size)
41 *vec = (struct vect){ NULL, 0, 0, elt_size };
88 vect_reserve(struct vect *vec, size_t count)
90 if (count > vec->allocated)
    [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:__anon23553::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/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_multi_vector_unittest.cc 87 AudioMultiVector vec(num_channels_, array_length());
90 vec[channel][i] = static_cast<int16_t>(i);
92 const AudioVector& audio_vec = vec[channel];
101 AudioMultiVector vec(num_channels_);
102 vec.PushBackInterleaved(array_interleaved_, interleaved_length_);
104 vec.CopyTo(&vec_copy); // Copy from |vec| to |vec_copy|.
105 ASSERT_EQ(num_channels_, vec.Channels());
106 ASSERT_EQ(array_length(), vec.Size());
109 for (size_t channel = 0; channel < vec.Channels(); ++channel)
111 EXPECT_EQ(static_cast<int16_t>((channel + 1) * 100 + i), vec[channel][i]); local
    [all...]
audio_vector_unittest.cc 54 AudioVector vec(array_length());
56 vec[i] = static_cast<int16_t>(i);
57 const int16_t& value = vec[i]; // Make sure to use the const version.
65 AudioVector vec; local
67 vec.PushBack(array_, array_length());
68 vec.CopyTo(&vec_copy); // Copy from |vec| to |vec_copy|.
69 ASSERT_EQ(array_length(), vec.Size());
72 EXPECT_EQ(array_[i], vec[i]);
76 // Clear |vec| and verify that it is empty
87 AudioVector vec; local
114 AudioVector vec; local
143 AudioVector vec; local
156 AudioVector vec; local
161 EXPECT_EQ(static_cast<int16_t>(i), vec[i]); local
169 AudioVector vec; local
181 AudioVector vec; local
212 AudioVector vec; local
230 AudioVector vec; local
256 AudioVector vec; local
285 AudioVector vec; local
311 AudioVector vec; local
341 AudioVector vec; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
fphdlimp.cpp 72 : iter(posIter), vec(NULL), status(_status) {
74 vec = new UVector32(status);
79 // setData adopts the vec regardless of status, so it's safe to null it
81 iter->setData(vec, status);
83 // if iter is null, we never allocated vec, so no need to free it
84 vec = NULL;
90 int32_t size = vec->size();
91 vec->addElement(id, status);
92 vec->addElement(start, status);
93 vec->addElement(limit, status)
    [all...]
  /external/icu/icu4c/source/i18n/
fphdlimp.cpp 72 : iter(posIter), vec(NULL), status(_status) {
74 vec = new UVector32(status);
79 // setData adopts the vec regardless of status, so it's safe to null it
81 iter->setData(vec, status);
83 // if iter is null, we never allocated vec, so no need to free it
84 vec = NULL;
90 int32_t size = vec->size();
91 vec->addElement(id, status);
92 vec->addElement(start, status);
93 vec->addElement(limit, status)
    [all...]
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
Vector.cpp 23 float Vector2::length(const Vector2 &vec)
25 float lenSquared = lengthSquared(vec);
29 float Vector2::lengthSquared(const Vector2 &vec)
31 return vec.x * vec.x +
32 vec.y * vec.y;
35 Vector2 Vector2::normalize(const Vector2 &vec)
38 float len = length(vec);
42 ret.x = vec.x * invLen
    [all...]
Vector.h 24 static float length(const Vector2 &vec);
25 static float lengthSquared(const Vector2 &vec);
27 static Vector2 normalize(const Vector2 &vec);
44 static float length(const Vector3 &vec);
45 static float lengthSquared(const Vector3 &vec);
47 static Vector3 normalize(const Vector3 &vec);
74 static float length(const Vector4 &vec);
75 static float lengthSquared(const Vector4 &vec);
77 static Vector4 normalize(const Vector4 &vec);
  /external/javassist/sample/vector/
VectorAssistant.java 52 public CtClass[] assist(ClassPool pool, String vec, String[] args)
67 CtClass[] results = { subclass, pool.get(vec) };
87 CtClass vec = pool.makeClass(makeClassName(type)); local
88 vec.setSuperclass(pool.get("java.util.Vector"));
97 vec.addMethod(CtNewMethod.copy(addmethod, "add", vec, map));
98 vec.addMethod(CtNewMethod.copy(atmethod, "at", vec, map));
99 vec.writeFile();
100 return vec;
112 CtClass vec = pool.makeClass(makeClassName(type)); local
    [all...]
  /external/clang/test/Analysis/
no-outofbounds.c 27 struct vec { size_t len; int data[0]; }; struct
28 struct vec *a = malloc(sizeof(struct vec) + 10*sizeof(int));
cxx-for-range-cfg.cpp 15 for (auto &vec : (rdar11671507_vector<int *>[]){ v, w }) {} // expected-warning {{unused}}
  /external/clang/test/CodeGen/
arm-vector-align.c 27 int32x2_t vec = vld1_dup_s32(addr); local
29 vst1_lane_s32(addr, vec, 1);
  /external/openfst/src/lib/
compat.cc 32 void SplitToVector(char* full, const char* delim, vector<char*>* vec,
39 vec->push_back(full);
  /external/chromium_org/third_party/freetype/include/freetype/
fttrigon.h 228 * call, the value of `vec.x' will be `sin(angle)', and the value of
229 * `vec.y' will be `cos(angle)'.
235 * vec ::
244 FT_Vector_Unit( FT_Vector* vec,
257 * vec ::
266 FT_Vector_Rotate( FT_Vector* vec,
279 * vec ::
288 FT_Vector_Length( FT_Vector* vec ); variable
300 * vec ::
312 FT_Vector_Polarize( FT_Vector* vec,
    [all...]
  /external/freetype/include/
fttrigon.h 228 * call, the value of `vec.x' will be `sin(angle)', and the value of
229 * `vec.y' will be `cos(angle)'.
235 * vec ::
244 FT_Vector_Unit( FT_Vector* vec,
257 * vec ::
266 FT_Vector_Rotate( FT_Vector* vec,
279 * vec ::
288 FT_Vector_Length( FT_Vector* vec ); variable
300 * vec ::
312 FT_Vector_Polarize( FT_Vector* vec,
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
fttrigon.c 115 ft_trig_prenorm( FT_Vector* vec )
121 x = vec->x;
122 y = vec->y;
129 vec->x = (FT_Pos)( (FT_ULong)x << shift );
130 vec->y = (FT_Pos)( (FT_ULong)y << shift );
135 vec->x = x >> shift;
136 vec->y = y >> shift;
145 ft_trig_pseudo_rotate( FT_Vector* vec,
153 x = vec->x;
154 y = vec->y
    [all...]
  /external/freetype/src/base/
fttrigon.c 115 ft_trig_prenorm( FT_Vector* vec )
121 x = vec->x;
122 y = vec->y;
129 vec->x = (FT_Pos)( (FT_ULong)x << shift );
130 vec->y = (FT_Pos)( (FT_ULong)y << shift );
135 vec->x = x >> shift;
136 vec->y = y >> shift;
145 ft_trig_pseudo_rotate( FT_Vector* vec,
153 x = vec->x;
154 y = vec->y
    [all...]
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.modifiers/
push_front_exception_safety.pass.cpp 63 std::forward_list<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /external/libcxx/test/containers/sequences/list/list.modifiers/
push_back_exception_safety.pass.cpp 63 std::list<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 63 std::list<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /external/chromium_org/net/tools/balsa/
split.h 17 std::vector<base::StringPiece>* vec,

Completed in 1145 milliseconds

1 2 3 4 5 6 7 8 91011>>