/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_utf.h | 16 Runesync = 0x80, // cannot represent part of a UTF sequence (<) 17 Runeself = 0x80, // rune and UTF sequences are the same (<)
|
/external/chromium_org/ui/aura/ |
input_state_lookup_win.cc | 24 return (GetKeyState(VK_LBUTTON) & 0x80) || 25 (GetKeyState(VK_RBUTTON) & 0x80) || 26 (GetKeyState(VK_MBUTTON) & 0x80) || 27 (GetKeyState(VK_XBUTTON1) & 0x80) || 28 (GetKeyState(VK_XBUTTON2) & 0x80);
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
a_utf8.c | 85 if((*p & 0x80) == 0) { 90 if((p[1] & 0xc0) != 0x80) return -3; 93 if(value < 0x80) return -4; 97 if( ((p[1] & 0xc0) != 0x80) 98 || ((p[2] & 0xc0) != 0x80) ) return -3; 106 if( ((p[1] & 0xc0) != 0x80) 107 || ((p[2] & 0xc0) != 0x80) 108 || ((p[3] & 0xc0) != 0x80) ) return -3; 117 if( ((p[1] & 0xc0) != 0x80) 118 || ((p[2] & 0xc0) != 0x80) [all...] |
/external/openssl/crypto/asn1/ |
a_utf8.c | 85 if((*p & 0x80) == 0) { 90 if((p[1] & 0xc0) != 0x80) return -3; 93 if(value < 0x80) return -4; 97 if( ((p[1] & 0xc0) != 0x80) 98 || ((p[2] & 0xc0) != 0x80) ) return -3; 106 if( ((p[1] & 0xc0) != 0x80) 107 || ((p[2] & 0xc0) != 0x80) 108 || ((p[3] & 0xc0) != 0x80) ) return -3; 117 if( ((p[1] & 0xc0) != 0x80) 118 || ((p[2] & 0xc0) != 0x80) [all...] |
/external/llvm/test/MC/Mips/ |
mips-coprocessor-encodings.s | 4 # MIPS64: dmtc0 $12, $16, 2 # encoding: [0x40,0xac,0x80,0x02] 5 # MIPS64: dmtc0 $12, $16, 0 # encoding: [0x40,0xac,0x80,0x00] 6 # MIPS64: mtc0 $12, $16, 2 # encoding: [0x40,0x8c,0x80,0x02] 7 # MIPS64: mtc0 $12, $16, 0 # encoding: [0x40,0x8c,0x80,0x00] 8 # MIPS64: dmfc0 $12, $16, 2 # encoding: [0x40,0x2c,0x80,0x02] 9 # MIPS64: dmfc0 $12, $16, 0 # encoding: [0x40,0x2c,0x80,0x00] 10 # MIPS64: mfc0 $12, $16, 2 # encoding: [0x40,0x0c,0x80,0x02] 11 # MIPS64: mfc0 $12, $16, 0 # encoding: [0x40,0x0c,0x80,0x00] 22 # MIPS64: dmtc2 $12, $16, 2 # encoding: [0x48,0xac,0x80,0x02] 23 # MIPS64: dmtc2 $12, $16, 0 # encoding: [0x48,0xac,0x80,0x00 [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
virtio_config.h | 16 #define VIRTIO_CONFIG_S_FAILED 0x80
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
virtio_config.h | 16 #define VIRTIO_CONFIG_S_FAILED 0x80
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
virtio_config.h | 16 #define VIRTIO_CONFIG_S_FAILED 0x80
|
/ndk/sources/android/support/src/musl-multibyte/ |
internal.h | 14 /* equivalent to: ( (b-0x80) | (b+offset) ) & ~0x3f */ 18 #define R(a,b) ((uint32_t)((a==0x80 ? 0x40-b : -a) << 23)) 19 #define FAILSTATE R(0x80,0x80)
|
wcrtomb.c | 17 if ((unsigned)wc < 0x80) { 22 *s = 0x80 | (wc&0x3f); 26 *s++ = 0x80 | ((wc>>6)&0x3f); 27 *s = 0x80 | (wc&0x3f); 31 *s++ = 0x80 | ((wc>>12)&0x3f); 32 *s++ = 0x80 | ((wc>>6)&0x3f); 33 *s = 0x80 | (wc&0x3f);
|
/external/openfst/src/include/fst/ |
icu.h | 39 if ((c & 0x80) == 0) { 42 if ((c & 0xc0) == 0x80) { 55 if ((cb & 0xc0) != 0x80) { 81 } else if (code < 0x80) { 85 ostr << static_cast<char>((code & 0x3f) | 0x80); 88 ostr << static_cast<char>(((code >> 6) & 0x3f) | 0x80); 89 ostr << static_cast<char>((code & 0x3f) | 0x80); 92 ostr << static_cast<char>(((code >> 12) & 0x3f) | 0x80); 93 ostr << static_cast<char>(((code >> 6) & 0x3f) | 0x80); 94 ostr << static_cast<char>((code & 0x3f) | 0x80); [all...] |
/external/libpcap/ |
arcnet.h | 52 #define ARCTYPE_DIAGNOSE 0x80 /* as per ANSI/ATA 878.1 */
|
/bionic/libc/arch-x86/bionic/ |
_exit_with_stack_teardown.S | 19 int $0x80 22 int $0x80
|
/external/bluetooth/bluedroid/btif/include/ |
btif_sock_sdp.h | 22 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB}; 24 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB}; 26 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB}; 28 0x80, 0x00, 0x00, 0x80, 0x5F, 0x9B, 0x34, 0xFB};
|
/external/chromium_org/third_party/re2/util/ |
utf.h | 29 Runesync = 0x80, /* cannot represent part of a UTF sequence (<) */ 30 Runeself = 0x80, /* rune and UTF sequences are the same (<) */
|
/external/regex-re2/util/ |
utf.h | 29 Runesync = 0x80, /* cannot represent part of a UTF sequence (<) */ 30 Runeself = 0x80, /* rune and UTF sequences are the same (<) */
|
/external/llvm/test/MC/ARM/ |
thumb2-mclass.s | 27 @ CHECK: mrs r0, apsr @ encoding: [0xef,0xf3,0x00,0x80] 28 @ CHECK: mrs r0, iapsr @ encoding: [0xef,0xf3,0x01,0x80] 29 @ CHECK: mrs r0, eapsr @ encoding: [0xef,0xf3,0x02,0x80] 30 @ CHECK: mrs r0, xpsr @ encoding: [0xef,0xf3,0x03,0x80] 31 @ CHECK: mrs r0, ipsr @ encoding: [0xef,0xf3,0x05,0x80] 32 @ CHECK: mrs r0, epsr @ encoding: [0xef,0xf3,0x06,0x80] 33 @ CHECK: mrs r0, iepsr @ encoding: [0xef,0xf3,0x07,0x80] 34 @ CHECK: mrs r0, msp @ encoding: [0xef,0xf3,0x08,0x80] 35 @ CHECK: mrs r0, psp @ encoding: [0xef,0xf3,0x09,0x80] 36 @ CHECK: mrs r0, primask @ encoding: [0xef,0xf3,0x10,0x80] [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Leb128Utils.java | 93 } while (((cur & 0x80) == 0x80) && count < 5); 95 if ((cur & 0x80) == 0x80) { 119 } while (((cur & 0x80) == 0x80) && count < 5); 121 if ((cur & 0x80) == 0x80) { 136 out.writeByte((byte) ((value & 0x7f) | 0x80)); 157 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0))) [all...] |
/libcore/dex/src/main/java/com/android/dex/ |
Leb128.java | 92 } while (((cur & 0x80) == 0x80) && count < 5); 94 if ((cur & 0x80) == 0x80) { 118 } while (((cur & 0x80) == 0x80) && count < 5); 120 if ((cur & 0x80) == 0x80) { 135 out.writeByte((byte) ((value & 0x7f) | 0x80)); 156 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0))) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
default_cursor.h | 46 0x7F,0x80, 64 0xFF,0x80, 70 0x87,0x80, 71 0x07,0x80, 87 0x7F,0x80, 105 0xFF,0x80, 107 0xFF,0x80, 111 0x07,0x80, 112 0x07,0x80,
|
/external/chromium/sdch/open-vcdiff/src/ |
varint_bigendian_test.cc | 179 ExpectEncodedByte(0x80); 180 ExpectEncodedByte(0x80); 181 ExpectEncodedByte(0x80); 279 const char parse_data_123456789[] = { 0x80 + 58, 0x80 + 111, 0x80 + 26, 21 }; 295 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 }; 303 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 } [all...] |
/external/chromium_org/sdch/open-vcdiff/src/ |
varint_bigendian_test.cc | 179 ExpectEncodedByte(0x80); 180 ExpectEncodedByte(0x80); 181 ExpectEncodedByte(0x80); 279 const char parse_data_123456789[] = { 0x80 + 58, 0x80 + 111, 0x80 + 26, 21 }; 295 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 }; 303 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 } [all...] |
/external/open-vcdiff/src/ |
varint_bigendian_test.cc | 179 ExpectEncodedByte(0x80); 180 ExpectEncodedByte(0x80); 181 ExpectEncodedByte(0x80); 279 const char parse_data_123456789[] = { 0x80 + 58, 0x80 + 111, 0x80 + 26, 21 }; 295 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 }; 303 const char parse_data_32_bits[] = { 0x88, 0x80, 0x80, 0x80, 0x00 } [all...] |
/bionic/libc/kernel/common/linux/ |
mc146818rtc.h | 45 #define RTC_UIP 0x80 56 #define RTC_SET 0x80 67 #define RTC_IRQF 0x80 74 #define RTC_VRT 0x80
|
/development/ndk/platforms/android-3/include/linux/ |
mc146818rtc.h | 40 #define RTC_UIP 0x80 53 #define RTC_SET 0x80 64 #define RTC_IRQF 0x80 70 #define RTC_VRT 0x80
|