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

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdpostct.c137 JDIMENSION num_rows, max_rows; local
141 max_rows = out_rows_avail - *out_row_ctr;
142 if (max_rows > post->strip_height)
143 max_rows = post->strip_height;
147 post->buffer, &num_rows, max_rows);
213 JDIMENSION num_rows, max_rows; local
224 max_rows = out_rows_avail - *out_row_ctr; /* available in output area */
225 if (num_rows > max_rows)
226 num_rows = max_rows;
228 max_rows
[all...]

Completed in 29 milliseconds