HomeSort by relevance Sort by last modified time
    Searched defs:Bytes (Results 101 - 125 of 298) sorted by null

1 2 3 45 6 7 8 91011>>

  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
UsbHcMem.c 40 UINTN Bytes;
52 // bytes of memory in the memory block.
82 Bytes = EFI_PAGES_TO_SIZE (Pages);
87 &Bytes,
92 if (EFI_ERROR (Status) || (Bytes != EFI_PAGES_TO_SIZE (Pages))) {
  /external/golang-protobuf/proto/
lib.go 134 Label *string `protobuf:"bytes,1,req,name=label" json:"label,omitempty"`
156 Name string `protobuf:"bytes,7,opt,name=name"`
192 RequiredField *string `protobuf:"bytes,5,req" json:"RequiredField,omitempty"`
343 // Bytes returns the contents of the Buffer.
344 func (p *Buffer) Bytes() []byte { return p.buf }
489 fmt.Printf("%3d: t=%3d bytes [%d]", index, tag, len(r))
754 canHaveDefault = true // bytes field
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataInputStreamTest.java 19 import com.google.common.primitives.Bytes;
73 assertEquals(Bytes.asList(data), Bytes.asList(b));
132 out.write(new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9}); // 10 bytes of junk to skip
  /external/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 22 // a block operation of Size bytes with source address Src and destination
36 // much point using a loop for 5 * 256 bytes or fewer. Anything in
62 // Handle a memset of 1, 2, 4 or 8 bytes with the operands given by
87 uint64_t Bytes = CSize->getZExtValue();
88 if (Bytes == 0)
97 Bytes <= 16 && countPopulation(Bytes) <= 2 :
98 Bytes <= 4) {
99 unsigned Size1 = Bytes == 16 ? 8 : 1 << findLastSet(Bytes);
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 43 /// Helper to construct a byte array from a bunch of bytes. The inputs are
47 private static byte[] Bytes(params int[] bytesAsInts)
49 byte[] bytes = new byte[bytesAsInts.Length];
52 bytes[i] = (byte) bytesAsInts[i];
54 return bytes;
58 /// Parses the given bytes using ReadRawVarint32() and ReadRawVarint64()
92 /// Parses the given bytes using ReadRawVarint32() and ReadRawVarint64() and
114 AssertReadVarint(Bytes(0x00), 0);
115 AssertReadVarint(Bytes(0x01), 1);
116 AssertReadVarint(Bytes(0x7f), 127);
    [all...]
  /external/swiftshader/third_party/LLVM/tools/llvm-mc/
Disassembler.cpp 10 // This class implements the disassembler of strings of bytes written in
40 const ByteArrayTy &Bytes;
42 VectorMemoryObject(const ByteArrayTy &bytes) : Bytes(bytes) {}
45 uint64_t getExtent() const { return Bytes.size(); }
50 *Byte = Bytes[Addr].first;
57 MCInstPrinter &Printer, const ByteArrayTy &Bytes,
60 VectorMemoryObject memoryObject(Bytes);
66 for (Index = 0; Index < Bytes.size(); Index += Size)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
Format.h 64 // Other implementations yield number of bytes needed, not including the
207 ArrayRef<uint8_t> Bytes;
212 uint32_t NumPerLine; // Number of bytes to show per line.
213 uint8_t ByteGroupSize; // How many hex bytes are grouped without spaces
214 bool Upper; // Show offset and hex bytes as upper case.
215 bool ASCII; // Show the ASCII bytes for the hex bytes to the right.
221 : Bytes(B), FirstByteOffset(O), IndentLevel(IL), NumPerLine(NPL),
230 format_bytes(ArrayRef<uint8_t> Bytes, Optional<uint64_t> FirstByteOffset = None,
233 return FormattedBytes(Bytes, IndentLevel, FirstByteOffset, NumPerLine
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 37 std::vector<uint8_t> Bytes;
39 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 if (Bytes.size() < Pos + Size) {
44 Bytes.resize(Pos + Size);
47 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 // and mark bytes as used.
63 // and mark bytes as used.
89 // Cache of the vtable's size in bytes.
93 // bytes are stored in reverse order until the globals are rebuilt. This means
107 // The offset in bytes from the start of the vtable (i.e. the address point)
    [all...]

Completed in 361 milliseconds

1 2 3 45 6 7 8 91011>>