Searched defs:mask (Results 51 - 75 of 1765) sorted by relevance

1234567891011>>

/external/iproute2/include/linux/tc_act/
H A Dtc_nat.h23 __be32 mask; member in struct:tc_nat
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_cmp.h9 __u32 mask; member in struct:tcf_em_cmp
/external/iptables/include/linux/netfilter/
H A Dxt_connlimit.h15 union nf_inet_addr mask; member in union:xt_connlimit_info::__anon22589
H A Dxt_connmark.h27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_connmark.h27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_nat.h23 __be32 mask; member in struct:tc_nat
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_cmp.h9 __u32 mask; member in struct:tcf_em_cmp
/external/libhevc/common/
H A Dihevc_buf_mgr.c228 * resets the status bits that the mask contains (status corresponding to
237 * @param[in] mask
250 UWORD32 mask)
258 ps_buf_mgr->au4_status[buf_id] &= ~mask;
277 * sets the status bits that the mask contains (status corresponding to the
288 * @param[in] mask
301 UWORD32 mask)
309 if((ps_buf_mgr->au4_status[buf_id] & mask) != 0)
314 ps_buf_mgr->au4_status[buf_id] |= mask;
247 ihevc_buf_mgr_release( buf_mgr_t *ps_buf_mgr, WORD32 buf_id, UWORD32 mask) argument
298 ihevc_buf_mgr_set_status( buf_mgr_t *ps_buf_mgr, WORD32 buf_id, UWORD32 mask) argument
/external/lldb/tools/debugserver/source/
H A DPThreadEvent.h28 void FreeEventBits (const uint32_t mask);
32 void SetEvents (const uint32_t mask);
33 void ResetEvents (const uint32_t mask);
36 uint32_t WaitForSetEvents (const uint32_t mask, const struct timespec *timeout_abstime = NULL) const;
37 uint32_t WaitForEventsToReset(const uint32_t mask, const struct timespec *timeout_abstime = NULL) const;
40 uint32_t SetResetAckMask (uint32_t mask) { return m_reset_ack_mask = mask; } argument
41 uint32_t WaitForResetAck (const uint32_t mask, const struct timespec *timeout_abstime = NULL) const;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_alpha.c53 struct lp_build_mask_context *mask,
91 lp_build_mask_update(mask, test);
94 lp_build_mask_check(mask);
49 lp_build_alpha_test(struct gallivm_state *gallivm, unsigned func, struct lp_type type, const struct util_format_description *cbuf_format_desc, struct lp_build_mask_context *mask, LLVMValueRef alpha, LLVMValueRef ref, boolean do_branch) argument
/external/mesa3d/src/glx/
H A Dclientattrib.c70 __indirect_glPushClientAttrib(GLuint mask) argument
81 sp->mask = mask;
83 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
87 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) {
103 GLuint mask; local
109 mask = sp->mask;
112 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
116 if (mask
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_bitmap.c83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7); local
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
107 if (*src & mask) {
112 if (mask
[all...]
H A Ds_logic.c38 * Depending on bytes per pixel, the mask array elements correspond to
47 if (mask[i / MASKSTRIDE]) { \
54 if (mask[i / MASKSTRIDE]) { \
64 if (mask[i / MASKSTRIDE]) { \
71 if (mask[i / MASKSTRIDE]) { \
78 if (mask[i / MASKSTRIDE]) { \
85 if (mask[i / MASKSTRIDE]) { \
92 if (mask[i / MASKSTRIDE]) { \
99 if (mask[i / MASKSTRIDE]) { \
106 if (mask[
161 logicop_uint1(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
169 logicop_uint2(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
177 logicop_uint4(struct gl_context *ctx, GLuint n, GLuint src[], const GLuint dest[], const GLubyte mask[]) argument
[all...]
/external/pixman/demos/
H A Dconvolution-test.c15 uint32_t *mask = malloc (WIDTH * HEIGHT * 4); local
31 mask[i] = (i % 256) * 0x01000000;
36 mimg = pixman_image_create_bits (PIXMAN_a8r8g8b8, WIDTH, HEIGHT, mask, WIDTH * 4);
/external/qemu/distrib/sdl-1.2.15/src/thread/beos/
H A DSDL_systhread.c42 sigset_t mask; local
45 sigemptyset(&mask);
47 sigaddset(&mask, sig_list[i]);
49 sigprocmask(SIG_BLOCK, &mask, omask);
/external/qemu/distrib/sdl-1.2.15/src/thread/irix/
H A DSDL_systhread.c55 sigset_t mask; local
58 sigemptyset(&mask);
60 sigaddset(&mask, sig_list[i]);
62 sigprocmask(SIG_BLOCK, &mask, NULL);
/external/qemu/distrib/sdl-1.2.15/src/thread/pth/
H A DSDL_systhread.c37 /* List of signals to mask in the subthreads */
74 sigset_t mask; local
78 sigemptyset(&mask);
80 sigaddset(&mask, sig_list[i]);
82 pth_sigmask(SIG_BLOCK, &mask, 0);
/external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
H A DSDL_systhread.c31 /* List of signals to mask in the subthreads */
82 sigset_t mask; local
85 sigemptyset(&mask);
87 sigaddset(&mask, sig_list[i]);
89 pthread_sigmask(SIG_BLOCK, &mask, 0);
/external/qemu/distrib/sdl-1.2.15/src/thread/riscos/
H A DSDL_systhread.c61 /* List of signals to mask in the subthreads */
108 sigset_t mask; local
111 sigemptyset(&mask);
113 sigaddset(&mask, sig_list[i]);
115 pthread_sigmask(SIG_BLOCK, &mask, 0);
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm.c56 void GEM_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask) argument
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxmouse.c38 Uint8 * data, Uint8 * mask, int w, int h, int hot_x, int hot_y)
37 NX_CreateWMCursor(_THIS, Uint8 * data, Uint8 * mask, int w, int h, int hot_x, int hot_y) argument
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_wm.c38 void ph_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask) argument
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_sysmouse.cc35 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
34 QT_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) argument
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglmouse.c42 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y)
41 VGL_CreateWMCursor(_THIS, Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y) argument
/external/qemu/util/
H A Dunicode.c50 unsigned byte, mask, len, i; local
70 for (mask = 0x80; byte & mask; mask >>= 1) {
74 cp = byte & (mask - 1);

Completed in 442 milliseconds

1234567891011>>