HomeSort by relevance Sort by last modified time
    Searched refs:max_rows (Results 1 - 2 of 2) sorted by null

  /external/jpeg/
jdpostct.c 133 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 = cinfo->output_height - post->starting_row
    [all...]
  /external/v8/test/cctest/
test-compiler.cc 333 const int max_rows = 1000; local
334 const int buffer_size = max_rows + sizeof(function_f);
339 for (int i = 0; i < max_rows; ++i) {

Completed in 95 milliseconds