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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
pause.cpp 37 kernel_sigset_t mask; local
38 if (__rt_sigprocmask(SIG_SETMASK, NULL, &mask, sizeof(mask)) == -1) {
41 return __rt_sigsuspend(&mask, sizeof(mask));
  /external/libpcap/Win32/Src/
ffs.c 44 ffs(mask)
45 register int mask;
49 if (mask == 0)
51 for (bit = 1; !(mask & 1); bit++)
52 mask >>= 1;
  /external/clang/test/CodeGen/
2003-08-21-StmtExpr.c 10 bar(({ structty mask; mask; }));
  /external/chromium_org/third_party/mesa/src/src/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...]
  /external/mesa3d/src/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...]
  /bionic/libc/kernel/uapi/linux/
kernel.h 24 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
ioprio.h 25 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
26 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
29 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
  /development/ndk/platforms/android-L/include/linux/
kernel.h 24 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
ioprio.h 25 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
26 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
29 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
  /external/kernel-headers/original/uapi/linux/
kernel.h 10 #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
ioprio.h 11 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
12 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
15 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
  /development/ndk/platforms/android-3/include/linux/
ioprio.h 21 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
22 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
25 #define ioprio_valid(mask) (IOPRIO_PRIO_CLASS((mask)) != IOPRIO_CLASS_NONE)
  /development/ndk/platforms/android-9/arch-x86/include/asm/
mpspec_32.h 29 unsigned long mask[PHYSID_ARRAY_SIZE]; member in struct:physid_mask
32 #define physid_set(physid, map) set_bit(physid, (map).mask)
34 #define physid_clear(physid, map) clear_bit(physid, (map).mask)
35 #define physid_isset(physid, map) test_bit(physid, (map).mask)
36 #define physid_test_and_set(physid, map) test_and_set_bit(physid, (map).mask)
37 #define physids_and(dst, src1, src2) bitmap_and((dst).mask, (src1).mask, (src2).mask, MAX_APICS)
39 #define physids_or(dst, src1, src2) bitmap_or((dst).mask, (src1).mask, (src2).mask, MAX_APICS
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
standard.h 20 #define bis(target,mask) ((target) |= (mask))
21 #define bic(target,mask) ((target) &= ~(mask))
22 #define bit(target,mask) ((target) & (mask))
  /external/lldb/include/lldb/Core/
Flags.h 38 /// Constructs this object with \a mask as the initial value for all
41 /// @param[in] mask
109 /// @param[in] mask
113 /// The new flags after clearing all bits from \a mask.
116 Clear (ValueType mask = ~(ValueType)0)
118 m_flags &= ~mask;
124 /// Set one or more flags by logical OR'ing \a mask with the current
127 /// @param[in] mask
131 /// The new flags after setting all bits from \a mask.
134 Set (ValueType mask)
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkEmbossMask.h 17 static void Emboss(SkMask* mask, const SkEmbossMaskFilter::Light&);
  /external/chromium_org/third_party/skia/src/core/
SkBitmapProcState_filter.h 29 const uint32_t mask = 0xFF00FF; local
32 uint32_t lo = (a00 & mask) * scale;
33 uint32_t hi = ((a00 >> 8) & mask) * scale;
36 lo += (a01 & mask) * scale;
37 hi += ((a01 >> 8) & mask) * scale;
40 lo += (a10 & mask) * scale;
41 hi += ((a10 >> 8) & mask) * scale;
43 lo += (a11 & mask) * xy;
44 hi += ((a11 >> 8) & mask) * xy;
46 *dstColor = ((lo >> 8) & mask) | (hi & ~mask)
59 const uint32_t mask = 0xFF00FF; local
89 const uint32_t mask = 0xFF00FF; local
111 const uint32_t mask = 0xFF00FF; local
    [all...]
  /external/chromium_org/third_party/smhasher/src/
Platform.cpp 29 cpu_set_t mask; local
31 CPU_ZERO(&mask);
33 CPU_SET(2,&mask);
35 if( sched_setaffinity(0,sizeof(mask),&mask) == -1)
  /external/lldb/tools/debugserver/source/
PThreadEvent.cpp 40 uint32_t mask = 1; local
41 while (mask & m_validBits)
42 mask <<= 1;
43 m_validBits |= mask;
44 return mask;
48 PThreadEvent::FreeEventBits(const uint32_t mask)
50 // DNBLogThreadedIf(LOG_EVENTS, "%p PThreadEvent::%s (0x%8.8x)", this, __FUNCTION__, mask);
51 if (mask)
54 m_bits &= ~mask;
55 m_validBits &= ~mask;
    [all...]
  /external/openfst/src/include/fst/extensions/ngram/
nthbit.h 28 uint32 mask = -(r > c); local
29 r -= c & mask;
30 shift += (32 & mask);
33 mask = -(r > c);
34 r -= c & mask;
35 shift += (16 & mask);
38 mask = -(r > c);
39 r -= c & mask;
40 shift += (8 & mask);
  /device/samsung/manta/libsensors/iio/
events.h 94 #define IIO_EVENT_CODE_EXTRACT_TYPE(mask) ((mask >> 56) & 0xFF)
96 #define IIO_EVENT_CODE_EXTRACT_DIR(mask) ((mask >> 48) & 0xCF)
98 #define IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(mask) ((mask >> 32) & 0xFF)
102 #define IIO_EVENT_CODE_EXTRACT_CHAN(mask) ((__s16)(mask & 0xFFFF))
103 #define IIO_EVENT_CODE_EXTRACT_CHAN2(mask) ((__s16)(((mask) >> 16) & 0xFFFF)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_clip_tmp.h 65 GLuint mask; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
71 mask |= (((cw < cz) << CLIP_FAR_SHIFT));
72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT));
75 GLubyte mask = 0; local
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT
145 GLuint mask; local
155 GLubyte mask = 0; local
196 GLubyte mask = 0; local
232 GLubyte mask = 0; local
    [all...]
  /external/mesa3d/src/mesa/math/
m_clip_tmp.h 65 GLuint mask; local
66 mask = (((cw < cx) << CLIP_RIGHT_SHIFT));
67 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT));
68 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
69 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
71 mask |= (((cw < cz) << CLIP_FAR_SHIFT));
72 mask |= (((cw < -cz) << CLIP_NEAR_SHIFT));
75 GLubyte mask = 0; local
76 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT;
77 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT
145 GLuint mask; local
155 GLubyte mask = 0; local
196 GLubyte mask = 0; local
232 GLubyte mask = 0; local
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_mark.h 24 __u32 mark, mask; member in struct:xt_mark_tginfo2
27 __u32 mark, mask; member in struct:xt_mark_mtinfo1
  /development/ndk/platforms/android-L/include/linux/netfilter/
xt_mark.h 24 __u32 mark, mask; member in struct:xt_mark_tginfo2
27 __u32 mark, mask; member in struct:xt_mark_mtinfo1

Completed in 1798 milliseconds

1 2 3 4 5 6 7 8 91011>>