HomeSort by relevance Sort by last modified time
    Searched defs:Read (Results 276 - 300 of 681) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/NorFlashDxe/
NorFlashDxe.c 41 EFI_STATUS Read(
51 Read
56 EFIAPI Read(
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/DeviceIo/
DeviceIo.h 58 EFI_DEVICE_IO Read;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
IsaIo.c 109 Performs an ISA I/O Read Cycle
117 @retval EFI_SUCCESS The data was read from the device sucessfully.
151 Status = IsaIoDevice->PciIo->Io.Read (
367 // so the processor can read the contents of the real buffer.
481 Performs an ISA Memory Read Cycle
489 @retval EFI_SUCCESS The data was read from the device successfully.
530 Status = IsaIoDevice->PciIo->Mem.Read (
701 only supports slave read/write operation to save code size.
705 the DMA operation is going to read or write to system memory.
829 // If this is a read operation from the DMA agents's point of view,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Sd/SdBlockIoPei/
SdBlockIoPei.h 79 BOOLEAN Read;
169 blocks are read, or an error is returned. If there is no media in the device,
181 @param[in] StartLBA The starting logical block address (LBA) to read from
189 @retval EFI_SUCCESS The data was read correctly from the device.
191 to perform the read operation.
192 @retval EFI_INVALID_PARAMETER The read request contains LBAs that are not
291 blocks are read, or an error is returned. If there is no media in the device,
303 @param[in] StartLBA The starting logical block address (LBA) to read from
311 @retval EFI_SUCCESS The data was read correctly from the device.
313 to perform the read operation.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
UfsHostController.h 58 /// A read operation from system memory by a bus master.
66 /// Provides both read and write access to system memory by both the processor and a
77 @param Operation Indicates if the bus master is going to read or write to system memory.
204 @param Buffer For read operations, the destination buffer to store the results.
207 @retval EFI_SUCCESS The data was read from or written to the UFS host controller.
246 EDKII_UFS_HC_MMIO_READ_WRITE Read;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DeviceIo.h 63 @param Buffer For read operations, the destination buffer to store the results. For write
69 @retval EFI_SUCCESS The data was read from or written to the device.
85 EFI_DEVICE_IO Read;
113 /// A read operation from system memory by a bus master.
123 /// Provides both read and write access to system memory
135 @param Operation Indicates if the bus master is going to read or write to system memory.
  /device/linaro/bootloader/edk2/StdLib/Include/Containers/
Fifo.h 59 /** Read or copy elements from the FIFO.
61 This function allows one to read one or more elements, as specified by Count,
66 to be read. If multiple elements are to be read, the elements are expected
70 @param[out] pElement Pointer to where to store the element(s) read from the FIFO.
72 @param[in] Consume If TRUE, consume read elements. Otherwise, preserve.
75 @retval >=0 The number of elements read from the FIFO.
110 /** Determine number of items available to read from the FIFO.
165 /** Get the FIFO's current Read Index.
185 cFIFO_Dequeue Read; ///< Read an element from the FIFO.
    [all...]
  /external/compiler-rt/test/asan/TestCases/Linux/
scariness_score_test.cc 43 enum ReadOrWrite { Read = 0, Write = 1 };
137 case 1: HeapBuferOverflow<char>(0, Read); break;
138 case 2: HeapBuferOverflow<int>(0, Read); break;
142 case 6: HeapUseAfterFree<char>(0, Read); break;
144 case 8: HeapUseAfterFree<int64_t>(0, Read); break;
147 case 11: StackBufferOverflow<int64_t>(0, Read); break;
149 case 13: StackUseAfterReturn<char>(0, Read); break;
164 // CHECK1: SCARINESS: 12 (1-byte-read-heap-buffer-overflow)
165 // CHECK2: SCARINESS: 17 (4-byte-read-heap-buffer-overflow)
169 // CHECK6: SCARINESS: 40 (1-byte-read-heap-use-after-free
    [all...]
  /external/giflib/
gif_lib_private.h 47 InputFunc Read; /* function to read gif input (TVT) */
  /external/google-breakpad/src/common/
byte_cursor.h 102 // Return the number of bytes available to read at the cursor.
113 // Read a SIZE-byte integer at this cursor, signed if IS_SIGNED is true,
115 // *RESULT to the number. If we read off the end of our buffer, clear
119 ByteCursor &Read(size_t size, bool is_signed, T *result) {
143 // Read an integer, using the cursor's established endianness and
145 // read off the end of our buffer, clear this cursor's complete_ flag.
150 return Read(sizeof(T), T_is_signed, &result);
154 // cursor to the end of them. If we read off the end of our buffer,
157 ByteCursor &Read(uint8_t *buffer, size_t size) {
213 // cursor. If we read off the end of our buffer, clear this cursor'
    [all...]
  /external/gptfdisk/
diskio-unix.cc 293 // A variant on the standard read() function. Done to work around
295 // size with the number of bytes read.
296 // Returns the number of bytes read into buffer.
297 int DiskIO::Read(void* buffer, int numBytes) {
319 cerr << "Unable to allocate memory in DiskIO::Read()! Terminating!\n";
323 // Read the data into temporary space, then copy it to buffer
324 retval = read(fd, tempSpace, numBlocks * blockSize);
334 } // DiskIO::Read()
338 // size with the number of bytes read.
diskio-windows.cc 211 // A variant on the standard read() function. Done to work around
213 // size with the number of bytes read.
214 // Returns the number of bytes read into buffer.
215 int DiskIO::Read(void* buffer, int numBytes) {
238 cerr << "Unable to allocate memory in DiskIO::Read()! Terminating!\n";
242 // Read the data into temporary space, then copy it to buffer
255 } // DiskIO::Read()
  /external/libbrillo/brillo/dbus/
data_serialization.h 15 // - Methods to read arbitrary C++ data from D-Bus MessageReader:
49 // - static bool Read(dbus::MessageReader* reader, CustomType* value);
200 inline static bool Read(dbus::MessageReader* reader, bool* value) {
217 inline static bool Read(dbus::MessageReader* reader, uint8_t* value) {
234 inline static bool Read(dbus::MessageReader* reader, int16_t* value) {
253 inline static bool Read(dbus::MessageReader* reader, uint16_t* value) {
270 inline static bool Read(dbus::MessageReader* reader, int32_t* value) {
289 inline static bool Read(dbus::MessageReader* reader, uint32_t* value) {
306 inline static bool Read(dbus::MessageReader* reader, int64_t* value) {
325 inline static bool Read(dbus::MessageReader* reader, uint64_t* value)
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineInstrBundle.h 153 /// Reads - One of the operands read the virtual register. This does not
180 /// Reg or one of its aliases is read. The register may only be read
182 bool Read;
183 /// Reg or a super-register is read. The full register is read.
  /external/lzma/CPP/7zip/Common/
FileStreams.cpp 57 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize)
179 ssize_t res = File.Read(data, (size_t)size);
194 STDMETHODIMP CStdInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize)
205 STDMETHODIMP CStdInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize)
227 res = read(0, data, (size_t)size);
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 116 hres = inStream->Read(_inBuf, _inBufSize, &_inSize);
200 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
212 RINOK(_inStream->Read(_inBuf, _inBufSize, &_inSize));
LzmaDecoder.cpp 105 RINOK(inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
189 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
198 RINOK(_inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
246 RINOK(_inStream->Read(_inBuf, _inBufSizeAllocated, &_inSize));
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 24 public override int Read(byte[] buffer, int offset, int count)
31 int num = s1.Read(buffer, offset, count);
40 numTotal += s2.Read(buffer, offset, count);
94 // + " -si: read data from stdin\n"
220 inStream = new FileStream(inputName, FileMode.Open, FileAccess.Read);
238 trainStream = new FileStream(train, FileMode.Open, FileAccess.Read);
324 if (inStream.Read(properties, 0, 5) != 5)
338 throw (new Exception("Can't Read 1"));
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 81 // doesn't read past the end of the input, so write an extra byte - this
338 /// Tests that if we read an string that contains invalid UTF-8, no exception
377 public override int Read(byte[] buffer, int offset, int count)
379 return base.Read(buffer, offset, Math.Min(count, blockSize));
  /external/skia/src/utils/win/
SkIStream.cpp 52 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv
131 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) {
132 *pcbRead = static_cast<ULONG>(this->fSkStream->read(pv, cb));
  /external/skqp/src/utils/win/
SkIStream.cpp 52 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv
131 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) {
132 *pcbRead = static_cast<ULONG>(this->fSkStream->read(pv, cb));
  /external/swiftshader/third_party/subzero/pnacl-llvm/
NaClBitcodeHeader.cpp 115 bool NaClBitcodeHeaderField::Read(const uint8_t *Buf, size_t BufLen) {
191 // Read #Fields and number of bytes needed for the header.
193 return UnsupportedError("Bitcode read failure");
207 // Read in each field.
211 if (!Field->Read(BufPtr, BufEnd - BufPtr))
212 return UnsupportedError("Bitcode read failure");
219 bool NaClBitcodeHeader::Read(const unsigned char *BufPtr,
234 bool NaClBitcodeHeader::Read(MemoryObject *Bytes) {
237 // First, read the prefix, which is 2 * WordSize, to determine the
242 return UnsupportedError("Bitcode read failure")
    [all...]
  /external/tensorflow/tensorflow/core/lib/io/
recordio_test.cc 74 Status Read(uint64 offset, size_t n, StringPiece* result,
76 EXPECT_FALSE(returned_partial_) << "must not Read() after eof/error";
81 return errors::DataLoss("read error");
117 ASSERT_TRUE(!reading_) << "Write() after starting to read";
123 string Read() {
175 TEST_F(RecordioTest, Empty) { ASSERT_EQ("EOF", Read()); }
182 ASSERT_EQ("foo", Read());
183 ASSERT_EQ("bar", Read());
184 ASSERT_EQ("", Read());
185 ASSERT_EQ("xxxx", Read());
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
file_block_cache.cc 157 Status FileBlockCache::Read(const string& filename, size_t offset, size_t n,
164 // The cache is effectively disabled, so we pass the read through to the
168 // Calculate the block-aligned start and end of the read.
188 // happen if `offset` is not block-aligned, and the read returns the last
  /external/webrtc/webrtc/base/
stream_unittest.cc 27 virtual StreamResult Read(void* buffer, size_t buffer_len,
28 size_t* read, int* error) {
33 if (read)
34 *read = buffer_len;
82 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS);
90 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS);
109 EXPECT_EQ(SR_BLOCK, stream->Read(out, kSize, &bytes, NULL));
124 // Try a full read
125 EXPECT_EQ(SR_SUCCESS, stream->Read(out, kSize, &bytes, NULL));
129 // Try a read that should bloc
361 size_t read; local
    [all...]

Completed in 406 milliseconds

<<11121314151617181920>>