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

<<11121314151617181920>>

  /external/dhcpcd/
net.h 150 #define add_route(iface, dest, mask, gate, metric) \
151 if_route(iface, dest, mask, gate, metric, 1)
152 #define change_route(iface, dest, mask, gate, metric) \
153 if_route(iface, dest, mask, gate, metric, 0)
154 #define del_route(iface, dest, mask, gate, metric) \
155 if_route(iface, dest, mask, gate, metric, -1)
  /external/openssl/crypto/rsa/
rsa_oaep.c 31 int MGF1(unsigned char *mask, long len,
180 int PKCS1_MGF1(unsigned char *mask, long len,
202 EVP_DigestFinal_ex(&c, mask + outlen, NULL);
208 memcpy(mask + outlen, md, len - outlen);
216 int MGF1(unsigned char *mask, long len, const unsigned char *seed, long seedlen)
218 return PKCS1_MGF1(mask, len, seed, seedlen, EVP_sha1());
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_mouse.h 43 Uint8 *mask; /* B/W cursor mask */ member in struct:SDL_Cursor
71 * Create a cursor using the specified data and mask (in MSB format).
75 * data mask resulting pixel on screen
84 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
112 /* Used as a mask when testing buttons in buttonstate
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_pixels.c 41 Uint32 mask; local
55 if ( Rmask || Bmask || Gmask ) { /* Packed pixels with custom mask */
60 for ( mask = Rmask; !(mask&0x01); mask >>= 1 )
62 for ( ; (mask&0x01); mask >>= 1 )
68 for ( mask = Gmask; !(mask&0x01); mask >>= 1
    [all...]
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_mouse.h 43 Uint8 *mask; /* B/W cursor mask */ member in struct:SDL_Cursor
71 * Create a cursor using the specified data and mask (in MSB format).
75 * data mask resulting pixel on screen
84 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
112 /* Used as a mask when testing buttons in buttonstate
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_mouse.h 43 Uint8 *mask; /* B/W cursor mask */ member in struct:SDL_Cursor
71 * Create a cursor using the specified data and mask (in MSB format).
75 * data mask resulting pixel on screen
84 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
112 /* Used as a mask when testing buttons in buttonstate
  /prebuilt/windows/sdl/host/include/SDL/
SDL_mouse.h 47 Uint8 *mask; /* B/W cursor mask */ member in struct:SDL_Cursor
75 * Create a cursor using the specified data and mask (in MSB format).
79 * data mask resulting pixel on screen
88 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
116 /* Used as a mask when testing buttons in buttonstate
  /prebuilt/windows/sdl/include/SDL/
SDL_mouse.h 43 Uint8 *mask; /* B/W cursor mask */ member in struct:SDL_Cursor
71 * Create a cursor using the specified data and mask (in MSB format).
75 * data mask resulting pixel on screen
84 (Uint8 *data, Uint8 *mask, int w, int h, int hot_x, int hot_y);
112 /* Used as a mask when testing buttons in buttonstate
  /system/core/libnetutils/
dhcp_utils.c 65 in_addr_t *mask,
88 snprintf(prop_name, sizeof(prop_name), "%s.%s.mask", DHCP_PROP_NAME_PREFIX, interface);
90 *mask = addr.s_addr;
92 *mask = 0;
125 in_addr_t *mask,
168 fill_ip_info(interface, ipaddr, gateway, mask, dns1, dns2, server, lease);
  /external/tcpdump/
decnet.h 51 #define AREAMASK 0176000 /* mask for area field */
53 #define NODEMASK 01777 /* mask for node address field */
98 #define RMF_MASK 7 /* mask for message type */
108 #define RMF_PADMASK 0177 /* pad field mask */
110 #define VIS_MASK 077 /* visit field mask */
115 #define RMF_CTLMASK 017 /* mask for message type */
145 #define II_TYPEMASK 03 /* mask for node type */
258 #define NSP_TYPEMASK 014 /* mask to isolate type code */
259 #define NSP_SUBMASK 0160 /* mask to isolate subtype code */
287 #define SGQ_MASK 07777 /* mask to isolate seq # *
    [all...]
  /frameworks/base/libs/surfaceflinger/DisplayHardware/
DisplayHardwareBase.cpp 238 sigset_t mask; local
239 sigemptyset(&mask);
240 sigaddset(&mask, vm.relsig);
241 sigaddset(&mask, vm.acqsig);
242 sigprocmask(SIG_BLOCK, &mask, NULL);
280 sigset_t mask;
281 sigemptyset(&mask);
282 sigaddset(&mask, vm.relsig);
283 sigaddset(&mask, vm.acqsig);
284 sigprocmask(SIG_BLOCK, &mask, NULL)
    [all...]
  /sdk/emulator/sensors/
sensors_qemu.c 148 uint32_t mask, sensors, active, new_sensors, changed; local
160 mask = (1<<handle);
161 sensors = enabled ? mask : 0;
164 new_sensors = (active & ~mask) | (sensors & mask);
289 uint32_t mask = SUPPORTED_SENSORS; local
290 while (mask) {
291 uint32_t i = 31 - __builtin_clz(mask);
292 mask &= ~(1<<i);
498 int mask, nn, count local
    [all...]
  /external/icu4c/common/
ucnvsel.cpp 75 uint32_t mask; local
94 mask = 1 << (i%32);
108 upvec_setValue(upvec, start_char, end_char, column, ~0, mask,
665 // returns whether the mask has reduced to all zeros
675 // internal fn to count how many 1's are there in a mask
677 int16_t countOnes(uint32_t* mask, int32_t len) {
680 uint32_t ent = mask[i];
692 uint32_t *mask, UErrorCode *status) {
697 uprv_free(mask);
708 uprv_free(mask);
754 uint32_t* mask = (uint32_t*) uprv_malloc(columns * 4); local
794 uint32_t* mask = (uint32_t*) uprv_malloc(columns * 4); local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/shared/
aiutils.c 47 get_erom_ent(si_t *sih, uint32 *eromptr, uint32 mask, uint32 match)
56 if (mask == 0)
67 if ((ent & mask) == match)
324 * If the user has provided an interrupt mask enabled function,
475 * Switch to 'coreidx', issue a single arbitrary 32bit register mask&set operation,
484 ai_corereg(si_t *sih, uint coreidx, uint regoff, uint mask, uint val)
497 ASSERT((val & ~mask) == 0);
547 /* mask and set */
548 if (mask || val) {
549 w = (R_REG(sii->osh, r) & ~mask) | val
    [all...]
  /external/iptables/
iptables-save.c 38 /* This assumes that mask is contiguous, and byte-bounded. */
40 print_iface(char letter, const char *iface, const unsigned char *mask,
45 if (mask[0] == 0)
51 if (mask[i] != 0) {
56 * a few lines above we make sure that mask[0] != 0 */
141 /* print a given ip including mask if neccessary */
142 static void print_ip(char *prefix, u_int32_t ip, u_int32_t mask, int invert)
144 if (!mask && !ip && !invert)
152 if (mask != 0xffffffff)
153 printf("/%u.%u.%u.%u ", IP_PARTS(mask));
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Utilities.java 184 Bitmap mask = src.extractAlpha(sBlurPaint, xy); local
188 dest.drawBitmap(mask, px + xy[0], py + xy[1],
191 mask.recycle();
373 int mask = 0x8000000; local
374 while (mask != 0 && (n & mask) == 0) {
375 mask >>= 1;
377 while (mask != 0) {
378 n |= mask;
379 mask >>= 1
    [all...]
  /external/libpng/
png.c 80 /* Mask to determine which pixels are valid in a pass */
84 /* Mask to determine which pixels to overwrite while displaying */
340 int freer, png_uint_32 mask)
348 info_ptr->free_me |= mask;
350 info_ptr->free_me &= ~mask;
358 png_free_data(png_structp png_ptr, png_infop info_ptr, png_uint_32 mask,
369 if ((mask & PNG_FREE_TEXT) & info_ptr->free_me)
371 if (mask & PNG_FREE_TEXT)
397 if ((mask & PNG_FREE_TRNS) & info_ptr->free_me)
399 if ((mask & PNG_FREE_TRNS) && (png_ptr->flags & PNG_FLAG_FREE_TRNS)
    [all...]
  /external/kernel-headers/original/linux/
serial_reg.h 35 #define UART_IIR_ID 0x06 /* Mask for the interrupt ID */
68 #define UART_FCR_TRIGGER_MASK 0xC0 /* Mask for the FIFO trigger range */
69 #define UART_FCR_TRIGGER_1 0x00 /* Mask for trigger set at 1 */
70 #define UART_FCR_TRIGGER_4 0x40 /* Mask for trigger set at 4 */
71 #define UART_FCR_TRIGGER_8 0x80 /* Mask for trigger set at 8 */
72 #define UART_FCR_TRIGGER_14 0xC0 /* Mask for trigger set at 14 */
74 #define UART_FCR6_R_TRIGGER_8 0x00 /* Mask for receive trigger set at 1 */
75 #define UART_FCR6_R_TRIGGER_16 0x40 /* Mask for receive trigger set at 4 */
76 #define UART_FCR6_R_TRIGGER_24 0x80 /* Mask for receive trigger set at 8 */
77 #define UART_FCR6_R_TRIGGER_28 0xC0 /* Mask for receive trigger set at 14 *
    [all...]
  /external/webkit/WebKitTools/iExploder/htdocs/
cssproperties.in 60 -webkit-mask
61 -webkit-mask-attachment
62 -webkit-mask-box-image
63 -webkit-mask-clip
64 -webkit-mask-composite
65 -webkit-mask-image
66 -webkit-mask-origin
67 -webkit-mask-position
68 -webkit-mask-position-x
69 -webkit-mask-position-
    [all...]
  /dalvik/vm/
SignalCatcher.c 257 sigset_t mask; local
264 /* set up mask with signals we want to handle */
265 sigemptyset(&mask);
266 sigaddset(&mask, SIGQUIT);
267 sigaddset(&mask, SIGUSR1);
269 sigaddset(&mask, SIGUSR2);
287 cc = sigwait(&mask, &rcvd);
  /external/skia/include/core/
SkColorPriv.h 227 uint32_t mask = gMask_00FF00FF; local
228 // uint32_t mask = 0xFF00FF;
230 uint32_t rb = ((c & mask) * scale) >> 8;
231 uint32_t ag = ((c >> 8) & mask) * scale;
232 return (rb & mask) | (ag & ~mask);
493 const unsigned mask = 0xF0F; //gMask_0F0F; local
496 unsigned rb = ((c & mask) * scale) >> 4;
497 unsigned ag = ((c >> 4) & mask) * scale;
498 return (rb & mask) | (ag & ~mask)
512 const unsigned mask = 0xF0F; \/\/gMask_0F0F; local
524 const unsigned mask = 0xF0F; \/\/gMask_0F0F; local
    [all...]
  /frameworks/base/libs/utils/
String8.cpp 50 // Mask used to set appropriate bits in first byte of UTF-8 sequence,
53 // -> (00-7f) 7bit. Bit mask for the first byte is 0x00000000
55 // -> (c0-df)(80-bf) 11bit. Bit mask is 0x000000C0
57 // -> (e0-ef)(80-bf)(80-bf) 16bit. Bit mask is 0x000000E0
59 // -> (f0-f7)(80-bf)(80-bf)(80-bf) 21bit. Bit mask is 0x000000F0
714 int32_t mask, to_ignore_mask; local
717 for (num_to_read = 1, mask = 0x40, to_ignore_mask = 0x80;
718 num_to_read < 5 && (first_char & mask);
719 num_to_read++, to_ignore_mask |= mask, mask >>= 1)
758 int32_t mask; local
807 char32_t mask, to_ignore_mask; local
    [all...]
  /external/icu4c/test/cintltst/
cucdtst.c 535 uint32_t mask; local
620 mask=0;
621 mask=(mask&~U_GC_CN_MASK)|U_GC_CN_MASK;
623 mask=(mask&~U_GC_LU_MASK)|U_GC_LU_MASK;
624 mask=(mask&~U_GC_LL_MASK)|U_GC_LL_MASK;
625 mask=(mask&~U_GC_LT_MASK)|U_GC_LT_MASK
819 uint32_t mask; local
    [all...]
  /device/htc/dream-sapphire/libsensors/
sensors.c 224 static void enable_disable(int fd, uint32_t sensors, uint32_t mask)
229 if (mask & SENSORS_ORIENTATION) {
235 if (mask & SENSORS_ACCELERATION) {
241 if (mask & SENSORS_TEMPERATURE) {
247 if (mask & SENSORS_MAGNETIC_FIELD) {
303 uint32_t mask = (1<<handle); local
304 uint32_t sensors = enabled ? mask : 0;
307 uint32_t new_sensors = (active & ~mask) | (sensors & mask);
400 uint32_t mask = SUPPORTED_SENSORS local
    [all...]
  /external/openssl/crypto/asn1/
a_mbstr.c 76 * a mask of permissible ASN1 string types. It then works out the minimal
84 int inform, unsigned long mask)
86 return ASN1_mbstring_ncopy(out, in, len, inform, mask, 0, 0);
90 int inform, unsigned long mask,
103 if(!mask) mask = DIRSTRING_TYPE;
161 if(traverse_string(in, len, inform, type_str, &mask) < 0) {
169 if(mask & B_ASN1_PRINTABLESTRING) str_type = V_ASN1_PRINTABLESTRING;
170 else if(mask & B_ASN1_IA5STRING) str_type = V_ASN1_IA5STRING;
171 else if(mask & B_ASN1_T61STRING) str_type = V_ASN1_T61STRING
    [all...]

Completed in 470 milliseconds

<<11121314151617181920>>