Lines Matching refs:destP

132 	byte *destP;  in sDrawPic()  local
286 destP = destImgData + screenOffset; in sDrawPic()
299 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
302 *destP = pixel; in sDrawPic()
306 destP += widthDiff2; in sDrawPic()
311 Common::copy(srcP, srcP + width2, destP); in sDrawPic()
313 destP += width2 + widthDiff2; in sDrawPic()
318 destP = destImgData + screenOffset; in sDrawPic()
323 Common::copy(srcP, srcP + width2, destP); in sDrawPic()
325 destP += width2 + widthDiff2; in sDrawPic()
329 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
332 Common::copy(srcP, srcP + width2, destP); in sDrawPic()
334 destP += width2 + widthDiff2; in sDrawPic()
348 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
351 Common::copy(srcP, srcP + width2, destP); in sDrawPic()
352 destP += width2 + widthDiff2; in sDrawPic()
362 destP = destImgData + screenOffset; in sDrawPic()
394 *destP = pixel; in sDrawPic()
395 ++destP; in sDrawPic()
400 destP += widthDiff2; in sDrawPic()
420 *destP = byteVal; in sDrawPic()
422 ++destP; in sDrawPic()
426 destP += widthDiff2; in sDrawPic()
433 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
435 *destP = *srcP; in sDrawPic()
438 destP += widthDiff2; in sDrawPic()
470 *destP++ = pixel; in sDrawPic()
475 destP += widthDiff2; in sDrawPic()
494 *destP++ = pixel; in sDrawPic()
497 destP += widthDiff2; in sDrawPic()
502 Common::copy(srcP, srcP + width2, destP); in sDrawPic()
503 destP += width2 + widthDiff2; in sDrawPic()
524 destP = destImgData + screenOffset; in sDrawPic()
526 for (int xp = 0; xp < width2; ++xp, ++destP) { in sDrawPic()
528 *destP = onOff; in sDrawPic()
531 destP += widthDiff2; in sDrawPic()
540 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
542 Common::fill(destP, destP + width2, onOff); in sDrawPic()
543 destP += width2 + widthDiff2; in sDrawPic()
550 destP = destImgData + screenOffset; in sDrawPic()
553 Common::fill(destP, destP + width2, onOff); in sDrawPic()
554 destP += width2 + widthDiff2; in sDrawPic()
569 destP = destImgData + screenOffset; in sDrawPic()
574 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
597 *destP = (pixel & pick) ^ onOff; in sDrawPic()
599 ++destP; in sDrawPic()
603 destP += widthDiff2; in sDrawPic()
610 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
613 for (int xi = 0; xi < width2; ++xi, ++destP) { in sDrawPic()
615 for (int xp = 0; xp < width2; ++xp, ++destP, --byteVal2) { in sDrawPic()
628 *destP = (pixel & pick) ^ onOff; in sDrawPic()
632 destP += widthDiff2; in sDrawPic()
640 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
643 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
645 *destP = (*srcP & pick) ^ onOff; in sDrawPic()
647 destP += widthDiff2; in sDrawPic()
679 *destP++ = (pixel & 0x80) ^ onOff; in sDrawPic()
685 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
690 for (int xp = 0; xp < width2; ++xp, ++destP) { in sDrawPic()
701 *destP = (pixel & pick) ^ onOff; in sDrawPic()
704 destP += widthDiff2; in sDrawPic()
712 destP = (byte *)getPixels() + screenOffset; in sDrawPic()
715 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
716 *destP = (*srcP & pick) ^ onOff; in sDrawPic()
718 destP += widthDiff2; in sDrawPic()
727 destP = destImgData + screenOffset; in sDrawPic()
758 *destP = (pixel & pick) ^ onOff; in sDrawPic()
760 ++destP; in sDrawPic()
765 destP += widthDiff2; in sDrawPic()
771 for (int xp = 0; xp < width2; ++xp, ++destP, --byteVal2) { in sDrawPic()
783 *destP = (pixel & pick) ^ onOff; in sDrawPic()
786 destP += widthDiff2; in sDrawPic()
792 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
794 *destP = (*srcP & pick) ^ onOff; in sDrawPic()
796 destP += widthDiff2; in sDrawPic()
805 for (int xp = 0; xp < width2; ++xp, ++srcP, ++destP) { in sDrawPic()
806 *destP = (*srcP & pick) ^ onOff; in sDrawPic()
808 destP += widthDiff2; in sDrawPic()
838 *destP++ = (pixel & pick) ^ onOff; in sDrawPic()
843 destP += widthDiff2; in sDrawPic()
849 for (int xp = 0; xp < width2; ++xp, ++destP, --byteVal2) { in sDrawPic()
860 *destP = (*srcP & pick) ^ onOff; in sDrawPic()
862 destP += widthDiff2; in sDrawPic()