Searched defs:mask (Results 101 - 125 of 1853) sorted by relevance

1234567891011>>

/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_connmark.h28 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
/external/kernel-headers/original/uapi/linux/tc_act/
H A Dtc_nat.h25 __be32 mask; member in struct:tc_nat
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_cmp.h10 __u32 mask; member in struct:tcf_em_cmp
/external/libhevc/common/
H A Dihevc_buf_mgr.c234 * resets the status bits that the mask contains (status corresponding to
243 * @param[in] mask
256 UWORD32 mask)
264 ps_buf_mgr->au4_status[buf_id] &= ~mask;
284 * sets the status bits that the mask contains (status corresponding to the
295 * @param[in] mask
308 UWORD32 mask)
316 if((ps_buf_mgr->au4_status[buf_id] & mask) != 0)
321 ps_buf_mgr->au4_status[buf_id] |= mask;
253 ihevc_buf_mgr_release( buf_mgr_t *ps_buf_mgr, WORD32 buf_id, UWORD32 mask) argument
305 ihevc_buf_mgr_set_status( buf_mgr_t *ps_buf_mgr, WORD32 buf_id, UWORD32 mask) argument
/external/libnetfilter_conntrack/include/internal/
H A Dinternal.h82 uint8_t mask; member in struct:nf_ct_tcp_flags
/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_fdct4x4_msa.c56 v8i16 temp, mask; local
60 mask = (v8i16)__msa_sldi_b(zero, one, 15);
64 temp = mask & temp;
/external/libvpx/libvpx/vpx_ports/
H A Darm_cpudetect.c48 int mask; local
52 mask = arm_cpu_env_mask();
56 return flags & mask;
71 int mask; local
75 mask = arm_cpu_env_mask();
81 if (mask & HAS_NEON) {
91 return flags & mask;
99 int mask; local
104 mask = arm_cpu_env_mask();
110 return flags & mask;
120 int mask; local
[all...]
/external/linux-kselftest/tools/testing/selftests/powerpc/dscr/
H A Ddscr_sysfs_thread_test.c41 cpu_set_t mask; local
45 CPU_ZERO(&mask);
46 CPU_SET(cpu, &mask);
47 if (sched_setaffinity(0, sizeof(mask), &mask))
/external/linux-kselftest/tools/testing/selftests/powerpc/
H A Dutils.c84 cpu_set_t mask; local
87 CPU_ZERO(&mask);
89 if (sched_getaffinity(0, sizeof(mask), &mask)) {
96 if (CPU_ISSET(cpu, &mask))
101 if (CPU_ISSET(cpu, &mask))
104 printf("No cpus in affinity mask?!\n");
/external/linux-kselftest/tools/testing/selftests/x86/
H A Dvdso_restorer.c37 unsigned int mask[2]; member in struct:real_sigaction
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
H A D16-1.c77 sigset_t mask; local
83 sigemptyset(&mask);
84 sigaddset(&mask, SIGUSR1);
85 sigprocmask(SIG_BLOCK, &mask, NULL);
86 sigwait(&mask, &sig);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/
H A D29-1.c115 sigset_t mask; local
146 ret = sigemptyset(&mask);
149 UNRESOLVED(ret, "An error occured while initializing mask");
152 ret = sigaddset(&mask, SIGRTMAX);
158 ret = sigprocmask(SIG_BLOCK, &mask, NULL);
161 UNRESOLVED(ret, "Failed to set process signal mask");
179 ret = sigprocmask(SIG_UNBLOCK, &mask, NULL);
182 UNRESOLVED(ret, "Failed to set process signal mask");
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigqueue/
H A D7-1.c17 signal mask.
51 sigset_t mask; local
57 sigemptyset(&mask);
62 sigaddset(&mask, rtsig);
77 sigprocmask(SIG_UNBLOCK, &mask, NULL);
/external/lzma/C/
H A DBra86.c13 UInt32 mask = *state & 7; local
32 *state = (d > 2 ? 0 : mask >> (unsigned)d);
36 mask = 0;
39 mask >>= (unsigned)d;
40 if (mask != 0 && (mask > 4 || mask == 3 || Test86MSByte(p[(mask >> 1) + 1])))
42 mask = (mask >>
[all...]
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_io_to_scalar.c96 nir_lower_io_to_scalar(nir_shader *shader, nir_variable_mode mask) argument
115 if (mask & nir_var_shader_in)
119 if (mask & nir_var_shader_out)
/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
85 sp->mask = mask;
87 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
91 if (mask & GL_CLIENT_VERTEX_ARRAY_BIT) {
107 GLuint mask; local
113 mask = sp->mask;
116 if (mask & GL_CLIENT_PIXEL_STORE_BIT) {
120 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/minijail/
H A Dsignal_handler.c55 sigset_t mask; local
61 sigemptyset(&mask);
62 sigaddset(&mask, SIGSYS);
68 ret = sigprocmask(SIG_UNBLOCK, &mask, NULL);
/external/python/cpython2/Parser/
H A Dbitset.c32 BYTE mask = BIT2MASK(ibit); local
34 if (ss[ibyte] & mask)
36 ss[ibyte] |= mask;
/external/python/cpython3/Parser/
H A Dbitset.c32 BYTE mask = BIT2MASK(ibit); local
34 if (ss[ibyte] & mask)
36 ss[ibyte] |= mask;
/external/skia/experimental/sksg/effects/
H A DSkSGMaskEffect.cpp14 MaskEffect::MaskEffect(sk_sp<RenderNode> child, sk_sp<RenderNode> mask) argument
16 , fMaskNode(std::move(mask)) {
/external/skia/samplecode/
H A DSampleLayerMask.cpp38 SkBitmap mask; local
41 mask.allocN32Pixels(w, h);
42 mask.eraseColor(SK_ColorTRANSPARENT);
43 SkCanvas c(mask);
49 canvas->drawBitmap(mask, r.fLeft, r.fTop, &paint);
/external/skia/src/effects/
H A DGrAlphaThresholdFragmentProcessor.h23 static std::unique_ptr<GrFragmentProcessor> Make(sk_sp<GrTextureProxy> mask, argument
28 mask, innerThreshold, outerThreshold, bounds));
35 GrAlphaThresholdFragmentProcessor(sk_sp<GrTextureProxy> mask, float innerThreshold, argument
38 , fMask(std::move(mask))

Completed in 1013 milliseconds

1234567891011>>