/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/sgi/ |
pi1.h | 46 #define PI1_STAT_BUSY 0x80 61 #define PI1_DMACTRL_RUN 0x80 71 #define PI1_INTSTAT_PE 0x80 81 #define PI1_INTMASK_PE 0x80
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/asm/sgi/ |
pi1.h | 46 #define PI1_STAT_BUSY 0x80 61 #define PI1_DMACTRL_RUN 0x80 71 #define PI1_INTSTAT_PE 0x80 81 #define PI1_INTMASK_PE 0x80
|
/frameworks/av/media/mtp/ |
MtpStringBuffer.cpp | 68 if ((ch & 0x80) == 0) { 106 *dest++ = (uint8_t)(0x80 | ((ch >> 6) & 0x3F)); 107 *dest++ = (uint8_t)(0x80 | (ch & 0x3F)); 108 } else if (ch >= 0x80) { 110 *dest++ = (uint8_t)(0x80 | (ch & 0x3F)); 128 *dest++ = (uint8_t)(0x80 | ((ch >> 6) & 0x3F)); 129 *dest++ = (uint8_t)(0x80 | (ch & 0x3F)); 130 } else if (ch >= 0x80) { 132 *dest++ = (uint8_t)(0x80 | (ch & 0x3F)); 151 if ((ch1 & 0x80) == 0) [all...] |
/external/valgrind/main/none/tests/x86/ |
aad_aam.c | 43 sf=!!(flags&0x80); 56 if (sf != !!(out&0x80)) { 90 sf=!!(flags&0x80); 103 if (sf != !!(out&0x80)) { 104 printf("Error with aad (sf) %d %d!\n",sf,!!(out&0x80));
|
/frameworks/native/libs/utils/tests/ |
Unicode_test.cpp | 70 const uint8_t str[] = { 0xF0, 0x90, 0x80, 0x80 }; 92 0xC4, 0x80, // U+0100, 1 UTF-16 character 94 0xF0, 0x90, 0x80, 0x80, // U+10000, 2 UTF-16 character
|
/external/grub/netboot/ |
ns8390.h | 53 #define WD_LAAR_M16EN 0x80 101 #define _3COM_BCFR_300 0x80 107 #define _3COM_PCFR_DC000 0x80 116 #define _3COM_CR_START 0x80 /* Start DMA controller */ 125 #define _3COM_GACFR_NIM 0x80 /* Mask NIC interrupts */ 132 #define _3COM_STREG_DPRDY 0x80 /* Data port ready */ 141 #define _3COM_IDCFR_IRQ5 0x80 /* Interrupt request 5 select */ 196 #define D8390_COMMAND_PS2 0x80 /* Page 2 select */ 217 #define D8390_ISR_RST 0x80 /* reset */
|
/external/protobuf/src/google/protobuf/io/ |
coded_stream.cc | 292 b = *(ptr++); result = (b & 0x7F) ; if (!(b & 0x80)) goto done; 293 b = *(ptr++); result |= (b & 0x7F) << 7; if (!(b & 0x80)) goto done; 294 b = *(ptr++); result |= (b & 0x7F) << 14; if (!(b & 0x80)) goto done; 295 b = *(ptr++); result |= (b & 0x7F) << 21; if (!(b & 0x80)) goto done; 296 b = *(ptr++); result |= b << 28; if (!(b & 0x80)) goto done; 301 b = *(ptr++); if (!(b & 0x80)) goto done; 328 (buffer_end_ > buffer_ && !(buffer_end_[-1] & 0x80))) { 371 (buffer_end_ > buffer_ && !(buffer_end_[-1] & 0x80))) { 412 } while (b & 0x80); 422 (buffer_end_ > buffer_ && !(buffer_end_[-1] & 0x80))) { [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
LightingColorFilterTest.java | 70 new LightingColorFilter(Color.rgb(0x80, 0xFF, 0x80), Color.rgb(0, 10, 10))); 76 paint.setColor(Color.argb(0x80, 60, 20, 40)); 78 new LightingColorFilter(Color.rgb(0x80, 0xFF, 0x80), Color.rgb(0, 10, 10))); 80 assertColor(Color.argb(0x80, 30, 30, 30), bitmap.getPixel(0, 0));
|
/libcore/luni/src/main/java/java/nio/charset/ |
ModifiedUtf8.java | 45 if ((b & 0xC0) != 0x80) { 55 if (((b & 0xC0) != 0x80) || ((c & 0xC0) != 0x80)) { 104 dst[offset++] = (byte) (0x80 | (0x3f & ch)); 107 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6))); 108 dst[offset++] = (byte) (0x80 | (0x3f & ch));
|
/bionic/libc/kernel/common/linux/ |
if_tr.h | 77 #define TR_RII 0x80 79 #define TR_RCF_DIR_BIT 0x80
|
/bootable/recovery/minui/ |
mkfont.c | 39 printf("0x%02x,",run_count | (run_val ? 0x80 : 0x00)); 49 printf("0x%02x,",run_count | (run_val ? 0x80 : 0x00));
|
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstUtf8.java | 53 if ((c != 0) && (c < 0x80)) { 58 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 62 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 63 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); 107 if ((v1 & 0xc0) != 0x80) { 111 if ((value != 0) && (value < 0x80)) { 129 if ((v1 & 0xc0) != 0x80) { 133 if ((v1 & 0xc0) != 0x80) {
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstString.java | 53 if ((c != 0) && (c < 0x80)) { 58 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 62 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 63 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); 107 if ((v1 & 0xc0) != 0x80) { 111 if ((value != 0) && (value < 0x80)) { 129 if ((v1 & 0xc0) != 0x80) { 133 if ((v1 & 0xc0) != 0x80) {
|
/development/ndk/platforms/android-3/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstString.java | 53 if ((c != 0) && (c < 0x80)) { 58 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 62 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 63 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); 107 if ((v1 & 0xc0) != 0x80) { 111 if ((value != 0) && (value < 0x80)) { 129 if ((v1 & 0xc0) != 0x80) { 133 if ((v1 & 0xc0) != 0x80) {
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Utf8Utils.java | 51 if ((c != 0) && (c < 0x80)) { 56 bytes[outAt + 1] = (byte) ((c & 0x3f) | 0x80); 60 bytes[outAt + 1] = (byte) (((c >> 6) & 0x3f) | 0x80); 61 bytes[outAt + 2] = (byte) ((c & 0x3f) | 0x80); 113 if ((v1 & 0xc0) != 0x80) { 117 if ((value != 0) && (value < 0x80)) { 135 if ((v1 & 0xc0) != 0x80) { 139 if ((v1 & 0xc0) != 0x80) {
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
if_tr.h | 85 #define TR_RII 0x80 86 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_tr.h | 85 #define TR_RII 0x80 86 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
if_tr.h | 85 #define TR_RII 0x80 86 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
if_tr.h | 67 #define TR_RII 0x80 68 #define TR_RCF_DIR_BIT 0x80
|