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

1 2 3 4 5 6 7 8

  /external/llvm/lib/ObjectYAML/
YAML.cpp 46 uint8_t Byte;
47 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte);
48 OS.write(Byte);
59 for (uint8_t Byte : Data)
60 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
53 uint8_t Byte = Value & 0x7f;
56 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
57 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
52 uint8_t Byte = Value & 0x7f;
55 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
56 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
52 uint8_t Byte = Value & 0x7f;
55 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
56 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
53 uint8_t Byte = Value & 0x7f;
56 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
57 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
52 uint8_t Byte = Value & 0x7f;
55 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
56 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
LEB128.h 27 uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
52 uint8_t Byte = Value & 0x7f;
55 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
56 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 275 static_assert(sizeof(PDB_UniqueId) == 16, "Expected 16-byte GUID");
279 uint8_t Byte = GuidBytes[i];
280 uint8_t HighNibble = (Byte >> 4) & 0xF;
281 uint8_t LowNibble = Byte & 0xF;
  /external/llvm/lib/Support/
LEB128.cpp 36 unsigned Byte = Value & 0x7f;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
LEB128.h 28 uint8_t Byte = Value & 0x7f;
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
39 // Pad with 0x80 and emit a terminating byte at the end.
55 uint8_t Byte = Value & 0x7f;
58 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
59 ((Value == -1) && ((Byte & 0x40) != 0))))
    [all...]
  /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...]
  /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]));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxeSmbusLib/
SmbusLib.c 90 Executes an SMBUS receive byte command.
92 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
94 The byte received from the SMBUS is returned.
105 @return The byte received from the SMBUS.
115 UINT8 Byte;
121 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
123 return Byte;
127 Executes an SMBUS send byte command.
129 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
130 The byte specified by Value is sent.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/PeiSmbusLib/
SmbusLib.c 90 Executes an SMBUS receive byte command.
92 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
94 The byte received from the SMBUS is returned.
105 @return The byte received from the SMBUS.
115 UINT8 Byte;
121 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
123 return Byte;
127 Executes an SMBUS send byte command.
129 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
130 The byte specified by Value is sent.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/PeiSmbusLibSmbusPpi/
SmbusLib.c 85 Executes an SMBUS receive byte command.
87 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
89 The byte received from the SMBUS is returned.
100 @return The byte received from the SMBUS.
110 UINT8 Byte;
116 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
118 return Byte;
122 Executes an SMBUS send byte command.
124 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
125 The byte specified by Value is sent.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeSmbusLib/
SmbusLib.c 101 Executes an SMBUS receive byte command.
103 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
105 The byte received from the SMBUS is returned.
126 @return The byte received from the SMBUS.
136 UINT8 Byte;
142 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
144 return Byte;
148 Executes an SMBUS send byte command.
150 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
151 The byte specified by Value is sent.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiSmbusLibSmbus2Ppi/
SmbusLib.c 101 Executes an SMBUS receive byte command.
103 Executes an SMBUS receive byte command on the SMBUS device specified by SmBusAddress.
105 The byte received from the SMBUS is returned.
126 @return The byte received from the SMBUS.
136 UINT8 Byte;
142 InternalSmBusExec (EfiSmbusReceiveByte, SmBusAddress, 1, &Byte, Status);
144 return Byte;
148 Executes an SMBUS send byte command.
150 Executes an SMBUS send byte command on the SMBUS device specified by SmBusAddress.
151 The byte specified by Value is sent.
    [all...]
  /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...]

Completed in 1697 milliseconds

1 2 3 4 5 6 7 8