HomeSort by relevance Sort by last modified time
    Searched refs:x80 (Results 101 - 125 of 6769) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
mc146818rtc.h 40 #define RTC_UIP 0x80
53 #define RTC_SET 0x80
64 #define RTC_IRQF 0x80
70 #define RTC_VRT 0x80
  /external/llvm/test/MC/Mips/
nabi-regs.s 18 # CHECK: add $16, $16, $4 # encoding: [0x02,0x04,0x80,0x20]
20 # CHECK: add $16, $16, $6 # encoding: [0x02,0x06,0x80,0x20]
22 # CHECK: add $16, $16, $7 # encoding: [0x02,0x07,0x80,0x20]
24 # CHECK: add $16, $16, $8 # encoding: [0x02,0x08,0x80,0x20]
26 # CHECK: add $16, $16, $9 # encoding: [0x02,0x09,0x80,0x20]
28 # CHECK: add $16, $16, $10 # encoding: [0x02,0x0a,0x80,0x20]
30 # CHECK: add $16, $16, $11 # encoding: [0x02,0x0b,0x80,0x20]
32 # CHECK: add $16, $16, $12 # encoding: [0x02,0x0c,0x80,0x20]
34 # CHECK: add $16, $16, $13 # encoding: [0x02,0x0d,0x80,0x20]
36 # CHECK: add $16, $16, $14 # encoding: [0x02,0x0e,0x80,0x20
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
DexWriterUleb128Test.java 61 performTest(0x80, new byte[]{(byte)0x80, 0x1, 0x11}, 2);
62 performTest(0x100, new byte[]{(byte)0x80, 0x2, 0x11}, 2);
63 performTest(0x800, new byte[]{(byte)0x80, 0x10, 0x11}, 2);
64 performTest(0x1f80, new byte[]{(byte)0x80, 0x3f, 0x11}, 2);
65 performTest(0x2000, new byte[]{(byte)0x80, 0x40, 0x11}, 2);
66 performTest(0x2080, new byte[]{(byte)0x80, 0x41, 0x11}, 2);
67 performTest(0x3800, new byte[]{(byte)0x80, 0x70, 0x11}, 2);
68 performTest(0x3f80, new byte[]{(byte)0x80, 0x7f, 0x11}, 2);
79 performTest(0x4000, new byte[]{(byte)0x80, (byte)0x80, 0x1, 0x11}, 3)
    [all...]
  /external/chromium_org/media/midi/
midi_message_util.cc 10 if (status_byte < 0x80)
12 if (0x80 <= status_byte && status_byte <= 0xbf)
  /ndk/sources/android/support/src/musl-multibyte/
internal.c 9 #define C(x) ( x<2 ? -1 : ( R(0x80,0xc0) | x ) )
12 x==0xd ? R(0x80,0xa0) : \
13 R(0x80,0xc0) ) \
14 | ( R(0x80,0xc0) >> 6 ) \
18 x==4 ? R(0x80,0xa0) : \
19 R(0x80,0xc0) ) \
20 | ( R(0x80,0xc0) >> 6 ) \
21 | ( R(0x80,0xc0) >> 12 ) \
  /external/jsoncpp/src/lib_json/
json_tool.h 33 result[1] = static_cast<char>(0x80 | (0x3f & cp));
39 result[2] = static_cast<char>(0x80 | (0x3f & cp));
40 result[1] = 0x80 | static_cast<char>((0x3f & (cp >> 6)));
46 result[3] = static_cast<char>(0x80 | (0x3f & cp));
47 result[2] = static_cast<char>(0x80 | (0x3f & (cp >> 6)));
48 result[1] = static_cast<char>(0x80 | (0x3f & (cp >> 12)));
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 23 byte |= 0x80;
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
45 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
46 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
50 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
51 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
52 *pBuf++ = static_cast<ByteType>(((pValue >> 14) & 0x7f) | 0x80);
56 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80);
57 *pBuf++ = static_cast<ByteType>(((pValue >> 7) & 0x7f) | 0x80);
58 *pBuf++ = static_cast<ByteType>(((pValue >> 14) & 0x7f) | 0x80);
    [all...]
  /art/runtime/
leb128_test.cc 33 {0x80, {0x80, 1, 0, 0, 0}},
36 {0x4000, {0x80, 0x80, 1, 0, 0}},
37 {0x4001, {0x81, 0x80, 1, 0, 0}},
54 {0x80, {0x80, 1, 0, 0, 0}},
57 {0x2000, {0x80, 0xC0, 0 /* sign bit */, 0, 0}},
60 {0x4000, {0x80, 0x80, 1, 0, 0}}
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 141 if (c < 0x80)
148 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
153 m_outputBytes[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
154 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
159 m_outputBytes[count++] = (byte) (0x80 + ((c >> 12) & 0x3f));
160 m_outputBytes[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
161 m_outputBytes[count++] = (byte) (0x80 + (c & 0x3f));
263 for(; i < n && (c = chars[i])< 0x80 ; i++ )
271 if (c < 0x80)
276 buf_loc[count_loc++] = (byte) (0x80 + (c & 0x3f))
    [all...]
SerializerTraceWriter.java 187 if (c < 0x80)
194 buf[count++] = (byte) (0x80 + (c & 0x3f));
199 buf[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
200 buf[count++] = (byte) (0x80 + (c & 0x3f));
247 if (c < 0x80)
252 buf[count++] = (byte) (0x80 + (c & 0x3f));
257 buf[count++] = (byte) (0x80 + ((c >> 6) & 0x3f));
258 buf[count++] = (byte) (0x80 + (c & 0x3f));
306 if (c < 0x80)
311 buf[count++] = (byte) (0x80 + (c & 0x3f))
    [all...]
  /external/valgrind/main/none/tests/s390x/
cu12.c 30 0xc2, 0x80,
38 0xe1, 0x80, 0x80,
39 0xe1, 0x80, 0x81,
40 0xe1, 0x80, 0x82,
41 0xe1, 0x80, 0x83,
46 0xf4, 0x80, 0x80, 0x80,
47 0xf4, 0x80, 0x80, 0x81
    [all...]
cu12_1.c 30 0xc2, 0x80,
38 0xe1, 0x80, 0x80,
39 0xe1, 0x80, 0x81,
40 0xe1, 0x80, 0x82,
41 0xe1, 0x80, 0x83,
46 0xf4, 0x80, 0x80, 0x80,
47 0xf4, 0x80, 0x80, 0x81
    [all...]
cu14.c 30 0xc2, 0x80,
38 0xe1, 0x80, 0x80,
39 0xe1, 0x80, 0x81,
40 0xe1, 0x80, 0x82,
41 0xe1, 0x80, 0x83,
46 0xf4, 0x80, 0x80, 0x80,
47 0xf4, 0x80, 0x80, 0x81
    [all...]
cu14_1.c 30 0xc2, 0x80,
38 0xe1, 0x80, 0x80,
39 0xe1, 0x80, 0x81,
40 0xe1, 0x80, 0x82,
41 0xe1, 0x80, 0x83,
46 0xf4, 0x80, 0x80, 0x80,
47 0xf4, 0x80, 0x80, 0x81
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
fec_private_tables_bursty.h 33 0x80, 0x00
41 0x80, 0x00,
55 0x80, 0x00,
76 0x80, 0x00,
105 0x80, 0x00,
143 0x80, 0x00,
191 0x80, 0x00,
250 0x80, 0x00,
261 0xff, 0x80
266 0xaa, 0x80
    [all...]
  /external/libcxx/test/localization/locale.stdcvt/
codecvt_utf8_length.pass.cpp 31 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
37 n[1] = char(0x80);
54 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
60 n[1] = char(0x80);
77 char n[7] = {char(0xEF), char(0xBB), char(0xBF), char(0xF1), char(0x80), char(0x80), char(0x83)};
83 n[1] = char(0x80);
103 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)}
    [all...]
codecvt_utf8_utf16_length.pass.cpp 31 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
37 n[1] = char(0x80);
54 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
60 n[1] = char(0x80);
77 char n[7] = {char(0xEF), char(0xBB), char(0xBF), char(0xF1), char(0x80), char(0x80), char(0x83)};
83 n[1] = char(0x80);
100 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.stdcvt/
codecvt_utf8_length.pass.cpp 31 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
37 n[1] = char(0x80);
54 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
60 n[1] = char(0x80);
77 char n[7] = {char(0xEF), char(0xBB), char(0xBF), char(0xF1), char(0x80), char(0x80), char(0x83)};
83 n[1] = char(0x80);
103 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)}
    [all...]
codecvt_utf8_utf16_length.pass.cpp 31 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
37 n[1] = char(0x80);
54 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)};
60 n[1] = char(0x80);
77 char n[7] = {char(0xEF), char(0xBB), char(0xBF), char(0xF1), char(0x80), char(0x80), char(0x83)};
83 n[1] = char(0x80);
100 char n[4] = {char(0xF1), char(0x80), char(0x80), char(0x83)}
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Max3421e_constants.h 100 #define rCPUCTL 0x80 //16<<3
102 #define bmPUSLEWID1 0x80 //b7
131 #define bmGPIN3 0x80
142 #define bmGPIN7 0x80
153 #define bmGPINIRQ7 0x80
164 #define bmGPINIEN7 0x80
175 #define bmGPINPOL7 0x80
186 #define bmHXFRDNIRQ 0x80
197 #define bmHXFRDNIE 0x80
208 #define bmDPPULLDN 0x80
    [all...]
  /external/chromium_org/media/formats/mp4/
es_descriptor_unittest.cc 55 0x03, 0x80, 0x19, 0x00, 0x01, 0x00, 0x04, 0x80,
56 0x80, 0x11, 0x40, 0x15, 0x00, 0x00, 0x00, 0x00,
58 0x80, 0x80, 0x80, 0x02, 0x12, 0x10, 0x06, 0x01,
75 0x03, 0x80, 0x19, 0x00, 0x01, 0x00, 0x04, 0x80,
76 0x80, 0x11, 0x40, 0x15, 0x00, 0x00, 0x00, 0x00,
78 0x80, 0x80, 0x80, 0x80, 0x02, 0x12, 0x10, 0x06
    [all...]
  /external/chromium_org/third_party/skia/gm/
tinybitmap.cpp 17 const SkPMColor c[] = { SkPackARGB32(0x80, 0x80, 0, 0) };
51 paint.setAlpha(0x80);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
addbyte.asm 11 add ax,0x80
12 add ax,strict byte 0x80
13 add ax,strict word 0x80
28 add bx,0x80
29 add bx,strict byte 0x80
30 add bx,strict word 0x80
  /external/compiler-rt/test/ubsan/TestCases/Float/
cast-overflow.cpp 57 char InfVal[] = { 0x00, 0x00, 0x80, 0x7f };
62 char NaNVal[] = { 0x01, 0x00, 0x80, 0x7f };
76 return MaxFloatRepresentableAsInt + 0x80;
  /external/skia/gm/
tinybitmap.cpp 17 const SkPMColor c[] = { SkPackARGB32(0x80, 0x80, 0, 0) };
51 paint.setAlpha(0x80);

Completed in 983 milliseconds

1 2 3 45 6 7 8 91011>>