HomeSort by relevance Sort by last modified time
    Searched defs:Byte (Results 1 - 25 of 196) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/lib/MC/
YAML.cpp 46 uint8_t Byte;
47 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte);
48 OS.write(Byte);
61 uint8_t Byte = *I;
62 OS << hexdigit(Byte >> 4);
63 OS << hexdigit(Byte & 0xf);
  /external/llvm/lib/Support/
LEB128.cpp 36 unsigned Byte = Value & 0x7f;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /libcore/luni/src/test/java/libcore/java/lang/
ByteTest.java 21 final byte min = Byte.MIN_VALUE;
22 final byte zero = (byte) 0;
23 final byte max = Byte.MAX_VALUE;
24 assertTrue(Byte.compare(max, max) == 0);
25 assertTrue(Byte.compare(min, min) == 0);
26 assertTrue(Byte.compare(zero, zero) == 0);
27 assertTrue(Byte.compare(max, zero) > 0)
    [all...]
  /development/ndk/platforms/android-3/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /external/llvm/include/llvm/Support/
LEB128.h 26 uint8_t Byte = Value & 0x7f;
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
32 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
33 OS << char(Byte);
41 uint8_t Byte = Value & 0x7f;
44 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
45 OS << char(Byte);
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-5/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-8/arch-x86/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;

Completed in 897 milliseconds

1 2 3 4 5 6 7 8