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

1 2 3 4 56 7 8 91011>>

  /external/skia/src/core/
SkBlitter_A8.cpp 100 #define solid_8_pixels(mask, dst) \
102 if (mask & 0x80) dst[0] = 0xFF; \
103 if (mask & 0x40) dst[1] = 0xFF; \
104 if (mask & 0x20) dst[2] = 0xFF; \
105 if (mask & 0x10) dst[3] = 0xFF; \
106 if (mask & 0x08) dst[4] = 0xFF; \
107 if (mask & 0x04) dst[5] = 0xFF; \
108 if (mask & 0x02) dst[6] = 0xFF; \
109 if (mask & 0x01) dst[7] = 0xFF; \
114 #define SK_BLITBWMASK_BLIT8(mask, dst) solid_8_pixels(mask, dst
    [all...]
SkRasterizer.cpp 28 SkMask* mask, SkMask::CreateMode mode)
48 return this->onRasterize(fillPath, matrix, clipBounds, mask, mode);
55 SkMask* mask, SkMask::CreateMode mode)
60 return SkDraw::DrawToMask(devPath, clipBounds, NULL, NULL, mask, mode);
  /external/e2fsprogs/intl/
explodename.c 60 int mask; local
73 mask = 0;
92 mask |= TERRITORY;
104 mask |= XPG_CODESET;
113 mask |= XPG_NORM_CODESET;
129 mask |= XPG_MODIFIER | CEN_AUDIENCE;
145 mask |= CEN_SPECIAL;
157 mask |= CEN_SPONSOR;
166 mask |= CEN_REVISION;
175 mask &= ~TERRITORY
    [all...]
l10nflist.c 172 int mask, const char *language, const char *territory,
194 + ((mask & TERRITORY) != 0
196 + ((mask & XPG_CODESET) != 0
198 + ((mask & XPG_NORM_CODESET) != 0
200 + (((mask & XPG_MODIFIER) != 0
201 || (mask & CEN_AUDIENCE) != 0)
203 + ((mask & CEN_SPECIAL) != 0
205 + (((mask & CEN_SPONSOR) != 0
206 || (mask & CEN_REVISION) != 0)
207 ? (1 + ((mask & CEN_SPONSOR) !=
    [all...]
  /external/iproute2/tc/
em_cmp.c 33 " ATTRS := [ layer LAYER ] [ mask MASK ] [ trans ]\n" \
36 "Example: cmp(u16 at 3 layer 2 mask 0xff00 gt 20)\n",
45 unsigned long offset = 0, layer = TCF_LAYER_NETWORK, mask = 0, value = 0; local
94 } else if (!bstrcmp(a, "mask")) {
99 mask = bstrtoul(a);
100 if (mask == ULONG_MAX)
101 return PARSE_ERR(a, "cmp: invalid mask");
131 cmp.mask = (__u32) mask;
    [all...]
f_u32.c 119 static int pack_key(struct tc_u32_sel *sel, __u32 key, __u32 mask,
125 key &= mask;
129 __u32 intersect = mask&sel->keys[i].mask;
134 sel->keys[i].mask |= mask;
144 sel->keys[hwm].mask = mask;
151 static int pack_key32(struct tc_u32_sel *sel, __u32 key, __u32 mask,
155 mask = htonl(mask)
235 __u32 mask; local
267 __u32 mask; local
298 __u32 mask; local
333 __u32 mask; local
394 __u32 mask = htonl(0xFFFFFFFF << (32 - (plen -i ))); local
735 __u16 mask; local
768 __u32 mask; local
    [all...]
  /bionic/libm/amd64/
fenv.c 116 __feenableexcept(int mask)
120 mask &= FE_ALL_EXCEPT;
124 control &= ~mask;
126 mxcsr &= ~(mask << _SSE_EMASK_SHIFT);
132 __fedisableexcept(int mask)
136 mask &= FE_ALL_EXCEPT;
140 control |= mask;
142 mxcsr |= mask << _SSE_EMASK_SHIFT;
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
OAEPParameterSpec.java 42 * <li>mask generation function (<i>mgf</i>) : <code>"MGF1"</code></li>
58 * <i>message digest</i> algorithm name, <i>mask generation function</i>
65 * the mask generation function algorithm name.
67 * the algorithm parameter specification for the mask generation
96 * Returns the algorithm name of the <i>mask generation function</i>.
98 * @return the algorithm name of the mask generation function.
105 * Returns the algorithm parameter specification for the mask generation
108 * @return the algorithm parameter specification for the mask generation
  /external/emma/core/res/com/vladium/emma/data/
merge_usage.res 49 '<debug trace class mask>',
50 "class mask for debug tracing";
  /external/iproute2/testsuite/tests/
dsmark.t 18 dsmark mask 0xff value 2
22 dsmark mask 0xfc value 4
  /external/iptables/extensions/
libipt_dccp.man 7 Match when the DCCP packet type is one of 'mask'. 'mask' is a comma-separated
  /external/webkit/WebCore/platform/
ScrollbarTheme.h 56 void invalidateParts(Scrollbar* scrollbar, ScrollbarControlPartMask mask)
58 if (mask & BackButtonStartPart)
60 if (mask & ForwardButtonStartPart)
62 if (mask & BackTrackPart)
64 if (mask & ThumbPart)
66 if (mask & ForwardTrackPart)
68 if (mask & BackButtonEndPart)
70 if (mask & ForwardButtonEndPart)
  /system/core/libnetutils/
ifc_utils.h 29 int ifc_set_mask(const char *name, unsigned mask);
33 int ifc_get_info(const char *name, unsigned *addr, unsigned *mask, unsigned *flags);
  /external/openssl/crypto/asn1/
a_strnid.c 73 /* This is the global mask for the mbstring functions: this is use to
74 * mask out certain types (such as BMPString and UTF8String) because
80 void ASN1_STRING_set_default_mask(unsigned long mask)
82 global_mask = mask;
92 * MASK:XXXX : a numerical mask value.
101 unsigned long mask; local
103 if(!strncmp(p, "MASK:", 5)) {
105 mask = strtoul(p + 5, &end, 0);
108 mask = ~((unsigned long)(B_ASN1_BMPSTRING|B_ASN1_UTF8STRING))
129 unsigned long mask; local
    [all...]
  /bionic/libc/kernel/common/linux/netfilter/
xt_CONNMARK.h 23 unsigned long mask; member in struct:xt_connmark_target_info
  /dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/params/
MGFParameters.java 6 * parameters for mask derivation functions.
  /external/e2fsprogs/lib/e2p/
e2p.h 36 const char *e2p_feature2string(int compat, unsigned int mask);
37 int e2p_string2feature(char *string, int *compat, unsigned int *mask);
50 const char *e2p_mntopt2string(unsigned int mask);
51 int e2p_string2mntopt(char *string, unsigned int *mask);
  /external/icu4c/layout/
OpenTypeTables.h 46 FeatureMask mask; member in struct:FeatureMap
  /external/kernel-headers/original/linux/netfilter/
xt_connmark.h 14 unsigned long mark, mask; member in struct:xt_connmark_info
  /external/qemu/
compatfd.h 24 int qemu_signalfd(const sigset_t *mask);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
test-properties.h 63 // each property indicated in the mask will be determined and returned
65 // the properties specifically requested in the mask, certain other
72 // is used to implement fst.Properties(mask, true).
74 uint64 ComputeProperties(const Fst<Arc> &fst, uint64 mask, uint64 *known,
86 if ((known_props & mask) == mask) {
103 if (mask & dfs_props) {
109 if (mask & ~(kBinaryProperties | dfs_props)) {
112 if (mask & (kIDeterministic | kNonIDeterministic))
114 if (mask & (kODeterministic | kNonODeterministic)
    [all...]
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_oaep_decode.c 39 unsigned char *DB, *seed, *mask; local
63 /* allocate ram for DB/mask/salt of size modulus_len */
65 mask = XMALLOC(modulus_len);
67 if (DB == NULL || mask == NULL || seed == NULL) {
71 if (mask != NULL) {
72 XFREE(mask);
104 if ((err = pkcs_1_mgf1(hash_idx, DB, modulus_len - hLen - 1, mask, hLen)) != CRYPT_OK) {
110 seed[y] ^= mask[y];
114 if ((err = pkcs_1_mgf1(hash_idx, seed, hLen, mask, modulus_len - hLen - 1)) != CRYPT_OK) {
120 DB[y] ^= mask[y];
    [all...]
pkcs_1_oaep_encode.c 40 unsigned char *DB, *seed, *mask; local
66 /* allocate ram for DB/mask/salt of size modulus_len */
68 mask = XMALLOC(modulus_len);
70 if (DB == NULL || mask == NULL || seed == NULL) {
74 if (mask != NULL) {
75 XFREE(mask);
117 if ((err = pkcs_1_mgf1(hash_idx, seed, hLen, mask, modulus_len - hLen - 1)) != CRYPT_OK) {
123 DB[y] ^= mask[y];
127 if ((err = pkcs_1_mgf1(hash_idx, DB, modulus_len - hLen - 1, mask, hLen)) != CRYPT_OK) {
133 seed[y] ^= mask[y]
    [all...]
  /external/skia/include/core/
SkRasterizer.h 32 /** Turn the path into a mask, respecting the specified local->device matrix.
36 SkMask* mask, SkMask::CreateMode mode);
44 SkMask* mask, SkMask::CreateMode mode);
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
dct.cpp 47 Int mask; local
59 mask = 0x1FE;
63 k1 = mask & (tmp << 1);
66 k2 = mask & (tmp >> 7);
69 k3 = mask & (tmp >> 15);
72 k4 = mask & (tmp >> 23);
77 k5 = mask & (tmp << 1);
80 k6 = mask & (tmp >> 7);
83 k7 = mask & (tmp >> 15);
86 tmp = mask & (tmp >> 23)
275 Int mask; local
481 Int mask; local
661 Int mask; local
871 Int mask; local
1058 Int mask; local
    [all...]

Completed in 92 milliseconds

1 2 3 4 56 7 8 91011>>