HomeSort by relevance Sort by last modified time
    Searched defs:V2 (Results 26 - 50 of 69) sorted by null

12 3

  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.cpp 76 unsigned V0, V1, V2, GlobalBaseReg = MipsFI->getGlobalBaseReg();
82 V2 = RegInfo.createVirtualRegister(RC);
89 BuildMI(MBB, I, DL, TII.get(Mips::SllX16), V2).addReg(V0).addImm(16);
91 .addReg(V1).addReg(V2);
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 399 const Value *V2 = V->stripPointerCasts();
400 if (V2 != V && processed.find(V2) != processed.end())
402 processed.insert(V2);
404 V = V2;
416 if (V != V2 && processed.find(V) != processed.end())
NVPTX.h 131 V2 = 2,
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 170 Value* V2 = dyn_cast<Value>(*I);
172 if (V2) {
173 if (IsIndirect(V2, Visited)) {
303 Value* V2 = dyn_cast<Value>(Users[i]);
305 if (V2) {
306 Propagate(V2, Name, IsIndirect);
  /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/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 scoped enumeration; did you mean ':'?}}
MicrosoftExtensions.cpp 307 __declspec(property(set)) int V2; // expected-error {{putter for property must be specified as 'put', not 'set'}} expected-error {{expected '=' after 'set'}}
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 438 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
444 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2),
447 V2->setAlignment(Align);
448 return SelectInst::Create(SI->getCondition(), V1, V2);
720 /// if () { *P = v1; } else { *P = v2 }
724 /// *P = v1; if () { *P = v2; }
    [all...]
InstCombineShifts.cpp 409 Value *V1, *V2;
475 m_And(m_OneUse(m_Shr(m_Value(V1), m_Value(V2))),
476 m_ConstantInt(CC))) && V2 == Op1) {
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 40 Value *V2 = V1->clone();
42 Clones.insert(V2);
43 return cast<T>(V2);
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp     [all...]
  /external/clang/test/CodeGenCXX/
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/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 83 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
88 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /external/chromium_org/third_party/libwebp/dsp/
lossless_sse2.c 32 const __m128i V2 = _mm_sub_epi16(V1, C2);
33 const __m128i b = _mm_packus_epi16(V2, V2);
  /external/clang/lib/CodeGen/
CGValue.h 43 llvm::PointerIntPair<llvm::Value *, 1, bool> V2;
50 bool isVolatileQualified() const { return V2.getInt(); }
61 return std::make_pair(V1.getPointer(), V2.getPointer());
74 ER.V2.setInt(false);
77 static RValue getComplex(llvm::Value *V1, llvm::Value *V2) {
80 ER.V2.setPointer(V2);
82 ER.V2.setInt(false);
95 ER.V2.setInt(Volatile);
  /external/clang/test/Misc/
diag-template-diffing.cpp 92 int V1, V2, V3;
95 void set3(I3<&V1, &V2>) {};
97 set3(I3<&V3, &V2>());
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
112 // CHECK-NOELIDE-TREE: &V2>
    [all...]
  /external/clang/test/SemaCXX/
MicrosoftExtensions.cpp 220 __declspec(property(put=SetV)) int V2;
230 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}}
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 701 Constant *V1, Constant *V2) {
703 if (Cond->isNullValue()) return V2;
714 Constant *V2Element = ConstantExpr::getExtractElement(V2,
735 return V2;
737 if (isa<UndefValue>(V1)) return V2;
738 if (isa<UndefValue>(V2)) return V1;
739 if (V1 == V2) return V1;
744 return ConstantExpr::getSelect(Cond, TrueVal->getOperand(1), V2);
746 if (ConstantExpr *FalseVal = dyn_cast<ConstantExpr>(V2)) {
799 Constant *V2
    [all...]
  /external/llvm/lib/Target/ARM/
ARMCodeEmitter.cpp 727 unsigned V2 = ARM_AM::getSOImmTwoPartSecond(MO1.getImm());
759 Binary |= getMachineSoImmOpValue(V2);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp     [all...]
  /external/opencv/cvaux/src/
cveigenobjects.cpp 87 float *A2 = A + n * (p + 1), *V2 = V + n * (p + 1);
89 for( q = p + 1; q < n; q++, A2 += n, V2 += n )
119 Vqi = V2[i];
123 V2[i] = (float) (Vqi * c + Vpi * s);
130 Vqi = V2[i];
134 V2[i] = (float) (Vqi * c + Vpi * s);
141 Vqi = V2[i];
145 V2[i] = (float) (Vqi * c + Vpi * s);
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 32 const __m128i V2 = _mm_sub_epi16(V1, C2);
33 const __m128i b = _mm_packus_epi16(V2, V2);

Completed in 429 milliseconds

12 3