Lines Matching defs:psrc
567 unsigned char *psrc, *pdst;
582 psrc = buf;
583 psrc += (src_x & ~0x1) + src_y * width;
585 TDFXCopyData(psrc, pdst, width, 1024, src_h, src_w + (src_x & 0x1));
588 psrc = buf + width * height;
589 psrc += (src_x >> 1) + (src_y >> 1) * (width >> 1);
591 TDFXCopyData(psrc, pdst, width >> 1, 1024, src_h >> 1, src_w >> 1);
594 psrc = buf + width * height + (width >> 1) * (height >> 1);
595 psrc += (src_x >> 1) + (src_y >> 1) * (width >> 1);
597 TDFXCopyData(psrc, pdst, width >> 1, 1024, src_h >> 1, src_w >> 1);