HomeSort by relevance Sort by last modified time
    Searched refs:x80 (Results 26 - 50 of 3258) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-3/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-4/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-5/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-8/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
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/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
  /prebuilts/ndk/android-ndk-r7/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
  /bionic/libc/arch-x86/bionic/
_exit_with_stack_teardown.S 26 int $0x80
29 int $0x80
  /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...]
  /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...]
  /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/libvpx/vp8/common/
loopfilter_filters.c 59 ps1 = (signed char) * op1 ^ 0x80;
60 ps0 = (signed char) * op0 ^ 0x80;
61 qs0 = (signed char) * oq0 ^ 0x80;
62 qs1 = (signed char) * oq1 ^ 0x80;
81 *oq0 = u ^ 0x80;
83 *op0 = u ^ 0x80;
92 *oq1 = u ^ 0x80;
94 *op1 = u ^ 0x80;
165 signed char ps2 = (signed char) * op2 ^ 0x80;
166 signed char ps1 = (signed char) * op1 ^ 0x80;
    [all...]
  /external/skia/gm/
tinybitmap.cpp 21 c[0] = SkPackARGB32(0x80, 0x80, 0, 0);
54 paint.setAlpha(0x80);
  /frameworks/base/core/java/android/net/
SntpClient.java 172 int i0 = ((b0 & 0x80) == 0x80 ? (b0 & 0x7F) + 0x80 : b0);
173 int i1 = ((b1 & 0x80) == 0x80 ? (b1 & 0x7F) + 0x80 : b1);
174 int i2 = ((b2 & 0x80) == 0x80 ? (b2 & 0x7F) + 0x80 : b2);
175 int i3 = ((b3 & 0x80) == 0x80 ? (b3 & 0x7F) + 0x80 : b3)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
Mutf8.java 45 if ((b & 0xC0) != 0x80) {
52 if (((b & 0xC0) != 0x80) || ((c & 0xC0) != 0x80)) {
96 dst[offset++] = (byte) (0x80 | (0x3f & ch));
99 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6)));
100 dst[offset++] = (byte) (0x80 | (0x3f & ch));
  /external/dexmaker/src/dx/java/com/android/dx/util/
Mutf8.java 45 if ((b & 0xC0) != 0x80) {
52 if (((b & 0xC0) != 0x80) || ((c & 0xC0) != 0x80)) {
96 dst[offset++] = (byte) (0x80 | (0x3f & ch));
99 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6)));
100 dst[offset++] = (byte) (0x80 | (0x3f & ch));
  /external/dropbear/libtomcrypt/src/pk/asn1/der/utf8/
der_encode_utf8_string.c 89 case 2: out[x++] = 0xC0 | ((in[y] >> 6) & 0x1F); out[x++] = 0x80 | (in[y] & 0x3F); break;
90 case 3: out[x++] = 0xE0 | ((in[y] >> 12) & 0x0F); out[x++] = 0x80 | ((in[y] >> 6) & 0x3F); out[x++] = 0x80 | (in[y] & 0x3F); break;
91 case 4: out[x++] = 0xF0 | ((in[y] >> 18) & 0x07); out[x++] = 0x80 | ((in[y] >> 12) & 0x3F); out[x++] = 0x80 | ((in[y] >> 6) & 0x3F); out[x++] = 0x80 | (in[y] & 0x3F); break;
  /external/grub/stage2/
hercules.c 51 outb (0x80, 0);
53 outb (0x80, 0);
56 outb (0x80, 0);
58 outb (0x80, 0);
178 outb (0x80, 0);
180 outb (0x80, 0);
  /dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
Mutf8Test.java 27 new byte[] { 'A', 'B', 'C', (byte) 0xc0, (byte) 0x80, 0, 'E' });
34 assertEquals(Arrays.toString(new byte[] { 'B', 'C', (byte) 0xc0, (byte) 0x80 }),

Completed in 330 milliseconds

12 3 4 5 6 7 8 91011>>