Lines Matching refs:readByte
35 #define readByte(buffer,begin) buffer[begin] macro
116 int w = readByte(buf, 6); in onDecode()
117 int h = readByte(buf, 7); in onDecode()
119 int colorCount = readByte(buf, 8); in onDecode()
228 blue = readByte(buf, begin + 4*j); in onDecode()
229 green = readByte(buf, begin + 4*j + 1); in onDecode()
230 red = readByte(buf, begin + 4*j + 2); in onDecode()
318 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3)); in onDecode()
342 int byte = readByte(buf, xorOffset + (pixelNo >> 3)); in editPixelBit1()
370 int byte = readByte(buf, xorOffset + (pixelNo >> 1)); in editPixelBit4()
390 int pixel = readByte(buf, xorOffset + pixelNo); in editPixelBit8()
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()
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()