HomeSort by relevance Sort by last modified time
    Searched full:mask (Results 26 - 50 of 2232) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/blktrace/
act_mask.c 4 #define DECLARE_MASK_MAP(mask) { BLK_TC_##mask, #mask, "BLK_TC_"#mask }
10 int mask; member in struct:mask_map
39 return mask_maps[i].mask;
  /prebuilt/linux-x86/oprofile/arm/armv6/
unit_masks 4 0x00 No unit mask
  /prebuilt/linux-x86/oprofile/arm/armv7/
unit_masks 4 0x00 No unit mask
  /prebuilt/linux-x86_64/oprofile/arm/armv6/
unit_masks 4 0x00 No unit mask
  /prebuilt/linux-x86_64/oprofile/arm/armv7/
unit_masks 4 0x00 No unit mask
  /external/e2fsprogs/lib/e2p/
mntopts.c 20 unsigned int mask; member in struct:mntopt
36 const char *e2p_mntopt2string(unsigned int mask)
43 if (mask == f->mask)
46 for (fnum = 0; mask >>= 1; fnum++);
51 int e2p_string2mntopt(char *string, unsigned int *mask)
59 *mask = f->mask;
73 *mask = 1 << num;
100 unsigned int mask; local
    [all...]
  /external/iptables/extensions/
libipt_connmark.man 6 .BI "--mark " "value[/mask]"
7 Matches packets in connections with the given mark value (if a mask is
libipt_NETMAP.man 6 .BI "--to " "address[/mask]"
8 following way: All 'one' bits in the mask are filled in from the new `address'.
9 All bits that are zero in the mask are filled in from the original address.
libip6t_CONNMARK.c 44 " --set-mark value[/mask] Set conntrack mark value\n"
45 " --save-mark [--mask mask] Save the packet nfmark in the connection\n"
46 " --restore-mark [--mask mask] Restore saved nfmark value\n"
55 { "mask", 1, 0, '4' },
75 markinfo->mask = 0xffffffffUL;
84 markinfo->mask = strtoul(end+1, &end, 0);
110 "CONNMARK target: Can't specify --mask without a operation");
111 markinfo->mask = strtoul(optarg, &end, 0)
    [all...]
libipt_CONNMARK.c 44 " --set-mark value[/mask] Set conntrack mark value\n"
45 " --save-mark [--mask mask] Save the packet nfmark in the connection\n"
46 " --restore-mark [--mask mask] Restore saved nfmark value\n"
55 { "mask", 1, 0, '4' },
75 markinfo->mask = 0xffffffffUL;
84 markinfo->mask = strtoul(end+1, &end, 0);
110 "CONNMARK target: Can't specify --mask without a operation");
111 markinfo->mask = strtoul(optarg, &end, 0)
    [all...]
libip6t_2mark.c 18 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
45 markinfo->mask = strtoull(end+1, &end, 0);
47 markinfo->mask = 0xffffffffffffffffULL;
51 markinfo->mask = strtoul(end+1, &end, 0);
53 markinfo->mask = 0xffffffff;
70 print_mark(unsigned long long mark, unsigned long long mask, int numeric)
72 if(mask != 0xffffffffffffffffULL)
73 printf("0x%llx/0x%llx ", mark, mask);
79 print_mark(unsigned long mark, unsigned long mask, int numeric
    [all...]
libipt_2mark.c 18 "[!] --mark value[/mask] Match nfmark value with optional mask\n"
45 markinfo->mask = strtoull(end+1, &end, 0);
47 markinfo->mask = 0xffffffffffffffffULL;
51 markinfo->mask = strtoul(end+1, &end, 0);
53 markinfo->mask = 0xffffffff;
70 print_mark(unsigned long long mark, unsigned long long mask, int numeric)
72 if(mask != 0xffffffffffffffffULL)
73 printf("0x%llx/0x%llx ", mark, mask);
79 print_mark(unsigned long mark, unsigned long mask, int numeric
    [all...]
  /frameworks/base/cmds/system_server/
system_main.cpp 35 sigset_t mask; local
38 sigemptyset(&mask);
39 sigaddset(&mask, SIGQUIT);
40 sigaddset(&mask, SIGUSR1);
41 cc = sigprocmask(SIG_BLOCK, &mask, NULL);
  /bionic/libm/alpha/
fenv.c 36 fenv_t mask; member in struct:mask_args
41 * the lower order bits to store the kernel's idea of the FP mask as
57 *envp = r.__bits | p.mask;
70 *envp = r.__bits | p.mask;
73 if (p.mask & FE_ALL_EXCEPT) {
74 p.mask = 0;
87 p.mask = *envp & FE_ALL_EXCEPT;
101 p.mask = *envp & FE_ALL_EXCEPT;
112 __feenableexcept(int mask)
117 p.mask |= (mask & FE_ALL_EXCEPT)
    [all...]
  /external/qemu/hw/
armv7m.c 38 uint8_t mask; local
41 mask = (1 << ((offset >> 2) & 7));
44 v |= mask;
46 v &= ~mask;
53 uint16_t mask; local
56 mask = (1 << ((offset >> 2) & 15));
57 mask = tswap16(mask);
59 return (v & mask) != 0;
66 uint16_t mask; local
82 uint32_t mask; local
95 uint32_t mask; local
    [all...]
goldfish_interrupt.c 76 uint32_t mask = (1U << irq); local
79 if(!(s->level & mask)) {
80 if(s->irq_enabled & mask)
82 s->level |= mask;
86 if(s->level & mask) {
87 if(s->irq_enabled & mask)
89 s->level &= ~mask;
120 uint32_t mask = (1U << value); local
129 if(s->irq_enabled & mask) {
130 if(s->level & mask)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
bitops.c 35 int mask, retval; local
39 mask = 1 << (nr & 0x07);
40 retval = mask & *ADDR;
41 *ADDR |= mask;
47 int mask, retval; local
51 mask = 1 << (nr & 0x07);
52 retval = mask & *ADDR;
53 *ADDR &= ~mask;
59 int mask; local
63 mask = 1 << (nr & 0x07)
    [all...]
  /external/kernel-headers/original/linux/
ioprio.h 13 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
14 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
17 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
nodemask.h 20 * void node_set(node, mask) turn on bit 'node' in mask
21 * void node_clear(node, mask) turn off bit 'node' in mask
22 * void nodes_setall(mask) set all bits
23 * void nodes_clear(mask) clear all bits
24 * int node_isset(node, mask) true iff bit 'node' set in mask
25 * int node_test_and_set(node, mask) test and set bit 'node' in mask
    [all...]
  /external/webkit/WebCore/manual-tests/
mask-composite-missing-images.html 9 -webkit-mask-image: url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found), url(url-not-found);
10 -webkit-mask-position: top left, top right, bottom left, bottom right, top center, center right, bottom center, center left, center;
11 -webkit-mask-origin: border;
12 -webkit-mask-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat-x, repeat-y, repeat-x, repeat-y, repeat;
13 -webkit-mask-composite: copy;
18 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=26084">WebKit Bug 26084: Bug 26084: Multiple missing images in webkit-mask-image prevent rendering</a></p>
  /external/kernel-headers/original/asm-generic/bitops/
non-atomic.h 20 unsigned long mask = BITOP_MASK(nr); local
23 *p |= mask;
28 unsigned long mask = BITOP_MASK(nr); local
31 *p &= ~mask;
45 unsigned long mask = BITOP_MASK(nr); local
48 *p ^= mask;
62 unsigned long mask = BITOP_MASK(nr); local
66 *p = old | mask;
67 return (old & mask) != 0;
81 unsigned long mask = BITOP_MASK(nr) local
93 unsigned long mask = BITOP_MASK(nr); local
    [all...]
  /external/opencore/baselibs/gen_data_structures/src/
bool_array.h 91 uint32 mask = mask_array[word_index]; local
94 array[ii] |= (mask);
98 array[ii] &= (~mask);
105 uint32 mask = mask_array[word_index]; local
108 array[ii] |= (~mask);
112 array[ii] &= (mask);
118 uint32 mask = mask_array[32]; local
121 array[ii] |= (mask);
125 array[ii] &= (~mask);
144 uint32 mask = 1 << word_index local
168 uint32 mask = 1 << word_index; local
    [all...]
  /external/skia/include/core/
SkMaskFilter.h 32 an alpha-channel mask before drawing it. A subclass of SkMaskFilter may be
34 is first scan converted into a SkMask::kA8_Format mask, and handed to the
36 new mask is used to render into the device.
44 /** Returns the format of the resulting mask that this subclass will return
49 /** Create a new mask by filter the src mask.
53 If this returns false, dst mask is ignored.
60 @return true if the dst mask was correctly created.
64 /** Helper method that, given a path in device space, will rasterize it into a kA8_Format mask
66 to render that mask. Returns false if filterMask() returned false
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/common/inc/
OMX_TI_Debug.h 68 have levels at least of the mask's level will be printed
149 OMX_U32 mask; /* debug mask */ member in struct:OMX_TI_Debug
157 /* This macro sets the debug mask in the debug structure based on a mask
162 sscanf((mask_str), "%lx", &(dbg).mask); \
164 (dbg).mask &= ~0ul >> (32 - 4 * strlen(mask_str)); \
165 (dbg).mask |= OMX_DBG_BASEMASK << (4 * strlen(mask_str)); \
168 (dbg).mask = OMX_DBG_BASEMASK; \
173 stdout/stderr output and base mask. *
    [all...]
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 195 uint32 mask; local
208 mask = 254;
209 mask |= (mask << 8);
210 mask |= (mask << 16); /* 0xFEFEFEFE */
223 word1 &= mask;
224 word3 &= (~mask); /* 0x1010101, check last bit */
225 word12 &= mask;
235 word2 &= mask;
524 uint32 mask; local
871 uint32 mask; local
    [all...]

Completed in 37 milliseconds

12 3 4 5 6 7 8 91011>>