HomeSort by relevance Sort by last modified time
    Searched refs:mask (Results 1 - 25 of 5270) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
48 // on the mask type. Because of this, we don't use an enum.
49 typedef unsigned short mask; typedef in struct:ctype_base
50 static const mask upper = 1 << 0;
51 static const mask lower = 1 << 1;
52 static const mask alpha = 1 << 2;
53 static const mask digit = 1 << 3;
54 static const mask xdigit = 1 << 4;
55 static const mask space = 1 << 5;
56 static const mask print = 1 << 6
    [all...]
  /bionic/libc/kernel/uapi/linux/iio/
events.h 28 #define IIO_EVENT_CODE_EXTRACT_TYPE(mask) ((mask >> 56) & 0xFF)
29 #define IIO_EVENT_CODE_EXTRACT_DIR(mask) ((mask >> 48) & 0x7F)
30 #define IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(mask) ((mask >> 32) & 0xFF)
31 #define IIO_EVENT_CODE_EXTRACT_CHAN(mask) ((__s16) (mask & 0xFFFF))
32 #define IIO_EVENT_CODE_EXTRACT_CHAN2(mask) ((__s16) (((mask) >> 16) & 0xFFFF)
    [all...]
  /external/kernel-headers/original/uapi/linux/iio/
events.h 29 #define IIO_EVENT_CODE_EXTRACT_TYPE(mask) ((mask >> 56) & 0xFF)
31 #define IIO_EVENT_CODE_EXTRACT_DIR(mask) ((mask >> 48) & 0x7F)
33 #define IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(mask) ((mask >> 32) & 0xFF)
37 #define IIO_EVENT_CODE_EXTRACT_CHAN(mask) ((__s16)(mask & 0xFFFF))
38 #define IIO_EVENT_CODE_EXTRACT_CHAN2(mask) ((__s16)(((mask) >> 16) & 0xFFFF)
    [all...]
  /external/fio/
optgroup.c 11 .mask = FIO_OPT_C_GENERAL,
15 .mask = FIO_OPT_C_IO,
19 .mask = FIO_OPT_C_FILE,
23 .mask = FIO_OPT_C_STAT,
27 .mask = FIO_OPT_C_LOG,
31 .mask = FIO_OPT_C_PROFILE,
35 .mask = FIO_OPT_C_ENGINE,
45 .mask = FIO_OPT_G_RATE,
49 .mask = FIO_OPT_G_ZONE,
53 .mask = FIO_OPT_G_RWMIX
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
ctype_base.h 47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned short mask; typedef in struct:ctype_base
49 static const mask upper = _ISupper;
50 static const mask lower = _ISlower;
51 static const mask alpha = _ISalpha;
52 static const mask digit = _ISdigit;
53 static const mask xdigit = _ISxdigit;
54 static const mask space = _ISspace;
55 static const mask print = _ISprint;
56 static const mask graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
ctype_base.h 47 // on the mask type. Because of this, we don't use an enum.
48 typedef unsigned short mask; typedef in struct:ctype_base
49 static const mask upper = _ISupper;
50 static const mask lower = _ISlower;
51 static const mask alpha = _ISalpha;
52 static const mask digit = _ISdigit;
53 static const mask xdigit = _ISxdigit;
54 static const mask space = _ISspace;
55 static const mask print = _ISprint;
56 static const mask graph = _ISalpha | _ISdigit | _ISpunct
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
AlignmentUtils.java 33 int mask = alignment - 1; local
34 assert (alignment >= 0) && ((mask & alignment) == 0);
35 return (offset + mask) & ~mask;
  /bionic/libc/bionic/
pause.cpp 33 sigset64_t mask = {}; local
34 return sigsuspend64(&mask);
sys_signalfd.cpp 35 int signalfd(int fd, const sigset_t* mask, int flags) {
37 set.sigset = *mask;
41 int signalfd64(int fd, const sigset64_t* mask, int flags) {
42 return __signalfd4(fd, mask, sizeof(*mask), flags);
  /external/clang/test/CodeGen/
2003-08-21-StmtExpr.c 10 bar(({ structty mask; mask; }));
  /external/ltp/testcases/kernel/syscalls/utils/
ioprio.h 15 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
16 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
19 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
  /external/strace/linux/m68k/
arch_sigreturn.c 10 unsigned long mask[NSIG_BYTES / sizeof(long)]; local
11 /* Fetch first word of signal mask. */
12 if (umove(tcp, addr, &mask[0]) < 0)
15 /* Fetch remaining words of signal mask, located immediately before. */
16 addr -= sizeof(mask) - sizeof(long);
17 if (umoven(tcp, addr, sizeof(mask) - sizeof(long), &mask[1]) < 0)
20 tprintsigmask_addr("{mask=", mask);
  /external/valgrind/none/tests/ppc64/
power6_bcmp.c 35 unsigned long mask; local
37 mask = 0;
39 mask += 0xff;
41 mask += 0xff00;
43 mask += 0xff0000;
45 mask += 0xff000000;
47 mask += 0xff00000000;
49 mask += 0xff0000000000;
51 mask += 0xff000000000000;
53 mask += 0xff00000000000000
    [all...]
  /external/mesa3d/src/compiler/glsl/
opt_swizzle_swizzle.cpp 61 if (swiz2->mask.num_components >= 1)
62 mask2[0] = swiz2->mask.x;
63 if (swiz2->mask.num_components >= 2)
64 mask2[1] = swiz2->mask.y;
65 if (swiz2->mask.num_components >= 3)
66 mask2[2] = swiz2->mask.z;
67 if (swiz2->mask.num_components >= 4)
68 mask2[3] = swiz2->mask.w;
70 if (ir->mask.num_components >= 1)
71 ir->mask.x = mask2[ir->mask.x]
    [all...]
  /art/sigchainlib/
sigchain_test.cc 75 sigset64_t mask; local
76 sigemptyset64(&mask);
77 ASSERT_EQ(0, RealSigprocmask(SIG_SETMASK, &mask, nullptr)) << strerror(errno);
82 ASSERT_EQ(0, RealSigprocmask(SIG_SETMASK, nullptr, &mask));
83 ASSERT_FALSE(sigismember64(&mask, SIGSEGV));
88 sigset_t mask;
89 sigfillset(&mask);
90 ASSERT_EQ(0, sigprocmask(SIG_SETMASK, &mask, nullptr));
96 sigset_t mask;
97 sigfillset(&mask);
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
cgen-bitset.c 26 /* Create a bit mask. */
31 CGEN_BITSET * mask = xmalloc (sizeof (* mask)); local
32 cgen_bitset_init (mask, bit_count);
33 return mask;
36 /* Initialize an existing bit mask. */
39 cgen_bitset_init (CGEN_BITSET * mask, unsigned bit_count)
41 if (! mask)
43 mask->length = (bit_count / 8) + 1;
44 mask->bits = xmalloc (mask->length)
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
RootType.java 95 final int mask; field in class:RootType
97 RootType(int mask) {
98 this.mask = mask;
  /external/skia/src/effects/
SkEmbossMask.h 16 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
  /external/skqp/src/effects/
SkEmbossMask.h 16 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
  /external/strace/tests/
check_sigblock.c 42 sigset_t mask; local
44 sigemptyset(&mask);
45 if (sigprocmask(SIG_SETMASK, NULL, &mask))
48 return block ^ sigismember(&mask, signum);
  /external/strace/tests-m32/
check_sigblock.c 42 sigset_t mask; local
44 sigemptyset(&mask);
45 if (sigprocmask(SIG_SETMASK, NULL, &mask))
48 return block ^ sigismember(&mask, signum);
  /external/strace/tests-mx32/
check_sigblock.c 42 sigset_t mask; local
44 sigemptyset(&mask);
45 if (sigprocmask(SIG_SETMASK, NULL, &mask))
48 return block ^ sigismember(&mask, signum);
  /external/valgrind/memcheck/tests/amd64/
insn-pmovmskb.c 67 int bit = 0; ULong mask = (1UL << bit); local
68 if ((vbits_mask & mask) == 0) print(vbits, val_copy, bit, result & mask);
69 else use(bit, result & mask);
71 bit = 1; mask = (1UL << bit);
72 if ((vbits_mask & mask) == 0) print(vbits, val_copy, bit, result & mask);
73 else use(bit, result & mask);
75 bit = 2; mask = (1UL << bit);
76 if ((vbits_mask & mask) == 0) print(vbits, val_copy, bit, result & mask)
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
sigprocmask.c 16 sigset_t mask; local
17 sigprocmask(SIG_BLOCK, NULL, &mask);
18 return sigismember(&mask, SIGIO);
22 sigset_t mask; local
23 sigemptyset(&mask);
24 sigaddset(&mask, SIGIO);
25 sigprocmask(SIG_BLOCK, &mask, NULL);

Completed in 1182 milliseconds

1 2 3 4 5 6 7 8 91011>>