Searched refs:max_rows (Results 1 - 6 of 6) sorted by relevance

/external/jpeg/
H A Djdpostct.c133 JDIMENSION num_rows, max_rows; local
137 max_rows = out_rows_avail - *out_row_ctr;
138 if (max_rows > post->strip_height)
139 max_rows = post->strip_height;
143 post->buffer, &num_rows, max_rows);
209 JDIMENSION num_rows, max_rows; local
220 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
221 if (num_rows > max_rows)
222 num_rows = max_rows;
224 max_rows
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djdpostct.c133 JDIMENSION num_rows, max_rows; local
137 max_rows = out_rows_avail - *out_row_ctr;
138 if (max_rows > post->strip_height)
139 max_rows = post->strip_height;
143 post->buffer, &num_rows, max_rows);
209 JDIMENSION num_rows, max_rows; local
220 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
221 if (num_rows > max_rows)
222 num_rows = max_rows;
224 max_rows
[all...]
/external/v8/test/cctest/
H A Dtest-compiler.cc336 const int max_rows = 1000; local
337 const int buffer_size = max_rows + sizeof(function_f);
342 for (int i = 0; i < max_rows; ++i) {
/external/opencv/cv/include/
H A Dcv.hpp119 /* initializes work_type, buf_size and max_rows */
145 int top_rows, bottom_rows, max_rows; member in class:CvBaseImageFilter
/external/opencv/cv/src/
H A Dcvfilter.cpp119 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8;
178 assert( max_rows > max_ky*2 );
179 row_tab_sz = cvAlign( max_rows*sizeof(uchar*), ALIGN );
225 buf_max_count = MIN( buf_max_count, max_rows - max_ky*2 );
H A Dcvderiv.cpp393 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8;

Completed in 105 milliseconds