Searched defs:mask (Results 576 - 600 of 1853) sorted by relevance

<<21222324252627282930>>

/external/linux-kselftest/tools/testing/selftests/networking/timestamping/
H A Drxtimestamp.c49 int mask; member in struct:sof_flag
134 if (t->sockopt.so_timestamping & sof_flags[f].mask)
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp94 // Return bitmask of domains that are available and in mask.
95 unsigned getCommonDomains(unsigned mask) const {
96 return AvailableDomains & mask;
204 void visitSoftInstr(MachineInstr*, unsigned mask);
610 // A soft instruction can be changed to work in other domains given by mask.
611 void ExeDepsFix::visitSoftInstr(MachineInstr *mi, unsigned mask) { argument
614 unsigned available = mask;
/external/ltp/testcases/kernel/io/disktest/
H A Dchildmain.c225 const OFF_T mask)
334 (Rand64() & mask) + args->start_lba;
596 OFF_T ActualBytePos = 0, TargetBytePos = 0, mask = 1, delayMask = 1; local
671 /* set up lba mask of all 1's with value between vsiz and 2*vsiz */
672 while (mask <= (args->stop_lba - args->start_lba)) {
673 mask = mask << 1;
675 mask -= 1;
677 /* set up delay mask of all 1's with value between delayTimeMin and 2*delayTimeMax */
700 target = get_next_action(args, env, mask);
224 get_next_action(child_args_t * args, test_env_t * env, const OFF_T mask) argument
[all...]
/external/ltp/testcases/kernel/syscalls/utils/
H A Dinotify.h20 __u32 mask; /* watch mask */ member in struct:inotify_event
52 #define IN_MASK_ADD 0x20000000 /* add to the mask of an already existing watch */
75 * i_list, mask are protected by inode->inotify_mutex of the associated inode.
89 __u32 mask; /* event mask for this watch */ member in struct:inotify_watch
142 __u32 mask, __u32 cookie,
149 __u32 mask, __u32 cookie,
187 struct inode *inode, u32 mask)
194 struct inode *inode, __u32 mask)
141 inotify_inode_queue_event(struct inode *inode, __u32 mask, __u32 cookie, const char *filename, struct inode *n_inode) argument
148 inotify_dentry_parent_queue_event(struct dentry *dentry, __u32 mask, __u32 cookie, const char *filename) argument
186 inotify_find_update_watch(struct inotify_handle *ih, struct inode *inode, u32 mask) argument
192 inotify_add_watch(struct inotify_handle *ih, struct inotify_watch *watch, struct inode *inode, __u32 mask) argument
[all...]
/external/ltp/testcases/open_posix_testsuite/functional/threads/pi_test/
H A Dpitest-1.c99 unsigned long mask = 1 << tp->cpu; local
102 rc = sched_setaffinity(0, sizeof(mask), &mask);
137 unsigned long mask = 1 << tp->cpu; local
141 rc = sched_setaffinity((pid_t) 0, sizeof(mask), &mask);
H A Dpitest-2.c101 unsigned long mask = 1 << tp->cpu; local
104 rc = sched_setaffinity(0, sizeof(mask), &mask);
137 unsigned long mask = 1 << tp->cpu; local
141 rc = sched_setaffinity((pid_t) 0, sizeof(mask), &mask);
H A Dpitest-3.c102 unsigned long mask = 1 << tp->cpu; local
105 rc = sched_setaffinity(0, sizeof(mask), &mask);
141 unsigned long mask = 1 << tp->cpu; local
145 rc = sched_setaffinity((pid_t) 0, sizeof(mask), &mask);
H A Dpitest-4.c102 unsigned long mask = 1 << tp->cpu; local
105 rc = sched_setaffinity(0, sizeof(mask), &mask);
H A Dpitest-5.c100 unsigned long mask = 1 << tp->cpu; local
104 rc = sched_setaffinity(0, sizeof(mask), &mask);
139 unsigned long mask = 1 << tp->cpu; local
144 rc = sched_setaffinity((pid_t) 0, sizeof(mask), &mask);
H A Dpitest-6.c98 unsigned long mask = 1 << tp->cpu; local
101 rc = sched_setaffinity(0, sizeof(mask), &mask);
136 unsigned long mask = 1 << tp->cpu; local
140 rc = sched_setaffinity((pid_t) 0, sizeof(mask), &mask);
/external/ltp/testcases/realtime/stress/pi-tests/
H A Dtestpi-3.c103 cpu_set_t mask; local
104 CPU_ZERO(&mask);
105 CPU_SET(0, &mask);
107 rc = sched_setaffinity(0, sizeof(mask), &mask);
113 rc = sched_getaffinity(0, sizeof(mask), &mask);
116 (long)mask.__bits[0]);
152 cpu_set_t mask; local
153 CPU_ZERO(&mask);
208 cpu_set_t mask; local
326 cpu_set_t mask; local
[all...]
/external/lzma/CPP/7zip/Common/
H A DFileStreams.cpp78 const UInt32 mask = kClusterSize - 1; local
79 const UInt64 mask2 = ~(UInt64)mask;
83 UInt32 pos = (UInt32)VirtPos & mask;
95 if ((VirtPos & mask) != 0 || ((ptrdiff_t)data & mask) != 0 )
100 if ((end & mask) != 0)
/external/mesa3d/src/compiler/glsl/
H A Dir_print_visitor.cpp374 ir->mask.x,
375 ir->mask.y,
376 ir->mask.z,
377 ir->mask.w,
381 for (unsigned i = 0; i < ir->mask.num_components; i++) {
421 char mask[5]; local
426 mask[j] = "xyzw"[i];
430 mask[j] = '\0';
432 fprintf(f, " (%s) ", mask);
H A Dlower_buffer_access.cpp158 unsigned mask = local
160 insert_buffer_access(mem_ctx, deref, deref->type, offset, mask, -1);
482 assert(deref_swizzle->mask.num_components == 1);
484 *const_offset += deref_swizzle->mask.x * sizeof(int);
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_const.c392 * @param mask TGSI_WRITEMASK_xxx
397 unsigned mask,
409 mask & (1 << i) ? ~0ULL : 0,
419 * Performs lp_build_const_mask_aos, but first swizzles the mask
424 unsigned mask,
433 mask_swizzled |= ((mask & (1 << swizzle[i])) >> swizzle[i]) << i;
395 lp_build_const_mask_aos(struct gallivm_state *gallivm, struct lp_type type, unsigned mask, unsigned channels) argument
422 lp_build_const_mask_aos_swizzled(struct gallivm_state *gallivm, struct lp_type type, unsigned mask, unsigned channels, const unsigned char *swizzle) argument
H A Dlp_bld_flow.c123 * Check if the mask predicate is zero. If so, jump to the end of the block.
126 lp_build_mask_check(struct lp_build_mask_context *mask) argument
128 LLVMBuilderRef builder = mask->skip.gallivm->builder;
132 value = lp_build_mask_value(mask);
143 /* cond = (mask == 0) */
146 LLVMBuildBitCast(builder, value, mask->reg_type, ""),
147 LLVMConstNull(mask->reg_type),
151 lp_build_flow_skip_cond_break(&mask->skip, cond);
156 * Begin a section of code which is predicated on a mask.
157 * \param mask th
163 lp_build_mask_begin(struct lp_build_mask_context *mask, struct gallivm_state *gallivm, struct lp_type type, LLVMValueRef value) argument
182 lp_build_mask_value(struct lp_build_mask_context *mask) argument
194 lp_build_mask_update(struct lp_build_mask_context *mask, LLVMValueRef value) argument
208 lp_build_mask_end(struct lp_build_mask_context *mask) argument
[all...]
H A Dlp_bld_format_float.c84 LLVMValueRef is_nan_or_inf, nan_or_inf, mask, i32_src; local
197 /* mask off excess bits */
199 mask = lp_build_const_int_vec(gallivm, i32_type,
201 res = lp_build_and(&i32_bld, res, mask);
211 mask = lp_build_const_int_vec(gallivm, i32_type, 0x80000000);
213 sign = lp_build_and(&i32_bld, mask, i32_src);
429 LLVMValueRef shift, mask; local
445 mask = lp_build_const_int_vec(gallivm, i32_type, 0x1ff);
447 src = lp_build_and(&i32_bld, src, mask);
480 /* this shift needs to be unsigned otherwise need mask */
[all...]
H A Dlp_bld_format_yuv.c65 LLVMValueRef mask; local
125 mask = lp_build_const_int_vec(gallivm, type, 0xff);
127 *y = LLVMBuildAnd(builder, *y, mask, "y");
128 *u = LLVMBuildAnd(builder, *u, mask, "u");
129 *v = LLVMBuildAnd(builder, *v, mask, "v");
149 LLVMValueRef mask; local
207 mask = lp_build_const_int_vec(gallivm, type, 0xff);
209 *y = LLVMBuildAnd(builder, *y, mask, "y");
210 *u = LLVMBuildAnd(builder, *u, mask, "u");
211 *v = LLVMBuildAnd(builder, *v, mask, "
[all...]
H A Dlp_bld_gather.c307 LLVMValueRef mask = LLVMConstAllOnes(i1_vec_type); local
310 LLVMValueRef args[] = { src_ptr, alignment, mask, passthru };
345 LLVMValueRef mask = LLVMConstAllOnes(src_vec_type); local
346 mask = LLVMConstBitCast(mask, src_vec_type);
349 LLVMValueRef args[] = { passthru, base_ptr, offsets, mask, scale };
H A Dlp_bld_init.c491 unsigned short mask[] = { 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, local
498 : "r" (*mask)
H A Dlp_bld_logic.c248 * Return (mask & a) | (~mask & b);
252 LLVMValueRef mask,
273 a = LLVMBuildAnd(builder, a, mask, "");
280 b = LLVMBuildAnd(builder, b, LLVMBuildNot(builder, mask, ""), "");
294 * Return mask ? a : b;
296 * mask is a bitwise mask, composed of 0 or ~0 for each element. Any other value
301 LLVMValueRef mask,
317 mask
251 lp_build_select_bitwise(struct lp_build_context *bld, LLVMValueRef mask, LLVMValueRef a, LLVMValueRef b) argument
300 lp_build_select(struct lp_build_context *bld, LLVMValueRef mask, LLVMValueRef a, LLVMValueRef b) argument
428 lp_build_select_aos(struct lp_build_context *bld, unsigned mask, LLVMValueRef a, LLVMValueRef b, unsigned num_channels) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_scan.c147 unsigned mask = local
153 info->colors_read |= mask << (index * 4);
381 /* The usage mask is suboptimal but should be safe. */
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sse.h157 _mm_shuffle_epi8(__m128i a, __m128i mask) argument
162 : "xm" (mask), "0" (a));
238 __m128i mask = _mm_setr_epi32(~0,0,~0,0); local
239 __m128i ba_mask = _mm_and_si128(ba, mask);
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_mc.c593 prepare_pipe_4_rendering(struct vl_mc *renderer, struct vl_mc_buffer *buffer, unsigned mask) argument
600 renderer->pipe->bind_blend_state(renderer->pipe, renderer->blend_add[mask]);
602 renderer->pipe->bind_blend_state(renderer->pipe, renderer->blend_clear[mask]);
633 unsigned mask = 1 << component; local
640 prepare_pipe_4_rendering(renderer, buffer, mask);
648 renderer->pipe->bind_blend_state(renderer->pipe, renderer->blend_sub[mask]);
/external/mesa3d/src/gallium/drivers/freedreno/a2xx/
H A Ddisasm-a2xx.c86 static void print_dstreg(uint32_t num, uint32_t mask, uint32_t dst_exp) argument
89 if (mask != 0xf) {
93 printf("%c", (mask & 0x1) ? chan_names[i] : '_');
94 mask >>= 1;

Completed in 7457 milliseconds

<<21222324252627282930>>