Searched defs:SHR (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dmaskbits.h277 #define SHR(x,y) ((y) >= PPW ? 0 : LONG2CHARS(LONG2CHARS(x) >> (y))) macro
280 #define SHR(x,y) LONG2CHARS(LONG2CHARS(x) >> (y)) macro
285 #define SCRRIGHT(lw, n) SHR((PixelType)(lw),(n))
287 #define SCRLEFT(lw, n) SHR((PixelType)(lw),(n))
360 #define putbits(src, x, w, pdst) FASTPUTBITS(SHR((src),32-(w)), x, w, pdst)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dmaskbits.h277 #define SHR(x,y) ((y) >= PPW ? 0 : LONG2CHARS(LONG2CHARS(x) >> (y))) macro
280 #define SHR(x,y) LONG2CHARS(LONG2CHARS(x) >> (y)) macro
285 #define SCRRIGHT(lw, n) SHR((PixelType)(lw),(n))
287 #define SCRLEFT(lw, n) SHR((PixelType)(lw),(n))
360 #define putbits(src, x, w, pdst) FASTPUTBITS(SHR((src),32-(w)), x, w, pdst)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dmaskbits.h277 #define SHR(x,y) ((y) >= PPW ? 0 : LONG2CHARS(LONG2CHARS(x) >> (y))) macro
280 #define SHR(x,y) LONG2CHARS(LONG2CHARS(x) >> (y)) macro
285 #define SCRRIGHT(lw, n) SHR((PixelType)(lw),(n))
287 #define SCRLEFT(lw, n) SHR((PixelType)(lw),(n))
360 #define putbits(src, x, w, pdst) FASTPUTBITS(SHR((src),32-(w)), x, w, pdst)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dmaskbits.h279 #define SHR(x,y) ((y) >= PPW ? 0 : LONG2CHARS(LONG2CHARS(x) >> (y))) macro
282 #define SHR(x,y) LONG2CHARS(LONG2CHARS(x) >> (y)) macro
287 #define SCRRIGHT(lw, n) SHR((PixelType)(lw),(n))
289 #define SCRLEFT(lw, n) SHR((PixelType)(lw),(n))
362 #define putbits(src, x, w, pdst) FASTPUTBITS(SHR((src),32-(w)), x, w, pdst)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dmaskbits.h279 #define SHR(x,y) ((y) >= PPW ? 0 : LONG2CHARS(LONG2CHARS(x) >> (y))) macro
282 #define SHR(x,y) LONG2CHARS(LONG2CHARS(x) >> (y)) macro
287 #define SCRRIGHT(lw, n) SHR((PixelType)(lw),(n))
289 #define SCRLEFT(lw, n) SHR((PixelType)(lw),(n))
362 #define putbits(src, x, w, pdst) FASTPUTBITS(SHR((src),32-(w)), x, w, pdst)
/vbox/src/recompiler/target-i386/
H A Dops_sse.h1443 #define SHR(v, i) (i < 64 && i > -64 ? i > 0 ? v >> (i) : (v << -(i)) : 0) macro
1445 r.Q(0) = SHR(s->Q(0), shift - 0) |
1446 SHR(d->Q(0), shift - 64);
1448 r.Q(0) = SHR(s->Q(0), shift - 0) |
1449 SHR(s->Q(1), shift - 64) |
1450 SHR(d->Q(0), shift - 128) |
1451 SHR(d->Q(1), shift - 192);
1452 r.Q(1) = SHR(s->Q(0), shift + 64) |
1453 SHR(s->Q(1), shift - 0) |
1454 SHR(
1457 #undef SHR macro
[all...]

Completed in 1833 milliseconds