Home
last modified time | relevance | path

Searched refs:MiBits (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/xserver/mi/
H A Dmipushpxl.c61 #define LONG2CHARSSAMEORDER(x) ((MiBits)(x))
62 #define LONG2CHARSDIFFORDER( x ) ( ( ( ( x ) & (MiBits)0x000000FF ) << 0x18 ) \
63 | ( ( ( x ) & (MiBits)0x0000FF00 ) << 0x08 ) \
64 | ( ( ( x ) & (MiBits)0x00FF0000 ) >> 0x08 ) \
65 | ( ( ( x ) & (MiBits)0xFF000000 ) >> 0x18 ) )
98 MiBits *pwLineStart; in miPushPixels()
99 MiBits *pw, *pwEnd; in miPushPixels()
100 MiBits msk; in miPushPixels()
108 MiBits startmask; in miPushPixels()
112 startmask = (MiBits) (-1) ^ LONG2CHARSSAMEORDER((MiBits) (-1) << 1); in miPushPixels()
[all …]
H A Dmibitblt.c262 _X_COLD static MiBits *
264 int sx, int sy, int w, int h, MiBits * result) in miGetPlane()
268 MiBits pixel; in miGetPlane()
269 MiBits bit; in miGetPlane()
370 MiBits * pbits, int srcx, int w, int h, int dstx, int dsty) in miOpqStipDrawable()
518 MiBits *ptile; in miCopyPlane()
569 box.x2 - box.x1, box.y2 - box.y1, (MiBits *) NULL); in miCopyPlane()
665 (MiBits *) pDst); in miGetImage()
714 miOpqStipDrawable(pDraw, pGC, prgnSrc, (MiBits *) pImage, in miPutImage()
H A Dmi.h61 #define MiBits CARD32 macro