/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
get_pred_adv_b_add.cpp | 194 uint32 mask; local 207 mask = 254; 208 mask |= (mask << 8); 209 mask |= (mask << 16); /* 0xFEFEFEFE */ 222 word1 &= mask; 223 word3 &= (~mask); /* 0x1010101, check last bit */ 224 word12 &= mask; 234 word2 &= mask; 523 uint32 mask; local 870 uint32 mask; local [all...] |
/external/skia/src/core/ |
SkBlitBWMaskTemplate.h | 27 SK_BLITBWMASK_NAME name of function(const SkBitmap& bitmap, const SkMask& mask, const SkIRect& clip, SK_BLITBWMASK_ARGS) 58 U8CPU mask = *bits++; local 59 SK_BLITBWMASK_BLIT8(mask, dst); 76 // check for empty right mask, so we don't read off the end (or go slower than we need to) 97 U8CPU mask = *bits & left_mask; local 98 SK_BLITBWMASK_BLIT8(mask, device); 109 U8CPU mask; local 111 mask = *b++ & left_mask; 112 SK_BLITBWMASK_BLIT8(mask, dst); 117 mask = *b++ [all...] |
SkBlitter_ARGB32.cpp | 27 uint32_t* adjustForSubpixelClip(const SkMask& mask, 108 #define solid_8_pixels(mask, dst, color) \ 110 if (mask & 0x80) dst[0] = color; \ 111 if (mask & 0x40) dst[1] = color; \ 112 if (mask & 0x20) dst[2] = color; \ 113 if (mask & 0x10) dst[3] = color; \ 114 if (mask & 0x08) dst[4] = color; \ 115 if (mask & 0x04) dst[5] = color; \ 116 if (mask & 0x02) dst[6] = color; \ 117 if (mask & 0x01) dst[7] = color; [all...] |
SkBitmapProcState_filter.h | 114 uint32_t mask = gMask_00FF00FF; //0xFF00FF; local 117 uint32_t lo = (a00 & mask) * scale; 118 uint32_t hi = ((a00 >> 8) & mask) * scale; 121 lo += (a01 & mask) * scale; 122 hi += ((a01 >> 8) & mask) * scale; 125 lo += (a10 & mask) * scale; 126 hi += ((a10 >> 8) & mask) * scale; 128 lo += (a11 & mask) * xy; 129 hi += ((a11 >> 8) & mask) * xy; 131 *dstColor = ((lo >> 8) & mask) | (hi & ~mask) 144 uint32_t mask = gMask_00FF00FF; \/\/0xFF00FF; local [all...] |
/external/qemu/ |
compatfd.c | 22 sigset_t mask; member in struct:sigfd_compat_info 38 err = sigwaitinfo(&info->mask, &siginfo); 70 static int qemu_signalfd_compat(const sigset_t *mask) 88 memcpy(&info->mask, mask, sizeof(*mask)); 101 int qemu_signalfd(const sigset_t *mask) 106 ret = syscall(SYS_signalfd, -1, mask, _NSIG / 8); 111 return qemu_signalfd_compat(mask);
|
/frameworks/base/graphics/java/android/graphics/ |
BlurMaskFilter.java | 20 * This takes a mask, and blurs its edge by the specified radius. Whether or 21 * or not to include the original mask, and whether the blur goes outside, 22 * inside, or straddles, the original mask's border, is controlled by the 29 SOLID(1), //!< include the original mask, blur outside 42 * @param radius The radius to extend the blur from the original mask. Must be > 0.
|
/system/core/nexus/ |
WifiNetwork.cpp | 187 uint32_t mask; local 217 if (WifiNetwork::parseKeyManagementMask(buffer, &mask)) { 220 mKeyManagement = mask; 226 if (WifiNetwork::parseProtocolsMask(buffer, &mask)) { 229 mProtocols = mask; 235 if (WifiNetwork::parseAuthAlgorithmsMask(buffer, &mask)) { 238 mAuthAlgorithms = mask; 244 if (WifiNetwork::parsePairwiseCiphersMask(buffer, &mask)) { 247 mPairwiseCiphers = mask; 253 if (WifiNetwork::parseGroupCiphersMask(buffer, &mask)) { 802 uint32_t mask; local 834 uint32_t mask; local 876 uint32_t mask; local 911 uint32_t mask; local 953 uint32_t mask; local [all...] |
/external/iproute2/tc/ |
f_rsvp.c | 34 fprintf(stderr, " u{8|16|32} NUMBER mask MASK at OFFSET}\n"); 59 pi->mask = htonl(0xFFFF0000); 63 pi->mask = htonl(0x0000FFFF); 75 if (pi->mask || argc <= 0) 84 pi->mask = htonl(0xFFFFFFFF); 96 pi->mask = htonl(0xFFFFFFFF); 109 pi->mask = htonl(0x000FFFFF); 110 pi->key = htonl(flabel) & pi->mask; 118 __u32 mask = 0xff local [all...] |
f_tcindex.c | 20 fprintf(stderr," Usage: ... tcindex [ hash SIZE ] [ mask MASK ]" 60 else if (!strcmp(*argv,"mask")) { 61 __u16 mask; local 64 mask = strtoul(*argv,&end,0); 69 addattr_l(n,4096,TCA_TCINDEX_MASK,&mask,sizeof(mask)); 145 __u16 mask; local 147 if (RTA_PAYLOAD(tb[TCA_TCINDEX_MASK]) < sizeof(mask)) 149 mask = *(__u16 *) RTA_DATA(tb[TCA_TCINDEX_MASK]) [all...] |
em_u32.c | 30 "Usage: u32(ALIGN VALUE MASK at [ nexthdr+ ] OFFSET)\n" \ 41 unsigned long key, mask, offmask = 0, offset; local 71 return PARSE_ERR(a, "u32: missing mask"); 73 mask = bstrtoul(a); 74 if (mask == ULONG_MAX) 75 return PARSE_ERR(a, "u32: invalid mask, must be numeric"); 109 if (mask > 0xFF) 110 return PARSE_ERR(a, "Illegal mask (>0xFF)"); 113 mask <<= 24 - ((offset & 3) * 8); 120 if (mask > 0xFFFF [all...] |
/external/skia/src/effects/ |
SkLayerRasterizer.cpp | 84 SkMask mask; local 86 &mask, SkMask::kJustComputeBounds_CreateMode)) 89 bounds->join(mask.fBounds); 96 SkMask* mask, SkMask::CreateMode mode) 103 if (!compute_bounds(fLayers, path, matrix, clipBounds, &mask->fBounds)) 109 mask->fFormat = SkMask::kA8_Format; 110 mask->fRowBytes = mask->fBounds.width(); 111 size_t size = mask->computeImageSize(); 115 mask->fImage = SkMask::AllocImage(size) [all...] |
/external/skia/src/images/ |
SkImageDecoder_wbmp.cpp | 84 unsigned mask = *src++; local 85 dst[0] = (mask >> 7) & 1; 86 dst[1] = (mask >> 6) & 1; 87 dst[2] = (mask >> 5) & 1; 88 dst[3] = (mask >> 4) & 1; 89 dst[4] = (mask >> 3) & 1; 90 dst[5] = (mask >> 2) & 1; 91 dst[6] = (mask >> 1) & 1; 92 dst[7] = (mask >> 0) & 1; 98 unsigned mask = *src local [all...] |
/bionic/libc/kernel/common/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/external/stlport/stlport/stl/ |
_ctype.h | 41 enum mask { enum in class:ctype_base 77 explicit ctype(const mask* __tab = 0, bool __del = false, size_t __refs = 0); 78 bool is(mask __m, char __c) const 81 const char* is(const char* __low, const char* __high, mask* __vec) const { 88 const char* scan_is(mask __m, const char* __low, const char* __high) const; 89 const char* scan_not(mask __m, const char* __low, const char* __high) const; 118 const mask* table() const _STLP_NOTHROW { return _M_ctype_table; } 119 static const mask* _STLP_CALL classic_table() _STLP_NOTHROW; 135 mask __m; 136 _Is_mask(mask __x): __m(__x) { [all...] |
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
jbd.h | 97 #define JFS_HAS_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask)))) 98 #define JFS_HAS_RO_COMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask)))) 99 #define JFS_HAS_INCOMPAT_FEATURE(j,mask) ((j)->j_format_version >= 2 && ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))
|
/external/iptables/include/linux/netfilter_ipv4/ |
ipt_2connmark.h | 15 unsigned long long mark, mask; member in struct:ipt_connmark_info 17 unsigned long mark, mask;
|
ipt_CONNMARK.h | 22 unsigned long long mask; member in struct:ipt_connmark_target_info 25 unsigned long mask;
|
/external/freetype/src/pshinter/ |
pshrec.c | 122 /* destroy mask */ 124 ps_mask_done( PS_Mask mask, 127 FT_FREE( mask->bytes ); 128 mask->num_bits = 0; 129 mask->max_bits = 0; 130 mask->end_point = 0; 134 /* ensure that a mask can contain "count" bits */ 136 ps_mask_ensure( PS_Mask mask, 140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3; 148 if ( !FT_RENEW_ARRAY( mask->bytes, old_max, new_max ) 219 PS_Mask mask = table->masks; local 260 PS_Mask mask = 0; local 292 PS_Mask mask; local 320 PS_Mask mask; local 586 PS_Mask mask; local 604 PS_Mask mask; local 670 PS_Mask mask; local [all...] |
/bionic/libc/arch-arm/bionic/ |
strlen.c | 69 "sub %[t], %[v], %[mask], lsr #7\n" 70 "and %[t], %[t], %[mask] \n" 75 "sub %[t], %[v], %[mask], lsr #7\n" 76 "and %[t], %[t], %[mask] \n" 80 "sub %[t], %[v], %[mask], lsr #7\n" 81 "and %[t], %[t], %[mask] \n" 85 "sub %[t], %[v], %[mask], lsr #7\n" 86 "and %[t], %[t], %[mask] \n" 90 "sub %[t], %[v], %[mask], lsr #7\n" 91 "and %[t], %[t], %[mask] \n [all...] |
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
pkcs_1_pss_decode.c | 37 unsigned char *DB, *mask, *salt, *hash; local 62 /* allocate ram for DB/mask/salt/hash of size modulus_len */ 64 mask = XMALLOC(modulus_len); 67 if (DB == NULL || mask == NULL || salt == NULL || hash == NULL) { 71 if (mask != NULL) { 72 XFREE(mask); 104 /* generate mask of length modulus_len - hLen - 1 from hash */ 105 if ((err = pkcs_1_mgf1(hash_idx, hash, hLen, mask, modulus_len - hLen - 1)) != CRYPT_OK) { 111 DB[y] ^= mask[y]; 133 /* M = (eight) 0x00 || msghash || salt, mask = H(M) * [all...] |