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

1 23 4 5 6 7 8 9

  /external/llvm/lib/IR/
Instruction.cpp 341 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2,
343 assert(I1->getOpcode() == I2->getOpcode() &&
347 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() &&
348 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() ||
351 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
352 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() ||
354 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &&
355 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope();
357 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() &&
358 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() |
    [all...]
  /external/clang/test/SemaCXX/
ms-interface.cpp 25 __interface I2 {
44 __interface I4 : I1, I2 {
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug195.go 9 type I1 interface { I2 } // ERROR "interface"
10 type I2 int
  /prebuilts/go/linux-x86/test/fixedbugs/
bug195.go 9 type I1 interface { I2 } // ERROR "interface"
10 type I2 int
  /external/guava/guava-tests/benchmark/com/google/common/base/
ObjectsBenchmark.java 31 private static final Integer I2 = 3;
75 dummy += Objects.hashCode(I2, S1, D1, S2, I0);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
  /external/llvm/unittests/Analysis/
UnrollAnalyzer.cpp 113 auto I2 = SimplifiedValuesVector[0].find(Y2);
114 EXPECT_TRUE(I2 != SimplifiedValuesVector[0].end());
115 EXPECT_FALSE(cast<ConstantInt>((*I2).second)->getZExtValue());
124 I2 = SimplifiedValuesVector[TripCount - 1].find(Y2);
125 EXPECT_TRUE(I2 != SimplifiedValuesVector[TripCount - 1].end());
126 EXPECT_TRUE(cast<ConstantInt>((*I2).second)->getZExtValue());
177 auto I2 = SimplifiedValuesVector[0].find(Y2);
178 EXPECT_TRUE(I2 == SimplifiedValuesVector[0].end());
220 auto I2 = SimplifiedValuesVector[5].find(Y2);
221 EXPECT_TRUE(I2 != SimplifiedValuesVector[5].end())
    [all...]
  /prebuilts/go/darwin-x86/test/interface/
struct.go 81 type I2 interface { Get() int64; Put(int64) }
89 var i I2 = s
97 var i I2 = &s
105 var i I2 = s
118 // var i I2 = s
126 var i I2 = &s
134 var i I2 = s
returntype.go 18 type I2 interface { Name() int64 }
28 print(i1.(I2).Name())
  /prebuilts/go/linux-x86/test/interface/
struct.go 81 type I2 interface { Get() int64; Put(int64) }
89 var i I2 = s
97 var i I2 = &s
105 var i I2 = s
118 // var i I2 = s
126 var i I2 = &s
134 var i I2 = s
returntype.go 18 type I2 interface { Name() int64 }
28 print(i1.(I2).Name())
  /external/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp 149 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
151 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType();
154 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
156 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
160 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
164 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
169 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent());
209 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2)
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 182 Int2 I2 = s.get_u16_2();
183 if (I2.x != 1 || I2.y != 2) {
186 I2.x = 2;
187 I2.y = 3;
188 s.set_u16_2(I2);
209 I2 = s.get_i32_2();
210 if (I2.x != 1 || I2.y != 2) {
213 I2.x = 2
    [all...]
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UT_vector.java 167 Int2 I2 = s.get_u16_2();
168 if (I2.x != 1 || I2.y != 2) {
171 I2.x = 2;
172 I2.y = 3;
173 s.set_u16_2(I2);
194 I2 = s.get_i32_2();
195 if (I2.x != 1 || I2.y != 2) {
198 I2.x = 2
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
140 const Expr *Cond2 = I2->getCond();
149 Else = I2->getElse();
331 Expr::const_child_iterator I2 = Expr2->child_begin();
332 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) {
333 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects))
336 ++I2;
342 if (I2 != Expr2->child_end())
436 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin()
    [all...]
  /external/clang/test/Sema/
compound-literal.c 32 struct Incomplete* I2 = (struct foo[x]){1, 2, 3}; // expected-error {{variable-sized object may not be initialized}}
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 100 void combine(MachineInstr &I1, MachineInstr &I2,
104 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2,
247 /// isSafeToMoveTogether - Returns true if it is safe to move I1 next to I2 such
250 MachineInstr &I2,
254 unsigned I2UseReg = UseReg(I2.getOperand(1));
256 // It is not safe to move I1 and I2 into one combine if I2 has a true
263 // First try to move I2 towards I1.
265 // A reverse_iterator instantiated like below starts before I2, and I1
267 // Look at instructions I in between I2 and (excluding) I1
    [all...]
  /external/clang/test/CodeGenCXX/
homogeneous-aggregates.cpp 37 struct I2 : Base2 {};
39 struct D5 : I1, I2, I3 {}; // homogeneous aggregate
  /external/clang/test/Index/
complete-method-decls.m 88 @interface I2
89 -(nonnull I2 *)produceI2:(nullable I2 *)i2;
95 @implementation I2
229 // CHECK-NULLABILITY: ObjCInstanceMethodDecl:{LeftParen (}{Text I2 *}{RightParen )}{TypedText produceI2}{TypedText :}{LeftParen (}{Text I2 *}{RightParen )}{Text i2} (40)
  /prebuilts/go/darwin-x86/src/go/printer/testdata/
comments.x 42 // The I2 interface; all methods are exported.
43 type I2 interface {
  /prebuilts/go/linux-x86/src/go/printer/testdata/
comments.x 42 // The I2 interface; all methods are exported.
43 type I2 interface {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
loop_temps.s 209 I2 = P2;
233 I2 = P2;
235 R4 = [I0++] || R5 = [I2--];
238 A1 -= R4.H*R5.H, A0 += R4.L*R5.L (IS) || R4 = [I0++] || R5 = [I2--];
263 I2 = P2;
266 R5 = [I2--];
271 A1 -= R4.H*R5.H, A0 += R4.L*R5.L (IS) || R4 = [I0++] || R5 = [I2--];
273 R0 = (A0 += A1) || I2 += M0;
278 A1 = A0 = 0 || [I2--] = R5
280 I2 += 4
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
MergeFunctions.cpp 178 const Instruction *I2) const;
287 const Instruction *I2) const {
292 if (I1->getOpcode() != I2->getOpcode() ||
293 I1->getNumOperands() != I2->getNumOperands() ||
294 !isEquivalentType(I1->getType(), I2->getType()) ||
295 !I1->hasSameSubclassOptionalData(I2))
302 I2->getOperand(i)->getType()))
307 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() &&
308 LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() &&
309 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() &
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
AliasAnalysisEvaluator.cpp 177 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) {
179 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType();
182 switch (AA.alias(*I1, I1Size, *I2, I2Size)) {
184 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent());
187 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent());
190 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2,
194 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent());

Completed in 2381 milliseconds

1 23 4 5 6 7 8 9