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

1 2 3 45 6 7 8 91011>>

  /external/libmojo/ui/gfx/geometry/mojo/
geometry_struct_traits.h 28 static bool Read(gfx::mojom::InsetsDataView data, gfx::Insets* out) {
40 static bool Read(gfx::mojom::InsetsFDataView data, gfx::InsetsF* out) {
50 static bool Read(gfx::mojom::PointDataView data, gfx::Point* out) {
60 static bool Read(gfx::mojom::PointFDataView data, gfx::PointF* out) {
72 static bool Read(gfx::mojom::RectDataView data, gfx::Rect* out) {
87 static bool Read(gfx::mojom::RectFDataView data, gfx::RectF* out) {
100 static bool Read(gfx::mojom::SizeDataView data, gfx::Size* out) {
113 static bool Read(gfx::mojom::SizeFDataView data, gfx::SizeF* out) {
126 static bool Read(gfx::mojom::Vector2dDataView data, gfx::Vector2d* out) {
137 static bool Read(gfx::mojom::Vector2dFDataView data, gfx::Vector2dF* out)
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvreader.cc 100 int MkvReader::Read(long long offset, long len, unsigned char* buffer) {
  /external/llvm/lib/AsmParser/
Parser.cpp 84 unsigned Read;
85 Type *Ty = parseTypeAtBeginning(Asm, Read, Err, M, Slots);
88 if (Read != Asm.size()) {
92 Err = SM.GetMessage(SMLoc::getFromPointer(Asm.begin() + Read),
98 Type *llvm::parseTypeAtBeginning(StringRef Asm, unsigned &Read,
106 .parseTypeAtBeginning(Ty, Read, Slots))
  /external/llvm/tools/lli/
RemoteJITUtils.h 33 assert(Dst && "Attempt to read into null.");
36 ssize_t Read = ::read(InFD, Dst + Completed, Size - Completed);
37 if (Read <= 0) {
45 Completed += Read;
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 300 unsigned Read;
304 Ty = parseTypeAtBeginning("i32", Read, Error, M, &Mapping);
308 ASSERT_TRUE(Read == 3);
311 Ty = parseTypeAtBeginning("i13", Read, Error, M, &Mapping);
315 ASSERT_TRUE(Read == 3);
318 Ty = parseTypeAtBeginning("float", Read, Error, M, &Mapping);
321 ASSERT_TRUE(Read == 5);
323 Ty = parseTypeAtBeginning("double", Read, Error, M, &Mapping);
326 ASSERT_TRUE(Read == 6);
330 Ty = parseTypeAtBeginning("%st", Read, Error, M, &Mapping)
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
io.c 55 long Read(fd_t fd, void *buf, const unsigned long trsiz)
61 tcnt = read(fd, buf, trsiz);
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.cpp 75 STDMETHODIMP CFolderInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
84 RINOK(_stream->Read(data, size, &processed2));
  /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)
  /external/lzma/CPP/Common/
C_FileIO.cpp 63 ssize_t CInFile::Read(void *data, size_t size)
65 return read(_handle, data, size);
  /external/puffin/src/
extent_stream.cc 82 bool ExtentStream::Read(void* buffer, size_t length) {
106 stream_->Read(reinterpret_cast<uint8_t*>(read_buffer) + bytes_passed,
113 LOG(ERROR) << "Either read or write buffer should be given!";
memory_stream.cc 52 bool MemoryStream::Read(void* buffer, size_t length) {
  /external/tensorflow/tensorflow/compiler/xla/
packed_literal_reader.cc 42 StatusOr<std::unique_ptr<Literal>> PackedLiteralReader::Read(
68 auto s = file_->Read(offset_, bytes, &sp, data);
73 // Success: make sure we move the data into the right place if the Read
80 VLOG(3) << "read shape from file: " << ShapeUtil::HumanString(shape);
85 // Try to read a single byte from offset_. If we can't, we've
89 auto s = file_->Read(offset_, sizeof(single_byte), &sp, single_byte);
  /external/webrtc/webrtc/base/
socketstream.cc 60 StreamResult SocketStream::Read(void* buffer, size_t buffer_len,
61 size_t* read, int* error) {
72 if (read)
73 *read = result;
transformadapter.cc 34 TransformAdapter::Read(void * buffer, size_t buffer_len,
35 size_t * read, int * error) {
46 StreamResult result = StreamAdapterInterface::Read(
91 if (read)
92 *read = out_len;
  /external/webrtc/webrtc/common_audio/
audio_ring_buffer.cc 40 void AudioRingBuffer::Read(float* const* data, size_t channels, size_t frames) {
43 const size_t read = local
45 RTC_CHECK_EQ(read, frames);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
input_audio_file.cc 24 bool InputAudioFile::Read(size_t samples, int16_t* destination) {
30 // Rewind and read the missing samples.
35 // Could not read enough even after rewinding the file.
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 43 bool ResourceFileReader::Read(uint32_t* out) {
60 BWE_TEST_LOGGING_LOG1("Create", "Can't read file: %s", filepath.c_str());
  /prebuilts/go/darwin-x86/src/bytes/
reader.go 16 // Unlike a Buffer, a Reader is read-only and supports seeking.
38 // Read implements the io.Reader interface.
39 func (r *Reader) Read(b []byte) (n int, err error) {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
syntax.go 92 func (r *bytesReader) Read(p []byte) (int, error) {
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader.go 52 read func(*decoder) (uint16, error) // readLSB or readMSB
87 toRead []byte // bytes to return from Read
122 func (d *decoder) Read(b []byte) (int, error) {
137 // read specifies how to decode bytes into codes.
143 code, err := d.read(d)
231 // Reads from the returned io.ReadCloser read and decompress data from r.
233 // the decompressor may read more data than necessary from r.
243 d.read = (*decoder).readLSB
245 d.read = (*decoder).readMSB
  /prebuilts/go/darwin-x86/src/compress/zlib/
reader.go 18 and to read that data back:
64 // Reads from the returned ReadCloser read and decompress data from r.
65 // If r does not implement io.ByteReader, the decompressor may read more
88 func (z *reader) Read(p []byte) (int, error) {
94 n, z.err = z.decompressor.Read(p)
137 // Read the header (RFC 1950 section 2.2.).
  /prebuilts/go/darwin-x86/src/crypto/rand/
util_test.go 56 func (r *countingReader) Read(p []byte) (n int, err error) {
57 n, err = r.r.Read(p)
76 t.Errorf("Int(reader, %d) should read %d bytes, but it read: %d", max, expected, reader.n)
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_test.go 97 func (r *recordingConn) Read(b []byte) (n int, err error) {
98 if n, err = r.Conn.Read(b); n == 0 {
  /prebuilts/go/darwin-x86/src/encoding/ascii85/
ascii85.go 258 func (d *decoder) Read(p []byte) (n int, err error) {
274 // Decode leftover input from last read.
306 // Read more data.
307 nn, d.readErr = d.r.Read(d.buf[d.nbuf:])
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader_test.go 320 // The implementation may read each line in several chunks if it doesn't fit entirely
321 // in the read buffer, so we should test the code to handle that condition.
417 func (r *nTimes) Read(p []byte) (n int, err error) {
445 _, err := r.Read()

Completed in 512 milliseconds

1 2 3 45 6 7 8 91011>>