Searched refs:mask (Results 1 - 25 of 890) sorted by relevance

1234567891011>>

/vbox/src/VBox/HostServices/SharedOpenGL/unpacker/
H A Dunpack_stipple.c12 GLubyte *mask; local
15 mask = (void*) (uintptr_t) READ_DATA(4, GLint);
17 mask = DATA_POINTER( 4, GLubyte );
19 cr_unpackDispatch.PolygonStipple(mask);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dc2p_core.h36 unsigned int shift, CARD32 mask)
38 CARD32 t = (d[i1] ^ (d[i2] >> shift)) & mask;
79 CARD32 mask = get_mask(n); local
84 _transp(d, 0, 1, n, mask);
86 _transp(d, 2, 3, n, mask);
88 _transp(d, 4, 5, n, mask);
90 _transp(d, 6, 7, n, mask);
95 _transp(d, 0, 2, n, mask);
96 _transp(d, 1, 3, n, mask);
98 _transp(d, 4, 6, n, mask);
35 _transp(CARD32 d[], unsigned int i1, unsigned int i2, unsigned int shift, CARD32 mask) argument
121 CARD32 mask = get_mask(n); local
148 CARD32 mask = get_mask(n); local
168 CARD32 mask = get_mask(n); local
182 CARD32 mask = get_mask(n); local
[all...]
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent(Display * dpy, long mask, XEvent * event);
H A Dinpututils.h38 int8_t last_bit; /* highest bit set in mask */
39 uint8_t mask[(MAX_VALUATORS + 7) / 8]; member in struct:_ValuatorMask
58 void xi2mask_free(XI2Mask **mask);
59 Bool xi2mask_isset(XI2Mask *mask, const DeviceIntPtr dev, int event_type);
60 Bool xi2mask_isset_for_device(XI2Mask *mask, const DeviceIntPtr dev, int event_type);
61 void xi2mask_set(XI2Mask *mask, int deviceid, int event_type);
62 void xi2mask_zero(XI2Mask *mask, int deviceid);
64 size_t xi2mask_num_masks(const XI2Mask *mask);
65 size_t xi2mask_mask_size(const XI2Mask *mask);
67 const unsigned char *mask, size_
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Dc2p_core.h36 unsigned int shift, CARD32 mask)
38 CARD32 t = (d[i1] ^ (d[i2] >> shift)) & mask;
79 CARD32 mask = get_mask(n); local
84 _transp(d, 0, 1, n, mask);
86 _transp(d, 2, 3, n, mask);
88 _transp(d, 4, 5, n, mask);
90 _transp(d, 6, 7, n, mask);
95 _transp(d, 0, 2, n, mask);
96 _transp(d, 1, 3, n, mask);
98 _transp(d, 4, 6, n, mask);
35 _transp(CARD32 d[], unsigned int i1, unsigned int i2, unsigned int shift, CARD32 mask) argument
121 CARD32 mask = get_mask(n); local
148 CARD32 mask = get_mask(n); local
168 CARD32 mask = get_mask(n); local
182 CARD32 mask = get_mask(n); local
[all...]
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent(Display * dpy, long mask, XEvent * event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dc2p_core.h36 unsigned int shift, CARD32 mask)
38 CARD32 t = (d[i1] ^ (d[i2] >> shift)) & mask;
79 CARD32 mask = get_mask(n); local
84 _transp(d, 0, 1, n, mask);
86 _transp(d, 2, 3, n, mask);
88 _transp(d, 4, 5, n, mask);
90 _transp(d, 6, 7, n, mask);
95 _transp(d, 0, 2, n, mask);
96 _transp(d, 1, 3, n, mask);
98 _transp(d, 4, 6, n, mask);
35 _transp(CARD32 d[], unsigned int i1, unsigned int i2, unsigned int shift, CARD32 mask) argument
121 CARD32 mask = get_mask(n); local
148 CARD32 mask = get_mask(n); local
168 CARD32 mask = get_mask(n); local
182 CARD32 mask = get_mask(n); local
[all...]
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent(Display * dpy, long mask, XEvent * event);
H A Dinpututils.h38 int8_t last_bit; /* highest bit set in mask */
39 uint8_t mask[(MAX_VALUATORS + 7) / 8]; member in struct:_ValuatorMask
58 void xi2mask_free(XI2Mask **mask);
59 Bool xi2mask_isset(XI2Mask *mask, const DeviceIntPtr dev, int event_type);
60 Bool xi2mask_isset_for_device(XI2Mask *mask, const DeviceIntPtr dev, int event_type);
61 void xi2mask_set(XI2Mask *mask, int deviceid, int event_type);
62 void xi2mask_zero(XI2Mask *mask, int deviceid);
64 size_t xi2mask_num_masks(const XI2Mask *mask);
65 size_t xi2mask_mask_size(const XI2Mask *mask);
67 const unsigned char *mask, size_
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/
H A Dm_clip_tmp.h64 GLuint mask; local
65 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
66 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
67 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
68 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
69 mask |= (((cw < cz) << CLIP_FAR_SHIFT));
70 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT));
72 GLubyte mask = 0; local
73 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
74 if ( cx + cw < 0) mask |
139 GLuint mask; local
147 GLubyte mask = 0; local
185 GLubyte mask = 0; local
218 GLubyte mask = 0; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A DChkNotMaskEv.h40 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent(Display * dpy, long mask, XEvent * event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A DChkNotMaskEv.h39 extern Bool XCheckNotMaskEvent(Display * dpy, long mask, XEvent * event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A DChkNotMaskEv.h40 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DChkNotMaskEv.h40 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_stipple.c12 void PACK_APIENTRY crPackPolygonStipple( const GLubyte *mask )
28 WRITE_DATA_AI(GLint, (GLint)(uintptr_t)mask);
32 crMemcpy( data_ptr, mask, 32*32/8 );

Completed in 84 milliseconds

1234567891011>>