Lines Matching refs:row_width
72 JDIMENSION row_width; /* Physical width of scanlines in file */ member
173 if (!ReadOK(source->pub.input_file, source->iobuffer, source->row_width)) in get_8bit_row()
248 if (!ReadOK(source->pub.input_file, source->iobuffer, source->row_width)) in get_24bit_row()
258 MEMCOPY(outptr, inptr, source->row_width); in get_24bit_row()
312 if (!ReadOK(source->pub.input_file, source->iobuffer, source->row_width)) in get_32bit_row()
323 MEMCOPY(outptr, inptr, source->row_width); in get_32bit_row()
388 if (fread(out_ptr, 1, source->row_width, infile) != source->row_width) { in preload_image()
449 JDIMENSION row_width = 0; in start_input_bmp() local
579 row_width = (JDIMENSION)biWidth; in start_input_bmp()
590 row_width = (JDIMENSION)(biWidth * 3); in start_input_bmp()
601 row_width = (JDIMENSION)(biWidth * 4); in start_input_bmp()
606 while ((row_width & 3) != 0) row_width++; in start_input_bmp()
607 source->row_width = row_width; in start_input_bmp()
613 row_width, (JDIMENSION)biHeight, (JDIMENSION)1); in start_input_bmp()
621 (*cinfo->mem->alloc_small) ((j_common_ptr)cinfo, JPOOL_IMAGE, row_width); in start_input_bmp()