/external/llvm/lib/IR/ |
D | Instruction.cpp | 267 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, in haveSameSpecialState() argument 269 assert(I1->getOpcode() == I2->getOpcode() && in haveSameSpecialState() 273 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in haveSameSpecialState() 274 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || in haveSameSpecialState() 276 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && in haveSameSpecialState() 277 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope(); in haveSameSpecialState() 279 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && in haveSameSpecialState() 280 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || in haveSameSpecialState() 282 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() && in haveSameSpecialState() 283 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope(); in haveSameSpecialState() [all …]
|
/external/clang/test/ASTMerge/Inputs/ |
D | category1.m | 19 @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
|
D | category2.m | 21 @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/libcxx/test/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 42 typedef std::istreambuf_iterator<wchar_t> I2; in main() typedef 43 static_assert((std::is_convertible<I2, in main() 46 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 47 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 48 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main() 49 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main() 50 static_assert((std::is_same<I2::istream_type, std::wistream>::value), ""); in main()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonCopyToCombine.cpp | 86 void combine(MachineInstr *I1, MachineInstr *I2, 89 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2, 234 MachineInstr *I2, in isSafeToMoveTogether() argument 239 bool IsImmUseReg = I2->getOperand(1).isImm() || I2->getOperand(1).isGlobal(); in isSafeToMoveTogether() 240 unsigned I2UseReg = IsImmUseReg ? 0 : I2->getOperand(1).getReg(); in isSafeToMoveTogether() 254 MachineBasicBlock::reverse_iterator I(I2), in isSafeToMoveTogether() 263 if (I2->killsRegister(I2UseReg)) in isSafeToMoveTogether() 290 removeKillInfo(I2, KilledOperand); in isSafeToMoveTogether() 300 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether() 303 End = std::next(MachineBasicBlock::iterator(I2)); in isSafeToMoveTogether() [all …]
|
/external/llvm/lib/Analysis/ |
D | AliasAnalysisEvaluator.cpp | 193 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction() local 195 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType(); in runOnFunction() 198 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction() 200 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction() 203 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction() 206 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction() 210 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction() 220 for (SetVector<Value *>::iterator I2 = Stores.begin(), E2 = Stores.end(); in runOnFunction() local 221 I2 != E2; ++I2) { in runOnFunction() 223 AA.getLocation(cast<StoreInst>(*I2)))) { in runOnFunction() [all …]
|
/external/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/ |
D | types.pass.cpp | 37 typedef std::ostreambuf_iterator<wchar_t> I2; in main() typedef 38 static_assert((std::is_convertible<I2, in main() 40 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 41 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 42 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main() 43 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), ""); in main()
|
/external/libcxx/test/iterators/stream.iterators/ostream.iterator/ |
D | types.pass.cpp | 34 typedef std::ostream_iterator<unsigned, wchar_t> I2; in main() typedef 35 static_assert((std::is_convertible<I2, in main() 37 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 38 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 39 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), ""); in main()
|
/external/libcxx/test/iterators/stream.iterators/istream.iterator/ |
D | types.pass.cpp | 35 typedef std::istream_iterator<unsigned, wchar_t> I2; in main() typedef 36 static_assert((std::is_convertible<I2, in main() 39 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 40 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 41 static_assert((std::is_same<I2::istream_type, std::wistream>::value), ""); in main()
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 262 static bool isSameValue(const APSInt &I1, const APSInt &I2) { in isSameValue() argument 263 if (I1.getBitWidth() == I2.getBitWidth() && I1.isSigned() == I2.isSigned()) in isSameValue() 264 return I1 == I2; in isSameValue() 267 if (I1.getBitWidth() > I2.getBitWidth()) in isSameValue() 268 return isSameValue(I1, I2.extend(I1.getBitWidth())); in isSameValue() 269 else if (I2.getBitWidth() > I1.getBitWidth()) in isSameValue() 270 return isSameValue(I1.extend(I2.getBitWidth()), I2); in isSameValue() 278 return APSInt(I1, true) == I2; in isSameValue() 281 if (I2.isNegative()) in isSameValue() 284 return I1 == APSInt(I2, true); in isSameValue()
|
/external/clang/test/CodeGenObjC/ |
D | class-type.m | 11 @class I2; 14 I2 *_imageBrowser; 21 @interface I2 : I0 interface 24 @implementation I2 implementation
|
D | sel-as-builtin-type.m | 10 @interface I2 interface 16 I2 *a0 = [I2 dictionary];
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZInstrFormats.td | 164 bits<16> I2; 169 let Inst{15-0} = I2; 197 bits<8> I2; 205 let Inst{15-8} = I2; 216 bits<16> I2; 221 let Inst{31-16} = I2; 252 bits<32> I2; 257 let Inst{31-0} = I2; 427 bits<8> I2; 430 let Inst{23-16} = I2; [all …]
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IdenticalExprChecker.cpp | 121 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) { in VisitIfStmt() local 122 const Expr *Cond2 = I2->getCond(); in VisitIfStmt() 131 Else = I2->getElse(); in VisitIfStmt() 315 Expr::const_child_iterator I2 = Expr2->child_begin(); in isIdenticalStmt() local 316 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalStmt() 317 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt() 320 ++I2; in isIdenticalStmt() 326 if (I2 != Expr2->child_end()) in isIdenticalStmt() 419 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin(); in isIdenticalStmt() local 420 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) { in isIdenticalStmt() [all …]
|
/external/clang/test/Index/ |
D | pch-with-errors.m | 8 @interface I2 interface 13 extern I2 *somevar1; 16 extern I2 *somevar2; 20 void foo(I2 *i) {
|
D | complete-categories.m | 5 @interface I2 @end interface 6 @interface I3 : I2 @end 12 @interface I2 (Cat2) @end interface in Cat2 13 @interface I2 (Cat3) @end interface in Cat3 14 @interface I2 (Cat2) @end interface in Cat2
|
/external/qemu/disas/ |
D | mips.c | 1121 #define I2 INSN_ISA2 macro 1279 {"bc1fl", "p", 0x45020000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 }, 1283 {"bc1tl", "p", 0x45030000, 0xffff0000, CBL|RD_CC|FP_S, 0, I2|T3 }, 1288 {"beqzl", "s,p", 0x50000000, 0xfc1f0000, CBL|RD_s, 0, I2|T3 }, 1291 {"beql", "s,t,p", 0x50000000, 0xfc000000, CBL|RD_s|RD_t, 0, I2|T3 }, 1292 {"beql", "s,I,p", 0, (int) M_BEQL_I, INSN_MACRO, 0, I2|T3 }, 1295 {"bgel", "s,t,p", 0, (int) M_BGEL, INSN_MACRO, 0, I2|T3 }, 1296 {"bgel", "s,I,p", 0, (int) M_BGEL_I, INSN_MACRO, 0, I2|T3 }, 1299 {"bgeul", "s,t,p", 0, (int) M_BGEUL, INSN_MACRO, 0, I2|T3 }, 1300 {"bgeul", "s,I,p", 0, (int) M_BGEUL_I, INSN_MACRO, 0, I2|T3 }, [all …]
|
/external/bluetooth/bluedroid/embdrv/sbc/decoder/include/ |
D | oi_stddefs.h | 88 OI_UINT32 I2; /**< least significant 32 bits */ member 97 OI_UINT32 I2; /**< least significant 32 bits as an unsigned integer */ member 106 OI_UINT32 I2; /**< second-most significant 32 bits */ member 117 OI_UINT32 I2; /**< second-most significant 32 bits as an unsigned integer */ member
|
/external/clang/test/SemaObjCXX/ |
D | objc-extern-c.mm | 10 @interface I2 interface 12 @interface I2(C) // expected-note {{previous}} interface in C 23 @interface I2(C) // expected-warning {{duplicate}} interface in C
|
/external/clang/test/SemaObjC/ |
D | protocol-lookup-2.m | 48 @interface I2 : NSObject interface 52 @interface I2() <ProtC> interface in ProtC 55 @implementation I2 implementation
|
D | missing-atend-metadata.m | 15 @interface I2 : I0 // expected-error {{missing '@end'}} 19 @implementation I2 // expected-note {{implementation started here}} implementation in CAT 22 @implementation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation star…
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/ |
D | p3.cpp | 5 typedef int I2; typedef 6 typedef I2 I; // expected-note {{previous definition is here}}
|
/external/llvm/test/Transforms/LICM/ |
D | 2003-02-27-PreheaderProblem.ll | 13 %I = phi i32 [ 0, %0 ], [ %I2, %bb5 ] ; <i32> [#uses=1] 14 %I2 = add i32 %I, 1 ; <i32> [#uses=2] 15 %c = icmp eq i32 %I2, 10 ; <i1> [#uses=1]
|
/external/clang/test/PCH/ |
D | chain-categories2.m | 16 @interface I2 interface 39 @interface I2() interface in readwrite 53 @implementation I2 implementation
|
/external/clang/test/CXX/class/class.nest/ |
D | p3.cpp | 12 class I2; 15 class E::I2 { }; class in example::E
|