Home | History | Annotate | Download | only in src

Lines Matching refs:buffer_size

345     int buffer_size;
354 buffer_size = (size1+1) * (size2+1) * (sizeof( float ) + /* cost */
365 if( buffer_size < (int) (dims * 2 * sizeof( float )))
367 buffer_size = dims * 2 * sizeof( float );
371 if( local_buffer != 0 && local_buffer_size >= buffer_size )
377 buffer = (char*)cvAlloc( buffer_size );
383 buffer_end = buffer + buffer_size;