HomeSort by relevance Sort by last modified time
    Searched refs:V1 (Results 201 - 225 of 279) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 397 Value *V1 = I->getOperand(1);
399 Addend0.set(C, V1);
403 if (ConstantFP *C = dyn_cast<ConstantFP>(V1)) {
560 Value *V1 = I->getOperand(1);
562 (!isa<Constant>(V1) && V1->hasOneUse())) ? 2 : 1;
    [all...]
InstCombineLoadStoreAlloca.cpp     [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
Constants.cpp     [all...]
  /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/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
Decal.java 532 vertices[V1] = tr.getV();
594 public static final int V1 = 5;
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 200 Value *V1 = I->getOperand(1);
202 std::swap(V0, V1);
204 if (ConstantInt *C = dyn_cast<ConstantInt>(V1)) {
    [all...]
  /external/webp/src/dsp/
lossless_sse2.c 30 const __m128i V1 = _mm_add_epi16(C0, C1);
31 const __m128i V2 = _mm_sub_epi16(V1, C2);
  /prebuilts/go/darwin-x86/src/math/big/
arith_amd64.s 48 JL V1 // if n < 0 goto V1
71 V1: ADDQ $4, DI // n += 4
  /prebuilts/go/linux-x86/src/math/big/
arith_amd64.s 48 JL V1 // if n < 0 goto V1
71 V1: ADDQ $4, DI // n += 4
  /external/clang/lib/Driver/
ToolChains.h 485 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1 = 0,
488 return TargetVersion < VersionTuple(V0, V1, V2);
491 bool isMacosxVersionLT(unsigned V0, unsigned V1 = 0, unsigned V2 = 0) const {
493 return TargetVersion < VersionTuple(V0, V1, V2);
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 311 __declspec(property()) int V1; // expected-error {{property does not specify a getter or a putter}}
  /external/llvm/lib/Analysis/
ValueTracking.cpp 197 static bool isKnownNonEqual(Value *V1, Value *V2, const DataLayout &DL,
200 bool llvm::isKnownNonEqual(Value *V1, Value *V2, const DataLayout &DL,
203 return ::isKnownNonEqual(V1, V2, DL, Query(AC,
204 safeCxtI(V1, safeCxtI(V2, CxtI)),
    [all...]
Lint.cpp 157 void CheckFailed(const Twine &Message, const T1 &V1, const Ts &...Vs) {
159 WriteValues({V1, Vs...});
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCTargetDesc.cpp 103 SystemZ::V0, SystemZ::V1, SystemZ::V2, SystemZ::V3,
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 876 EmitMovFPIntPair(STI, MovOpc, Mips::V0, Mips::V1, Mips::F0, Mips::F1, LE);
879 EmitMovFPIntPair(STI, MovOpc, Mips::V0, Mips::V1, Mips::F0, Mips::F1, LE);
882 EmitMovFPIntPair(STI, MovOpc, Mips::V0, Mips::V1, Mips::F0, Mips::F1, LE);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBitSimplify.cpp     [all...]
  /art/compiler/optimizing/
code_generator_mips.h 117 ? Location::RegisterPairLocation(V0, V1)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/
filter_bilinear_altivec.asm 23 .macro load_vfilter V0, V1
27 lvx \V1, r6, r10
87 vsrh v24, v24, v19 ;# divide v0, v1 by 128
182 hfilter_8 v1, 1
200 load_and_align_8 v1, 1
212 vfilter_16 v0, v1
213 vfilter_16 v1, v2
224 stvx v1, 0, r1
267 hfilter_8 v1, 1
285 load_and_align_8 v1,
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 610 std::vector<ValueEqualityComparisonCase> *V1 = &C1, *V2 = &C2;
612 // Make V1 be smaller than V2.
613 if (V1->size() > V2->size())
614 std::swap(V1, V2);
616 if (V1->size() == 0) return false;
617 if (V1->size() == 1) {
619 ConstantInt *TheVal = (*V1)[0].Value;
626 array_pod_sort(V1->begin(), V1->end());
628 unsigned i1 = 0, i2 = 0, e1 = V1->size(), e2 = V2->size()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/llvm/include/llvm/IR/
Constants.h     [all...]
  /external/valgrind/coregrind/
m_syscall.c 46 SysRes VG_(mk_SysRes_mips32_linux) ( UWord v0, UWord v1, UWord a3 ) {
51 res._valEx = v1;
55 SysRes VG_(mk_SysRes_mips64_linux) ( ULong v0, ULong v1, ULong a3 ) {
60 res._valEx = v1;
825 " sd $3, 0($11)\n" /* store vale of v1 in last param */
1063 ULong V1 = (ULong)v1_a3[0];
1065 return VG_(mk_SysRes_mips64_linux)( V0, V1, A3 );
    [all...]

Completed in 1543 milliseconds

1 2 3 4 5 6 7 891011>>