| /xsrc/external/mit/xorg-server/dist/miext/shadow/ |
| H A D | c2p_core.h | 36 unsigned int shift, CARD32 mask) 38 CARD32 t = (d[i1] ^ (d[i2] >> shift)) & mask; 79 CARD32 mask = get_mask(n); local in function:transp8 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 in function:transp4 148 CARD32 mask = get_mask(n); local in function:transp4x 168 CARD32 mask = get_mask(n); local in function:transp2 182 CARD32 mask = get_mask(n); local in function:transp2x [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| H A D | lp_bld_ir_common.c | 41 func_ctx(struct lp_exec_mask *mask) argument 43 assert(mask->function_stack_size > 0); 44 assert(mask->function_stack_size <= LP_MAX_NUM_FUNCS); 45 return &mask->function_stack[mask->function_stack_size - 1]; 55 mask_has_loop(struct lp_exec_mask *mask) argument 58 for (i = mask->function_stack_size - 1; i >= 0; --i) { 59 const struct function_ctx *ctx = &mask->function_stack[i]; 73 mask_has_switch(struct lp_exec_mask *mask) argument 76 for (i = mask 91 mask_has_cond(struct lp_exec_mask * mask) argument 102 lp_exec_mask_update(struct lp_exec_mask * mask) argument 150 lp_exec_mask_function_init(struct lp_exec_mask * mask,int function_idx) argument 173 lp_exec_mask_init(struct lp_exec_mask * mask,struct lp_build_context * bld) argument 192 lp_exec_mask_fini(struct lp_exec_mask * mask) argument 202 lp_exec_mask_store(struct lp_exec_mask * mask,struct lp_build_context * bld_store,LLVMValueRef val,LLVMValueRef dst_ptr) argument 227 lp_exec_bgnloop_post_phi(struct lp_exec_mask * mask) argument 239 lp_exec_bgnloop(struct lp_exec_mask * mask,bool load) argument 272 lp_exec_endloop(struct gallivm_state * gallivm,struct lp_exec_mask * mask) argument 353 lp_exec_mask_cond_push(struct lp_exec_mask * mask,LLVMValueRef val) argument 375 lp_exec_mask_cond_invert(struct lp_exec_mask * mask) argument 398 lp_exec_mask_cond_pop(struct lp_exec_mask * mask) argument 410 lp_exec_continue(struct lp_exec_mask * mask) argument 424 lp_exec_break(struct lp_exec_mask * mask,int * pc,bool break_always) argument [all...] |
| H A D | lp_bld_ir_common.h | 60 LLVMValueRef switch_mask; /* current switch exec mask */ 84 LLVMValueRef switch_mask_default; /* reverse of switch mask used for default */ 104 void lp_exec_mask_function_init(struct lp_exec_mask *mask, int function_idx); 105 void lp_exec_mask_init(struct lp_exec_mask *mask, struct lp_build_context *bld); 106 void lp_exec_mask_fini(struct lp_exec_mask *mask); 107 void lp_exec_mask_store(struct lp_exec_mask *mask, 111 void lp_exec_mask_update(struct lp_exec_mask *mask); 112 void lp_exec_bgnloop_post_phi(struct lp_exec_mask *mask); 113 void lp_exec_bgnloop(struct lp_exec_mask *mask, bool load_mask); 115 struct lp_exec_mask *mask); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | opt_swizzle.cpp | 72 if (swiz2->mask.num_components >= 1) 73 mask2[0] = swiz2->mask.x; 74 if (swiz2->mask.num_components >= 2) 75 mask2[1] = swiz2->mask.y; 76 if (swiz2->mask.num_components >= 3) 77 mask2[2] = swiz2->mask.z; 78 if (swiz2->mask.num_components >= 4) 79 mask2[3] = swiz2->mask.w; 81 if (swiz->mask.num_components >= 1) 82 swiz->mask [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | opt_swizzle.cpp | 72 if (swiz2->mask.num_components >= 1) 73 mask2[0] = swiz2->mask.x; 74 if (swiz2->mask.num_components >= 2) 75 mask2[1] = swiz2->mask.y; 76 if (swiz2->mask.num_components >= 3) 77 mask2[2] = swiz2->mask.z; 78 if (swiz2->mask.num_components >= 4) 79 mask2[3] = swiz2->mask.w; 81 if (swiz->mask.num_components >= 1) 82 swiz->mask [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | ChKeyCon.c | 35 unsigned long mask, 45 req->mask = mask; 47 if (mask & KBKeyClickPercent) 50 if (mask & KBBellPercent) 53 if (mask & KBBellPitch) 56 if (mask & KBBellDuration) 59 if (mask & KBLed) 62 if (mask & KBLedMode) 65 if (mask 33 XChangeKeyboardControl(register Display * dpy,unsigned long mask,XKeyboardControl * value_list) argument [all...] |
| H A D | CopyGC.c | 36 unsigned long mask, /* which ones to set initially */ 46 mask &= (1L << (GCLastBit + 1)) - 1; 49 if (srcGC->dirty & mask) 53 destGC->dirty &= ~mask; 58 req->mask = mask; 60 if (mask & GCFunction) 63 if (mask & GCPlaneMask) 66 if (mask & GCForeground) 69 if (mask 33 XCopyGC(register Display * dpy,GC srcGC,unsigned long mask,GC destGC) argument [all...] |
| H A D | ReconfWin.c | 39 unsigned int mask, 50 mask &= AllMaskBits; 51 req->mask = mask; 53 if (mask & CWX) 56 if (mask & CWY) 59 if (mask & CWWidth) 62 if (mask & CWHeight) 65 if (mask & CWBorderWidth) 68 if (mask 36 XConfigureWindow(register Display * dpy,Window w,unsigned int mask,XWindowChanges * changes) argument [all...] |
| H A D | ParseGeom.c | 80 int mask = NoValue; local in function:XParseGeometry 86 if ( (string == NULL) || (*string == '\0')) return(mask); 96 mask |= WidthValue; 105 mask |= HeightValue; 115 mask |= XNegative; 125 mask |= XValue; 133 mask |= YNegative; 144 mask |= YValue; 153 if (mask & XValue) 155 if (mask [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | attrib.h | 35 _mesa_PushAttrib( GLbitfield mask ); 41 _mesa_PushClientAttrib( GLbitfield mask ); 47 _mesa_ClientAttribDefaultEXT( GLbitfield mask ); 50 _mesa_PushClientAttribDefaultEXT( GLbitfield mask );
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/math/ |
| H A D | m_clip_tmp.h | 65 GLuint mask; 66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 68 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); 69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); 71 mask |= (((cw < cz) << CLIP_FAR_SHIFT)); 72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT)); 75 GLubyte mask = 0; 76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT; 77 if ( cx + cw < 0) mask | [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/math/ |
| H A D | m_clip_tmp.h | 65 GLuint mask; 66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 68 mask |= (((cw < cy) << CLIP_TOP_SHIFT)); 69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT)); 71 mask |= (((cw < cz) << CLIP_FAR_SHIFT)); 72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT)); 75 GLubyte mask = 0; 76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT; 77 if ( cx + cw < 0) mask | [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/util/ |
| H A D | pan_ir.c | 30 /* Converts a per-component mask to a byte mask */ 33 pan_to_bytemask(unsigned bytes, unsigned mask) argument 37 assert(mask == 0); 41 return mask; 45 (mask & 0x1) | 46 ((mask & 0x2) << (2 - 1)) | 47 ((mask & 0x4) << (4 - 2)) | 48 ((mask & 0x8) << (6 - 3)) | 49 ((mask [all...] |
| /xsrc/external/mit/xorg-server.old/dist/test/xi2/ |
| H A D | protocol-xiselectevents.c | 34 * mask. Ensure that the mask passed in is equivalent to the one supplied by 45 * BadValue for invalid mask bits 46 * Sucecss for excessive mask lengths 65 int __wrap_XISetEventMask(DeviceIntPtr dev, WindowPtr win, int len, unsigned char* mask) argument 97 xXIEventMask *mask, *next; local in function:request_XISelectEvent 100 mask = (xXIEventMask*)&req[1]; 103 req->length += sizeof(xXIEventMask)/4 + mask->mask_len; 104 mask = (xXIEventMask*)((char*)&mask[ 133 xXIEventMask *mask; local in function:request_XISelectEvents_masks 247 xXIEventMask *mask; local in function:test_XISelectEvents [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/input/ |
| H A D | ChkNotMaskEv.h | 39 extern Bool XCheckNotMaskEvent (Display *dpy, long mask, XEvent *event);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| H A D | s_bitmap.c | 83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); local in function:_swrast_Bitmap 85 if (*src & mask) { 90 if (mask == 128U) { 92 mask = 1U; 95 mask = mask << 1; 100 if (mask != 1) 105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); local in function:_swrast_Bitmap 107 if (*src & mask) { 112 if (mask [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| H A D | s_bitmap.c | 83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); local in function:_swrast_Bitmap 85 if (*src & mask) { 90 if (mask == 128U) { 92 mask = 1U; 95 mask = mask << 1; 100 if (mask != 1) 105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7); local in function:_swrast_Bitmap 107 if (*src & mask) { 112 if (mask [all...] |
| /xsrc/external/mit/xorg-server/dist/test/xi2/ |
| H A D | protocol-xiselectevents.c | 37 * mask. Ensure that the mask passed in is equivalent to the one supplied by 48 * BadValue for invalid mask bits 49 * Sucecss for excessive mask lengths 72 int len, unsigned char *mask); 76 int len, unsigned char *mask) 79 return __real_XISetEventMask(dev, win, client, len, mask); 90 xXIEventMask *mask, *next; local in function:request_XISelectEvent 93 mask = (xXIEventMask *) &req[1]; 95 req->length += sizeof(xXIEventMask) / 4 + mask 75 __wrap_XISetEventMask(DeviceIntPtr dev,WindowPtr win,ClientPtr client,int len,unsigned char * mask) argument 167 xXIEventMask *mask; local in function:request_XISelectEvents_masks 288 xXIEventMask *mask; local in function:test_XISelectEvents [all...] |
| H A D | protocol-xigetselectedevents.c | 62 unsigned char mask[MAXDEVICES][XI2LASTEVENT]; /* intentionally bigger */ member in struct:__anon8ab6a96c0108 98 xXIEventMask *mask; local in function:reply_XIGetSelectedEvents_data 101 mask = (xXIEventMask *) data; 104 swaps(&mask->deviceid); 105 swaps(&mask->mask_len); 108 assert(mask->deviceid < 6); 109 assert(mask->mask_len <= (((XI2LASTEVENT + 8) / 8) + 3) / 4); 111 bitmask = (unsigned char *) &mask[1]; 113 test_data.mask[mask 149 unsigned char *mask; local in function:test_XIGetSelectedEvents [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/util/ |
| H A D | bitscan.h | 91 /* Destructively loop over all of the bits in a mask as in: 100 u_bit_scan(unsigned *mask) argument 102 const int i = ffs(*mask) - 1; 103 *mask ^= (1u << i); 108 u_bit_scan64(uint64_t *mask) argument 110 const int i = ffsll(*mask) - 1; 111 *mask ^= (((uint64_t)1) << i); 164 * while (mask) { 167 * u_bit_scan_consecutive_range(&mask, &start, &count); 174 u_bit_scan_consecutive_range(unsigned *mask, in argument 188 u_bit_scan_consecutive_range64(uint64_t * mask,int * start,int * count) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/ |
| H A D | nv50_blit.h | 135 const unsigned mask = info->mask; local in function:nv50_blit_derive_color_mask 143 if (mask & PIPE_MASK_S) 145 if (mask & PIPE_MASK_Z) 151 if (mask & PIPE_MASK_S) 153 if (mask & PIPE_MASK_Z) 157 if (mask & (PIPE_MASK_R | PIPE_MASK_Z)) color_mask |= 0x0001; 158 if (mask & (PIPE_MASK_G | PIPE_MASK_S)) color_mask |= 0x0010; 159 if (mask & PIPE_MASK_B) color_mask |= 0x0100; 160 if (mask 170 uint32_t mask = 0; local in function:nv50_blit_eng2d_get_mask 200 const uint64_t mask = local in function:nv50_2d_dst_format_faithful 209 const uint64_t mask = local in function:nv50_2d_src_format_faithful [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/ |
| H A D | nv50_blit.h | 135 const unsigned mask = info->mask; local in function:nv50_blit_derive_color_mask 143 if (mask & PIPE_MASK_S) 145 if (mask & PIPE_MASK_Z) 151 if (mask & PIPE_MASK_S) 153 if (mask & PIPE_MASK_Z) 157 if (mask & (PIPE_MASK_R | PIPE_MASK_Z)) color_mask |= 0x0001; 158 if (mask & (PIPE_MASK_G | PIPE_MASK_S)) color_mask |= 0x0010; 159 if (mask & PIPE_MASK_B) color_mask |= 0x0100; 160 if (mask 170 uint32_t mask = 0; local in function:nv50_blit_eng2d_get_mask 200 const uint64_t mask = local in function:nv50_2d_dst_format_faithful 209 const uint64_t mask = local in function:nv50_2d_src_format_faithful [all...] |
| /xsrc/external/mit/xorg-server.old/dist/include/ |
| H A D | inpututils.h | 35 int8_t last_bit; /* highest bit set in mask */ 36 uint8_t mask[(MAX_VALUATORS + 7)/8]; member in struct:_ValuatorMask
|
| /xsrc/external/mit/ctwm/dist/ |
| H A D | cursor.h | 14 int NewBitmapCursor(Cursor *cp, char *source, char *mask);
|
| /xsrc/external/mit/MesaLib/dist/src/glx/ |
| H A D | clientattrib.c | 70 __indirect_glPushClientAttrib(GLuint mask) argument 85 sp->mask = mask; 87 if (mask & GL_CLIENT_PIXEL_STORE_BIT) { 91 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) { 107 GLuint mask; local in function:__indirect_glPopClientAttrib 113 mask = sp->mask; 116 if (mask & GL_CLIENT_PIXEL_STORE_BIT) { 120 if (mask [all...] |