HomeSort by relevance Sort by last modified time
    Searched refs:V1 (Results 76 - 100 of 145) sorted by null

1 2 34 5 6

  /external/llvm/unittests/IR/
InstructionsTest.cpp 320 Value *V1 = Builder.CreateFAdd(I, I, "", MD1);
321 EXPECT_TRUE(isa<FPMathOperator>(V1));
322 FPMathOperator *O1 = cast<FPMathOperator>(V1);
324 delete V1;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 434 class Derived1, class V1, class TC1, class Reference1, class Difference1 \
439 iterator_facade<Derived1, V1, TC1, Reference1, Difference1> const& lhs \
444 class Derived1, class V1, class TC1, class Reference1, class Difference1 \
452 iterator_facade<Derived1, V1, TC1, Reference1, Difference1> const& lhs \
  /external/clang/test/Misc/
diag-template-diffing.cpp 92 int V1, V2, V3;
95 void set3(I3<&V1, &V2>) {};
100 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, [...]>' to 'I3<&V1, [...]>' for 1st argument
102 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'I3<&V3, &V2>' to 'I3<&V1, &V2>' for 1st argument
106 // CHECK-ELIDE-TREE: [&V3 != &V1]
111 // CHECK-NOELIDE-TREE: [&V3 != &V1]
    [all...]
  /external/llvm/include/llvm/Support/
ConstantFolder.h 220 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
222 return ConstantExpr::getShuffleVector(V1, V2, Mask);
NoFolder.h 280 Instruction *CreateShuffleVector(Constant *V1, Constant *V2,
282 return new ShuffleVectorInst(V1, V2, Mask);
TargetFolder.h 244 Constant *CreateShuffleVector(Constant *V1, Constant *V2,
246 return Fold(ConstantExpr::getShuffleVector(V1, V2, Mask));
  /external/llvm/lib/Target/Hexagon/
HexagonRegisterInfo.cpp 59 case HexagonSubtarget::V1:
106 case HexagonSubtarget::V1:
  /external/clang/lib/Headers/
avx2intrin.h 160 #define _mm256_blend_epi16(V1, V2, M) __extension__ ({ \
161 __m256i __V1 = (V1); \
761 #define _mm_blend_epi32(V1, V2, M) __extension__ ({ \
762 __m128i __V1 = (V1); \
766 #define _mm256_blend_epi32(V1, V2, M) __extension__ ({ \
767 __m256i __V1 = (V1); \
844 #define _mm256_permute2x128_si256(V1, V2, M) __extension__ ({ \
845 __m256i __V1 = (V1); \
853 #define _mm256_inserti128_si256(V1, V2, O) __extension__ ({ \
854 __m256i __V1 = (V1); \
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
avx2intrin.h 160 #define _mm256_blend_epi16(V1, V2, M) __extension__ ({ \
161 __m256i __V1 = (V1); \
761 #define _mm_blend_epi32(V1, V2, M) __extension__ ({ \
762 __m128i __V1 = (V1); \
766 #define _mm256_blend_epi32(V1, V2, M) __extension__ ({ \
767 __m256i __V1 = (V1); \
844 #define _mm256_permute2x128_si256(V1, V2, M) __extension__ ({ \
845 __m256i __V1 = (V1); \
853 #define _mm256_inserti128_si256(V1, V2, O) __extension__ ({ \
854 __m256i __V1 = (V1); \
    [all...]
  /external/llvm/lib/IR/
Verifier.cpp 353 const Value *V1 = 0, const Value *V2 = 0,
356 WriteValue(V1);
363 void CheckFailed(const Twine &Message, const Value *V1,
366 WriteValue(V1);
392 #define Assert1(C, M, V1) \
393 do { if (!(C)) { CheckFailed(M, V1); return; } } while (0)
394 #define Assert2(C, M, V1, V2) \
395 do { if (!(C)) { CheckFailed(M, V1, V2); return; } } while (0)
396 #define Assert3(C, M, V1, V2, V3) \
397 do { if (!(C)) { CheckFailed(M, V1, V2, V3); return; } } while (0
    [all...]
Instructions.cpp     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
747 (DST)[1] = (V1); \
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 29 static inline unsigned short MakeMask(unsigned V0, unsigned V1,
31 return (V0 << (3*4)) | (V1 << (2*4)) | (V2 << (1*4)) | (V3 << (0*4));
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 744 #define ASSIGN_4V( DST, V0, V1, V2, V3 ) \
747 (DST)[1] = (V1); \
  /external/opencv/cvaux/src/
cveigenobjects.cpp 82 float *V1 = V, *A1 = A;
85 for( p = 0; p < n - 1; p++, A1 += n, V1 += n )
118 Vpi = V1[i];
122 V1[i] = (float) (Vpi * c - Vqi * s);
129 Vpi = V1[i];
133 V1[i] = (float) (Vpi * c - Vqi * s);
140 Vpi = V1[i];
144 V1[i] = (float) (Vpi * c - Vqi * s);
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 337 __declspec(property()) int V1; // expected-error {{property does not specify a getter or a putter}}
  /external/llvm/include/llvm/ADT/
APInt.h     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 394 Value *V1 = I->getOperand(1);
396 Addend0.set(C, V1);
400 if (ConstantFP *C = dyn_cast<ConstantFP>(V1)) {
544 Value *V1 = I->getOperand(1);
546 (!isa<Constant>(V1) && V1->hasOneUse())) ? 2 : 1;
    [all...]
InstCombineLoadStoreAlloca.cpp 415 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2).
419 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1),
423 V1->setAlignment(Align);
425 return SelectInst::Create(SI->getCondition(), V1, V2);
685 /// if () { *P = v1; } else { *P = v2 }
689 /// *P = v1; if () { *P = v2; }
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 189 adjustStackPtrBig(SP, -Remainder, MBB, I, Mips::V0, Mips::V1);
211 adjustStackPtrBig(SP, -FrameSize, MBB, I, Mips::V0, Mips::V1);
  /external/qemu/target-mips/
machine.c 66 (env->tlb->mmu.r4k.tlb[i].V1 << 2) |
224 env->tlb->mmu.r4k.tlb[i].V1 = (flags >> 2) & 1;
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 209 Value *V1 = I->getOperand(1);
211 std::swap(V0, V1);
213 if (ConstantInt *C = dyn_cast<ConstantInt>(V1)) {
    [all...]

Completed in 661 milliseconds

1 2 34 5 6