/external/webp/src/dsp/ |
D | mips_macro.h | 27 I0, I1) \ argument 28 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I1 "] \n\t" \ 29 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I1 "] \n\t" 35 I0, I1) \ argument 37 "lh %[" #O1 "], " #I1 "(%[in]) \n\t" 42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument 43 "ulw %[" #O0 "], " #I1 "+" XSTR(I9) "*" #I5 "(%[" #I0 "]) \n\t" \ 53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument 56 "mul %[" #O2 "], %[" #I1 "], %[kC2] \n\t" \ 57 "mul %[" #O3 "], %[" #I1 "], %[kC1] \n\t" \ [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/ |
D | types.pass.cpp | 35 typedef std::istreambuf_iterator<char> I1; in main() typedef 36 static_assert((std::is_convertible<I1, in main() 39 static_assert((std::is_same<I1::char_type, char>::value), ""); in main() 40 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main() 41 static_assert((std::is_same<I1::int_type, I1::traits_type::int_type>::value), ""); in main() 42 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main() 43 static_assert((std::is_same<I1::istream_type, std::istream>::value), ""); in main() 44 static_assert((std::is_nothrow_default_constructible<I1>::value), "" ); in main() 45 static_assert((std::is_trivially_copy_constructible<I1>::value), "" ); in main() 46 static_assert((std::is_trivially_destructible<I1>::value), "" ); in main()
|
/external/llvm/lib/Analysis/ |
D | AliasAnalysisEvaluator.cpp | 190 for (SetVector<Value *>::iterator I1 = Pointers.begin(), E = Pointers.end(); in runOnFunction() local 191 I1 != E; ++I1) { in runOnFunction() 193 Type *I1ElTy = cast<PointerType>((*I1)->getType())->getElementType(); in runOnFunction() 196 for (SetVector<Value *>::iterator I2 = Pointers.begin(); I2 != I1; ++I2) { 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() 225 for (SetVector<Value *>::iterator I1 = Loads.begin(), E = Loads.end(); in runOnFunction() local [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/ |
D | touch_firmware_report-link-fw_1.0.AA-complete-20140116_103340.log | 31 (I1 32 I1 36 I1 92 I1 113 I1 132 I1 151 I1 208 I1 259 (I1 260 I1 [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); 68 Mat I1 = imread(argv[1]); // Read the two images 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/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_030025-fw_11.27-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.27-complete-20140116_103515.log | 31 (I1 32 I1 36 I1 113 I1 132 I1 151 I1 208 I1 259 (I1 260 I1 263 I1 [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_031746-fw_11.27-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.27-complete-20140116_103521.log | 31 (I1 32 I1 36 I1 92 I1 113 I1 132 I1 151 I1 208 I1 259 (I1 260 I1 [all …]
|
/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() 151 double mse = sse / (double)(I1.channels() * I1.total()); in getPSNR() 163 Mat I1, I2; in getMSSIM() local 164 i1.convertTo(I1, d); // cannot calculate on one byte large values in getMSSIM() 168 Mat I1_2 = I1.mul(I1); // I1^2 in getMSSIM() 169 Mat I1_I2 = I1.mul(I2); // I1 * I2 in getMSSIM() 174 GaussianBlur(I1, mu1, Size(11, 11), 1.5); in getMSSIM()
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.23-complete-20140116_103533.log | 31 (I1 32 I1 36 I1 132 I1 208 I1 259 (I1 260 I1 263 I1 344 I1 361 I1 [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/istream.iterator/ |
D | types.pass.cpp | 33 typedef std::istream_iterator<double> I1; in main() typedef 34 static_assert((std::is_convertible<I1, in main() 37 static_assert((std::is_same<I1::char_type, char>::value), ""); in main() 38 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main() 39 static_assert((std::is_same<I1::istream_type, std::istream>::value), ""); in main() 40 static_assert( std::is_trivially_copy_constructible<I1>::value, ""); in main() 41 static_assert( std::is_trivially_destructible<I1>::value, ""); in main()
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/ |
D | touch_firmware_report-lumpy-fw_11.23-complete-20140116_103525.log | 31 (I1 32 I1 36 I1 132 I1 208 I1 259 (I1 260 I1 263 I1 344 I1 415 I1 [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonCopyToCombine.cpp | 83 MachineInstr *findPairable(MachineInstr *I1, bool &DoInsertAtI1); 87 void combine(MachineInstr *I1, MachineInstr *I2, 90 bool isSafeToMoveTogether(MachineInstr *I1, MachineInstr *I2, 221 bool HexagonCopyToCombine::isSafeToMoveTogether(MachineInstr *I1, in isSafeToMoveTogether() argument 230 if (I2UseReg && I1->modifiesRegister(I2UseReg, TRI)) in isSafeToMoveTogether() 241 End = --(MachineBasicBlock::reverse_iterator(I1)); in isSafeToMoveTogether() 244 End = MachineBasicBlock::reverse_iterator(I1); in isSafeToMoveTogether() 286 MachineBasicBlock::iterator I(I1), End(I2); in isSafeToMoveTogether() 290 unsigned I1UseReg = UseReg(I1->getOperand(1)); in isSafeToMoveTogether() 330 bool Added = I1->addRegisterKilled(KilledOperand, TRI); in isSafeToMoveTogether() [all …]
|
/external/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ |
D | types.pass.cpp | 29 typedef std::ostreambuf_iterator<char> I1; in main() typedef 30 static_assert((std::is_convertible<I1, in main() 32 static_assert((std::is_same<I1::char_type, char>::value), ""); in main() 33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main() 34 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), ""); in main() 35 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), ""); in main()
|
/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() 307 if (I1.isSigned()) { in compareValues() [all …]
|
/external/clang/test/CodeGenObjC/ |
D | auto-property-synthesize-protocol.m | 22 @interface I1<P1> interface 26 @implementation I1 // expected-warning {{auto property synthesis will not synthesize property decla… implementation 31 // CHECK: define internal i32 @"\01-[I1 auto_req_window]"( 32 // CHECK: define internal void @"\01-[I1 setAuto_req_window:]"( 34 // CHECK-NOT: define internal i32 @"\01-[I1 no_auto_opt_window]"( 35 // CHECK-NOT: define internal void @"\01-[I1 setNo_auto_opt_window:]"(
|
D | 2009-01-21-invalid-debug-info.m | 6 // info for I1* to be generated, but referring to an invalid compile 10 @interface I1 @end interface 12 @implementation I1 implementation 16 I1 *f1(void) { return 0; }
|
/external/clang/test/SemaCXX/ |
D | ms-interface.cpp | 3 __interface I1 { variable 5 I1(); 7 ~I1(); 44 __interface I4 : I1, I2 { 51 __interface I5 : private I1 {
|
/external/libcxx/test/std/iterators/stream.iterators/ostream.iterator/ |
D | types.pass.cpp | 28 typedef std::ostream_iterator<double> I1; in main() typedef 29 static_assert((std::is_convertible<I1, in main() 31 static_assert((std::is_same<I1::char_type, char>::value), ""); in main() 32 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), ""); in main() 33 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), ""); in main()
|
/external/valgrind/cachegrind/ |
D | cg_sim.c | 167 static cache_t2 I1; variable 172 cachesim_initcache(I1c, &I1); in cachesim_initcaches() 181 if (cachesim_ref_is_miss(&I1, a, size)) { in cachesim_I1_doref_Gen() 193 UWord block = a >> I1.line_size_bits; in cachesim_I1_doref_NoX() 194 UInt I1_set = block & I1.sets_min_1; in cachesim_I1_doref_NoX() 197 if (cachesim_setref_is_miss(&I1, I1_set, block)) { in cachesim_I1_doref_NoX() 228 if (I1.line_size_bits != LL.line_size_bits) return False; in cachesim_is_IrNoX() 229 block1 = a >> I1.line_size_bits; in cachesim_is_IrNoX() 230 block2 = (a+size-1) >> I1.line_size_bits; in cachesim_is_IrNoX()
|
/external/clang/test/Index/ |
D | complete-categories.m | 4 @interface I1 @end interface 8 @interface I1(Cat1) @end interface in Cat1 9 @interface I1(Cat2) @end interface in Cat2 10 @interface I1(Cat3) @end interface in Cat3 18 @implementation I1(Cat2) @end implementation in Cat2 19 @implementation I1(Cat3) @end implementation in Cat3
|
/external/llvm/unittests/IR/ |
D | ValueTest.cpp | 132 Instruction *I1 = &*++BB.begin(); in TEST() local 133 ASSERT_TRUE(I1); in TEST() 153 CHECK_PRINT(I1, " %1 = add i32 %y, 1"); in TEST() 172 CHECK_PRINT_AS_OPERAND(I1, false, "%1"); in TEST() 174 CHECK_PRINT_AS_OPERAND(I1, true, "i32 %1"); in TEST() 202 Instruction *I1 = &*++EntryBB.begin(); in TEST() local 203 ASSERT_TRUE(I1); in TEST() 208 EXPECT_EQ(MST.getLocalSlot(I1), 1); in TEST()
|
/external/clang/test/ASTMerge/Inputs/ |
D | category1.m | 1 @interface I1 interface 5 @interface I1 (Cat1) interface in Cat1 10 @interface I1 () interface in int 15 @interface I1 (Cat2) interface in Cat2
|
D | category2.m | 3 @interface I1 interface 7 @interface I1 (Cat1) interface in Cat1 12 @interface I1 () interface in Int 17 @interface I1 (Cat2) interface in Cat2
|
/external/opencv3/modules/cudalegacy/src/ |
D | bm_fast.cpp | 59 …void calc(PtrStepSzb I0, PtrStepSzb I1, PtrStepSzf velx, PtrStepSzf vely, PtrStepi buffer, int sea… 62 void cv::cuda::FastOpticalFlowBM::operator ()(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, Gp… in operator ()() argument 65 CV_Assert( I1.size() == I0.size() && I1.type() == I0.type() ); in operator ()() 74 …cuda::copyMakeBorder(I1, extended_I1, border_size, border_size, border_size, border_size, cv::BORD… in operator ()()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | IdenticalExprChecker.cpp | 332 Expr::const_child_iterator I1 = Expr1->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() 337 ++I1; in isIdenticalStmt() 342 if (I1 != Expr1->child_end()) in isIdenticalStmt() 437 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin(); in isIdenticalStmt() local 439 while (I1 != CompStmt1->body_end() && I2 != CompStmt2->body_end()) { in isIdenticalStmt() 440 if (!isIdenticalStmt(Ctx, *I1, *I2, IgnoreSideEffects)) in isIdenticalStmt() 442 ++I1; in isIdenticalStmt() 468 llvm::APInt I1 = IntLit1->getValue(); in isIdenticalStmt() local [all …]
|