Lines Matching refs:src

1455 #define PAD_CORNER  { temp = *src; \
1475 #define PAD_ROW { temp = *((ULong*)src); \
1476 temp2 = *((ULong*)(src+4)); \
1494 #define PAD_COL { temp = *src; temp |= (temp<<8); temp |= (temp<<16); \
1497 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1500 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1503 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1506 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1509 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1512 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1515 temp = *(src+=lx); temp |= (temp<<8); temp |= (temp<<16); \
1524 UChar *src, *dst;
1535 src = c_prev;
1555 src = c_prev + (ypos >> 1) * lx;
1556 dst = src - 8;
1559 temp = *(src += lx);
1573 src = c_prev + (height - 1) * lx;
1574 dst = src + lx - 8;
1578 dst = src + lx;
1582 src -= (lx << 3);
1583 src += lx;
1584 dst = src - 8;
1598 src = c_prev + (xpos >> 1) - xoffset;
1599 dst = src - (lx << 3);
1603 temp = *((ULong*)(src + 8));
1604 dst = src - (lx << 3) + 8;
1623 src = c_prev + (xpos >> 1) - xoffset + (height - 1) * lx;
1624 dst = src + lx;
1628 temp = *((ULong*)(src + 8));
1629 dst = src + lx + 8;
1651 src = c_prev + width - 1;
1652 dst = src - (lx << 3) + 1;
1656 src -= 7;
1657 dst = src - (lx << 3);
1661 src += 7;
1662 dst = src + 1;
1673 src = c_prev + (ypos >> 1) * lx + width - 1;
1674 dst = src + 1;
1677 temp = *(src += lx);
1691 src = c_prev + (height - 8) * lx + width - 1;
1692 dst = src + 1;
1696 dst = src + lx + 1;
1700 src -= 7;
1701 dst = src + lx;
1948 Int *src, *dst;
1951 src = (Int*)prev;
1957 *dst++ = *src++;
1958 *dst++ = *src++;
1960 src += offset;
1962 while ((uintptr_t)src < (uintptr_t)end);