/external/opencv/cv/src/ |
D | cvcorner.cpp | 209 CvMat *Dx = 0, *Dy = 0, *cov = 0; in icvCornerEigenValsVecs() local 296 CV_CALL( Dy = cvCreateMat( max_dy, aligned_width, d_depth )); in icvCornerEigenValsVecs() 299 Dx->cols = Dy->cols = size.width; in icvCornerEigenValsVecs() 325 stripe_size.height = dy_filter.process( src, Dy, cvRect(0,y,-1,delta), in icvCornerEigenValsVecs() 339 Dy->data.ptr, d_step, stripe_size, in icvCornerEigenValsVecs() 347 Dy->data.ptr, d_step, stripe_size )); in icvCornerEigenValsVecs() 357 const short* dydata = (const short*)(Dy->data.ptr + i*Dy->step); in icvCornerEigenValsVecs() 372 const float* dydata = (const float*)(Dy->data.ptr + i*Dy->step); in icvCornerEigenValsVecs() 412 cvReleaseMat( &Dy ); in icvCornerEigenValsVecs() 506 CvMat *Dx = 0, *Dy = 0, *D2x = 0, *D2y = 0, *Dxy = 0; in cvPreCornerDetect() local [all …]
|
D | cvsurf.cpp | 114 CvSurfHF Dx[NX], Dy[NY], Dxy[NXY], Dm; in icvFastHessianDetector() local 139 icvResizeHaarPattern( dy_s, Dy, NY, SIZE0, size, sum->cols ); in icvFastHessianDetector() 170 dy = (s[Dy[0].p0] + s[Dy[0].p3] - s[Dy[0].p1] - s[Dy[0].p2])*Dy[0].w + in icvFastHessianDetector() 171 (s[Dy[1].p0] + s[Dy[1].p3] - s[Dy[1].p1] - s[Dy[1].p2])*Dy[1].w + in icvFastHessianDetector() 172 (s[Dy[2].p0] + s[Dy[2].p3] - s[Dy[2].p1] - s[Dy[2].p2])*Dy[2].w; in icvFastHessianDetector()
|
/external/opencv3/modules/imgproc/src/ |
D | corner.cpp | 289 Mat Dx, Dy; in cornerEigenValsVecs() local 293 Sobel( src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType ); in cornerEigenValsVecs() 298 Scharr( src, Dy, CV_32F, 0, 1, scale, 0, borderType ); in cornerEigenValsVecs() 309 const float* dydata = Dy.ptr<float>(i); in cornerEigenValsVecs() 378 static bool extractCovData(InputArray _src, UMat & Dx, UMat & Dy, int depth, in extractCovData() argument 395 Dy.create(src.size(), CV_32FC1); in extractCovData() 415 ocl::KernelArg::WriteOnlyNoSize(Dx), ocl::KernelArg::WriteOnly(Dy), in extractCovData() 425 Sobel(_src, Dy, CV_32F, 0, 1, aperture_size, scale, 0, borderType); in extractCovData() 430 Scharr(_src, Dy, CV_32F, 0, 1, scale, 0, borderType); in extractCovData() 462 UMat Dx, Dy; in ocl_cornerMinEigenValVecs() local [all …]
|
/external/opencv3/modules/cudaimgproc/src/cuda/ |
D | corners.cu | 135 …void cornerHarris_gpu(int block_size, float k, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int b… in cornerHarris_gpu() argument 141 bindTexture(&harrisDyTex, Dy); in cornerHarris_gpu() 247 …void cornerMinEigenVal_gpu(int block_size, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int borde… in cornerMinEigenVal_gpu() argument 253 bindTexture(&minEigenValDyTex, Dy); in cornerMinEigenVal_gpu()
|
/external/opencv3/modules/cudaimgproc/src/ |
D | corners.cpp | 59 …void cornerHarris_gpu(int block_size, float k, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int b… 60 …void cornerMinEigenVal_gpu(int block_size, PtrStepSzf Dx, PtrStepSzf Dy, PtrStepSzf dst, int borde…
|
/external/pdfium/third_party/freetype/src/raster/ |
D | ftraster.c | 1003 Long Dx, Dy; in Line_Up() local 1011 Dy = y2 - y1; in Line_Up() 1013 if ( Dy <= 0 || y2 < miny || y1 > maxy ) in Line_Up() 1020 x1 += SMulDiv( Dx, miny - y1, Dy ); in Line_Up() 1048 x1 += SMulDiv( Dx, ras.precision - f1, Dy ); in Line_Up() 1076 Ix = SMulDiv_No_Round( ras.precision, Dx, Dy ); in Line_Up() 1077 Rx = ( ras.precision * Dx ) % Dy; in Line_Up() 1082 Ix = -SMulDiv_No_Round( ras.precision, -Dx, Dy ); in Line_Up() 1083 Rx = ( ras.precision * -Dx ) % Dy; in Line_Up() 1087 Ax = -Dy; in Line_Up() [all …]
|
/external/freetype/src/raster/ |
D | ftraster.c | 1003 Long Dx, Dy; in Line_Up() local 1011 Dy = y2 - y1; in Line_Up() 1013 if ( Dy <= 0 || y2 < miny || y1 > maxy ) in Line_Up() 1020 x1 += SMulDiv( Dx, miny - y1, Dy ); in Line_Up() 1048 x1 += SMulDiv( Dx, ras.precision - f1, Dy ); in Line_Up() 1076 Ix = SMulDiv_No_Round( ras.precision, Dx, Dy ); in Line_Up() 1077 Rx = ( ras.precision * Dx ) % Dy; in Line_Up() 1082 Ix = -SMulDiv_No_Round( ras.precision, -Dx, Dy ); in Line_Up() 1083 Rx = ( ras.precision * -Dx ) % Dy; in Line_Up() 1087 Ax = -Dy; in Line_Up() [all …]
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | corner.cl | 95 … __global const float * Dy, int dy_step, int dy_offset, int dy_whole_rows, int dy_whole_cols, 129 float dy_s = dy_con ? Dy[indexDy] : 0.0f; 147 float dy_s = Dy[mad24(dy_selected_row, dy_step>>2, dy_selected_col)];
|
/external/opencv3/apps/traincascade/ |
D | HOGfeatures.cpp | 182 Mat Dy(1, width, CV_32F, dbuf + width); in integralHistogram() local 201 cartToPolar( Dx, Dy, Mag, Angle, false ); in integralHistogram()
|
/external/opencv3/modules/video/src/opencl/ |
D | pyrlk.cl | 233 float* Pch, float* Dx, float* Dy, 247 *Dy = dIdy; 256 float* Pch, float* Dx, float* Dy, 262 *b2 += diff**Dy;
|
/external/opencv3/modules/features2d/src/kaze/ |
D | KAZEFeatures.cpp | 401 float Dx = 0.0, Dy = 0.0, Ds = 0.0, dsc = 0.0; in Do_Subpixel_Refinement() local 417 Dy = (1.0f / (2.0f*step))*(*(evolution_[kpts_[i].class_id].Ldet.ptr<float>(y + step) + x) in Do_Subpixel_Refinement() 460 *(b.ptr<float>(1)) = -Dy; in Do_Subpixel_Refinement()
|
D | AKAZEFeatures.cpp | 397 float Dx = 0.0, Dy = 0.0, ratio = 0.0; in Do_Subpixel_Refinement() local 412 Dy = (0.5f)*(*(evolution_[kpts[i].class_id].Ldet.ptr<float>(y + 1) + x) in Do_Subpixel_Refinement() 434 b(1) = -Dy; in Do_Subpixel_Refinement()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/ |
D | es-ES_kdt_posp.pkb | 163 �% pA�����Dy*���sFA� ��}4������%@b2�幉�.�ݸ�&�{38�XT���w��\���.���>��
|
D | es-ES_zl0_kpdf_mgc.pkb | 3535 ��K��/�������"h����U�Y-�JL���o��[�v�R�3�����B�`�>DJP�kc%�׆佁5'�aM�2u�RW?gO=c<O�[��I:Dy…
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_from_tgsi.cpp | 1066 void handleTEX(Value *dst0[4], int R, int S, int L, int C, int Dx, int Dy); 1547 Converter::handleTEX(Value *dst[4], int R, int S, int L, int C, int Dx, int Dy) in handleTEX() argument 1572 texi->dPdy[c].set(fetchSrc(Dy >> 4, (Dy & 3) + c)); in handleTEX()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/ |
D | en-US_kdt_posd.pkb | 268 d���Dy����!Tͤ���˧�I@@8E0��� ����d��K��
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/ |
D | de-DE_kdt_posd.pkb | 100 …�MM���RӲ�UO<��|,6�&t�̞�ąjq)��Y�)�P�M`&��7A4�-��ѯDy��d&�T77ML��…
|
D | de-DE_kdt_g2p.pkb | 382 …�]���Q4pZ:��]�.���:w�Iz�# O凜�o��V����W�Ld��E�)����Dy�j�^���rz̠�� Z+��Q… 522 }f9aTv]jY�7Z� ICM:�)�R���3E/CJ��A����F�W�q�rTcq�b��.;&o\q:����Dy�Fu'�A�HПTn�$��rD�a��…
|
/external/opencv3/modules/objdetect/test/ |
D | test_cascadeandhog.cpp | 1229 Mat Dy(1, width, CV_32F, dbuf + width); in computeGradient() local 1292 cartToPolar( Dx, Dy, Mag, Angle, false ); in computeGradient()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 289 Mat Dy(1, width, CV_32F, dbuf + width); in computeGradient() local 409 cartToPolar( Dx, Dy, Mag, Angle, false ); in computeGradient()
|
/external/webrtc/talk/media/testdata/ |
D | video.rtpdump | 395 ��'�bb��z��(��[�q�������=��_*�E�s��!�r�G���Wr���%�O�)�z��oP�lDy.K�p�z������=�n���…
|
D | faces.1280x720_P420.yuv | 3 …xxxxy|zsmmvxqcQ@;5('.1.' T����¿���������������������������������w^QPYZK)'Dy�pe^WQORVXTPOOOSSOIEG…
|
/external/vulkan-validation-layers/demos/ |
D | lunarg.ppm | 358 …#:=������������������������������z��u��q��m��h��d��_��Z��W��R��N��K�H|�Dy�@v~=t|9qy6nv3jt1hr.fo+c… 373 …��������������������������Ɂ��}��x��s��o��j��f��a��\��X��T��P��L��I}�Dy�Aw>t}:rz7ow4ku1hr/gp,dm)bk… 563 $'���������������������������}��y��u��p��l��g��d��^��Z��V��R��N��K�H|�Dy�@v~<s|9qy5mv3jt0hq.fo+cl…
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-GB/ |
D | en-GB_kh0_kpdf_mgc.pkb | 2677 ���"AID4:RBPJBjcs�w�9P=NZ=-5Dy���Wnpvvuv{�����������TbV���]flptrrqqt~�|���������J>
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 4495 …Dy=0,Dz=0,DA=0,DB=0,DC=0,DD=0,DE=0,DF=0,DG=0,DH=0,DI=0,DJ=0,DK=0,DL=0,DM=0,DN=0,DO=0,DP=0,DQ=0,DR=…
|