Lines Matching refs:dx

558 raster_op(struct raster* dst, int dx, int dy, int w, int h, int rop,
587 if ( dx < 0 )
589 w += dx;
590 sx -= dx;
591 dx = 0;
599 if ( dx + w > dst->width )
600 w = dst->width - dx;
607 return raster_op_noclip( dst, dx, dy, w, h, rop, src, sx, sy );
615 if ( dx < 0 )
617 w += dx;
618 dx = 0;
625 if ( dx + w > dst->width )
626 w = dst->width - dx;
633 return raster_op_nosrc_noclip( dst, dx, dy, w, h, rop );
640 raster_op_noclip(struct raster* dst, int dx, int dy, int w, int h, int rop,
659 dstlin1 = RAS_ADDR( dst, dx, dy );
676 dstleftignore = ( dx & 31 );
713 dstlin1 = RAS_ADDR( dst, dx, dy );
722 dstbyte = dx & 15;
785 dstlin1 = RAS_ADDR( dst, dx, dy );
794 dstbyte = dx & 7;
857 dstlin1 = RAS_ADDR( dst, dx, dy );
865 dstbyte = dx & 3;
928 dstlin1 = RAS_ADDR( dst, dx, dy );
936 dstbyte = dx & 1;
983 dstlin1 = RAS_ADDR( dst, dx, dy );
988 dstleftignore = ( dx & 15 ) * 2;
1007 dstlin1 = RAS_ADDR( dst, dx, dy );
1012 dstleftignore = ( dx & 7 ) * 4;
1034 dstlin1 = RAS_ADDR( dst, dx, dy );
1050 dstleftignore = ( dx & 3 ) * 8;
1068 dstlin1 = RAS_ADDR( dst, dx, dy );
1073 dstleftignore = ( dx & 1 ) * 16;
1090 int dx, int dy, int w, int h, int rop)
1107 dstlin1 = RAS_ADDR( dst, dx, dy );
1118 dstleftignore = ( dx & 31 );
1203 dstlin1 = RAS_ADDR( dst, dx, dy );
1225 dstleftignore = ( dx & 15 ) * 2;
1310 dstlin1 = RAS_ADDR( dst, dx, dy );
1331 dstleftignore = ( dx & 7 ) * 4;
1415 dstlin1 = RAS_ADDR( dst, dx, dy );
1433 dstleftignore = ( dx & 3 ) * 8;
1520 dstlin1 = RAS_ADDR( dst, dx, dy );
1538 dstleftignore = ( dx & 1 ) * 16;