/external/flac/libFLAC/ |
format.c | 319 if ((utf8[0] & 0x80) == 0) { 322 else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80) { 327 else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80) { 328 if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check */ 337 else if ((utf8[0] & 0xF8) == 0xF0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80) { 338 if (utf8[0] == 0xF0 && (utf8[1] & 0xF0) == 0x80) /* overlong sequence check */ 342 else if ((utf8[0] & 0xFC) == 0xF8 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80) [all...] |
bitwriter.c | 790 if(val < 0x80) { 795 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | (val&0x3F), 8); 799 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>6)&0x3F), 8); 800 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | (val&0x3F), 8); 804 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>12)&0x3F), 8); 805 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>6)&0x3F), 8); 806 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | (val&0x3F), 8); 810 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>18)&0x3F), 8); 811 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>12)&0x3F), 8); 812 ok &= FLAC__bitwriter_write_raw_uint32(bw, 0x80 | ((val>>6)&0x3F), 8) [all...] |
/frameworks/base/media/java/android/media/ |
MediaCodecInfo.java | 123 public static final int AVCLevel22 = 0x80; 141 public static final int H263ProfileInterlace = 0x80; 152 public static final int H263Level70 = 0x80; 162 public static final int MPEG4ProfileSimpleFBA = 0x80; 180 public static final int MPEG4Level5 = 0x80;
|
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
ComprehensionTlv.java | 127 case 0x80: 145 cr = (tag & 0x80) != 0; 146 tag &= ~0x80; 153 if (temp < 0x80) { 157 if (length < 0x80) { 160 "length < 0x80 length=" + Integer.toHexString(length) +
|
BerTlv.java | 78 if (temp < 0x80) { 82 if (temp < 0x80) { 85 "length < 0x80 length=" + Integer.toHexString(length) + 98 if (ComprehensionTlvTag.COMMAND_DETAILS.value() == (tag & ~0x80)) {
|
/external/libxml2/ |
xmlstring.c | 242 0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87, 613 if (*utf < 0x80) 665 if (utf[0] & 0x80) { 666 if ((utf[1] & 0xc0) != 0x80) 669 if ((utf[2] & 0xc0) != 0x80) 672 if ((utf[0] & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80) 713 if (c & 0x80) { 716 if ((utf[1] & 0xc0) != 0x80) 721 if ((utf[2] & 0xc0) != 0x80) 726 if ((c & 0xf8) != 0xf0 || (utf[3] & 0xc0) != 0x80) [all...] |
/hardware/invensense/mlsdk/platform/include/ |
mpu3050.h | 109 #define BIT_TEMP_OUT 0x80 125 #define BITS_EXT_SYNC_GYROZ 0x80 145 #define BIT_ACTL 0x80 146 #define BIT_ACTL_LOW 0x80 159 #define BIT_INT_STATUS_FIFO_OVERLOW 0x80 168 #define BIT_DMP_EN 0x80 177 #define BIT_H_RESET 0x80
|
/frameworks/compile/mclinker/unittests/ |
LEB128Test.cpp | 64 ASSERT_EQ(buffer[0], 0 + 0x80); 71 ASSERT_EQ(buffer[0], 1 + 0x80); 78 ASSERT_EQ(buffer[0], 2 + 0x80); 85 ASSERT_EQ(buffer[0], 57 + 0x80); 110 ASSERT_EQ(buffer[0], 0 + 0x80); 117 ASSERT_EQ(buffer[0], 1 + 0x80); 124 ASSERT_EQ(buffer[0], 2 + 0x80); 131 ASSERT_EQ(buffer[0], 57 + 0x80); 156 ASSERT_EQ(buffer[0], 127 + 0x80); 163 ASSERT_EQ(buffer[0], 1 + 0x80); [all...] |
/external/icu4c/common/ |
ustrtrns.c | 255 utf8_minLegal[4]={ 0, 0x80, 0x800, 0x10000 }; 282 trail=(uint8_t)(*s++ - 0x80); 290 trail=(uint8_t)(*s++ - 0x80); 298 trail=(uint8_t)(*s++ - 0x80); 354 illegal|=(trail&0xc0)^0x80; 363 illegal|=(trail&0xc0)^0x80; 367 illegal|=(trail&0xc0)^0x80; 454 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3f && 455 (t2 = (uint8_t)(pSrc[2] - 0x80)) <= 0x3f 465 (t1 = (uint8_t)(pSrc[1] - 0x80)) <= 0x3 [all...] |
/packages/inputmethods/OpenWnn/libs/libwnnJpnDic/ |
WnnJpnDic.c | 21 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x12, 0x00, 0x00, 0x00, 0x14, 0x80, 0x00, 0x00, 0x00, 52 0x30, 0x7e, 0x30, 0x7f, 0x30, 0x80, 0x30, 0x81, 0x30, 0x82, 0x30, 0x83, 0x30, 0x84, 0x30, 0x85, 54 0x30, 0x8f, 0x30, 0x93, 0x30, 0xfc, 0x60, 0x54, 0xc0, 0x00, 0x00, 0x80, 0x40, 0x8a, 0x41, 0x00, 56 0x44, 0x8b, 0x42, 0x80, 0x61, 0x66, 0x05, 0x6a, 0x02, 0xc0, 0x61, 0x7c, 0x06, 0x5c, 0x03, 0x00, 57 0x41, 0xb2, 0x03, 0x40, 0x41, 0xcd, 0x03, 0x80, 0x41, 0xf5, 0x03, 0xc0, 0x62, 0x01, 0x08, 0xec, 58 0xc4, 0x00, 0x42, 0x12, 0x04, 0x40, 0x62, 0x1f, 0x8a, 0x94, 0x04, 0x80, 0x62, 0x4f, 0x0b, 0x67, 60 0x45, 0x80, 0x62, 0xd6, 0xce, 0x33, 0xc5, 0xc0, 0x42, 0xfa, 0xc6, 0x00, 0x43, 0x29, 0xc6, 0x40, 61 0x43, 0x33, 0xc6, 0x80, 0x43, 0x47, 0xc6, 0xc0, 0x43, 0x51, 0x47, 0x00, 0x43, 0x70, 0xc7, 0x40, 62 0x63, 0x75, 0xd2, 0x65, 0x07, 0x80, 0x43, 0x9e, 0xc7, 0xc0, 0x63, 0xb7, 0x54, 0x31, 0x48, 0x00, 63 0x43, 0xd7, 0x48, 0x40, 0x43, 0xdb, 0x08, 0x80, 0x44, 0x04, 0xc8, 0xc0, 0x64, 0x07, 0x16, 0x11 [all...] |
/frameworks/base/core/java/com/google/android/mms/pdu/ |
PduHeaders.java | 100 public static final int MESSAGE_TYPE_SEND_REQ = 0x80; 139 public static final int VALUE_YES = 0x80; 147 public static final int VALUE_ABSOLUTE_TOKEN = 0x80; 164 public static final int FROM_ADDRESS_PRESENT_TOKEN = 0x80; 173 public static final int STATUS_EXPIRED = 0x80; 185 public static final int MM_FLAGS_ADD_TOKEN = 0x80; 192 public static final int MESSAGE_CLASS_PERSONAL = 0x80; 205 public static final int PRIORITY_LOW = 0x80; 212 public static final int RESPONSE_STATUS_OK = 0x80; 247 public static final int RETRIEVE_STATUS_OK = 0x80; [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
stringencode.cc | 236 if ((s[0] & 0x80) == 0x00) { // Check s[0] == 0xxxxxxx 240 if ((srclen < 2) || ((s[1] & 0xC0) != 0x80)) { // Check s[1] != 10xxxxxx 250 if ((srclen < 3) || ((s[2] & 0xC0) != 0x80)) { // Check s[2] != 10xxxxxx 258 if ((srclen < 4) || ((s[3] & 0xC0) != 0x80)) { // Check s[3] != 10xxxxxx 276 buffer[1] = 0x80 | static_cast<unsigned char>(value & 0x3F); 281 buffer[1] = 0x80 | static_cast<unsigned char>((value >> 6) & 0x3F); 282 buffer[2] = 0x80 | static_cast<unsigned char>(value & 0x3F); 287 buffer[1] = 0x80 | static_cast<unsigned char>((value >> 12) & 0x3F); 288 buffer[2] = 0x80 | static_cast<unsigned char>((value >> 6) & 0x3F); 289 buffer[3] = 0x80 | static_cast<unsigned char>(value & 0x3F) [all...] |
/external/elfutils/tests/ |
asm-tst9.c | 84 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0x3f, 0x81, 0x80, 0x80, 0xc0, 0x0f, 85 0x81, 0x80, 0x80, 0x40, 0xff, 0xff, 0xff, 0xff, 0x07, 0xff, 0xff, 0xff, 86 0xff, 0x07, 0x81, 0x80, 0x80, 0x80, 0x08, 0x81, 0x80, 0x80, 0x80, 0x7 [all...] |
/external/icu4c/common/unicode/ |
utf8.h | 138 #define U8_IS_SINGLE(c) (((c)&0x80)==0) 154 #define U8_IS_TRAIL(c) (((c)&0xc0)==0x80) 285 if((c)>=0x80) { \ 290 (__t1=(uint8_t)((s)[i]-0x80))<=0x3f && \ 291 (__t2=(uint8_t)((s)[(i)+1]-0x80))<= 0x3f \ 299 (__t1=(uint8_t)((s)[i]-0x80))<=0x3f \ 336 (s)[(i)++]=(uint8_t)((((c)>>12)&0x3f)|0x80); \ 338 (s)[(i)++]=(uint8_t)((((c)>>6)&0x3f)|0x80); \ 340 (s)[(i)++]=(uint8_t)(((c)&0x3f)|0x80); \ 366 (s)[(i)++]=(uint8_t)(((c)&0x3f)|0x80); \ [all...] |
/external/chromium/base/third_party/icu/ |
icu_utf.h | 125 #define CBU8_IS_SINGLE(c) (((c)&0x80)==0) 141 #define CBU8_IS_TRAIL(c) (((c)&0xc0)==0x80) 194 if(((uint8)(c))>=0x80) { \ 227 (s)[(i)++]=(uint8)((((c)>>12)&0x3f)|0x80); \ 229 (s)[(i)++]=(uint8)((((c)>>6)&0x3f)|0x80); \ 231 (s)[(i)++]=(uint8)(((c)&0x3f)|0x80); \
|
/external/skia/gm/ |
texdata.cpp | 43 static const SkPMColor red = SkPackARGB32(0x80, 0x80, 0x00, 0x00); 44 static const SkPMColor blue = SkPackARGB32(0x80, 0x00, 0x00, 0x80); 45 static const SkPMColor green = SkPackARGB32(0x80, 0x00, 0x80, 0x00);
|
/bionic/libc/kernel/common/linux/ |
filter.h | 64 #define BPF_LEN 0x80 77 #define BPF_NEG 0x80 94 #define BPF_TXA 0x80
|
/development/ndk/platforms/android-3/include/linux/ |
filter.h | 54 #define BPF_LEN 0x80 66 #define BPF_NEG 0x80 81 #define BPF_TXA 0x80
|
/external/webkit/Source/WebCore/platform/graphics/haiku/ |
FontHaiku.cpp | 50 out[i++] = 0x80 | (glyph & 0x3F); 53 out[i++] = 0x80 | ((glyph >> 6) & 0x3F); 54 out[i++] = 0x80 | (glyph & 0x3F);
|
/frameworks/base/media/libdrm/mobile1/src/objmng/ |
drm_i18n.c | 283 if (i + 1 < mbsLen && ((ch2 = mbs[i + 1]) & 0xc0) == 0x80) { 293 && ((ch2 = mbs[i + 1]) & 0xc0) == 0x80 294 && ((ch3 = mbs[i + 2]) & 0xc0) == 0x80) { 300 if (i < mbsLen && (mbs[i] & 0xc0) == 0x80) 306 && ((ch2 = mbs[i + 1]) & 0xc0) == 0x80 307 && ((ch3 = mbs[i + 2]) & 0xc0) == 0x80 308 && ((ch4 = mbs[i + 3]) & 0xc0) == 0x80) { 316 if (i < mbsLen && (mbs[i] & 0xc0) == 0x80) { 318 if (i < mbsLen && (mbs[i] & 0xc0) == 0x80) { 362 *mbs = (uint8_t)((wc & 0x3f) | 0x80); [all...] |
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/ |
filter.h | 54 #define BPF_LEN 0x80 66 #define BPF_NEG 0x80 81 #define BPF_TXA 0x80
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
fdreg.h | 35 #define STATUS_READY 0x80 /* Data reg ready */ 51 #define ST1_EOC 0x80 /* End Of Cylinder */ 68 #define ST3_FT 0x80 /* Drive Fault */
|
filter.h | 61 #define BPF_LEN 0x80 74 #define BPF_NEG 0x80 91 #define BPF_TXA 0x80
|
pmu.h | 43 #define PMU_POW0_ON 0x80 /* OR this to power ON the device */ 48 #define PMU_POW_ON 0x80 /* OR this to power ON the device */ 61 #define PMU_INT_TICK 0x80 /* 1-second tick interrupt */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
fdreg.h | 35 #define STATUS_READY 0x80 /* Data reg ready */ 51 #define ST1_EOC 0x80 /* End Of Cylinder */ 68 #define ST3_FT 0x80 /* Drive Fault */
|