Home
last modified time | relevance | path

Searched refs:widthByte (Results 1 – 6 of 6) sorted by relevance

/haiku/src/add-ons/print/drivers/canon_lips/lips3/
H A DLips3.cpp141 int widthByte = (width + 7) / 8; in NextBand() local
144 int in_size = widthByte * height; in NextBand()
149 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
177 ptr2 += widthByte; in NextBand()
200 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
206 widthByte, // widthByte in NextBand()
/haiku/src/add-ons/print/drivers/canon_lips/lips4/
H A DLips4.cpp152 int widthByte = (width + 7) / 8; in NextBand() local
154 int in_size = widthByte * height; in NextBand()
159 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
187 ptr2 += widthByte; in NextBand()
210 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
216 widthByte, // widthByte in NextBand()
/haiku/src/add-ons/print/drivers/postscript/
H A DPS.cpp246 int widthByte = (width + 7) / 8; in NextBand() local
249 int in_size = color ? width : widthByte; in NextBand()
250 int out_size = color ? width * 6: widthByte * 2; in NextBand()
254 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
369 int widthByte) in _StartRasterGraphics() argument
374 _WritePSString("/s %d string def\n", widthByte); in _StartRasterGraphics()
H A DPS.h32 int height, int widthByte);
/haiku/src/add-ons/print/drivers/pcl5/
H A DPCL5.cpp128 int widthByte = (width + 7) / 8; in NextBand() local
131 int in_size = widthByte; in NextBand()
132 int out_size = (widthByte * 6 + 4) / 5; in NextBand()
136 DBGMSG(("widthByte = %d\n", widthByte)); in NextBand()
/haiku/src/libs/print/libprint/
H A DHalftone.cpp209 int widthByte = (width + 7) / 8; in DitherRGB32() local
225 for (i = 0; i < widthByte - 1; i++) { in DitherRGB32()