HomeSort by relevance Sort by last modified time
    Searched defs:mask (Results 226 - 250 of 2821) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/crypto/
sha512-prf.c 97 * Mask out unused bits in the last octet if it does not use all the
101 u8 mask = 0xff << (8 - buf_len_bits % 8); local
102 buf[pos - 1] &= mask;
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct.h 36 const static unsigned char mask[8] = {0x7f, 0xbf, 0xdf, 0xef, 0xf7, 0xfb, 0xfd, 0xfe}; variable
  /frameworks/base/tools/aapt/
ResourceFilter.cpp 100 uint32_t mask = mDefault.diff(config); local
101 if ((mConfigMask & mask) == 0) {
141 return matchedAxis == (mConfigMask & mask);
  /frameworks/base/tools/aapt2/filter/
ConfigFilter.cpp 79 const uint32_t mask = ConfigDescription::DefaultConfig().diff(config); local
80 if ((config_mask_ & mask) == 0) {
120 return matched_axis == (config_mask_ & mask);
  /frameworks/rs/rsov/compiler/spirit/
word_stream_impl.cpp 37 uint32_t mask = 0xFF; local
39 for (int i = 0; i < 4; i++, mask <<= 8) {
41 lastWord &= ~mask;
43 clear = ((lastWord & mask) == 0);
  /frameworks/wilhelm/src/itf/
I3DGrouping.cpp 43 unsigned mask = 1 << id; local
52 assert(oldGroup->mMemberMask & mask);
53 oldGroup->mMemberMask &= ~mask;
62 assert(!(newGroup->mMemberMask & mask));
63 newGroup->mMemberMask |= mask;
111 unsigned mask = 1 << (InterfaceToIObject(thiz)->mInstanceID - 1); local
114 assert(group->mMemberMask & mask);
115 group->mMemberMask &= ~mask;
IMIDIMuteSolo.cpp 31 SLuint16 mask = 1 << channel; local
34 thiz->mChannelMuteMask |= mask;
36 thiz->mChannelMuteMask &= ~mask;
55 SLuint16 mask = thiz->mChannelMuteMask; local
57 *pMute = (mask >> channel) & 1;
74 SLuint16 mask = 1 << channel; local
77 thiz->mChannelSoloMask |= mask;
79 thiz->mChannelSoloMask &= ~mask;
98 SLuint16 mask = thiz->mChannelSoloMask; local
100 *pSolo = (mask >> channel) & 1
135 SLuint32 mask = 1 << track; local
159 SLuint32 mask = thiz->mTrackMuteMask; local
178 SLuint32 mask = 1 << track; interface_lock_exclusive(thiz); local
201 SLuint32 mask = thiz->mTrackSoloMask; local
    [all...]
IMuteSolo.cpp 41 SLuint8 mask = 1 << chan; local
44 ap->mMuteMask |= mask;
46 ap->mMuteMask &= ~mask;
81 SLuint8 mask = ap->mMuteMask; local
82 mute = (SLboolean) ((mask >> chan) & 1);
113 SLuint8 mask = 1 << chan; local
116 ap->mSoloMask |= mask;
118 ap->mSoloMask &= ~mask;
153 SLuint8 mask = ap->mSoloMask; local
154 solo = (SLboolean) ((mask >> chan) & 1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_connlimit.h 16 union nf_inet_addr mask; member in union:xt_connlimit_info::__anon62667
xt_connmark.h 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_act/
tc_nat.h 23 __be32 mask; member in struct:tc_nat
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/tc_ematch/
tc_em_cmp.h 9 __u32 mask; member in struct:tcf_em_cmp
  /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...]
  /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...]
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/
main4.c 51 sigset_t mask; local
54 if (sigemptyset(&mask) < 0) {
57 if (sigaddset(&mask, SIGSEGV) < 0) {
60 i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
78 sigset_t mask; local
143 if (sigemptyset(&mask) < 0) {
146 if (sigaddset(&mask, SIGIO) < 0) {
149 i = pthread_sigmask(SIG_BLOCK, &mask, NULL);
  /prebuilts/go/darwin-x86/src/math/
bits.go 12 mask = 0x7FF
38 // return uint32(x>>shift)&mask == mask && x != uvinf && x != uvneginf
11 mask = 0x7FF const
  /prebuilts/go/darwin-x86/src/math/rand/
gen_cooked.go 19 mask = (1 << 63) - 1
86 rngVec[i] &= mask
18 mask = (1 << 63) - 1 const
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_sigaction.c 22 uint64_t mask; member in struct:__anon66638
50 for (i = 0; i < 8 * sizeof(goact->mask); i++) {
51 if (goact->mask & ((uint64_t)(1)<<i)) {
71 oldgoact->mask = 0;
72 for (i = 0; i < 8 * sizeof(oldgoact->mask); i++) {
74 oldgoact->mask |= (uint64_t)(1)<<i;
  /prebuilts/go/linux-x86/misc/cgo/testcshared/
main4.c 51 sigset_t mask; local
54 if (sigemptyset(&mask) < 0) {
57 if (sigaddset(&mask, SIGSEGV) < 0) {
60 i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
78 sigset_t mask; local
143 if (sigemptyset(&mask) < 0) {
146 if (sigaddset(&mask, SIGIO) < 0) {
149 i = pthread_sigmask(SIG_BLOCK, &mask, NULL);
  /prebuilts/go/linux-x86/src/math/
bits.go 12 mask = 0x7FF
38 // return uint32(x>>shift)&mask == mask && x != uvinf && x != uvneginf
11 mask = 0x7FF const
  /prebuilts/go/linux-x86/src/math/rand/
gen_cooked.go 19 mask = (1 << 63) - 1
86 rngVec[i] &= mask
18 mask = (1 << 63) - 1 const
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_sigaction.c 22 uint64_t mask; member in struct:__anon66648
50 for (i = 0; i < 8 * sizeof(goact->mask); i++) {
51 if (goact->mask & ((uint64_t)(1)<<i)) {
71 oldgoact->mask = 0;
72 for (i = 0; i < 8 * sizeof(oldgoact->mask); i++) {
74 oldgoact->mask |= (uint64_t)(1)<<i;
  /cts/tests/tests/bluetooth/src/android/bluetooth/cts/
ScanFilterTest.java 111 ParcelUuid mask = ParcelUuid.fromString("FFFFFFF0-FFFF-FFFF-FFFF-FFFFFFFFFFFF"); local
114 mask)
116 assertEquals(mask.toString(), filter.getServiceUuidMask().toString());
142 byte[] mask = new byte[] {
144 filter = mFilterBuilder.setServiceData(serviceDataUuid, nonMatchData, mask).build();
146 assertEquals(mask, filter.getServiceDataMask());
175 // Test data mask
180 byte[] mask = new byte[] {
183 filter = mFilterBuilder.setManufacturerData(manufacturerId, nonMatchData, mask).build();
186 assertEquals(mask, filter.getManufacturerDataMask())
    [all...]

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>