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,
195 const int xorOffset, int& x, int y, const int w,
255 int xorOffset = begin + colorCount*4; //beginning of the color bitmap
257 int andOffset = xorOffset + ((lineWidth*h*bitCount) >> 3);
299 placePixel(pixelNo, buf, xorOffset, x, y, w, bm, alphaByte, m, shift, colors);
313 const int xorOffset, int& x, int y, const int w,
318 int byte = readByte(buf, xorOffset + (pixelNo >> 3));
342 const int xorOffset, int& x, int y, const int w,
346 int byte = readByte(buf, xorOffset + (pixelNo >> 1));
362 const int xorOffset, int& x, int y, const int w,
366 int pixel = readByte(buf, xorOffset + pixelNo);
372 const int xorOffset, int& x, int y, const int w,
376 int blue = readByte(buf, xorOffset + 3*pixelNo);
377 int green = readByte(buf, xorOffset + 3*pixelNo + 1);
378 int red = readByte(buf, xorOffset + 3*pixelNo + 2);
386 const int xorOffset, int& x, int y, const int w,
390 int blue = readByte(buf, xorOffset + 4*pixelNo);
391 int green = readByte(buf, xorOffset + 4*pixelNo + 1);
392 int red = readByte(buf, xorOffset + 4*pixelNo + 2);
397 int alpha = readByte(buf, xorOffset + 4*pixelNo + 3) & ((alphaBit-1)&0xFF);