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

/packages/services/BuiltInPrintService/jni/plugins/
H A Dlib_pcl.h103 int page_number, num_rows; member in struct:__anon175
155 * rgb_pixels[] must have (num_rows * pixel_width) pixels. bytes_per_row can be used for
158 status_t (*print_swath)(pcl_job_info_t *job_info, char *rgb_pixels, int start_row, int num_rows,
H A Dlib_pclm.c127 job_info->pixel_width = job_info->pixel_height = job_info->page_number = job_info->num_rows = 0;
226 static int _print_swath(pcl_job_info_t *job_info, char *rgb_pixels, int start_row, int num_rows, argument
229 _PAGE_DATA(job_info, (const unsigned char *) rgb_pixels, (num_rows * bytes_per_row));
233 int nbytes = (num_rows * bytes_per_row);
246 start_row + num_rows - 1, num_rows, bytes_per_row);
252 for (i = 1; i < num_rows; i++, src_pixels += job_info->scan_line_width,
264 num_rows, (void **) &job_info->pclm_output_buffer, &outBuffSize);
H A Dlib_pwg.c183 job_info->pixel_width = job_info->pixel_height = job_info->page_number = job_info->num_rows = 0;
284 static int _print_swath(pcl_job_info_t *job_info, char *rgb_pixels, int start_row, int num_rows, argument
287 _PAGE_DATA(job_info, (const unsigned char *) rgb_pixels, (num_rows * bytes_per_row));
291 int nbytes = (num_rows * bytes_per_row);
300 outBuffSize = num_rows * bytes_per_row;
305 start_row, start_row + num_rows - 1, num_rows, bytes_per_row);
H A Dplugin_pcl.c60 int num_rows; member in struct:__anon177::__anon178::__anon180
131 msg.param.send.start_row, msg.param.send.num_rows,
281 int num_rows, height, image_row; local
394 num_rows = wprint_image_get_height(image_info);
398 while ((result != ERROR) && (num_rows > 0)) {
407 height = MIN(num_rows, job_params->strip_height);
424 msg.param.send.num_rows = height;
433 num_rows -= height;
H A Dwprint_image.c611 int _decode_stripe(wprint_image_info_t *image_info, int start_row, int num_rows, argument
634 old_num_rows = ~num_rows;
638 while (num_rows > 0) {
642 if (old_num_rows == num_rows) {
646 old_num_rows = num_rows;
675 for (image_y = start_row; ((num_rows != 0) &&
678 image_y++, num_rows--, start_row++) {
690 ((image_y < image_info->sampled_height) && (num_rows != 0));
691 image_y++, num_rows--) {
709 while (num_rows >
788 int num_rows = *height; local
[all...]

Completed in 172 milliseconds