Lines Matching refs:readByte
34 #define readByte(buffer,begin) buffer[begin] macro
108 int width = readByte(buf, 6 + i*16); in onDecode()
109 int height = readByte(buf, 7 + i*16); in onDecode()
145 int w = readByte(buf, 6 + choice*16); in onDecode()
146 int h = readByte(buf, 7 + choice*16); in onDecode()
147 int colorCount = readByte(buf, 8 + choice*16); in onDecode()
224 blue = readByte(buf, begin + 4*j); in onDecode()
225 green = readByte(buf, begin + 4*j + 1); in onDecode()
226 red = readByte(buf, begin + 4*j + 2); in onDecode()
275 int alphaByte = readByte(buf, andOffset + (andPixelNo >> 3)); in onDecode()
299 int byte = readByte(buf, xorOffset + (pixelNo >> 3)); in editPixelBit1()
327 int byte = readByte(buf, xorOffset + (pixelNo >> 1)); in editPixelBit4()
347 int pixel = readByte(buf, xorOffset + pixelNo); in editPixelBit8()
357 int blue = readByte(buf, xorOffset + 3*pixelNo); in editPixelBit24()
358 int green = readByte(buf, xorOffset + 3*pixelNo + 1); in editPixelBit24()
359 int red = readByte(buf, xorOffset + 3*pixelNo + 2); in editPixelBit24()
371 int blue = readByte(buf, xorOffset + 4*pixelNo); in editPixelBit32()
372 int green = readByte(buf, xorOffset + 4*pixelNo + 1); in editPixelBit32()
373 int red = readByte(buf, xorOffset + 4*pixelNo + 2); in editPixelBit32()
378 int alpha = readByte(buf, xorOffset + 4*pixelNo + 3) & ((alphaBit-1)&0xFF); in editPixelBit32()