HomeSort by relevance Sort by last modified time
    Searched refs:mask (Results 251 - 275 of 2335) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.12/src/video/vgl/
SDL_vglmouse_c.h 29 Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
  /external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_syswm_c.h 30 extern void WIN_SetWMIcon(_THIS, SDL_Surface *icon, Uint8 *mask);
  /external/skia/include/core/
SkRasterizer.h 25 /** Turn the path into a mask, respecting the specified local->device matrix.
29 SkMask* mask, SkMask::CreateMode mode);
37 SkMask* mask, SkMask::CreateMode mode);
  /external/skia/samplecode/
SampleAAClip2.cpp 25 SkMask mask; local
28 clip.copyToMask(&mask);
29 SkAutoMaskFreeImage amfi(mask.fImage);
31 bm.setConfig(SkBitmap::kA8_Config, mask.fBounds.width(),
32 mask.fBounds.height(), mask.fRowBytes);
33 bm.setPixels(mask.fImage);
37 SK_Scalar1 * mask.fBounds.fLeft,
38 SK_Scalar1 * mask.fBounds.fTop,
44 SkMask mask; local
    [all...]
  /frameworks/wilhelm/src/itf/
I3DGrouping.c 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;
  /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...]
  /external/openssl/crypto/asn1/
a_strnid.c 72 /* This is the global mask for the mbstring functions: this is use to
73 * mask out certain types (such as BMPString and UTF8String) because
79 void ASN1_STRING_set_default_mask(unsigned long mask)
81 global_mask = mask;
91 * MASK:XXXX : a numerical mask value.
100 unsigned long mask; local
102 if(!strncmp(p, "MASK:", 5)) {
104 mask = strtoul(p + 5, &end, 0);
107 mask = ~((unsigned long)(B_ASN1_BMPSTRING|B_ASN1_UTF8STRING))
128 unsigned long mask; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
dec_alg_codebook.cpp 87 #define NB_POS 16 /* pos in track, mask for sign bit */
121 int32 mask, i; local
123 mask = ((1 << N) - 1);
127 pos1 = ((index & mask) + offset);
148 int32 mask, i; local
150 mask = (int32)(sub_int16(shl_int16(1, N), 1)); /* mask = ((1<<N)-1); */
154 /* pos1 = (((index >> N) & mask) + offset); */
155 pos1 = (int16)(add_int32((shr_int32(index, N) & mask), (int32)(offset)));
158 pos2 = add_int16((int16)(index & mask), offset); /* pos2 = ((index & mask) + offset); *
195 int32 mask, idx; local
232 int32 mask, idx; local
    [all...]
  /system/core/sh/
miscbltin.c 217 int mask; local
226 mask = umask(0);
227 umask(mask);
235 if ((mask & S_IRUSR) == 0)
237 if ((mask & S_IWUSR) == 0)
239 if ((mask & S_IXUSR) == 0)
244 if ((mask & S_IRGRP) == 0)
246 if ((mask & S_IWGRP) == 0)
248 if ((mask & S_IXGRP) == 0)
253 if ((mask & S_IROTH) == 0
    [all...]
  /external/iproute2/tc/
f_rsvp.c 34 fprintf(stderr, " u{8|16|32} NUMBER mask MASK at OFFSET}\n");
57 pi->mask = htonl(0xFFFF0000);
61 pi->mask = htonl(0x0000FFFF);
73 if (pi->mask || argc <= 0)
82 pi->mask = htonl(0xFFFFFFFF);
94 pi->mask = htonl(0xFFFFFFFF);
107 pi->mask = htonl(0x000FFFFF);
108 pi->key = htonl(flabel) & pi->mask;
116 __u32 mask = 0xff local
    [all...]
  /external/opencv/cv/src/
cvaccum.cpp 154 name,( const srctype *src, int srcstep, const uchar* mask, int maskstep,\
156 (src, srcstep, mask, maskstep, dst, dststep, size )) \
162 dst += dststep, mask += maskstep ) \
167 if( mask[x] ) \
169 if( mask[x+1] ) \
174 if( mask[x] ) \
191 const uchar* mask, int maskstep, dsttype *dst, int dststep, CvSize size ),\
192 (src1, step1, src2, step2, mask, maskstep, dst, dststep, size )) \
199 dst += dststep, mask += maskstep ) \
204 if( mask[x] )
397 CvMat maskstub, *mask = (CvMat*)maskarr; local
499 CvMat maskstub, *mask = (CvMat*)maskarr; local
597 CvMat maskstub, *mask = (CvMat*)maskarr; local
707 CvMat maskstub, *mask = (CvMat*)maskarr; local
    [all...]
  /external/opencv/cxcore/src/
cxmean.cpp 52 if( mask[x] ) \
54 if( mask[x+1] ) \
59 if( mask[x] ) \
65 if( mask[x] ) \
75 if( mask[x] ) \
86 if( mask[x] ) \
99 if( mask[x] ) \
101 if( mask[x+1] ) \
106 if( mask[x] ) \
243 const uchar* mask, int maskstep,
414 CvMat stub, maskstub, *mat = (CvMat*)img, *mask = (CvMat*)maskarr; local
    [all...]
  /external/libsepol/src/
nodes.c 40 memcpy(&tmp_node->u.node.mask, mask_buf, mask_bsize);
44 memcpy(tmp_node->u.node6.mask, mask_buf, mask_bsize);
107 (const char *)&node->u.node.mask,
119 (const char *)&node->u.node6.mask,
179 const char *addr, *mask; local
180 sepol_node_key_unpack(key, &addr, &mask, &proto);
189 unsigned int *mask2 = &c->u.node.mask;
192 !memcmp(mask, mask2, 4)) {
205 unsigned int *mask2 = c->u.node6.mask;
208 !memcmp(mask, mask2, 16))
239 const char *addr, *mask; local
305 const char *addr, *mask; local
    [all...]
  /bionic/libc/netbsd/resolv/
res_private.h 13 } addr, mask; member in struct:__res_state_ext::sort_list
  /bionic/libc/unistd/
system.c 45 sigset_t mask, omask; local
54 sigemptyset(&mask);
55 sigaddset(&mask, SIGCHLD);
56 sigprocmask(SIG_BLOCK, &mask, &omask);
  /external/dropbear/libtomcrypt/src/mac/omac/
omac_init.c 31 int err, x, y, mask, msb, len; local
49 case 8: mask = 0x1B;
52 case 16: mask = 0x87;
72 /* if msb(L * u^(x+1)) = 0 then just shift, otherwise shift and xor constant mask */
79 omac->Lu[x][len - 1] = ((omac->Lu[x][len - 1] << 1) ^ (msb ? mask : 0)) & 255;
  /external/iproute2/include/linux/tc_act/
tc_nat.h 23 __be32 mask; member in struct:tc_nat
  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 9 __u32 mask; member in struct:tcf_em_cmp
  /external/iproute2/testsuite/tests/
dsmark.t 18 dsmark mask 0xff value 2
22 dsmark mask 0xfc value 4
  /external/iptables/include/linux/netfilter/
xt_connmark.h 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
  /external/qemu/distrib/sdl-1.2.12/src/thread/beos/
SDL_systhread.c 42 sigset_t mask; local
45 sigemptyset(&mask);
47 sigaddset(&mask, sig_list[i]);
49 sigprocmask(SIG_BLOCK, &mask, omask);
77 /* Mask asynchronous signals for this thread */
  /external/qemu/distrib/sdl-1.2.12/src/thread/pth/
SDL_systhread.c 37 /* List of signals to mask in the subthreads */
74 sigset_t mask; local
77 /* Mask asynchronous signals for this thread */
78 sigemptyset(&mask);
80 sigaddset(&mask, sig_list[i]);
82 pth_sigmask(SIG_BLOCK, &mask, 0);
  /external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
SDL_systhread.c 31 /* List of signals to mask in the subthreads */
82 sigset_t mask; local
84 /* Mask asynchronous signals for this thread */
85 sigemptyset(&mask);
87 sigaddset(&mask, sig_list[i]);
89 pthread_sigmask(SIG_BLOCK, &mask, 0);
  /external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
SDL_systhread.c 61 /* List of signals to mask in the subthreads */
108 sigset_t mask; local
110 /* Mask asynchronous signals for this thread */
111 sigemptyset(&mask);
113 sigaddset(&mask, sig_list[i]);
115 pthread_sigmask(SIG_BLOCK, &mask, 0);
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxwm.c 36 void CGX_SetIcon(_THIS, SDL_Surface *icon, Uint8 *mask)

Completed in 1247 milliseconds

<<11121314151617181920>>