HomeSort by relevance Sort by last modified time
    Searched refs:I1 (Results 126 - 150 of 281) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/llvm/lib/IR/
Instruction.cpp 341 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
343 assert(I1->getOpcode() == I2->getOpcode() &&
346 if (const AllocaInst *AI = dyn_cast<AllocaInst>(I1))
350 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
356 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
362 if (const CmpInst *CI = dyn_cast<CmpInst>(I1))
364 if (const CallInst *CI = dyn_cast<CallInst>(I1))
369 if (const InvokeInst *CI = dyn_cast<InvokeInst>(I1))
373 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(I1))
375 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(I1))
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclTuple.h 209 /// \tparam I1... is the list of index from [0 to sizeof...(t1))
214 template <typename... Args1, typename... Args2, size_t... I1, size_t... I2>
215 Tuple<Args1..., Args2...> append_base(Tuple<Args1...> t1, Tuple<Args2...> t2, IndexList<I1...>, IndexList<I2...>) {
216 return utility::tuple::make_tuple(get<I1>(t1)...,get<I2>(t2)...);
  /prebuilts/go/darwin-x86/test/fixedbugs/bug248.dir/
bug2.go 22 type I1 interface {
35 var i1 I1 = t1(0) // ok var
56 if _, ok := i.(I1); ok {
57 println("used t0 as i1")
  /prebuilts/go/linux-x86/test/fixedbugs/bug248.dir/
bug2.go 22 type I1 interface {
35 var i1 I1 = t1(0) // ok var
56 if _, ok := i.(I1); ok {
57 println("used t0 as i1")
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
MergeFunctions.cpp 177 bool isEquivalentOperation(const Instruction *I1,
286 bool FunctionComparator::isEquivalentOperation(const Instruction *I1,
292 if (I1->getOpcode() != I2->getOpcode() ||
293 I1->getNumOperands() != I2->getNumOperands() ||
294 !isEquivalentType(I1->getType(), I2->getType()) ||
295 !I1->hasSameSubclassOptionalData(I2))
300 for (unsigned i = 0, e = I1->getNumOperands(); i != e; ++i)
301 if (!isEquivalentType(I1->getOperand(i)->getType(),
306 if (const LoadInst *LI = dyn_cast<LoadInst>(I1))
311 if (const StoreInst *SI = dyn_cast<StoreInst>(I1))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
stack2.s 18 [--SP ] = I1;
75 I1= [ SP ++ ] ;
stack2.d 13 a: 51 01 \[--SP\] = I1;
49 52: 11 01 I1 = \[SP\+\+\];
store.d 28 2c: 8f 9f \[I1 \+\+ M0\] = R7;
39 3a: 2f 9e W\[I1\+\+\] = R7.L;
move2.s 75 R1 = I1;
93 P1 = I1;
112 A0.W = I1;
133 I1 = P0;
137 I1 = A0.W;
171 I0 = I1;
172 I1 = M0;
176 M0 = I1;
181 B0 = I1;
186 L0 = I1;
    [all...]
parallel4.d 14 18: 12 cc 00 c0 DISALGNEXCPT \|\| \[I1\] = R0 \|\| NOP;
16 20: 17 cc 02 0a R5 = BYTEOP3P \(R1:0, R3:2\) \(LO\) \|\| \[I1\+\+\] = R0 \|\| NOP;
18 28: 37 cc 02 00 R0 = BYTEOP3P \(R1:0, R3:2\) \(HI\) \|\| \[I1--\] = R0 \|\| NOP;
load.s 70 r1 = [I1++];
100 R1.H = W [I1 ++];
110 R5.l = w [i1 --];
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
BranchFolding.cpp 298 MachineBasicBlock::iterator &I1,
300 I1 = MBB1->end();
304 while (I1 != MBB1->begin() && I2 != MBB2->begin()) {
305 --I1; --I2;
307 while (I1->isDebugValue()) {
308 if (I1==MBB1->begin()) {
311 // I1==DBG at begin; I2==DBG at begin
316 // I1==DBG at begin; I2==non-DBG, or first of DBGs not at begin
319 --I1;
321 // I1==first (untested) non-DBG preceding known matc
    [all...]
  /external/clang/test/Index/
complete-method-decls.m 78 @interface I1
84 @implementation I1
  /external/skia/include/private/
SkTLogic.h 78 template <size_t... I1, size_t... I2>
79 struct make_index_sequence_combine<skstd::index_sequence<I1...>, skstd::index_sequence<I2...>>
80 : skstd::index_sequence<I1..., (sizeof...(I1)+I2)...>
  /external/skqp/include/private/
SkTLogic.h 78 template <size_t... I1, size_t... I2>
79 struct make_index_sequence_combine<skstd::index_sequence<I1...>, skstd::index_sequence<I2...>>
80 : skstd::index_sequence<I1..., (sizeof...(I1)+I2)...>
  /prebuilts/go/darwin-x86/test/
assign1.go 30 I1 interface {
67 i1 I1
98 pi1 *I1
134 i0 = i1
136 i = i1
137 i1 = i0
138 i1 = i
251 }(i1)
253 i = I(i1)
66 i1 I1 var
    [all...]
method.go 15 type I1 int
24 func (i *I1) val() int { return 4 }
38 var pi *I1
79 if (*I1).val(pi) != 4 {
80 println("(*I1).val(pi):", (*I1).val(pi))
134 var zpi struct{ *I1 }
  /prebuilts/go/linux-x86/test/
assign1.go 30 I1 interface {
67 i1 I1
98 pi1 *I1
134 i0 = i1
136 i = i1
137 i1 = i0
138 i1 = i
251 }(i1)
253 i = I(i1)
66 i1 I1 var
    [all...]
method.go 15 type I1 int
24 func (i *I1) val() int { return 4 }
38 var pi *I1
79 if (*I1).val(pi) != 4 {
80 println("(*I1).val(pi):", (*I1).val(pi))
134 var zpi struct{ *I1 }
  /external/clang/test/SemaTemplate/
instantiate-function-1.cpp 161 template<typename T, int I1, int I2> struct Switch1 {
164 case I1: return y; // expected-note{{previous}}
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 82 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
87 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
blank.go 51 I1
  /prebuilts/go/darwin-x86/src/runtime/
iface_test.go 12 type I1 interface {
49 i1 I1
65 _ = i1 == ts
82 _ = i1 == ts
94 _ = i1 != ts
118 i1 = ts
124 i1 = tm
130 i1 = tl
144 i1 = i
48 i1 I1 var
    [all...]
  /prebuilts/go/linux-x86/src/go/doc/testdata/
blank.go 51 I1
  /prebuilts/go/linux-x86/src/runtime/
iface_test.go 12 type I1 interface {
49 i1 I1
65 _ = i1 == ts
82 _ = i1 == ts
94 _ = i1 != ts
118 i1 = ts
124 i1 = tm
130 i1 = tl
144 i1 = i
48 i1 I1 var
    [all...]

Completed in 1624 milliseconds

1 2 3 4 56 7 8 91011>>