/external/eigen/test/ |
D | ref.cpp | 57 Index brows = internal::random<Index>(1,rows-i); in ref_matrix() local 64 RefDynMat rm2 = m1.block(i,j,brows,bcols); in ref_matrix() 65 VERIFY_IS_EQUAL(rm2, m1.block(i,j,brows,bcols)); in ref_matrix() 67 m2.block(i,j,brows,bcols).setOnes(); in ref_matrix() 70 m2.block(i,j,brows,bcols).setRandom(); in ref_matrix() 71 rm2 = m2.block(i,j,brows,bcols); in ref_matrix() 75 ConstRefDynMat rm3 = m1.block(i,j,brows,bcols); in ref_matrix() 76 m1.block(i,j,brows,bcols) *= 2; in ref_matrix() 77 m2.block(i,j,brows,bcols) *= 2; in ref_matrix() 78 VERIFY_IS_EQUAL(rm3, m2.block(i,j,brows,bcols)); in ref_matrix()
|
D | householder.cpp | 81 Index brows = rows - shift; in householder() local 83 HBlockMatrixType hbm = m1.block(shift,0,brows,cols); in householder() 86 m2.block(shift,0,brows,cols) = qr.matrixQR(); in householder() 94 m5.block(shift,0,brows,cols).template triangularView<StrictlyLower>().setZero(); in householder()
|
/external/opencv3/modules/cudalegacy/src/ |
D | bm_fast.cpp | 79 int bcols, brows; in operator ()() local 80 optflowbm_fast::get_buffer_size(I0.cols, I0.rows, search_window, block_window, bcols, brows); in operator ()() 82 ensureSizeIsEnough(brows, bcols, CV_32SC1, buffer); in operator ()()
|
/external/opencv3/modules/photo/src/ |
D | denoising.cuda.cpp | 134 int bcols, brows; in fastNlMeansDenoising() local 135 device::imgproc::nln_fast_get_buffer_size(src_hdr, search_window, block_window, bcols, brows); in fastNlMeansDenoising() 136 GpuMat buffer = pool.getBuffer(brows, bcols, CV_32S); in fastNlMeansDenoising()
|
/external/eigen/Eigen/src/QR/ |
D | HouseholderQR.h | 293 Index brows = rows-k; // rows of the block member 303 BlockType A11_21 = mat.block(k,k,brows,bs); 310 BlockType A21_22 = mat.block(k,k+bs,brows,tcols);
|
/external/opencv3/modules/imgproc/src/ |
D | demosaicing.cpp | 931 const int brows = 3, bcn = 7; in Bayer2RGB_VNG_8u() local 934 cv::AutoBuffer<ushort> _buf(bufstep*brows); in Bayer2RGB_VNG_8u() 951 ushort* brow = buf + ((y + dy - 1)%brows)*bufstep + 1; in Bayer2RGB_VNG_8u() 1026 const ushort* brow0 = buf + ((y - 2) % brows)*bufstep + 2; in Bayer2RGB_VNG_8u() 1027 const ushort* brow1 = buf + ((y - 1) % brows)*bufstep + 2; in Bayer2RGB_VNG_8u() 1028 const ushort* brow2 = buf + (y % brows)*bufstep + 2; in Bayer2RGB_VNG_8u()
|
D | imgwarp.cpp | 4267 int brows = std::min(brows0, range.end - y); in operator ()() local 4269 Mat dpart(*dst, Rect(x, y, bcols, brows)); in operator ()() 4270 Mat bufxy(_bufxy, Rect(0, 0, bcols, brows)); in operator ()() 4275 bufxy = (*m1)(Rect(x, y, bcols, brows)); in operator ()() 4278 for( y1 = 0; y1 < brows; y1++ ) in operator ()() 4293 (*m1)(Rect(x, y, bcols, brows)).convertTo(bufxy, bufxy.depth()); in operator ()() 4296 for( y1 = 0; y1 < brows; y1++ ) in operator ()() 4337 Mat bufa(_bufa, Rect(0, 0, bcols, brows)); in operator ()() 4338 for( y1 = 0; y1 < brows; y1++ ) in operator ()() 4345 bufxy = (*m1)(Rect(x, y, bcols, brows)); in operator ()()
|
D | filter.cpp | 303 uchar** brows = &rows[0]; in proceed() local 371 brows[i] = alignPtr(&constBorderRow[0], VEC_ALIGN); in proceed() 378 brows[i] = alignPtr(&ringBuf[0], VEC_ALIGN) + bi*bufStep; in proceed() 385 (*columnFilter)((const uchar**)brows, dst, dststep, i, roi.width*cn); in proceed() 387 (*filter2D)((const uchar**)brows, dst, dststep, i, roi.width, cn); in proceed()
|