Searched defs:max_rows (Results 1 - 4 of 4) sorted by relevance

/external/libjpeg-turbo/
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/pdfium/third_party/libjpeg/
H A Dfpdfapi_jdpostct.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/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/libvpx/libvpx/vp9/common/
H A Dvp9_loopfilter.c909 const int max_rows = local
924 if (4 >= max_rows) break;
939 if (mi_32_col_offset >= max_cols || mi_32_row_offset >= max_rows)
947 if (mi_32_row_offset + 2 >= max_rows) continue;
966 if (mi_16_col_offset >= max_cols || mi_16_row_offset >= max_rows)
975 if (mi_16_row_offset + 1 >= max_rows) continue;
999 mi_8_row_offset >= max_rows)

Completed in 127 milliseconds