Searched refs:cols (Results 126 - 150 of 154) sorted by relevance

1234567

/external/skia/src/views/
H A DSkListView.cpp816 SkScalar cols = SkScalarDiv(this->width(), fCellSize.fX);
818 int x = SkScalarFloor(cols);
821 x = check_count(x, cols);
/external/opencv/cv/src/
H A Dcvsmooth.cpp1069 src->cols + radius*2, src->type ));
1196 src->cols + radius*2, src->type ));
1422 dst->data.ptr + y*dst_step, dst_step, cvSize(src->cols, dy),
1431 CV_CALL( box_filter.init( src->cols, src_type, dst_type,
1501 CV_CALL( gaussian_filter.init( src->cols, src_type, dst_type, &KX, &KY ));
H A Dcvhaar.cpp899 CV_CALL( temp = cvCreateMat( img->rows, img->cols, CV_8UC1 ));
900 CV_CALL( sum = cvCreateMat( img->rows + 1, img->cols + 1, CV_32SC1 ));
901 CV_CALL( sqsum = cvCreateMat( img->rows + 1, img->cols + 1, CV_64FC1 ));
908 tilted = cvCreateMat( img->rows + 1, img->cols + 1, CV_32SC1 );
942 CV_CALL( norm_img = cvCreateMat( img->rows, img->cols, CV_32FC1 ));
943 CV_CALL( img_small = cvCreateMat( img->rows + 1, img->cols + 1, CV_8UC1 ));
951 CvSize sz = { cvRound( img->cols/factor ), cvRound( img->rows/factor ) };
1098 sumcanny = cvCreateMat( img->rows + 1, img->cols + 1, CV_32SC1 );
1111 factor*cascade->orig_window_size.width < img->cols - 10 &&
1135 int end_x = cvRound((img->cols
[all...]
H A Dcvcalibinit.cpp245 CV_CALL( thresh_img = cvCreateMat( img->rows, img->cols, CV_8UC1 ));
257 CV_CALL( norm_img = cvCreateMat( img->rows, img->cols, CV_8UC1 ));
295 int block_size = cvRound(MIN(img->cols,img->rows)*0.2)|1;
327 cvRectangle( thresh_img, cvPoint(0,0), cvPoint(thresh_img->cols-1,
564 // start with first one, assign rows/cols
647 PRINTF("Too few inner quad rows/cols\n");
654 PRINTF("Trimming cols\n");
1619 min_size = cvRound( image->cols * image->rows * .03 * 0.01 * 0.92 );
1798 min_size = cvRound( image->cols * image->rows * .03 * 0.01 * 0.92 );
1813 cvRectangle( thresh_img, cvPoint(0,0), cvPoint(thresh_img->cols
[all...]
H A Dcvlkpyramid.cpp1260 count = A->cols*A->rows;
1274 _pA = cvMat( A->rows, A->cols, CV_32FC2, pA );
1275 _pB = cvMat( B->rows, B->cols, CV_32FC2, pB );
H A Dcvhistogram.cpp314 int imin = minPt.y*mat.cols + minPt.x;
315 int imax = maxPt.y*mat.cols + maxPt.x;
2186 if( dstmat->cols != img[0]->width - patch_size.width + 1 ||
H A Dcvsamplers.cpp848 if( mat->rows != 2 || mat->cols != 3 )
H A Dcvshapedescr.cpp119 buffer.cols = j;
/external/opencv/ml/include/
H A Dml.h525 int get_var_count() const { return var_idx ? var_idx->cols : var_all; }
1199 int get_layer_count() { return layer_sizes ? layer_sizes->cols : 0; }
1204 (unsigned)layer <= (unsigned)layer_sizes->cols ? weights[layer] : 0;
/external/webkit/Source/WebCore/rendering/
H A DRenderTableSection.cpp283 int cols = row.size(); local
284 for (int j = 0; j < cols; j++) {
291 while (cspan && endCol < cols) {
554 // distribute over variable cols
1044 // Check which rows and cols are visible and only paint these.
/external/libvpx/examples/includes/geshi/contrib/
H A Dcssgen.php301 them here, one per line:<br /><textarea rows="4" cols="20" name="extra-langs"></textarea><br />
H A Dexample.php175 <textarea rows="10" cols="60" name="source" id="source"><?php echo $fill_source ? htmlspecialchars($_POST['source']) : '' ?></textarea>
/external/libvpx/vp8/
H A Dvp8_cx_iface.c977 if (!vp8_set_roimap(ctx->cpi, roi->roi_map, roi->rows, roi->cols, roi->delta_q, roi->delta_lf, roi->static_threshold))
998 if (!vp8_set_active_map(ctx->cpi, map->active_map, map->rows, map->cols))
/external/mesa3d/src/glsl/
H A Dast_function.cpp867 const unsigned cols = type->matrix_columns; local
917 * matrix. In this case col_idx==cols, but there is still data
921 if ((col_idx < cols) && (rhs_base < rhs_components)) {
/external/libvpx/vp8/encoder/
H A Donyx_if.c2378 unsigned int cols, unsigned int rows,
2387 for (col = 0; col + 16 <= cols; col += 16)
2398 if (col < cols)
2406 for (border_col = col; border_col < cols; border_col++)
2424 for (col = 0; col < cols; col++)
5267 int vp8_set_roimap(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]) argument
5272 if (cpi->common.mb_rows != rows || cpi->common.mb_cols != cols)
5311 int vp8_set_active_map(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols) argument
5315 if (rows == cpi->common.mb_rows && cols == cpi->common.mb_cols)
5319 vpx_memcpy(cpi->active_map, map, rows * cols);
2376 calc_plane_error(unsigned char *orig, int orig_stride, unsigned char *recon, int recon_stride, unsigned int cols, unsigned int rows, vp8_variance_rtcd_vtable_t *rtcd) argument
[all...]
/external/opencv/cxcore/include/
H A Dcxcore.h133 CVAPI(CvMat*) cvCreateMatHeader( int rows, int cols, int type );
138 CVAPI(CvMat*) cvInitMatHeader( CvMat* mat, int rows, int cols,
143 CVAPI(CvMat*) cvCreateMat( int rows, int cols, int type );
/external/opencv/ml/src/
H A Dmlrtrees.cpp111 var_count = active_var_mask->cols;
/external/opencv/otherlibs/highgui/
H A Dutils.cpp623 CvSize size = { src->cols, src->rows };
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp3542 cvWriteInt( fs, "cols", mat->cols );
3581 int rows, cols, elem_type; local
3584 cols = cvReadIntByName( fs, node, "cols", 0 );
3587 if( rows == 0 || cols == 0 || dt == 0 )
3596 if( icvFileNodeSeqLen( data ) != rows*cols*CV_MAT_CN(elem_type) )
3600 CV_CALL( mat = cvCreateMat( rows, cols, elem_type ));
H A Dcxconvert.cpp815 if( mat->cols != size.width || mat->rows != size.height )
/external/libppp/src/
H A Dcommand.c211 int n, cmax, dmax, cols, cxlen; local
239 cols = 80 / (dmax + cmax + 3);
247 if (n % cols != 0)
251 if (++n % cols == 0)
254 if (n % cols != 0)
/external/grub/netboot/
H A Dvia-rhine.c428 unsigned long cols:1; member in struct:rhine_tx_desc::VTC_tx_status_tag::__anon5545
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h542 @property(copy) NSString *cols; variable
890 @property int cols; variable
/external/opencv/cv/include/
H A Dcv.h318 int cols, int rows, int anchor_x, int anchor_y,
/external/webkit/Source/WebKit/win/
H A DDOMHTMLClasses.cpp1455 HRESULT STDMETHODCALLTYPE DOMHTMLTextAreaElement::cols( function in class:DOMHTMLTextAreaElement
1463 /* [in] */ int /*cols*/)

Completed in 3145 milliseconds

1234567