Home
last modified time | relevance | path

Searched refs:I2 (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/
Dtypes.pass.cpp55 typedef std::istreambuf_iterator<wchar_t> I2; in main() typedef
56 static_assert((std::is_same<I2::iterator_category, std::input_iterator_tag>::value), ""); in main()
57 static_assert((std::is_same<I2::value_type, wchar_t>::value), ""); in main()
58 …static_assert((std::is_same<I2::difference_type, std::char_traits<wchar_t>::off_type>::value), ""); in main()
59 LIBCPP_STATIC_ASSERT((std::is_same<I2::pointer, wchar_t*>::value), ""); in main()
60 static_assert((std::is_same<I2::reference, wchar_t>::value), ""); in main()
61 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main()
62 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main()
63 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main()
64 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main()
[all …]
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/
Dtypes.pass.cpp65 typedef std::istream_iterator<unsigned, wchar_t> I2; // unsigned is trivially destructible in main() typedef
67 static_assert((std::is_convertible<I2, in main()
71 static_assert((std::is_same<I2::iterator_category, std::input_iterator_tag>::value), ""); in main()
72 static_assert((std::is_same<I2::value_type, unsigned>::value), ""); in main()
73 static_assert((std::is_same<I2::difference_type, std::ptrdiff_t>::value), ""); in main()
74 static_assert((std::is_same<I2::pointer, const unsigned*>::value), ""); in main()
75 static_assert((std::is_same<I2::reference, const unsigned&>::value), ""); in main()
77 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main()
78 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main()
79 static_assert((std::is_same<I2::istream_type, std::wistream>::value), ""); in main()
[all …]
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/
Dtypes.pass.cpp47 typedef std::ostreambuf_iterator<wchar_t> I2; in main() typedef
49 static_assert((std::is_convertible<I2, in main()
52 static_assert((std::is_same<I2::iterator_category, std::output_iterator_tag>::value), ""); in main()
53 static_assert((std::is_same<I2::value_type, void>::value), ""); in main()
54 static_assert((std::is_same<I2::difference_type, void>::value), ""); in main()
55 static_assert((std::is_same<I2::pointer, void>::value), ""); in main()
56 static_assert((std::is_same<I2::reference, void>::value), ""); in main()
58 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main()
59 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main()
60 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main()
[all …]
/external/webp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
44 "ulw %[" #O1 "], " #I2 "+" XSTR(I9) "*" #I6 "(%[" #I0 "]) \n\t" \
53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
58 "mul %[" #O4 "], %[" #I2 "], %[kC2] \n\t" \
59 "mul %[" #O5 "], %[" #I2 "], %[kC1] \n\t" \
85 I0, I1, I2, I3) \ argument
88 "sra %[" #O2 "], %[" #I2 "], 16 \n\t" \
98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
103 "addq.ph %[" #O4 "], %[" #I2 "], %[" #I6 "] \n\t" \
104 "subq.ph %[" #O5 "], %[" #I2 "], %[" #I6 "] \n\t" \
[all …]
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/
Dtypes.pass.cpp44 typedef std::ostream_iterator<unsigned, wchar_t> I2; in main() typedef
46 static_assert((std::is_convertible<I2, in main()
49 static_assert((std::is_same<I2::iterator_category, std::output_iterator_tag>::value), ""); in main()
50 static_assert((std::is_same<I2::value_type, void>::value), ""); in main()
51 static_assert((std::is_same<I2::difference_type, void>::value), ""); in main()
52 static_assert((std::is_same<I2::pointer, void>::value), ""); in main()
53 static_assert((std::is_same<I2::reference, void>::value), ""); in main()
55 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main()
56 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main()
57 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), ""); in main()
/external/llvm/lib/IR/
DInstruction.cpp341 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, in haveSameSpecialState() argument
343 assert(I1->getOpcode() == I2->getOpcode() && in haveSameSpecialState()
347 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() && in haveSameSpecialState()
348 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() || in haveSameSpecialState()
351 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in haveSameSpecialState()
352 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || in haveSameSpecialState()
354 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && in haveSameSpecialState()
355 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope(); in haveSameSpecialState()
357 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && in haveSameSpecialState()
358 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || in haveSameSpecialState()
[all …]
/external/clang/test/ASTMerge/Inputs/
Dcategory1.m19 @interface I2 interface
23 @interface I2 () interface in int
28 @interface I2 (Cat3) interface in Cat3
31 @implementation I2 (Cat3) implementation in Cat3
35 @interface I2 (Cat4) interface in Cat4
38 @implementation I2 (Cat4) implementation in Cat4
42 @interface I2 (Cat6) interface in Cat6
45 @implementation I2 (Cat6) implementation in Cat6
Dcategory2.m21 @interface I2 interface
25 @interface I2 () interface in float
30 @interface I2 (Cat3) interface in Cat3
33 @implementation I2 (Cat3) implementation in Cat3
37 @interface I2 (Cat5) interface in Cat5
40 @implementation I2 (Cat5) implementation in Cat5
44 @interface I2 (Cat6) interface in Cat6
47 @implementation I2 (Cat6) implementation in Cat6
/external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/java8/
DDefaultInterfaceMethodWithStaticInitializer.java65 interface I2 { interface in DefaultInterfaceMethodWithStaticInitializer.TestInterfaceSetOne
67 DefaultInterfaceMethodWithStaticInitializer D = RECORDER.register(I2.class);
75 public static class C implements I1, I2 {
82 return ImmutableList.of(I1.class.getSimpleName(), I2.class.getSimpleName()); in getExpectedInitializationOrder()
104 interface I2 extends I1 { interface in DefaultInterfaceMethodWithStaticInitializer.TestInterfaceSetTwo
105 DefaultInterfaceMethodWithStaticInitializer D = RECORDER.register(I2.class);
116 public static class C implements I2, I1 {
125 return ImmutableList.of(I1.class.getSimpleName(), I2.class.getSimpleName()); in getExpectedInitializationOrder()
146 interface I2 extends I1 { interface in DefaultInterfaceMethodWithStaticInitializer.TestInterfaceSetThree
156 public static class C implements I2, I1 {
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Vectorize/
DVPlanTest.cpp30 VPInstruction *I2 = new VPInstruction(1, {}); in TEST() local
36 I2->insertBefore(I1); in TEST()
37 CHECK_ITERATOR(VPBB1, I2, I1); in TEST()
39 I3->insertBefore(I2); in TEST()
40 CHECK_ITERATOR(VPBB1, I3, I2, I1); in TEST()
45 VPInstruction *I2 = new VPInstruction(1, {}); in TEST() local
50 VPBB1.appendRecipe(I2); in TEST()
53 I2->eraseFromParent(); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DInstruction.cpp374 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, in haveSameSpecialState() argument
376 assert(I1->getOpcode() == I2->getOpcode() && in haveSameSpecialState()
380 return AI->getAllocatedType() == cast<AllocaInst>(I2)->getAllocatedType() && in haveSameSpecialState()
381 (AI->getAlignment() == cast<AllocaInst>(I2)->getAlignment() || in haveSameSpecialState()
384 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in haveSameSpecialState()
385 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || in haveSameSpecialState()
387 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && in haveSameSpecialState()
388 LI->getSyncScopeID() == cast<LoadInst>(I2)->getSyncScopeID(); in haveSameSpecialState()
390 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && in haveSameSpecialState()
391 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || in haveSameSpecialState()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonCopyToCombine.cpp97 void combine(MachineInstr &I1, MachineInstr &I2,
101 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2,
265 MachineInstr &I2, in isSafeToMoveTogether() argument
269 unsigned I2UseReg = UseReg(I2.getOperand(1)); in isSafeToMoveTogether()
283 MachineBasicBlock::reverse_iterator I(I2), in isSafeToMoveTogether()
292 if (I2.killsRegister(I2UseReg)) in isSafeToMoveTogether()
322 removeKillInfo(I2, KilledOperand); in isSafeToMoveTogether()
332 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether()
335 End = std::next(MachineBasicBlock::iterator(I2)); in isSafeToMoveTogether()
510 MachineInstr *I2 = findPairable(I1, DoInsertAtI1, OptForSize); in runOnMachineFunction() local
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonCopyToCombine.cpp100 void combine(MachineInstr &I1, MachineInstr &I2,
104 bool isSafeToMoveTogether(MachineInstr &I1, MachineInstr &I2,
250 MachineInstr &I2, in isSafeToMoveTogether() argument
254 unsigned I2UseReg = UseReg(I2.getOperand(1)); in isSafeToMoveTogether()
268 MachineBasicBlock::reverse_iterator I(I2), in isSafeToMoveTogether()
277 if (I2.killsRegister(I2UseReg)) in isSafeToMoveTogether()
307 removeKillInfo(I2, KilledOperand); in isSafeToMoveTogether()
317 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether()
320 End = std::next(MachineBasicBlock::iterator(I2)); in isSafeToMoveTogether()
488 MachineInstr *I2 = findPairable(I1, DoInsertAtI1, OptForSize); in runOnMachineFunction() local
[all …]
/external/llvm/include/llvm/ADT/
DAPSInt.h290 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument
291 return !compareValues(I1, I2); in isSameValue()
295 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() argument
296 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in compareValues()
297 return I1 == I2 ? 0 : I1 > I2 ? 1 : -1; in compareValues()
300 if (I1.getBitWidth() > I2.getBitWidth()) in compareValues()
301 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
302 else if (I2.getBitWidth() > I1.getBitWidth()) in compareValues()
303 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
308 assert(!I2.isSigned() && "Expected signed mismatch"); in compareValues()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/
DUnrollAnalyzer.cpp112 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() local
113 EXPECT_TRUE(I2 != SimplifiedValuesVector[0].end()); in TEST()
114 EXPECT_FALSE(cast<ConstantInt>((*I2).second)->getZExtValue()); in TEST()
123 I2 = SimplifiedValuesVector[TripCount - 1].find(Y2); in TEST()
124 EXPECT_TRUE(I2 != SimplifiedValuesVector[TripCount - 1].end()); in TEST()
125 EXPECT_TRUE(cast<ConstantInt>((*I2).second)->getZExtValue()); in TEST()
176 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() local
177 EXPECT_TRUE(I2 == SimplifiedValuesVector[0].end()); in TEST()
219 auto I2 = SimplifiedValuesVector[5].find(Y2); in TEST() local
220 EXPECT_TRUE(I2 != SimplifiedValuesVector[5].end()); in TEST()
[all …]
/external/llvm/unittests/Analysis/
DUnrollAnalyzer.cpp113 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() local
114 EXPECT_TRUE(I2 != SimplifiedValuesVector[0].end()); in TEST()
115 EXPECT_FALSE(cast<ConstantInt>((*I2).second)->getZExtValue()); in TEST()
124 I2 = SimplifiedValuesVector[TripCount - 1].find(Y2); in TEST()
125 EXPECT_TRUE(I2 != SimplifiedValuesVector[TripCount - 1].end()); in TEST()
126 EXPECT_TRUE(cast<ConstantInt>((*I2).second)->getZExtValue()); in TEST()
177 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() local
178 EXPECT_TRUE(I2 == SimplifiedValuesVector[0].end()); in TEST()
220 auto I2 = SimplifiedValuesVector[5].find(Y2); in TEST() local
221 EXPECT_TRUE(I2 != SimplifiedValuesVector[5].end()); in TEST()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPSInt.h284 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument
285 return !compareValues(I1, I2); in isSameValue()
289 static int compareValues(const APSInt &I1, const APSInt &I2) { in compareValues() argument
290 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in compareValues()
291 return I1.IsUnsigned ? I1.compare(I2) : I1.compareSigned(I2); in compareValues()
294 if (I1.getBitWidth() > I2.getBitWidth()) in compareValues()
295 return compareValues(I1, I2.extend(I1.getBitWidth())); in compareValues()
296 if (I2.getBitWidth() > I1.getBitWidth()) in compareValues()
297 return compareValues(I1.extend(I2.getBitWidth()), I2); in compareValues()
302 assert(!I2.isSigned() && "Expected signed mismatch"); in compareValues()
[all …]
/external/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp149 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runInternal() local
151 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType(); in runInternal()
154 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runInternal()
156 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runInternal()
160 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runInternal()
164 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runInternal()
169 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runInternal()
209 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2) { in runInternal() local
211 MemoryLocation::get(cast<StoreInst>(*I2)))) { in runInternal()
213 PrintLoadStoreResults("NoAlias", PrintNoAlias, *I1, *I2, in runInternal()
[all …]
/external/clang/test/Index/Core/
Dindex-source.m81 @interface I2 interface
85 // CHECK: [[@LINE+2]]:17 | field/ObjC | _prop | c:objc(cs)I2@_prop | <no-cgname> | Def,Impl,RelChil…
86 // CHECK-NEXT: RelChild | I2 | c:objc(cs)I2
87 @implementation I2 implementation
88 // CHECK: [[@LINE+5]]:13 | instance-property/ObjC | prop | c:objc(cs)I2(py)prop | <no-cgname> | Ref…
89 // CHECK: [[@LINE+4]]:13 | instance-method/ObjC | prop | c:objc(cs)I2(im)prop | -[I2 prop] | Def,Re…
90 // CHECK-NEXT: RelChild | I2 | c:objc(cs)I2
91 // CHECK: [[@LINE+2]]:13 | instance-method/ObjC | setProp: | c:objc(cs)I2(im)setProp: | -[I2 setPro…
92 // CHECK-NEXT: RelChild | I2 | c:objc(cs)I2
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DAliasAnalysisEvaluator.cpp148 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runInternal() local
150 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType(); in runInternal()
153 AliasResult AR = AA.alias(*I1, I1Size, *I2, I2Size); in runInternal()
156 PrintResults(AR, PrintNoAlias, *I1, *I2, F.getParent()); in runInternal()
160 PrintResults(AR, PrintMayAlias, *I1, *I2, F.getParent()); in runInternal()
164 PrintResults(AR, PrintPartialAlias, *I1, *I2, F.getParent()); in runInternal()
168 PrintResults(AR, PrintMustAlias, *I1, *I2, F.getParent()); in runInternal()
205 for (SetVector<Value *>::iterator I2 = Stores.begin(); I2 != I1; ++I2) { in runInternal() local
207 MemoryLocation::get(cast<StoreInst>(*I2))); in runInternal()
210 PrintLoadStoreResults(AR, PrintNoAlias, *I1, *I2, F.getParent()); in runInternal()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Scalarizer/
Dvector-gep.ll24 ;CHECK: %[[I2:.i[0-9]*]] = extractelement <4 x i16*> %0, i32 2
25 ;CHECK: getelementptr i16, i16* %[[I2]], i16 1
43 ;CHECK: %[[I2:.i[0-9]*]] = extractelement <4 x i16*> %0, i32 2
52 ;CHECK: %.splat[[I2]] = extractelement <4 x i16> %.splat, i32 2
53 ;CHECK: getelementptr i16, i16* %[[I2]], i16 %.splat[[I2]]
77 ;CHECK: %.splat[[I2:.i[0-9]*]] = extractelement <4 x i16*> %.splat, i32 2
78 ;CHECK: getelementptr i16, i16* %.splat[[I2]], i16 2
99 ;CHECK: %.splat[[I2:.i[0-9]*]] = extractelement <4 x i16*> %.splat, i32 2
100 ;CHECK: getelementptr i16, i16* %.splat[[I2]], i16 2
118 ;CHECK: %[[I2:.i[0-9]*]] = extractelement <4 x i16*> %0, i32 2
[all …]
/external/turbine/javatests/com/google/turbine/lower/testdata/
Dinterfaces.test7 === test/I2.java ===
10 public interface I2 {
16 import test.I2;
18 public class Default implements I1, I2 {
/external/clang/lib/StaticAnalyzer/Checkers/
DIdenticalExprChecker.cpp139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) { in VisitIfStmt() local
140 const Expr *Cond2 = I2->getCond(); in VisitIfStmt()
149 Else = I2->getElse(); in VisitIfStmt()
331 Expr::const_child_iterator I2 = Expr2->child_begin(); in isIdenticalStmt() local
332 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalStmt()
333 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt()
336 ++I2; in isIdenticalStmt()
342 if (I2 != Expr2->child_end()) in isIdenticalStmt()
436 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin(); in isIdenticalStmt() local
437 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) { in isIdenticalStmt()
[all …]
/external/clang/test/CodeGenObjC/
Dclass-type.m11 @class I2;
14 I2 *_imageBrowser;
21 @interface I2 : I0 interface
24 @implementation I2 implementation
/external/mesa3d/src/gallium/drivers/r600/sb/
Dsb_ir.cpp335 for (vvec::iterator I2 = dst.begin(), E2 = dst.end(); in update_packed_items() local
336 I2 != E2; ++I2) { in update_packed_items()
337 value *v = *I2; in update_packed_items()
346 for (vvec::iterator I2 = dst.begin(), E2 = dst.end(); in update_packed_items() local
347 I2 != E2; ++I2, ++chan) { in update_packed_items()
348 *I2 = swp[chan]; in update_packed_items()
356 for (vvec::iterator I2 = n->src.begin(), E2 = n->src.end(); in update_packed_items() local
357 I2 != E2; ++I2, ++SI) { in update_packed_items()
358 *I2 = *SI; in update_packed_items()
360 for (vvec::iterator I2 = n->dst.begin(), E2 = n->dst.end(); in update_packed_items() local
[all …]

12345678910>>...17