Lines Matching refs:pixelNo
46 static void editPixelBit1(const int pixelNo, const unsigned char* buf,
49 static void editPixelBit4(const int pixelNo, const unsigned char* buf,
52 static void editPixelBit8(const int pixelNo, const unsigned char* buf,
55 static void editPixelBit24(const int pixelNo, const unsigned char* buf,
58 static void editPixelBit32(const int pixelNo, const unsigned char* buf,
173 void (*placePixel)(const int pixelNo, const unsigned char* buf, in onDecode()
322 int pixelNo = lineWidth*(h-y-1)+x; in onDecode() local
323 placePixel(pixelNo, buf, xorOffset, x, y, w, bm, alphaByte, m, shift, colors); in onDecode()
336 static void editPixelBit1(const int pixelNo, const unsigned char* buf, in editPixelBit1() argument
342 int byte = readByte(buf, xorOffset + (pixelNo >> 3)); in editPixelBit1()
365 static void editPixelBit4(const int pixelNo, const unsigned char* buf, in editPixelBit4() argument
370 int byte = readByte(buf, xorOffset + (pixelNo >> 1)); in editPixelBit4()
385 static void editPixelBit8(const int pixelNo, const unsigned char* buf, in editPixelBit8() argument
390 int pixel = readByte(buf, xorOffset + pixelNo); in editPixelBit8()
395 static void editPixelBit24(const int pixelNo, const unsigned char* buf, in editPixelBit24() argument
400 int blue = readByte(buf, xorOffset + 3*pixelNo); in editPixelBit24()
401 int green = readByte(buf, xorOffset + 3*pixelNo + 1); in editPixelBit24()
402 int red = readByte(buf, xorOffset + 3*pixelNo + 2); in editPixelBit24()
409 static void editPixelBit32(const int pixelNo, const unsigned char* buf, in editPixelBit32() argument
414 int blue = readByte(buf, xorOffset + 4*pixelNo); in editPixelBit32()
415 int green = readByte(buf, xorOffset + 4*pixelNo + 1); in editPixelBit32()
416 int red = readByte(buf, xorOffset + 4*pixelNo + 2); in editPixelBit32()
421 int alpha = readByte(buf, xorOffset + 4*pixelNo + 3) & ((alphaBit-1)&0xFF); in editPixelBit32()