Home | History | Annotate | Download | only in plugins

Lines Matching refs:max_rows

997     int row_width, max_rows;
1034 max_rows = (available_mem / row_width);
1036 if (max_rows > 0xf) {
1037 max_rows &= ~0xf;
1041 row_width, output_mem, max_rows);
1044 if (max_rows > (MAX(width, height))) {
1045 max_rows = MAX(width, height);
1048 image_info->output_cache = (unsigned char **) malloc(sizeof(unsigned char *) * max_rows);
1049 for (i = 0; i < max_rows; i++) {
1053 max_rows = MIN(max_rows, height);
1056 image_info->rows_cached = max_rows;
1057 LOGD("wprint_image_compute_rows_to_cache(): %d rows being cached", max_rows);