Home
last modified time | relevance | path

Searched refs:max_rows (Results 1 – 5 of 5) sorted by relevance

/external/jpeg/
Djdpostct.c133 JDIMENSION num_rows, max_rows; in post_process_1pass() local
137 max_rows = out_rows_avail - *out_row_ctr; in post_process_1pass()
138 if (max_rows > post->strip_height) in post_process_1pass()
139 max_rows = post->strip_height; in post_process_1pass()
143 post->buffer, &num_rows, max_rows); in post_process_1pass()
209 JDIMENSION num_rows, max_rows; in post_process_2pass() local
220 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */ in post_process_2pass()
221 if (num_rows > max_rows) in post_process_2pass()
222 num_rows = max_rows; in post_process_2pass()
224 max_rows = cinfo->output_height - post->starting_row; in post_process_2pass()
[all …]
/external/v8/test/cctest/
Dtest-compiler.cc336 const int max_rows = 1000; in TEST() local
337 const int buffer_size = max_rows + sizeof(function_f); in TEST()
342 for (int i = 0; i < max_rows; ++i) { in TEST()
/external/opencv/cv/include/
Dcv.hpp145 int top_rows, bottom_rows, max_rows; member in CvBaseImageFilter
/external/opencv/cv/src/
Dcvfilter.cpp119 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8; in get_work_params()
178 assert( max_rows > max_ky*2 ); in init()
179 row_tab_sz = cvAlign( max_rows*sizeof(uchar*), ALIGN ); in init()
225 buf_max_count = MIN( buf_max_count, max_rows - max_ky*2 ); in start_process()
Dcvderiv.cpp393 max_rows = (buf_size/row_sz)*3 + max_ky*2 + 8; in get_work_params()