HomeSort by relevance Sort by last modified time
    Searched refs:V2 (Results 51 - 75 of 243) sorted by null

1 23 4 5 6 7 8 910

  /external/llvm/include/llvm/Analysis/
BasicAliasAnalysis.h 158 bool isValueEqualInPotentialCycles(const Value *V1, const Value *V2);
164 const AAMDNodes &V1AAInfo, const Value *V2,
169 const AAMDNodes &PNAAInfo, const Value *V2,
173 const AAMDNodes &SIAAInfo, const Value *V2,
177 const Value *V2, uint64_t V2Size, AAMDNodes V2AATag);
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
OrthogonalTiledMapRenderer.java 28 import static com.badlogic.gdx.graphics.g2d.Batch.V2;
112 float v2 = region.getV(); local
124 vertices[V2] = v2;
130 vertices[V3] = v2;
150 temp = vertices[V2];
151 vertices[V2] = vertices[V4];
158 vertices[V1] = vertices[V2];
159 vertices[V2] = vertices[V3];
180 tempV = vertices[V2];
    [all...]
IsometricTiledMapRenderer.java 135 float v2 = region.getV(); local
147 vertices[V2] = v2;
153 vertices[V3] = v2;
173 temp = vertices[V2];
174 vertices[V2] = vertices[V4];
181 vertices[V1] = vertices[V2];
182 vertices[V2] = vertices[V3];
203 tempV = vertices[V2];
204 vertices[V2] = vertices[V4]
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Platform.java 71 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap(
73 EntryTransformer<? super K, ? super V1, V2> transformer) {
Multimaps.java     [all...]
Maps.java     [all...]
  /external/opencv/cxcore/src/
cxjacobieigens.cpp 111 float *A2 = A + n * (p + 1), *V2 = V + n * (p + 1);
113 for( q = p + 1; q < n; q++, A2 += n, V2 += n )
143 Vqi = V2[i];
147 V2[i] = (float) (Vqi * c + Vpi * s);
154 Vqi = V2[i];
158 V2[i] = (float) (Vqi * c + Vpi * s);
165 Vqi = V2[i];
169 V2[i] = (float) (Vqi * c + Vpi * s);
223 double *A1 = A, *V1 = V, *A2 = A, *V2 = V;
262 V2 = V + n * (p + 1)
    [all...]
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp     [all...]
  /external/clang/lib/CodeGen/
CGValue.h 48 llvm::PointerIntPair<llvm::Value *, 1, bool> V2;
55 bool isVolatileQualified() const { return V2.getInt(); }
66 return std::make_pair(V1.getPointer(), V2.getPointer());
72 auto align = reinterpret_cast<uintptr_t>(V2.getPointer()) >> AggAlignShift;
89 ER.V2.setInt(false);
92 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
95 ER.V2.setPointer(V2);
97 ER.V2.setInt(false);
112 ER.V2.setPointer(reinterpret_cast<llvm::Value*>(align << AggAlignShift))
    [all...]
  /external/eigen/test/
smallvectors.cpp 15 typedef Matrix<Scalar, 1, 2> V2;
23 V2 v2(x1, x2);
26 VERIFY_IS_APPROX(x1, v2.x());
29 VERIFY_IS_APPROX(x2, v2.y());
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java     [all...]
Platform.java 123 static <K, V1, V2> SortedMap<K, V2> mapsTransformEntriesSortedMap(
125 EntryTransformer<? super K, ? super V1, V2> transformer) {
  /external/llvm/include/llvm/IR/
InstrTypes.h 371 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
373 return Create(Instruction::OPC, V1, V2, Name);\
377 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
379 return Create(Instruction::OPC, V1, V2, Name, BB);\
383 static BinaryOperator *Create##OPC(Value *V1, Value *V2, \
385 return Create(Instruction::OPC, V1, V2, Name, I);\
389 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
391 BinaryOperator *BO = Create(Opc, V1, V2, Name);
395 static BinaryOperator *CreateNSW(BinaryOps Opc, Value *V1, Value *V2,
397 BinaryOperator *BO = Create(Opc, V1, V2, Name, BB)
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 727 Constant *V1, Constant *V2) {
729 if (Cond->isNullValue()) return V2;
740 Constant *V2Element = ConstantExpr::getExtractElement(V2,
761 return V2;
763 if (isa<UndefValue>(V1)) return V2;
764 if (isa<UndefValue>(V2)) return V1;
765 if (V1 == V2) return V1;
770 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
772 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
    [all...]
  /external/llvm/lib/Target/Hexagon/
BitTracker.cpp 442 const BitValue &V2 = A2[I];
443 if (!V1.num() || !V2.num())
445 unsigned S = bool(V1) + bool(V2) + Carry;
451 const BitValue &V2 = A2[I];
455 Res[I] = BitValue::ref(V2);
456 else if (V2.is(Carry))
476 const BitValue &V2 = A2[I];
477 if (!V1.num() || !V2.num())
479 unsigned S = bool(V1) - bool(V2) - Borrow;
485 const BitValue &V2 = A2[I]
    [all...]
  /external/clang/test/CodeGenCXX/
thunks.cpp 54 struct V2 : virtual V1 { };
63 virtual V2 *f();
67 V2 *B::f() { return 0; }
vtable-layout.cpp 241 struct V2 : virtual V1 { int v1; };
252 // CHECK-9-NEXT: 2 | Test4::V2 *Test4::D::f()
254 // CHECK-9-NEXT: 3 | Test4::V2 *Test4::D::f()
257 // CHECK-9-NEXT: 1 | Test4::V2 *Test4::D::f()
259 virtual V2 *f();
261 V2 *D::f() { return 0; };
1051 int v2; member in struct:Test22::V2
    [all...]
  /external/clang/test/Layout/
ms-x86-aligned-tail-padding.cpp 31 struct V2 {
34 V2() : a(0xf0000011f0000011ll), a1(0xf0000011) {}
280 struct G : virtual V2, virtual V3 {
291 // CHECK-NEXT: 8 | struct V2 (virtual base)
304 // CHECK-X64-NEXT: 16 | struct V2 (virtual base)
  /external/llvm/lib/Support/
StringMap.cpp 160 StringMapEntryBase *V2 = RemoveKey(StringRef(VStr, V->getKeyLength()));
161 (void)V2;
162 assert(V == V2 && "Didn't find key?");
  /external/llvm/unittests/Support/
AlignOfTest.cpp 63 struct V2 { int x; virtual ~V2(); };
67 struct V4 : virtual V2 { int y;
74 struct V7 : virtual V2, virtual V6 {
84 V2::~V2() {}
130 [AlignOf<V2>::Alignment > 0]
170 EXPECT_LE(alignOf<V1>(), alignOf<V2>());
248 EXPECT_EQ(alignOf<V2>(), alignOf<AlignedCharArrayUnion<V2> >());
    [all...]
  /external/clang/test/Parser/
recovery.cpp 144 enum E1 { V2 = 2 }; // expected-note {{declared here}}
158 case C1::V2:: break; // expected-error{{'V2' cannot appear before '::' because it is not a class, namespace, or enumeration; did you mean ':'?}}
  /external/clang/test/SemaCXX/
cxx1y-variable-templates_in_class.cpp 242 template<typename B> static const int V2;
246 template<typename A> template<typename B> const int S<A>::V2<B*> = 456;
255 static_assert(S<int>::V2<int*> == 456, ""); // FIXME expected-error {{}}
256 static_assert(S<int>::V2<int&> == 789, ""); // expected-error {{}}
258 template<typename A> template<typename B> const int S<A>::V2<B&> = 789;
259 static_assert(S<int>::V2<int&> == 789, ""); // FIXME expected-error {{}}
264 static_assert(S<char>::V2<int*> == 456, "");
265 static_assert(S<char>::V2<int&> == 789, "");
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateVersion.java 50 public static final int V2 = 1;
102 if (version == V1 || version == V2 || version == V3)
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
btAABB.java 83 public btAABB(Vector3 V1, Vector3 V2, Vector3 V3) {
84 this(CollisionJNI.new_btAABB__SWIG_1(V1, V2, V3), true);
87 public btAABB(Vector3 V1, Vector3 V2, Vector3 V3, float margin) {
88 this(CollisionJNI.new_btAABB__SWIG_2(V1, V2, V3, margin), true);
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
Mesh.h 22 explicit Triangle(int id, cv::Point3f V0, cv::Point3f V1, cv::Point3f V2);

Completed in 672 milliseconds

1 23 4 5 6 7 8 910