/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 48 typedef std::istreambuf_iterator<wchar_t> I2; in main() typedef 49 static_assert((std::is_convertible<I2, in main() 52 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 53 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 54 static_assert((std::is_same<I2::int_type, I2::traits_type::int_type>::value), ""); in main() 55 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), ""); in main() 56 static_assert((std::is_same<I2::istream_type, std::wistream>::value), ""); in main() 57 static_assert((std::is_nothrow_default_constructible<I2>::value), "" ); in main() 58 static_assert((std::is_trivially_copy_constructible<I2>::value), "" ); in main() 59 static_assert((std::is_trivially_destructible<I2>::value), "" ); in main()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 277 static bool haveSameSpecialState(const Instruction *I1, const Instruction *I2, in haveSameSpecialState() argument 279 assert(I1->getOpcode() == I2->getOpcode() && in haveSameSpecialState() 283 return LI->isVolatile() == cast<LoadInst>(I2)->isVolatile() && in haveSameSpecialState() 284 (LI->getAlignment() == cast<LoadInst>(I2)->getAlignment() || in haveSameSpecialState() 286 LI->getOrdering() == cast<LoadInst>(I2)->getOrdering() && in haveSameSpecialState() 287 LI->getSynchScope() == cast<LoadInst>(I2)->getSynchScope(); in haveSameSpecialState() 289 return SI->isVolatile() == cast<StoreInst>(I2)->isVolatile() && in haveSameSpecialState() 290 (SI->getAlignment() == cast<StoreInst>(I2)->getAlignment() || in haveSameSpecialState() 292 SI->getOrdering() == cast<StoreInst>(I2)->getOrdering() && in haveSameSpecialState() 293 SI->getSynchScope() == cast<StoreInst>(I2)->getSynchScope(); in haveSameSpecialState() [all …]
|
/external/webp/src/dsp/ |
D | mips_macro.h | 42 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/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/llvm/lib/Analysis/ |
D | AliasAnalysisEvaluator.cpp | 196 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { in runOnFunction() local 198 Type *I2ElTy =cast<PointerType>((*I2)->getType())->getElementType(); in runOnFunction() 201 switch (AA.alias(*I1, I1Size, *I2, I2Size)) { in runOnFunction() 203 PrintResults("NoAlias", PrintNoAlias, *I1, *I2, F.getParent()); in runOnFunction() 207 PrintResults("MayAlias", PrintMayAlias, *I1, *I2, F.getParent()); in runOnFunction() 211 PrintResults("PartialAlias", PrintPartialAlias, *I1, *I2, in runOnFunction() 216 PrintResults("MustAlias", PrintMustAlias, *I1, *I2, F.getParent()); in runOnFunction() 227 for (SetVector<Value *>::iterator I2 = Stores.begin(), E2 = Stores.end(); in runOnFunction() local 228 I2 != E2; ++I2) { in runOnFunction() 230 MemoryLocation::get(cast<StoreInst>(*I2)))) { in runOnFunction() [all …]
|
/external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/ |
D | gpu-basics-similarity.cpp | 16 double getPSNR(const Mat& I1, const Mat& I2); // CPU versions 17 Scalar getMSSIM( const Mat& I1, const Mat& I2); 19 double getPSNR_CUDA(const Mat& I1, const Mat& I2); // Basic CUDA versions 20 Scalar getMSSIM_CUDA( const Mat& I1, const Mat& I2); 30 double getPSNR_CUDA_optimized(const Mat& I1, const Mat& I2, BufferPSNR& b); 69 Mat I2 = imread(argv[2]); in main() local 71 if (!I1.data || !I2.data) // Check for success in main() 89 result = getPSNR(I1,I2); in main() 101 result = getPSNR_CUDA(I1,I2); in main() 111 result = getPSNR_CUDA_optimized(I1, I2, bufferPSNR); in main() [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/ |
D | types.pass.cpp | 43 typedef std::istream_iterator<unsigned, wchar_t> I2; in main() typedef 44 static_assert((std::is_convertible<I2, in main() 47 static_assert((std::is_same<I2::char_type, wchar_t>::value), ""); in main() 48 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), ""); in main() 49 static_assert((std::is_same<I2::istream_type, std::wistream>::value), ""); in main() 50 static_assert( std::is_trivially_copy_constructible<I2>::value, ""); in main() 51 static_assert( std::is_trivially_destructible<I2>::value, ""); in main()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonCopyToCombine.cpp | 87 void combine(MachineInstr *I1, MachineInstr *I2, 90 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2, 222 MachineInstr *I2, in isSafeToMoveTogether() argument 226 unsigned I2UseReg = UseReg(I2->getOperand(1)); in isSafeToMoveTogether() 240 MachineBasicBlock::reverse_iterator I(I2), in isSafeToMoveTogether() 249 if (I2->killsRegister(I2UseReg)) in isSafeToMoveTogether() 276 removeKillInfo(I2, KilledOperand); in isSafeToMoveTogether() 286 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether() 289 End = std::next(MachineBasicBlock::iterator(I2)); in isSafeToMoveTogether() 435 MachineInstr *I2 = findPairable(I1, DoInsertAtI1); in runOnMachineFunction() local [all …]
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 290 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/libcxx/test/std/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/opencv3/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/ |
D | video-input-psnr-ssim.cpp | 14 double getPSNR ( const Mat& I1, const Mat& I2); 15 Scalar getMSSIM( const Mat& I1, const Mat& I2); 136 double getPSNR(const Mat& I1, const Mat& I2) in getPSNR() argument 139 absdiff(I1, I2, s1); // |I1 - I2| in getPSNR() 163 Mat I1, I2; in getMSSIM() local 165 i2.convertTo(I2, d); in getMSSIM() 167 Mat I2_2 = I2.mul(I2); // I2^2 in getMSSIM() 169 Mat I1_I2 = I1.mul(I2); // I1 * I2 in getMSSIM() 175 GaussianBlur(I2, mu2, Size(11, 11), 1.5); in getMSSIM()
|
/external/libcxx/test/std/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/clang/lib/StaticAnalyzer/Checkers/ |
D | IdenticalExprChecker.cpp | 139 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() 333 Expr::const_child_iterator I2 = Expr2->child_begin(); in isIdenticalStmt() local 334 while (I1 != Expr1->child_end() && I2 != Expr2->child_end()) { in isIdenticalStmt() 335 if (!*I1 || !*I2 || !isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt() 338 ++I2; in isIdenticalStmt() 344 if (I2 != Expr2->child_end()) in isIdenticalStmt() 438 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin(); in isIdenticalStmt() local 439 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) { in isIdenticalStmt() [all …]
|
/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 | 167 bits<16> I2; 172 let Inst{15-0} = I2; 200 bits<8> I2; 208 let Inst{15-8} = I2; 219 bits<16> I2; 224 let Inst{31-16} = I2; 255 bits<32> I2; 260 let Inst{31-0} = I2; 432 bits<8> I2; 435 let Inst{23-16} = I2; [all …]
|
D | SystemZInstrInfo.td | 46 def J : InstRI<0xA74, (outs), (ins brtarget16:$I2), "j\t$I2", 47 [(br bb:$I2)]>; 51 def JG : InstRIL<0xC04, (outs), (ins brtarget32:$I2), "jg\t$I2", []>; 61 brtarget16:$I2), "j$R1\t$I2", 62 [(z_br_ccmask cond4:$valid, cond4:$R1, bb:$I2)]>; 64 brtarget32:$I2), "jg$R1\t$I2", []>; 66 def AsmBRC : InstRI<0xA74, (outs), (ins imm32zx4:$R1, brtarget16:$I2), 67 "brc\t$R1, $I2", []>; 68 def AsmBRCL : InstRIL<0xC04, (outs), (ins imm32zx4:$R1, brtarget32:$I2), 69 "brcl\t$R1, $I2", []>; [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/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/llvm/lib/CodeGen/ |
D | BranchFolding.cpp | 328 MachineBasicBlock::iterator &I2) { in ComputeCommonTailLength() argument 330 I2 = MBB2->end(); in ComputeCommonTailLength() 333 while (I1 != MBB1->begin() && I2 != MBB2->begin()) { in ComputeCommonTailLength() 334 --I1; --I2; in ComputeCommonTailLength() 338 while (I2->isDebugValue()) { in ComputeCommonTailLength() 339 if (I2==MBB2->begin()) in ComputeCommonTailLength() 342 --I2; in ComputeCommonTailLength() 344 ++I2; in ComputeCommonTailLength() 351 while (I2->isDebugValue()) { in ComputeCommonTailLength() 352 if (I2==MBB2->begin()) { in ComputeCommonTailLength() [all …]
|
/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]
|