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

1 2 3 4 5 6 7 8 91011

  /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/chromium/chrome/browser/sync/
js_arg_list_unittest.cc 44 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/
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/srec/srec/clib/
imeld_tr.c 46 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[ii]= 0
    [all...]
  /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/chromium_org/third_party/icu/source/i18n/
fphdlimp.h 50 UVector32* vec; member in class:FieldPositionIteratorHandler
  /external/chromium_org/third_party/skia/src/effects/
SkOffsetImageFilter.cpp 31 SkVector vec; local
32 matrix.mapVectors(&vec, &fOffset, 1);
34 loc->fX += SkScalarRoundToInt(vec.fX);
35 loc->fY += SkScalarRoundToInt(vec.fY);
67 SkVector vec; local
68 ctm.mapVectors(&vec, &fOffset, 1);
71 dst->offset(SkScalarRoundToInt(vec.fX), SkScalarRoundToInt(vec.fY));
  /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:__anon19452::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/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/icu4c/i18n/
fphdlimp.h 50 UVector32* vec; member in class:FieldPositionIteratorHandler
  /external/skia/src/effects/
SkOffsetImageFilter.cpp 31 SkVector vec; local
32 matrix.mapVectors(&vec, &fOffset, 1);
34 loc->fX += SkScalarRoundToInt(vec.fX);
35 loc->fY += SkScalarRoundToInt(vec.fY);
67 SkVector vec; local
68 ctm.mapVectors(&vec, &fOffset, 1);
71 dst->offset(SkScalarRoundToInt(vec.fX), SkScalarRoundToInt(vec.fY));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
push_back_exception_safety.pass.cpp 63 std::deque<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
push_front_exception_safety.pass.cpp 63 std::deque<CMyClass> vec; local
65 vec.push_front(instance);
69 vec.push_front(instance);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/vector.modifiers/
push_back_exception_safety.pass.cpp 63 std::vector<CMyClass> vec; local
65 vec.push_back(instance);
69 vec.push_back(instance);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
IssuingDistributionPoint.java 92 ASN1EncodableVector vec = new ASN1EncodableVector(); local
95 vec.add(new DERTaggedObject(true, 0, distributionPoint));
99 vec.add(new DERTaggedObject(false, 1, ASN1Boolean.getInstance(true)));
103 vec.add(new DERTaggedObject(false, 2, ASN1Boolean.getInstance(true)));
107 vec.add(new DERTaggedObject(false, 3, onlySomeReasons));
111 vec.add(new DERTaggedObject(false, 4, ASN1Boolean.getInstance(true)));
115 vec.add(new DERTaggedObject(false, 5, ASN1Boolean.getInstance(true)));
118 seq = new DERSequence(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/chromium_org/base/android/
command_line_android.cc 21 std::vector<std::string> vec; local
23 base::android::AppendJavaStringArrayToStringVector(env, array, &vec);
25 vec.insert(vec.begin(), "");
26 CommandLine extra_command_line(vec);
  /external/clang/test/Analysis/
no-outofbounds.c 26 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/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_joints_SixDofJoint.cpp 88 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 = btVector3() local
    [all...]
  /external/marisa-trie/tests/
vector-test.cc 23 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)[i] == values[i])
122 marisa::IntVector vec; local
    [all...]

Completed in 1297 milliseconds

1 2 3 4 5 6 7 8 91011