Lines Matching refs:row_width
57 JDIMENSION row_width; /* physical width of one row in the BMP file */
124 MEMCOPY(outptr, inptr, dest->row_width);
168 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
203 (void)JFWRITE(dest->pub.output_file, dest->iobuffer, dest->row_width);
256 bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
325 bfSize = headersize + (long)dest->row_width * (long)cinfo->output_height;
459 (void)JFWRITE(outfile, data_ptr, dest->row_width);
481 JDIMENSION row_width;
512 row_width = cinfo->output_width * 2;
513 dest->row_width = dest->data_width = cinfo->output_width * 3;
514 while ((row_width & 3) != 0) row_width++;
518 row_width = cinfo->output_width * cinfo->output_components;
519 dest->row_width = dest->data_width = cinfo->output_width * 3;
521 row_width = cinfo->output_width * cinfo->output_components;
522 dest->row_width = dest->data_width = row_width;
524 while ((dest->row_width & 3) != 0) dest->row_width++;
525 dest->pad_bytes = (int)(dest->row_width - dest->data_width);
532 dest->row_width, cinfo->output_height, (JDIMENSION)1);
540 ((j_common_ptr)cinfo, JPOOL_IMAGE, dest->row_width);
546 ((j_common_ptr)cinfo, JPOOL_IMAGE, row_width, (JDIMENSION)1);