/bootable/bootloader/legacy/libc/ |
rsa.c | 139 0x00,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff [all...] |
/system/core/libmincrypt/ |
rsa.c | 138 0x00,0x01,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff [all...] |
/frameworks/media/libvideoeditor/vss/video_filters/src/ |
M4VIFI_Clip.c | 127 0xfc, 0xfd, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 128 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff [all...] |
/external/qemu/ |
varint.c | 47 *buf++ = value & 0xff; 50 *buf++ = (value >> 8) & 0xff; 51 *buf++ = value & 0xff; 54 *buf++ = (value >> 16) & 0xff; 55 *buf++ = (value >> 8) & 0xff; 56 *buf++ = value & 0xff; 59 *buf++ = (value >> 24) & 0xff; 60 *buf++ = (value >> 16) & 0xff; 61 *buf++ = (value >> 8) & 0xff; 62 *buf++ = value & 0xff; [all...] |
aes.c | [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/ |
EndianUtils.java | 57 return (short) ( ( ( ( value >> 0 ) & 0xff ) << 8 ) +
58 ( ( ( value >> 8 ) & 0xff ) << 0 ) );
68 ( ( ( value >> 0 ) & 0xff ) << 24 ) +
69 ( ( ( value >> 8 ) & 0xff ) << 16 ) +
70 ( ( ( value >> 16 ) & 0xff ) << 8 ) +
71 ( ( ( value >> 24 ) & 0xff ) << 0 );
81 ( ( ( value >> 0 ) & 0xff ) << 56 ) +
82 ( ( ( value >> 8 ) & 0xff ) << 48 ) +
83 ( ( ( value >> 16 ) & 0xff ) << 40 ) +
84 ( ( ( value >> 24 ) & 0xff ) << 32 ) + [all...] |
/frameworks/base/core/java/android/animation/ |
ArgbEvaluator.java | 44 int startR = (startInt >> 16) & 0xff; 45 int startG = (startInt >> 8) & 0xff; 46 int startB = startInt & 0xff; 50 int endR = (endInt >> 16) & 0xff; 51 int endG = (endInt >> 8) & 0xff; 52 int endB = endInt & 0xff;
|
/libcore/luni/src/main/java/libcore/io/ |
Memory.java | 47 return (((src[offset++] & 0xff) << 24) | 48 ((src[offset++] & 0xff) << 16) | 49 ((src[offset++] & 0xff) << 8) | 50 ((src[offset ] & 0xff) << 0)); 52 return (((src[offset++] & 0xff) << 0) | 53 ((src[offset++] & 0xff) << 8) | 54 ((src[offset++] & 0xff) << 16) | 55 ((src[offset ] & 0xff) << 24)); 61 int h = ((src[offset++] & 0xff) << 24) | 62 ((src[offset++] & 0xff) << 16) [all...] |
/external/harfbuzz/tests/linebreaking/ |
main.cpp | 91 { "11", { false, 0xff } }, 92 { "aa", { false, 0xff } }, 93 { "++", { false, 0xff } }, 94 { "--", { false, 0xff } }, 95 { "((", { false, 0xff } }, 96 { "))", { false, 0xff } }, 97 { "..", { false, 0xff } }, 98 { "\"\"", { false, 0xff } }, 99 { "$$", { false, 0xff } }, 100 { "!!", { false, 0xff } }, [all...] |
/external/chromium/net/tools/flip_server/ |
constants.h | 25 #define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \ 26 (((IP)>>16)&0xff), (((IP)>>24)&0xff)
|
/bootable/recovery/applypatch/ |
utils.c | 23 fputc(value & 0xff, f); 24 fputc((value >> 8) & 0xff, f); 25 fputc((value >> 16) & 0xff, f); 26 fputc((value >> 24) & 0xff, f); 31 fputc(value & 0xff, f); 32 fputc((value >> 8) & 0xff, f); 33 fputc((value >> 16) & 0xff, f); 34 fputc((value >> 24) & 0xff, f); 35 fputc((value >> 32) & 0xff, f); 36 fputc((value >> 40) & 0xff, f) [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes_i.h | 41 #define TE0(i) Te0[((i) >> 24) & 0xff] 42 #define TE1(i) Te1[((i) >> 16) & 0xff] 43 #define TE2(i) Te2[((i) >> 8) & 0xff] 44 #define TE3(i) Te3[(i) & 0xff] 45 #define TE41(i) (Te4[((i) >> 24) & 0xff] & 0xff000000) 46 #define TE42(i) (Te4[((i) >> 16) & 0xff] & 0x00ff0000) 47 #define TE43(i) (Te4[((i) >> 8) & 0xff] & 0x0000ff00) 48 #define TE44(i) (Te4[(i) & 0xff] & 0x000000ff) 49 #define TE421(i) (Te4[((i) >> 16) & 0xff] & 0xff000000) 50 #define TE432(i) (Te4[((i) >> 8) & 0xff] & 0x00ff0000 [all...] |
/external/yaffs2/yaffs2/ |
yaffs_packedtags1.c | 20 { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff [all...] |
/libcore/luni/src/main/java/java/net/ |
Inet4Address.java | 61 return ((ipaddress[0] & 0xff) == 169) && ((ipaddress[1] & 0xff) == 254); // 169.254/16 65 return ((ipaddress[0] & 0xff) == 127); // 127/8 98 return ((ipaddress[0] & 0xff) == 224) && (ipaddress[1] == 0) && (ipaddress[2] == 0); // 224.0.0/24 106 return ((ipaddress[0] & 0xff) == 239) && ((ipaddress[1] & 0xfc) == 192); // 239.192/14 110 return ((ipaddress[0] & 0xff) == 239) && ((ipaddress[1] & 0xff) == 255); // 239.255/16 118 if ((ipaddress[0] & 0xff) == 10) { // 10/8 120 } else if (((ipaddress[0] & 0xff) == 172) && ((ipaddress[1] & 0xf0) == 16)) { // 172.16/12 122 } else if (((ipaddress[0] & 0xff) == 192) && ((ipaddress[1] & 0xff) == 168)) { // 192.168/1 [all...] |
/external/openssl/crypto/bf/ |
bf_locl.h | 87 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ 88 *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ 89 *((c)++)=(unsigned char)(((l)>>16L)&0xff), \ 90 *((c)++)=(unsigned char)(((l)>>24L)&0xff)) 97 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \ 98 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \ 99 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \ 100 case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \ 101 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 102 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/quartz/ |
SDL_QuartzVideo.m | [all...] |
/external/openssl/crypto/aes/ |
aes_core.c | [all...] |
/external/blktrace/btreplay/ |
btrecord.h | 80 return ((mjr & 0xff) << 16) | ((mnr & 0xff) << 8) | (sub & 0xff); 85 *mjr = (int)((version >> 16) & 0xff); 86 *mnr = (int)((version >> 8) & 0xff); 87 *sub = (int)((version >> 0) & 0xff);
|
/external/javassist/src/main/javassist/bytecode/ |
ByteArray.java | 26 return ((code[index] & 0xff) << 8) | (code[index + 1] & 0xff); 33 return (code[index] << 8) | (code[index + 1] & 0xff); 48 return (code[index] << 24) | ((code[index + 1] & 0xff) << 16) 49 | ((code[index + 2] & 0xff) << 8) | (code[index + 3] & 0xff);
|
/external/llvm/test/MC/ARM/ |
neont2-reverse-encoding.s | 3 @ CHECK: vrev64.8 d16, d16 @ encoding: [0xf0,0xff,0x20,0x00] 5 @ CHECK: vrev64.16 d16, d16 @ encoding: [0xf4,0xff,0x20,0x00] 7 @ CHECK: vrev64.32 d16, d16 @ encoding: [0xf8,0xff,0x20,0x00] 9 @ CHECK: vrev64.8 q8, q8 @ encoding: [0xf0,0xff,0x60,0x00] 11 @ CHECK: vrev64.16 q8, q8 @ encoding: [0xf4,0xff,0x60,0x00] 13 @ CHECK: vrev64.32 q8, q8 @ encoding: [0xf8,0xff,0x60,0x00] 15 @ CHECK: vrev32.8 d16, d16 @ encoding: [0xf0,0xff,0xa0,0x00] 17 @ CHECK: vrev32.16 d16, d16 @ encoding: [0xf4,0xff,0xa0,0x00] 19 @ CHECK: vrev32.8 q8, q8 @ encoding: [0xf0,0xff,0xe0,0x00] 21 @ CHECK: vrev32.16 q8, q8 @ encoding: [0xf4,0xff,0xe0,0x00 [all...] |
/external/openssl/crypto/rc2/ |
rc2_locl.h | 83 #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \ 84 *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \ 85 *((c)++)=(unsigned char)(((l)>>16L)&0xff), \ 86 *((c)++)=(unsigned char)(((l)>>24L)&0xff)) 93 case 8: *(--(c))=(unsigned char)(((l2)>>24L)&0xff); \ 94 case 7: *(--(c))=(unsigned char)(((l2)>>16L)&0xff); \ 95 case 6: *(--(c))=(unsigned char)(((l2)>> 8L)&0xff); \ 96 case 5: *(--(c))=(unsigned char)(((l2) )&0xff); \ 97 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); \ 98 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); \ [all...] |
/bionic/libc/kernel/common/linux/ |
kdev_t.h | 16 #define MINOR(dev) ((dev) & 0xff)
|
/development/ndk/platforms/android-3/include/linux/ |
kdev_t.h | 16 #define MINOR(dev) ((dev) & 0xff)
|
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
ImageDescriptor.java | 59 d.width = rawData[valueIndex++] & 0xff; 60 d.height = rawData[valueIndex++] & 0xff; 61 d.codingScheme = rawData[valueIndex++] & 0xff; 64 d.imageId = (rawData[valueIndex++] & 0xff) << 8; 65 d.imageId |= rawData[valueIndex++] & 0xff; 67 d.highOffset = (rawData[valueIndex++] & 0xff); // high byte offset 68 d.lowOffset = rawData[valueIndex++] & 0xff; // low byte offset 70 d.length = ((rawData[valueIndex++] & 0xff) << 8 | (rawData[valueIndex++] & 0xff));
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
kdev_t.h | 9 #define MINOR(dev) ((dev) & 0xff)
|