Home | History | Annotate | Download | only in images

Lines Matching refs:readByte

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