Lines Matching defs:bpl
9075 * bytes is on aoverride for bpl, since it sin't clear today when
9082 int bpl;
9113 /* bpl = (op[24] - 0x41) * 256 + 8192 * (op[34] & 0x01) + op[23]; */
9114 bpl = (color == 0 ? 1 : 3) * width * dpi;
9117 bpl /= 600;
9118 if (bpl >= 8192)
9125 bpl /= 300;
9128 bpl = bytes;
9129 ccd[23] = bpl % 256;
9130 ccd[24] = 0x41 + ((bpl / 256) & 0x1F);
9284 int i, bpl;
9305 bpl = (op[24] - 0x41) * 256 + 8192 * (op[34] & 0x01) + op[23];
9307 bpl = (op[24] - 0x41) * 256 + op[23];
9312 DBG (0, "\t->bytes/line=0x%X (%d)\n", bpl, bpl);
10220 int bpl, hp;
10297 bpl = bpp * tw;
10298 hp = 2096100 / bpl;
10299 blocksize = hp * bpl;
10301 somme = bpl * th;
10311 reserve = 2 * delta * bpl;
10422 hp = (len + remain) / bpl;
10423 remain = (len + remain) - hp * bpl;
10451 * (buffer + reserve) + (hp * bpl - reserve),
10453 memcpy (buffer, buffer + hp * bpl, reserve + remain);
10477 memcpy (buffer, buffer + hp * bpl, remain);