/external/opencv3/modules/cudaoptflow/src/ |
D | tvl1flow.cpp | 57 void warpBackward(PtrStepSzf I0, PtrStepSzf I1, PtrStepSzf I1x, PtrStepSzf I1y, 116 virtual void calc(InputArray I0, InputArray I1, InputOutputArray flow, Stream& stream); 131 … void calcImpl(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, GpuMat& flowy, Stream& stream); 132 …void procOneScale(const GpuMat& I0, const GpuMat& I1, GpuMat& u1, GpuMat& u2, GpuMat& u3, Stream& … 176 …void OpticalFlowDual_TVL1_Impl::calcImpl(const GpuMat& I0, const GpuMat& I1, GpuMat& flowx, GpuMat… in calcImpl() argument 178 CV_Assert( I0.type() == CV_8UC1 || I0.type() == CV_32FC1 ); in calcImpl() 179 CV_Assert( I0.size() == I1.size() ); in calcImpl() 180 CV_Assert( I0.type() == I1.type() ); in calcImpl() 181 …CV_Assert( !useInitialFlow_ || (flowx.size() == I0.size() && flowx.type() == CV_32FC1 && flowy.siz… in calcImpl() 191 I0.convertTo(I0s[0], CV_32F, I0.depth() == CV_8U ? 1.0 : 255.0, stream); in calcImpl() [all …]
|
/external/opencv3/modules/video/src/ |
D | tvl1flow.cpp | 94 void calc(InputArray I0, InputArray I1, InputOutputArray flow); 125 …void procOneScale(const Mat_<float>& I0, const Mat_<float>& I1, Mat_<float>& u1, Mat_<float>& u2, … 127 bool procOneScale_ocl(const UMat& I0, const UMat& I1, UMat& u1, UMat& u2); 129 bool calc_ocl(InputArray I0, InputArray I1, InputOutputArray flow); 204 bool warpBackward(const UMat &I0, const UMat &I1, UMat &I1x, UMat &I1y, 236 bool cv_ocl_tvl1flow::warpBackward(const UMat &I0, const UMat &I1, UMat &I1x, UMat &I1y, in warpBackward() argument 240 size_t globalsize[2] = { I0.cols, I0.rows }; in warpBackward() 247 idxArg = kernel.set(idxArg, ocl::KernelArg::PtrReadOnly(I0));//I0 mat in warpBackward() 248 int I0_step = (int)(I0.step / I0.elemSize()); in warpBackward() 250 idxArg = kernel.set(idxArg, (int)(I0.cols));//I0_col in warpBackward() [all …]
|
/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 36 "lh %[" #O0 "], " #I0 "(%[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" \ 44 "ulw %[" #O1 "], " #I2 "+" XSTR(I9) "*" #I6 "(%[" #I0 "]) \n\t" \ 45 "ulw %[" #O2 "], " #I3 "+" XSTR(I9) "*" #I7 "(%[" #I0 "]) \n\t" \ 46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t" [all …]
|
/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 64 CV_Assert( I0.type() == CV_8UC1 ); in operator ()() 65 CV_Assert( I1.size() == I0.size() && I1.type() == I0.type() ); in operator ()() 68 Size esize = I0.size() + Size(border_size, border_size) * 2; in operator ()() 70 ensureSizeIsEnough(esize, I0.type(), extended_I0); in operator ()() 71 ensureSizeIsEnough(esize, I0.type(), extended_I1); in operator ()() 73 …cuda::copyMakeBorder(I0, extended_I0, border_size, border_size, border_size, border_size, cv::BORD… in operator ()() 76 GpuMat I0_hdr = extended_I0(Rect(Point2i(border_size, border_size), I0.size())); in operator ()() 77 GpuMat I1_hdr = extended_I1(Rect(Point2i(border_size, border_size), I0.size())); in operator ()() [all …]
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20131115_234449-fw_1.0.AA-manual/ |
D | touch_firmware_report-link-fw_1.0.AA-complete-20140116_103446.log | 36 I0 158 (I0 320 I0 380 (I0 446 I0 592 (I0 658 I0 804 (I0 927 I0 935 I0 [all …]
|
/external/clang/test/SemaObjC/ |
D | sizeof-interface.m | 3 @class I0; // expected-note 2{{forward declaration of class here}} 6 int g0 = sizeof(I0); // expected-error{{invalid application of 'sizeof' to an incomplete type 'I0'}} 9 void *g3(I0 *P) { 10 P = P+5; // expected-error {{arithmetic on a pointer to an incomplete type 'I0'}} 12 …4]; // expected-error{{expected method to read array element not found on object of type 'I0 *'}} 17 @interface I0 { interface 26 int g1[ sizeof(I0) // expected-error {{application of 'sizeof' to interface 'I0' is not support… 29 @implementation I0 implementation 35 int g2[ sizeof(I0) // expected-error {{application of 'sizeof' to interface 'I0' is not supported… 53 int bar(I0 *P) { [all …]
|
D | missing-atend-metadata.m | 3 @interface I0 // expected-note {{receiver is instance of class declared here}} interface 6 @implementation I0 // expected-note {{implementation started here}} implementation 9 @interface I1 : I0 // expected-error {{missing '@end'}} 15 @interface I2 : I0 // expected-error {{missing '@end'}}
|
D | property-category-1.m | 39 @interface I0 interface 43 @interface I0 (Cat0) interface in Cat0 46 @interface I0 (Cat1) interface in Cat1 49 @implementation I0 // expected-warning {{property 'p0' requires method 'p0' to be define}} implementation
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | bm_fast.cu | 79 PtrStepSz<T> I0; member 89 I0(I0_), I1(I1_), in FastOptFlowBM() 117 int dist = calcDist(I0(ay + ty, ax + tx), I1(by + ty, bx + tx)); in initSums_BruteForce() 146 col_sum += calcDist(I0(ay + ty, ax), I1(by + ty, bx)); in shiftRight_FirstRow() 160 T a_up = I0(ay - block_radius - 1, ax); in shiftRight_UpSums() 161 T a_down = I0(ay + block_radius, ax); in shiftRight_UpSums() 217 int tex = ::min(tbx + TILE_COLS, I0.cols); in operator ()() 218 int tey = ::min(tby + TILE_ROWS, I0.rows); in operator ()() 221 …col_sums.data = buffer.ptr(I0.cols + blockIdx.x * block_window) + blockIdx.y * search_window * sea… in operator ()() 276 …void calc(PtrStepSzb I0, PtrStepSzb I1, PtrStepSzf velx, PtrStepSzf vely, PtrStepi buffer, int sea… in calc() argument [all …]
|
/external/clang/test/CodeGenObjC/ |
D | interface.m | 6 @interface I0 { interface 14 static int f0(I0 *a0) { 18 static int f1(I0 *a0) { 22 static int f2(I0 *a0) { 27 I0 *a = alloca(sizeof(*a) * 4);
|
D | objc2-retain-codegen.m | 4 @interface I0 { interface 5 I0 *_f0; 10 @implementation I0 implementation
|
D | debug-info-crash.m | 12 @interface I0 { interface 13 I0 *_iv0; 20 - (I0<P0> *) im0 {
|
D | next-objc-dispatch.m | 55 @interface I0 : NSObject interface 59 @implementation I0 implementation 70 void f0(I0 *a) { 71 [I0 alloc];
|
D | function-decay.m | 3 @interface I0 @end interface 4 @implementation I0 implementation
|
D | no-sanitize.m | 3 @interface I0 @end interface 4 @implementation I0 implementation
|
D | class-type.m | 6 @interface I0 { interface 21 @interface I2 : I0
|
D | synthesize_ivar.m | 32 @interface I0 @end interface 35 I0<P0> *iv0;
|
/external/llvm/unittests/IR/ |
D | ValueTest.cpp | 130 Instruction *I0 = &*BB.begin(); in TEST() local 131 ASSERT_TRUE(I0); in TEST() 152 CHECK_PRINT(I0, " %0 = add i32 %y, 1"); in TEST() 171 CHECK_PRINT_AS_OPERAND(I0, false, "%0"); in TEST() 173 CHECK_PRINT_AS_OPERAND(I0, true, "i32 %0"); in TEST() 200 Instruction *I0 = &*EntryBB.begin(); in TEST() local 201 ASSERT_TRUE(I0); in TEST() 207 EXPECT_EQ(MST.getLocalSlot(I0), 0); in TEST()
|
/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 | 92 I0 113 I0 176 (I0 308 I0 327 I0 385 (I0 525 I0 583 (I0 726 I0 784 (I0 [all …]
|
/external/llvm/lib/Target/Sparc/ |
D | SparcFrameLowering.cpp | 291 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) in verifyLeafProcRegUse() 317 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) { in remapRegsForLeafProc() 321 unsigned mapped_reg = reg - SP::I0 + SP::O0; in remapRegsForLeafProc() 328 if ((reg - SP::I0) % 2 == 0) { in remapRegsForLeafProc() 329 unsigned preg = (reg - SP::I0) / 2 + SP::I0_I1; in remapRegsForLeafProc() 344 for (unsigned reg = SP::I0; reg <= SP::I7; ++reg) { in remapRegsForLeafProc() 348 MBB->addLiveIn(reg - SP::I0 + SP::O0); in remapRegsForLeafProc()
|
D | DelaySlotFiller.cpp | 370 if (reg < SP::I0 || reg > SP::I7) in combineRestoreADD() 382 AddMI->getOperand(0).setReg(reg - SP::I0 + SP::O0); in combineRestoreADD() 398 if (reg < SP::I0 || reg > SP::I7) in combineRestoreOR() 421 OrMI->getOperand(0).setReg(reg - SP::I0 + SP::O0); in combineRestoreOR() 436 if (reg < SP::I0 || reg > SP::I7) in combineRestoreSETHIi() 455 RestoreMI->getOperand(0).setReg(reg - SP::I0 + SP::O0); in combineRestoreSETHIi()
|
/external/opencv3/modules/cudaoptflow/src/cuda/ |
D | tvl1flow.cu | 108 …__global__ void warpBackwardKernel(const PtrStepSzf I0, const PtrStepf u1, const PtrStepf u2, PtrS… in warpBackwardKernel() argument 113 if (x >= I0.cols || y >= I0.rows) in warpBackwardKernel() 164 const float I0Val = I0(y, x); in warpBackwardKernel() 168 void warpBackward(PtrStepSzf I0, PtrStepSzf I1, PtrStepSzf I1x, PtrStepSzf I1y, in warpBackward() argument 174 const dim3 grid(divUp(I0.cols, block.x), divUp(I0.rows, block.y)); in warpBackward() 180 warpBackwardKernel<<<grid, block, 0, stream>>>(I0, u1, u2, I1w, I1wx, I1wy, grad, rho); in warpBackward()
|
/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 | 176 (I0 308 I0 385 (I0 525 I0 726 I0 925 I0 1004 (I0 1148 I0 1414 I0 1431 I0 [all …]
|
/external/opencv3/modules/java/src/ |
D | video+DenseOpticalFlow.java | 22 public void calc(Mat I0, Mat I1, Mat flow) in calc() argument 25 calc_0(nativeObj, I0.nativeObj, I1.nativeObj, flow.nativeObj); in calc()
|
/external/clang/test/Driver/ |
D | darwin-iphone-defaults.m | 13 @interface I0 interface 17 @implementation I0 implementation
|