Home | History | Annotate | Download | only in src

Lines Matching refs:bufsize

796     ( int width, CvSize el_size, int* bufsize );
967 int bufsize = 0;
969 CvStatus status = rect_getbufsize_func( size.width, el_size, &bufsize );
970 if( status >= 0 && bufsize > 0 )
972 if( bufsize < CV_MAX_LOCAL_SIZE )
974 buffer = cvStackAlloc( bufsize );
978 CV_CALL( buffer = cvAlloc( bufsize ));