/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/sys/ |
endian.h | 58 (__uint16_t)((__swap16gen_x & 0xff) << 8 | \ 65 (__uint32_t)((__swap32gen_x & 0xff) << 24 | \ 74 (__uint64_t)((__swap64gen_x & 0xff) << 56 | \ 88 (__uint16_t)(((__uint16_t)(x) & 0xff) << 8 | ((__uint16_t)(x) & 0xff00) >> 8) 91 (__uint32_t)(((__uint32_t)(x) & 0xff) << 24 | \ 96 (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \
|
/external/qemu/target-arm/ |
op_helper.c | 57 index = (ireg >> shift) & 0xff; 59 tmp = (table[index >> 3] >> ((index & 7) << 3)) & 0xff; 62 val |= def & (0xff << shift); 391 int shift = i & 0xff; 399 int shift = i & 0xff; 407 int shift = i & 0xff; 415 int shift = i & 0xff; 423 int shift = i & 0xff; 439 int shift = i & 0xff; 455 int shift = i & 0xff; [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
XKBstr.h | 33 #define XkbCharToInt(v) ((v)&0x80?(int)((v)|(~0xff)):(int)((v)&0x7f)) 34 #define XkbIntTo2Chars(i,h,l) (((h)=((i>>8)&0xff)),((l)=((i)&0xff))) 125 (((a)->vmods1=(((v)>>8)&0xff)),(a)->vmods2=((v)&0xff)) 173 #define XkbSASetPtrDfltValue(a,c) ((a)->valueXXX= ((c)&0xff)) 181 #define XkbSASetScreen(a,s) ((a)->screenXXX= ((s)&0xff)) 191 #define XkbActionSetCtrls(a,c) (((a)->ctrls3=(((c)>>24)&0xff)),\ 192 ((a)->ctrls2=(((c)>>16)&0xff)),\ 193 ((a)->ctrls1=(((c)>>8)&0xff)),\ [all...] |
/packages/apps/Email/src/org/apache/james/mime4j/codec/ |
EncoderUtil.java | 364 int data = (bytes[idx] & 0xff) << 16 | (bytes[idx + 1] & 0xff) << 8 365 | bytes[idx + 2] & 0xff; 373 int data = (bytes[idx] & 0xff) << 16 | (bytes[idx + 1] & 0xff) << 8; 380 int data = (bytes[idx] & 0xff) << 16; 409 int v = bytes[idx] & 0xff; 571 int v = bytes[idx] & 0xff; 598 if (ch > 0xff) { 617 int v = bytes[i] & 0xff; [all...] |
/external/qemu/hw/ |
smc91c111.c | 246 #define SET_HIGH(name, val) s->name = (s->name & 0xff) | (val << 8) 433 return s->tcr & 0xff; 441 return s->rcr & 0xff; 470 return s->cr & 0xff; 479 return s->gpr & 0xff; 483 return s->ctr & 0xff; 508 return s->ptr & 0xff; 564 smc91c111_writeb(opaque, offset, value & 0xff); 641 *(p++) = status & 0xff; 643 *(p++) = packetsize & 0xff; [all...] |
/frameworks/base/media/libstagefright/foundation/ |
AMessage.cpp | 254 return isprint(what & 0xff) 255 && isprint((what >> 8) & 0xff) 256 && isprint((what >> 16) & 0xff) 257 && isprint((what >> 24) & 0xff); 268 (char)((mWhat >> 16) & 0xff), 269 (char)((mWhat >> 8) & 0xff), 270 (char)(mWhat & 0xff));
|
/hardware/broadcom/wlan/bcm4329/src/include/ |
bcmutils.h | 459 #define CRC8_INIT_VALUE 0xff 496 a[0] = (v >> 24) & 0xff; 497 a[1] = (v >> 16) & 0xff; 498 a[2] = (v >> 8) & 0xff; 499 a[3] = v & 0xff; 511 a[0] = (v >> 8) & 0xff; 512 a[1] = v & 0xff; 526 a[3] = (v >> 24) & 0xff; 527 a[2] = (v >> 16) & 0xff; 528 a[1] = (v >> 8) & 0xff; [all...] |
/external/wpa_supplicant/ |
aes.c | [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
aes.c | [all...] |
/external/tcpdump/ |
print-bgp.c | 443 ((0xff00 >> (plen % 8)) & 0xff); 482 ((0xff00 >> (plen % 8)) & 0xff); 562 ((0xff00 >> (plen % 8)) & 0xff); 596 ((0xff00 >> (plen % 8)) & 0xff); 714 ((0xff00 >> (plen % 8)) & 0xff); 745 ((0xff00 >> (plen % 8)) & 0xff); 782 ((0xff00 >> (plen % 8)) & 0xff); 816 ((0xff00 >> (plen % 8)) & 0xff); 850 ((0xff00 >> (plen % 8)) & 0xff); [all...] |
/dalvik/vm/alloc/ |
CardTable.c | 74 if (((uintptr_t)biasedBase & 0xff) != GC_CARD_DIRTY) { 75 int offset = GC_CARD_DIRTY - ((uintptr_t)biasedBase & 0xff); 78 assert(((uintptr_t)biasedBase & 0xff) == GC_CARD_DIRTY);
|
/external/netcat/data/ |
data.c | 70 x = ((q >> 8) & 0xff); /* perturb low byte using some higher bits */ 212 *q = (x & 0xff); 264 *p = (randint() & 0xff);
|
/external/openssl/crypto/asn1/ |
a_bitstr.c | 111 if (len > 0) p[-1]&=(0xff<<bits); 154 s[len-1]&=(0xff<<i); 243 unsigned char mask = i < flags_len ? ~flags[i] : 0xff;
|
a_int.c | 109 * with 0xff. However if the first byte is 0x80 and one of the following bytes 110 * is non-zero we pad with 0xff. The reason for this distinction is that 0x80 133 pb=0xFF; 141 pb=0xFF; 166 *(p--) = ((*(n--)) ^ 0xff) + 1; 169 for(;i > 0; i--) *(p--) = *(n--) ^ 0xff; 214 if ((*p == 0xff) && (len != 1)) { 238 *(to--) = (*(p--) ^ 0xff) + 1; 240 for(;i > 0; i--) *(to--) = *(p--) ^ 0xff; 366 buf[i]=(int)d&0xff; [all...] |
/external/qemu/distrib/sdl-1.2.12/src/audio/dc/ |
aica.c | 113 #define AICA_VOL(x) (0xff - logs[128 + (((x) & 0xff) / 2)]) 114 //#define AICA_VOL(x) (0xff - logs[x&255]) 146 vol is the volume, 0 to 0xff (0xff is louder) 218 for (i=0xff; i>=vol; i--) {
|
/external/webkit/WebCore/rendering/ |
EllipsisBox.cpp | 89 c = Color(0xff - c.red(), 0xff - c.green(), 0xff - c.blue());
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
WspTypeDecoder.java | 121 int lengthMultiOctet = wspData[startIndex] & 0xff; 128 unsigned32bit = (unsigned32bit << 8) | (wspData[startIndex+i] & 0xff); 185 if ((wspData[startIndex] & 0xff) > WAP_PDU_LENGTH_QUOTE) {
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
safe-ctype.h | 87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) 112 #define TOUPPER(c) _sch_toupper[(c) & 0xff] 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/ |
safe-ctype.h | 87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) 112 #define TOUPPER(c) _sch_toupper[(c) & 0xff] 113 #define TOLOWER(c) _sch_tolower[(c) & 0xff]
|
/system/core/fastboot/ |
usbtest.c | 65 if(info->ifc_class != 0xff) return -1; 74 if(info->ifc_class != 0xff) return -1; 83 if(info->ifc_class != 0xff) return -1;
|