Home | History | Annotate | Download | only in images

Lines Matching refs:xorOffset

46             const int xorOffset, int& x, int y, const int w,
49 const int xorOffset, int& x, int y, const int w,
52 const int xorOffset, int& x, int y, const int w,
55 const int xorOffset, int& x, int y, const int w,
58 const int xorOffset, int& x, int y, const int w,
186 const int xorOffset, int& x, int y, const int w,
246 int xorOffset = begin + colorCount*4; //beginning of the color bitmap
248 int andOffset = xorOffset + ((lineWidth*h*bitCount) >> 3);
290 placePixel(pixelNo, buf, xorOffset, x, y, w, bm, alphaByte, m, shift, colors);
304 const int xorOffset, int& x, int y, const int w,
309 int byte = readByte(buf, xorOffset + (pixelNo >> 3));
333 const int xorOffset, int& x, int y, const int w,
337 int byte = readByte(buf, xorOffset + (pixelNo >> 1));
353 const int xorOffset, int& x, int y, const int w,
357 int pixel = readByte(buf, xorOffset + pixelNo);
363 const int xorOffset, int& x, int y, const int w,
367 int blue = readByte(buf, xorOffset + 3*pixelNo);
368 int green = readByte(buf, xorOffset + 3*pixelNo + 1);
369 int red = readByte(buf, xorOffset + 3*pixelNo + 2);
377 const int xorOffset, int& x, int y, const int w,
381 int blue = readByte(buf, xorOffset + 4*pixelNo);
382 int green = readByte(buf, xorOffset + 4*pixelNo + 1);
383 int red = readByte(buf, xorOffset + 4*pixelNo + 2);
388 int alpha = readByte(buf, xorOffset + 4*pixelNo + 3) & ((alphaBit-1)&0xFF);