Searched defs:vec (Results 1 - 25 of 137) sorted by relevance

123456

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBERApplicationSpecific.java6 public BERApplicationSpecific(int tagNo, ASN1EncodableVector vec) argument
8 super(tagNo, vec);
H A DDERApplicationSpecific.java69 public DERApplicationSpecific(int tagNo, ASN1EncodableVector vec) argument
75 for (int i = 0; i != vec.size(); i++)
79 bOut.write(((ASN1Object)vec.get(i)).getEncoded(ASN1Encoding.DER));
/external/chromium/chrome/browser/sync/
H A Djs_arg_list_unittest.cc44 std::vector<const Value*> vec; local
45 vec.push_back(&bool_value);
46 vec.push_back(&int_value);
47 vec.push_back(&dict);
49 JsArgList arg_list(vec);
57 vec.clear();
/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...]
H A Dvector-init.c21 __attribute__((vector_size(16))) float vec = {0.0f, 0.0f, 0.0f}; local
22 return(vec);
/external/chromium/net/tools/flip_server/
H A Dsplit.cc19 std::vector<base::StringPiece>* vec,
21 vec->clear();
31 vec->push_back(base::StringPiece(s, e - s));
40 vec->push_back(base::StringPiece(s, e - s));
56 vec->push_back(base::StringPiece(s, e - s));
65 vec->push_back(base::StringPiece(s, e - s));
17 SplitStringPieceToVector(const base::StringPiece& full, const char* delim, std::vector<base::StringPiece>* vec, bool omit_empty_strings) argument
/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/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/icu4c/i18n/
H A Dfphdlimp.h50 UVector32* vec; member in class:FieldPositionIteratorHandler
/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/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/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}}
/external/clang/test/Index/
H A Dcomplete-cxx-inline-methods.cpp4 vec.x = 0;
9 Vec vec; member in class:__anon4427::MyCls
13 vec.x = 0;
/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/openssh/
H A Dmonitor_fdpass.c58 struct iovec vec; local
77 vec.iov_base = &ch;
78 vec.iov_len = 1;
79 msg.msg_iov = &vec;
119 struct iovec vec; local
126 vec.iov_base = &ch;
127 vec.iov_len = 1;
128 msg.msg_iov = &vec;
/external/stlport/test/eh/
H A Dtest_vector.cpp64 inline void prepare_insert_range( TestVector& vec, size_t, TestClass* first, TestClass* last ) argument
70 vec.reserve( vec.size() + d );
/external/valgrind/main/memcheck/tests/
H A Dorigin6-fp.c24 double** vec; local
26 vec = malloc(nArr * sizeof(double*));
27 assert(vec);
29 vec[i] = malloc(nArr * sizeof(double));
30 assert(vec);
32 return vec;
/external/clang/test/Modules/
H A Dmodule-private.cpp25 vector<int> vec; // expected-error{{use of undeclared identifier 'vector'}} \ local
27 // expected-error{{use of undeclared identifier 'vec'}}
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_joints_SixDofJoint.cpp88 btVector3 vec = btVector3(); local
89 jmeBulletUtil::convert(env, vector, &vec);
90 joint->setLinearUpperLimit(vec);
106 btVector3 vec = btVector3(); local
107 jmeBulletUtil::convert(env, vector, &vec);
108 joint->setLinearLowerLimit(vec);
124 btVector3 vec = btVector3(); local
125 jmeBulletUtil::convert(env, vector, &vec);
126 joint->setAngularUpperLimit(vec);
142 btVector3 vec local
[all...]
/external/skia/src/effects/
H A DSkEmbossMaskFilter.cpp105 SkVector* vec = (SkVector*)(void*)light.fDirection; local
106 vec->setLength(light.fDirection[0],
/external/skia/src/utils/
H A DSkCullPoints.cpp42 SkIPoint vec; local
45 vec.set(x1 - x0, y1 - y0);
46 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
48 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
/external/stlport/test/unit/
H A Diter_test.cpp48 typedef vector<const char*> vec; typedef
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
/external/astl/tests/
H A Dtest_vector.cpp366 vector<CtorDtorCounter> vec; local
368 vec.resize(10);
373 vec.resize(200);
378 vec.resize(199);
385 vec.resize(0);
533 vector<int> vec; local
534 for (int i = 0; i < 20; ++i) vec.push_back(i);
537 pos = vec.erase(vec.begin() + 2); // removes '2'
540 pos = vec
545 vector<std::string> vec; local
613 vector<int> vec; local
625 vector<std::string> vec; local
646 vector<int> vec; local
[all...]
/external/bzip2/
H A Dhuffman.c158 Int32 n, vec, i; local
160 vec = 0;
163 if (length[i] == n) { code[i] = vec; vec++; };
164 vec <<= 1;
178 Int32 pp, i, j, vec; local
191 vec = 0;
194 vec += (base[i+1] - base[i]);
195 limit[i] = vec-1;
196 vec <<
[all...]
/external/chromium/base/memory/
H A Dscoped_vector_unittest.cc132 std::vector<LifeCycleObject*> vec; local
136 vec.push_back(it->NewLifeCycleObject());
142 scoped_vector.insert(scoped_vector.end(), vec.begin() + 1, vec.begin() + 3);

Completed in 500 milliseconds

123456