Searched refs:vec (Results 1 - 25 of 303) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dext_vector_comparisons.c6 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 > ve
21 float4 vec, rv; local
[all...]
/external/eigen/test/
H A Dcommainitializer.cpp30 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[
[all...]
/external/eigen/test/eigen2/
H A Deigen2_commainitializer.cpp30 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[
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERApplicationSpecific.java6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec) argument
8 super(tagNo, vec);
/external/marisa-trie/tests/
H A Dvector-test.cc23 marisa::Vector<int> vec; local
25 ASSERT(vec.max_size() == MARISA_UINT32_MAX);
26 ASSERT(vec.size() == 0);
27 ASSERT(vec.capacity() == 0);
28 ASSERT(!vec.fixed());
29 ASSERT(vec.empty());
30 ASSERT(vec.total_size() == sizeof(marisa::UInt32));
33 vec.push_back(values[i]);
34 ASSERT(vec[i] == values[i]);
35 ASSERT(static_cast<const marisa::Vector<int> &>(vec)[
122 marisa::IntVector vec; local
[all...]
/external/marisa-trie/v0_1_5/tests/
H A Dvector-test.cc23 marisa_alpha::Vector<int> vec; local
25 ASSERT(vec.max_size() == MARISA_ALPHA_UINT32_MAX);
26 ASSERT(vec.size() == 0);
27 ASSERT(vec.capacity() == 0);
28 ASSERT(!vec.fixed());
29 ASSERT(vec.empty());
30 ASSERT(vec.total_size() == sizeof(marisa_alpha::UInt32));
33 vec.push_back(values[i]);
34 ASSERT(vec[i] == values[i]);
35 ASSERT(static_cast<const marisa_alpha::Vector<int> &>(vec)[
126 marisa_alpha::IntVector vec; local
[all...]
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp4 vec.x = 0;
9 Vec vec; member in class:__anon17057::MyCls
13 vec.x = 0;
/external/chromium_org/third_party/icu/source/i18n/
H A Dfphdlimp.cpp72 : 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
[all...]
/external/icu4c/i18n/
H A Dfphdlimp.cpp72 : 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
[all...]
/external/javassist/sample/vector/
H A DVectorAssistant.java52 public CtClass[] assist(ClassPool pool, String vec, String[] args) argument
67 CtClass[] results = { subclass, pool.get(vec) };
87 CtClass vec = pool.makeClass(makeClassName(type));
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;
[all...]
/external/clang/test/Analysis/
H A Dno-outofbounds.c26 struct vec { size_t len; int data[0]; }; struct
28 struct vec *a = malloc(sizeof(struct vec) + 10); // expected-warning {{Cast a region whose size is not a multiple of the destination type size}}
H A Dcxx-for-range-cfg.cpp15 for (auto &vec : (rdar11671507_vector<int *>[]){ v, w }) {} // expected-warning {{unused}}
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/motors/
H A DTranslationalLimitMotor.java53 Vector3f vec = new Vector3f();
54 getLowerLimit(motorId, vec);
55 return vec;
67 Vector3f vec = new Vector3f();
68 getUpperLimit(motorId, vec);
69 return vec;
81 Vector3f vec = new Vector3f();
82 getAccumulatedImpulse(motorId, vec);
83 return vec;
/external/srec/srec/clib/
H A Dimeld_tr.c46 imeldata vec[MAX_DIMEN]; local
54 vec[ii] = 0;
56 vec[ii] += prep->matrix[ii][jj] * fram[jj];
58 vec[ii] = (imeldata) SHIFT_DOWN((int)vec[ii],
66 fram[ii] = RANGE(vec[ii] + prep->offset[ii], 0, 255);
69 fram[ii] = RANGE(vec[ii], 0, 255);
74 fram[ii] = vec[ii];
85 imeldata vec[MAX_DIMEN]; local
96 vec[i
[all...]
/external/clang/test/CodeGen/
H A Darm-vector-align.c27 int32x2_t vec = vld1_dup_s32(addr); local
29 vst1_lane_s32(addr, vec, 1);
/external/openfst/src/lib/
H A Dcompat.cc32 void SplitToVector(char* full, const char* delim, vector<char*>* vec, argument
39 vec->push_back(full);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
H A DArrow.java84 Vector3f vec = tempVec.set(positions[i],
87 vec.multLocal(len);
88 tempQuat.mult(vec, vec);
90 newPositions[i] = vec.getX();
91 newPositions[i + 1] = vec.getY();
92 newPositions[i + 2] = vec.getZ();
126 Vector3f vec = tempVec.set(positions[i],
129 vec.multLocal(len);
130 tempQuat.mult(vec, ve
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfttrigon.h228 * 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/freetype/
H A Dfttrigon.h228 * 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/
H A Dfttrigon.c115 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, argument
153 x = vec->x;
154 y = vec
340 FT_Vector_Unit( FT_Vector* vec, FT_Angle angle ) argument
362 FT_Vector_Rotate( FT_Vector* vec, FT_Angle angle ) argument
434 FT_Vector_Polarize( FT_Vector* vec, FT_Fixed *length, FT_Angle *angle ) argument
461 FT_Vector_From_Polar( FT_Vector* vec, FT_Fixed length, FT_Angle angle ) argument
[all...]
/external/freetype/src/base/
H A Dfttrigon.c115 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, argument
153 x = vec->x;
154 y = vec
340 FT_Vector_Unit( FT_Vector* vec, FT_Angle angle ) argument
362 FT_Vector_Rotate( FT_Vector* vec, FT_Angle angle ) argument
434 FT_Vector_Polarize( FT_Vector* vec, FT_Fixed *length, FT_Angle *angle ) argument
461 FT_Vector_From_Polar( FT_Vector* vec, FT_Fixed length, FT_Angle angle ) argument
[all...]
/external/eigen/unsupported/doc/examples/
H A DFFT.cpp34 T mag2(const std::vector<T> & vec) argument
37 for (size_t k=0;k<vec.size();++k)
38 out += mag2(vec[k]);
43 T mag2(const std::vector<std::complex<T> > & vec) argument
46 for (size_t k=0;k<vec.size();++k)
47 out += mag2(vec[k]);
61 void RandomFill(std::vector<T> & vec) argument
63 for (size_t k=0;k<vec.size();++k)
64 vec[k] = T( rand() )/T(RAND_MAX) - .5;
68 void RandomFill(std::vector<std::complex<T> > & vec) argument
[all...]
/external/chromium/net/tools/flip_server/
H A Dsplit.h18 std::vector<base::StringPiece>* vec,
/external/chromium_org/net/tools/balsa/
H A Dsplit.h17 std::vector<base::StringPiece>* vec,
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java114 * @param vec
118 public Vector2f set(Vector2f vec) { argument
119 this.x = vec.x;
120 this.y = vec.y;
129 * @param vec
133 public Vector2f add(Vector2f vec) { argument
134 if (null == vec) {
138 return new Vector2f(x + vec.x, y + vec.y);
146 * @param vec
150 addLocal(Vector2f vec) argument
187 add(Vector2f vec, Vector2f result) argument
207 dot(Vector2f vec) argument
375 multLocal(Vector2f vec) argument
463 subtract(Vector2f vec) argument
479 subtract(Vector2f vec, Vector2f store) argument
510 subtractLocal(Vector2f vec) argument
[all...]

Completed in 819 milliseconds

1234567891011>>