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

1 2 3

  /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...]
  /bionic/libc/kernel/common/linux/
zconf.h 33 typedef unsigned char Byte;
  /development/ndk/platforms/android-3/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /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;
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /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/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NfcUtils.java 24 /** Class with utility methods for testing equality of messages and displaying byte payloads. */
49 static CharSequence displayByteArray(byte[] bytes) {
52 builder.append(Byte.toString(bytes[i]));
  /external/llvm/lib/MC/
MCAsmInfo.cpp 56 Data8bitsDirective = "\t.byte\t";
119 unsigned Byte = Value & 0x7f;
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
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/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterDwarf.cpp 49 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
51 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
52 if (IsMore) Byte |= 0x80;
53 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
71 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f);
73 if (Value || PadTo != 0) Byte |= 0x80;
74 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
84 /// EmitCFAByte - Emit a .byte 42 directive for a DW_CFA_xxx value.
123 /// EmitEncodingByte - Emit a .byte 42 directive that corresponds to an
170 /// EmitSectionOffset - Emit the 4-byte offset of Label from the start of it
    [all...]
  /external/clang/test/Analysis/
casts.c 54 typedef unsigned char Byte;
57 Byte buf[len];
  /libcore/luni/src/main/java/java/lang/
Byte.java 21 * The wrapper for the primitive type {@code byte}.
26 public final class Byte extends Number implements Comparable<Byte> {
33 private final byte value;
36 * The maximum {@code Byte} value, 2<sup>7</sup>-1.
38 public static final byte MAX_VALUE = (byte) 0x7F;
41 * The minimum {@code Byte} value, -2<sup>7</sup>.
43 public static final byte MIN_VALUE = (byte) 0x80
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java 36 public static String getBytesAsString(byte[] data) {
39 result.append(Byte.toHexString(data[i], false));
53 public static String toString(byte[] array, String prefix) {
55 // in <code>String toString(byte[], String)</code> method
78 // put current byte
79 sb.append(Byte.toHexString(array[i], false));
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
Logger.java 63 public void print(byte[] data) {
67 public void print(byte[] data, int offset, int len) {
71 public void printAsHex(int perLine, String prefix, String delimiter, byte[] data) {
76 byte[] data, int offset, int len) {
80 line.append(Byte.toHexString(data[i+offset], false));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ByteTest.java 24 * @tests java.lang.Byte#valueOf(byte)
27 assertEquals(new Byte(Byte.MIN_VALUE), Byte.valueOf(Byte.MIN_VALUE));
28 assertEquals(new Byte(Byte.MAX_VALUE), Byte.valueOf(Byte.MAX_VALUE))
    [all...]
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 32 primitiveTypes.put(Byte.TYPE.getName(), Byte.TYPE);
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 47 /// location of the next byte to emit. In the case of a buffer overflow (we
76 /// emitByte - This callback is invoked when a byte needs to be written to the
158 /// extra bytes are filled with the provided byte.
177 uint8_t Byte = Value & 0x7f;
179 if (Value || PadTo != 0) Byte |= 0x80;
180 emitByte(Byte);
185 uint8_t Byte = (PadTo > 1) ? 0x80 : 0x0;
186 emitByte(Byte);
198 uint8_t Byte = Value & 0x7f;
200 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0
    [all...]
MachineCodeEmitter.h 45 /// location of the next byte to emit. In the case of a buffer overflow (we
56 /// CurBufferPtr - Pointer to the next byte of memory to fill when emitting
79 /// emitByte - This callback is invoked when a byte needs to be written to the
179 uint8_t Byte = Value & 0x7f;
181 if (Value) Byte |= 0x80;
182 emitByte(Byte);
193 uint8_t Byte = Value & 0x7f;
195 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
196 if (IsMore) Byte |= 0x80;
197 emitByte(Byte);
    [all...]

Completed in 1744 milliseconds

1 2 3