Lines Matching refs:spp
79 - img_rowsize = ((img_width * bps + 7) / 8) * spp;
80 - full_bytes = (sect_width * spp * bps) / 8; /* number of COMPLETE bytes per row in section */
87 + img_rowsize = (((img_width * spp * bps) + 7) / 8); /* row size in full bytes of source imag…
88 + full_bytes = (sect_width * spp * bps) / 8; /* number of COMPLETE bytes per row in s…
89 + trailing_bits = (sect_width * spp * bps) % 8; /* trailing bits within the last byte of…
97 - col_offset = first_col * spp * bps / 8;
98 + col_offset = (first_col * spp * bps) / 8;
101 - /* row_offset = row * img_width * spp * bps / 8; */
109 - shift1 = spp * ((first_col * bps) % 8);
110 - shift2 = spp * ((last_col * bps) % 8);
111 + shift1 = ((first_col * spp * bps) % 8); /* shift1 = bits to skip in the first byte o…
118 + offset1 = row_offset + ((first_col * spp * bps) / 8); /* offset1 = offset into source of b…
213 - ceil((width * image->bps + 7) / (double)8) * image->spp * length;
214 + ceil((width * image->bps * image->spp + 7) / (double)8) * length;