Home
last modified time | relevance | path

Searched refs:FB_STIP_UNIT (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/xserver/fb/
H A Dfb.h93 #define FB_STIP_UNIT (1 << FB_STIP_SHIFT) macro
94 #define FB_STIP_MASK (FB_STIP_UNIT - 1)
139 #define FbLeftStipBits(x,n) ((x) >> (FB_STIP_UNIT - (n)))
152 #define FbRotStipLeft(x,n) FbStipLeft(x,n) | (n ? FbStipRight(x,FB_STIP_UNIT-n) : 0)
153 #define FbRotStipRight(x,n) FbStipRight(x,n) | (n ? FbStipLeft(x,FB_STIP_UNIT-n) : 0)
162 #define FbRightStipMask(x) ( ((FB_STIP_UNIT - (x)) & FB_STIP_MASK) ? \
163 FbScrLeft(FB_STIP_ALLONES,(FB_STIP_UNIT - (x)) & FB_STIP_MASK) : 0)
169 FbStipLeft(FB_STIP_ALLONES,(FB_STIP_UNIT - ((x)+(w))) & FB_STIP_MASK))
286 n -= FB_STIP_UNIT - ((x) & FB_STIP_MASK); \
H A Dfbseg.c32 #define fbBresShiftMask(mask,dir,bpp) ((bpp == FB_STIP_UNIT) ? 0 : \
62 mask0 = FbStipRight(mask0, FB_STIP_UNIT - dstBpp); in fbBresSolid()
143 mask0 = FbStipRight(mask0, FB_STIP_UNIT - dstBpp); in fbBresDash()
H A Dfbbltone.c204 unitsPerSrc = FB_STIP_UNIT / pixelsPerDst; in fbBltOne()
234 rightShift = FB_STIP_UNIT - leftShift; in fbBltOne()
238 leftShift = FB_STIP_UNIT - rightShift; in fbBltOne()
H A Dfbcopy.c124 srcStride * (FB_UNIT / FB_STIP_UNIT), in fbCopy1toN()