HomeSort by relevance Sort by last modified time
    Searched full:vec (Results 76 - 100 of 621) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_6.cpp 38 Int32 vec[] vector of 6 32-bit integers
40 Int32 vec[] dct computation in-place
114 void pvmp3_dct_6(int32 vec[])
127 tmp0 = vec[5] + vec[0];
128 tmp5 = vec[5] - vec[0];
129 tmp1 = vec[4] + vec[1];
130 tmp4 = vec[4] - vec[1]
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
IssuingDistributionPoint.java 92 ASN1EncodableVector vec = new ASN1EncodableVector(); local
95 vec.add(new DERTaggedObject(true, 0, distributionPoint));
100 vec.add(new DERTaggedObject(false, 1, DERBoolean.TRUE));
106 vec.add(new DERTaggedObject(false, 2, DERBoolean.TRUE));
111 vec.add(new DERTaggedObject(false, 3, onlySomeReasons));
116 vec.add(new DERTaggedObject(false, 4, DERBoolean.TRUE));
122 vec.add(new DERTaggedObject(false, 5, DERBoolean.TRUE));
126 seq = new DERSequence(vec);
  /external/clang/test/CodeGen/
arm-vector-align.c 26 int32x2_t vec = vld1_dup_s32(addr); local
28 vst1_lane_s32(addr, vec, 1);
  /external/clang/test/Sema/
vector-init.c 21 __attribute__((vector_size(16))) float vec = {0.0f, 0.0f, 0.0f}; local
22 return(vec);
  /external/openfst/src/lib/
compat.cc 32 void SplitToVector(char* full, const char* delim, vector<char*>* vec,
39 vec->push_back(full);
  /external/openssh/
monitor_fdpass.c 58 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;
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
sparse_weight_vector.h 115 void LoadWeightVector(const SparseWeightVector<Key, Hash> &vec) {
117 w_.insert(vec.w_.begin(), vec.w_.end());
118 wmax_.insert(vec.wmax_.begin(), vec.wmax_.end());
119 wmin_.insert(vec.wmin_.begin(), vec.wmin_.end());
120 normalizer_ = vec.normalizer_;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 60 VEC (tree, heap) *phiargs;
103 VEC (vn_reference_op_s, heap) *operands;
186 void vn_reference_fold_indirect (VEC (vn_reference_op_s, heap) **,
188 void copy_reference_ops_from_ref (tree, VEC(vn_reference_op_s, heap) **);
189 void copy_reference_ops_from_call (gimple, VEC(vn_reference_op_s, heap) **);
191 VEC (vn_reference_op_s, heap) *);
193 VEC (vn_reference_op_s, heap) *,
198 VEC (vn_reference_op_s, heap) *,
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 60 VEC (tree, heap) *phiargs;
103 VEC (vn_reference_op_s, heap) *operands;
186 void vn_reference_fold_indirect (VEC (vn_reference_op_s, heap) **,
188 void copy_reference_ops_from_ref (tree, VEC(vn_reference_op_s, heap) **);
189 void copy_reference_ops_from_call (gimple, VEC(vn_reference_op_s, heap) **);
191 VEC (vn_reference_op_s, heap) *);
193 VEC (vn_reference_op_s, heap) *,
198 VEC (vn_reference_op_s, heap) *,
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
tree-ssa-sccvn.h 60 VEC (tree, heap) *phiargs;
103 VEC (vn_reference_op_s, heap) *operands;
186 void vn_reference_fold_indirect (VEC (vn_reference_op_s, heap) **,
188 void copy_reference_ops_from_ref (tree, VEC(vn_reference_op_s, heap) **);
189 void copy_reference_ops_from_call (gimple, VEC(vn_reference_op_s, heap) **);
191 VEC (vn_reference_op_s, heap) *);
193 VEC (vn_reference_op_s, heap) *,
198 VEC (vn_reference_op_s, heap) *,
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
VehicleWheel.java 308 public Vector3f getCollisionLocation(Vector3f vec) {
309 getCollisionLocation(wheelId, wheelIndex, vec);
310 return vec;
313 private native void getCollisionLocation(long wheelId, int wheelIndex, Vector3f vec);
319 Vector3f vec = new Vector3f(); local
320 getCollisionLocation(wheelId, wheelIndex, vec);
321 return vec;
327 public Vector3f getCollisionNormal(Vector3f vec) {
328 getCollisionNormal(wheelId, wheelIndex, vec);
329 return vec;
338 Vector3f vec = new Vector3f(); local
    [all...]
PhysicsRigidBody.java 213 Vector3f vec = new Vector3f(); local
214 getPhysicsLocation(objectId, vec);
215 return vec;
436 Vector3f vec = new Vector3f(); local
437 getAngularVelocity(objectId, vec);
438 return vec;
441 private native void getAngularVelocity(long objectId, Vector3f vec);
445 * @param vec the vector to store the velocity in
447 public void getAngularVelocity(Vector3f vec) {
448 getAngularVelocity(objectId, vec);
467 Vector3f vec = new Vector3f(); local
    [all...]
  /external/stlport/test/unit/
iter_test.cpp 48 typedef vector<const char*> vec; typedef
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
69 Vec::reverse_iterator it;
  /frameworks/base/services/sensorservice/
mat.h 20 #include "vec.h"
61 vec<TYPE, R> PURE doMul(
63 const vec<TYPE, D>& rhs)
65 vec<TYPE, R> res;
78 const vec<TYPE, R>& lhs,
124 class mat : public vec< vec<TYPE, R>, C > {
126 typedef vec< vec<TYPE, R>, C > base;
192 friend vec<TYPE, R> PURE operator *
    [all...]
quat.h 22 #include "vec.h"
30 mat<TYPE, 3, 3> quatToMatrix(const vec<TYPE, 4>& q) {
58 vec<TYPE, 4> matrixToQuat(const mat<TYPE, 3, 3>& R) {
67 vec<TYPE, 4> q;
83 vec<TYPE, 4> normalize_quat(const vec<TYPE, 4>& q) {
84 vec<TYPE, 4> r(q);
  /ndk/tests/device/test-gnustl-full/unit/
iter_test.cpp 48 typedef vector<const char*> vec; typedef
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
69 Vec::reverse_iterator it;
  /ndk/tests/device/test-stlport/unit/
iter_test.cpp 48 typedef vector<const char*> vec; typedef
50 for (vec::iterator i = v.begin(); i != v.end(); ++i, ++counter) {
65 typedef vector<const char*> Vec;
66 Vec v; // Vector of character strings.
69 Vec::reverse_iterator it;
  /external/clang/include/clang/AST/
Attr.h 221 inline specific_attr_iterator<T> specific_attr_begin(const AttrVec& vec) {
222 return specific_attr_iterator<T>(vec.begin());
225 inline specific_attr_iterator<T> specific_attr_end(const AttrVec& vec) {
226 return specific_attr_iterator<T>(vec.end());
230 inline bool hasSpecificAttr(const AttrVec& vec) {
231 return specific_attr_begin<T>(vec) != specific_attr_end<T>(vec);
234 inline T *getSpecificAttr(const AttrVec& vec) {
235 specific_attr_iterator<T> i = specific_attr_begin<T>(vec);
236 if (i != specific_attr_end<T>(vec))
    [all...]
  /external/regex-re2/util/
pcre.cc 181 int vec[kVecSize]; local
182 return re.DoMatchImpl(text, ANCHOR_BOTH, &consumed, args, n, vec, kVecSize);
224 int vec[kVecSize]; local
225 return re.DoMatchImpl(text, UNANCHORED, &consumed, args, n, vec, kVecSize);
267 int vec[kVecSize]; local
269 args, n, vec, kVecSize)) {
316 int vec[kVecSize]; local
318 args, n, vec, kVecSize)) {
329 int vec[kVecSize]; local
330 int matches = pattern.TryMatch(*str, 0, UNANCHORED, true, vec, kVecSize)
348 int vec[kVecSize]; local
404 int vec[kVecSize]; local
600 int *vec = new int[vecsize]; local
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
scenegraph_objects.rsh 249 static void getCameraRay(const SgCamera *cam, int screenX, int screenY, float3 *pnt, float3 *vec) {
286 *vec = normalize(pos.xyz - cam->position.xyz);
287 rsDebug("Vec X", vec->x);
288 rsDebug("Vec Y", vec->y);
289 rsDebug("Vec Z", vec->z);
293 static bool intersect(const SgRenderable *obj, float3 pnt, float3 vec) {
296 float B = dot(originMinusCenter, vec) * 2.0f
    [all...]
  /external/valgrind/main/memcheck/tests/
wrap6.c 18 register UInt* vec = (_vec); \
22 register UInt v1 = vec[1-1]; \
23 register UInt v2 = vec[2-1]; \
24 register UInt v3 = vec[3-1]; \
25 register UInt v4 = vec[4-1]; \
26 register UInt v5 = vec[5-1]; \
27 register UInt v6 = vec[6-1]; \
28 register UInt v7 = vec[7-1]; \
29 register UInt v8 = vec[8-1]; \
30 register UInt v9 = vec[9-1];
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtree.py 910 "<invalid>", "<EOR>", "<DOWN>", "<UP>", "VEC", "ASSIGN", "PRINT",
915 tree = "(nil (ASSIGN ID[x] INT[3]) (PRINT (MULT ID[x] (VEC INT[1] INT[2] INT[3]))))"
923 "(nil (ASSIGN ID[x] INT[3]) (PRINT (MULT ID (VEC INT %x:INT INT))))",
929 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC")
934 tree = "(PRINT (MULT ID[x] (VEC INT[1] INT[2] INT[3])))"
942 "(%x:PRINT (MULT ID (VEC INT INT INT)))",
948 found = TreeParser._inContext(adaptor, self.tokenNames, node, "VEC"
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix4f.java 1915 float vec[] = new float[3]; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERConstructedOctetString.java 93 Vector vec = new Vector(); local
111 vec.addElement(new DEROctetString(nStr));
114 return vec;
  /external/opencv/cv/src/
cvsurf.cpp 363 float* vec; local
483 vec = (float*)cvGetSeqElem( descriptors, k );
484 for( kk = 0; kk < (int)(descriptors->elem_size/sizeof(vec[0])); kk++ )
485 vec[kk] = 0;
499 vec[0] += tx;
500 vec[1] += (float)fabs(tx);
502 vec[2] += tx;
503 vec[3] += (float)fabs(tx);
507 vec[4] += ty;
508 vec[5] += (float)fabs(ty)
    [all...]

Completed in 2021 milliseconds

1 2 34 5 6 7 8 91011>>