Lines Matching refs:row_width
55 JDIMENSION row_width; /* physical width of one row in the BMP file */ member
226 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height; in write_bmp_header()
294 bfSize = headersize + (INT32) dest->row_width * (INT32) cinfo->output_height; in write_os2_header()
408 for (col = dest->row_width; col > 0; col--) { in finish_output_bmp()
431 JDIMENSION row_width; in jinit_write_bmp() local
459 row_width = cinfo->output_width * 2; in jinit_write_bmp()
460 dest->row_width = dest->data_width = cinfo->output_width * 3; in jinit_write_bmp()
462 row_width = cinfo->output_width * cinfo->output_components; in jinit_write_bmp()
463 dest->row_width = dest->data_width = row_width; in jinit_write_bmp()
465 while ((dest->row_width & 3) != 0) dest->row_width++; in jinit_write_bmp()
466 dest->pad_bytes = (int) (dest->row_width - dest->data_width); in jinit_write_bmp()
468 while ((row_width & 3) != 0) row_width++; in jinit_write_bmp()
470 row_width = dest->row_width; in jinit_write_bmp()
477 dest->row_width, cinfo->output_height, (JDIMENSION) 1); in jinit_write_bmp()
486 ((j_common_ptr) cinfo, JPOOL_IMAGE, row_width, (JDIMENSION) 1); in jinit_write_bmp()