HomeSort by relevance Sort by last modified time
    Searched refs:Read (Results 126 - 150 of 2133) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Include/Ppi/
EcpPciCfg.h 27 A PCI read and write operation.
54 ECP_PEI_PCI_CFG_PPI_IO Read;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/EcpPciCfg/
EcpPciCfg.h 43 ECP_PEI_PCI_CFG_PPI_IO Read;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/Protocol/
EmbeddedExternalDevice.h 43 Read a set of contiguous external device registers.
49 Length - number of bytes to read
54 EFI_SUCCESS - registers read successfully
88 EMBEDDED_EXTERNAL_DEVICE_READ Read;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
SmmCpuIo.h 41 @param[in,out] Buffer For read operations, the destination buffer to store
45 @retval EFI_SUCCESS The data was read from or written to the device.
63 /// This service provides the various modalities of memory and I/O read.
65 EFI_SMM_CPU_IO Read;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciPowerManagement.c 55 // Read PMCSR
57 Status = PciIoDevice->PciIo.Pci.Read (
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
SmmCpuIo2.h 49 @param[in,out] Buffer For read operations, the destination buffer to store
53 @retval EFI_SUCCESS The data was read from or written to the device.
71 /// This service provides the various modalities of memory and I/O read.
73 EFI_SMM_CPU_IO2 Read;
  /external/bsdiff/
buffer_file.h 19 // to |file| at once upon closing. Read and Seek are not supported.
27 bool Read(void* buf, size_t count, size_t* bytes_read) override;
file.h 23 bool Read(void* buf, size_t count, size_t* bytes_read) override;
memory_file.h 16 // Creates a read only MemoryFile based on the underlying |data| passed.
24 bool Read(void* buf, size_t count, size_t* bytes_read) override;
sink_file.h 22 // Read, Seek and GetSize are not supported.
28 bool Read(void* buf, size_t count, size_t* bytes_read) override;
  /external/libmojo/ipc/
ipc_mojo_param_traits.h 27 static bool Read(const base::Pickle* m, base::PickleIterator* iter,
  /external/libmojo/mojo/public/cpp/bindings/
string_traits_stl.h 30 static bool Read(StringDataView input, std::string* output) {
string_traits_string16.h 32 static bool Read(StringDataView input, base::string16* output);
string_traits_string_piece.h 35 static bool Read(StringDataView input, base::StringPiece* output) {
string_traits_wtf.h 26 static bool Read(StringDataView input, WTF::String* output);
  /external/libmojo/mojo/public/cpp/bindings/tests/
struct_with_traits_impl_traits.h 30 static bool Read(test::NestedStructWithTraits::DataView data,
44 static bool Read(test::StructWithTraits::DataView data,
99 static bool Read(test::PassByValueStructWithTraits::DataView data,
114 static bool Read(test::StructWithTraitsForUniquePtrTest::DataView data,
  /external/libxml2/python/tests/
reader5.py 21 while reader.Read() > 0:
  /external/llvm/lib/DebugInfo/PDB/Raw/
EnumTables.cpp 23 PDB_ENUM_CLASS_ENT(OMFSegDescFlags, Read),
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.h 30 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
  /external/lzma/CPP/7zip/Common/
StreamBinder.cpp 16 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
21 STDMETHODIMP CBinderInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
22 { return _binder->Read(data, size, processedSize); }
87 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
StreamBinder.h 42 HRESULT Read(void *data, UInt32 size, UInt32 *processedSize);
  /external/puffin/src/
file_stream.h 22 static UniqueStreamPtr Open(const std::string& path, bool read, bool write);
27 bool Read(void* buffer, size_t length) override;
memory_stream.h 32 bool Read(void* buffer, size_t length) override;
stream_unittest.cc 27 // Test read
31 ASSERT_TRUE(stream->Read(buf.data(), buf.size()));
41 ASSERT_TRUE(stream->Read(tmp.data(), 0));
42 ASSERT_FALSE(stream->Read(tmp.data(), 1));
43 ASSERT_FALSE(stream->Read(tmp.data(), 2));
44 ASSERT_FALSE(stream->Read(tmp.data(), 3));
45 ASSERT_FALSE(stream->Read(tmp.data(), 100));
48 ASSERT_TRUE(stream->Read(tmp.data(), 0));
49 ASSERT_TRUE(stream->Read(tmp.data(), 1));
52 ASSERT_FALSE(stream->Read(tmp.data(), 2))
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamReader.h 11 // read an arbitrary bitstream, regardless of its contents.
91 /// hasBlockInfoRecords - Return true if we've already read and processed the
260 Read(static_cast<unsigned>(WordBitNo));
264 uint32_t Read(unsigned NumBits) {
283 // Read the next word from the stream.
288 // Extract NumBits-BitsInCurWord from what we just read.
304 if (NumBits <= 32) return Read(NumBits);
306 uint64_t V = Read(32);
307 return V | (uint64_t)Read(NumBits-32) << 32;
311 uint32_t Piece = Read(NumBits)
    [all...]

Completed in 523 milliseconds

1 2 3 4 56 7 8 91011>>