/external/llvm/lib/MC/ |
MCObjectWriter.cpp | 24 uint8_t Byte = Value & 0x7f; 27 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) || 28 ((Value == -1) && ((Byte & 0x40) != 0)))); 30 Byte |= 0x80; // Mark this byte that that more bytes will follow. 31 OS << char(Byte); 38 uint8_t Byte = Value & 0x7f; 41 Byte |= 0x80; // Mark this byte that that more bytes will follow. 42 OS << char(Byte); [all...] |
/external/bluetooth/bluez/test/ |
simple-endpoint | 14 SBC_CODEC = dbus.Byte(0x00) 20 SBC_CAPABILITIES = dbus.Array([dbus.Byte(0xff), dbus.Byte(0xff), dbus.Byte(2), dbus.Byte(64)]) 22 SBC_CONFIGURATION = dbus.Array([dbus.Byte(0x21), dbus.Byte(0x15), dbus.Byte(2), dbus.Byte(32)]) 24 MP3_CODEC = dbus.Byte(0x01 [all...] |
/bionic/libc/kernel/common/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
zlib.h | 20 Byte *next_in; 24 Byte *next_out;
|
/development/ndk/platforms/android-3/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
zlib.h | 20 Byte *next_in; 24 Byte *next_out;
|
/external/kernel-headers/original/linux/ |
zconf.h | 52 typedef unsigned char Byte; /* 8 bits */
|
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
zlib.h | 20 Byte *next_in; 24 Byte *next_out;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
zlib.h | 20 Byte *next_in; 24 Byte *next_out;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
zlib.h | 20 Byte *next_in; 24 Byte *next_out;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/ |
zconf.h | 33 typedef unsigned char Byte;
|
/cts/tools/vm-tests/src/dot/junit/opcodes/rsub_int_lit8/ |
Test_rsub_int_lit8.java | 71 * 2: a = Byte.MAX_VALUE, b = 0, b-a = -Byte.MAX_VALUE 76 assertEquals(-Byte.MAX_VALUE, t.run(Byte.MAX_VALUE)); 82 * 2: a = Byte.MIN_VALUE, b = 0, b-a = 128 87 assertEquals(128, t.run(Byte.MIN_VALUE)); 100 * 1: a = 0, b = Byte.MAX_VALUE, b-a = Byte.MAX_VALUE 101 * 2: a = 1, b = Byte.MAX_VALUE, b-a = 126 102 * 3: a = -1, b = Byte.MAX_VALUE, b-a = 12 [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/ |
Test_rsub_int_lit8.java | 59 * 2: a = Byte.MAX_VALUE, b = 0, b-a = -Byte.MAX_VALUE 64 assertEquals(-Byte.MAX_VALUE, t.run(Byte.MAX_VALUE)); 70 * 2: a = Byte.MIN_VALUE, b = 0, b-a = 128 75 assertEquals(128, t.run(Byte.MIN_VALUE)); 88 * 1: a = 0, b = Byte.MAX_VALUE, b-a = Byte.MAX_VALUE 89 * 2: a = 1, b = Byte.MAX_VALUE, b-a = 126 90 * 3: a = -1, b = Byte.MAX_VALUE, b-a = 12 [all...] |
/external/llvm/tools/llvm-objdump/ |
llvm-objdump.h | 36 int readByte(uint64_t Addr, uint8_t *Byte) const { 39 *Byte = Bytes[Addr];
|
/external/guava/src/com/google/common/primitives/ |
Bytes.java | 34 * Static utility methods pertaining to {@code byte} primitives, that are not 35 * already found in either {@link Byte} or {@link Arrays}, <i>and interpret 49 * {@code ((Byte) value).hashCode()}. 51 * @param value a primitive {@code byte} value 54 public static int hashCode(byte value) { 62 * @param array an array of {@code byte} values, possibly empty 63 * @param target a primitive {@code byte} value 67 public static boolean contains(byte[] array, byte target) { 68 for (byte value : array) [all...] |
/external/clang/test/Analysis/ |
casts.c | 54 typedef unsigned char Byte; 57 Byte buf[len];
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
ByteMemberValue.java | 23 * Byte constant value. 32 * Constructs a byte constant value. The initial value is specified 43 * Constructs a byte constant value. 47 public ByteMemberValue(byte b, ConstPool cp) { 53 * Constructs a byte constant value. The initial value is 0. 57 setValue((byte)0); 61 return new Byte(getValue()); 65 return byte.class; 71 public byte getValue() { 72 return (byte)cp.getIntegerInfo(valueIndex) [all...] |