Searched defs:Read (Results 1 - 25 of 381) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/delphi/
H A DZLib.pas91 function Read(var Buffer; Count: Longint): Longint; override; function
120 function Read(var Buffer; Count: Longint): Longint; override; function
439 function TCompressionStream.Read(var Buffer; Count: Longint): Longint;
498 function TDecompressionStream.Read(var Buffer; Count: Longint): Longint;
507 FZRec.avail_in := FStrm.Read(FBuffer, sizeof(FBuffer));
/external/zlib/src/contrib/dotzlib/DotZLib/
H A DGZipStream.cs154 public override int Read(byte[] buffer, int offset, int count) method in class:DotZLib.GZipStream
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc190 int FileWrapperImpl::Read(void* buf, int length) function in class:webrtc::FileWrapperImpl
/external/valgrind/main/callgrind/
H A Dsim.c130 typedef enum { Read = 0, Write = CACHELINE_DIRTY } RefType; enumerator in enum:__anon32388
350 * type (Read/Write), the line gets dirty on a write.
427 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
439 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
556 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
569 switch( cachesim_ref_wb( &LL, Read, a, size) ) {
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconst-fst.h68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
161 ConstFstImpl<A> *ConstFstImpl<A>::Read(istream &strm, function in class:fst::ConstFstImpl
180 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
189 LOG(ERROR) << "ConstFst::Read: Read failed: " << opts.source;
277 // Read a ConstFst from an input stream; return NULL on error
278 static ConstFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ConstFst
279 ConstFstImpl<A>* impl = ConstFstImpl<A>::Read(strm, opts);
283 // Read
284 static ConstFst<A> *Read(const string &filename) { function in class:fst::ConstFst
[all...]
H A Dencode.h147 bool Read(istream &strm, const string &source) { function in class:fst::EncodeTable
153 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source;
160 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
167 tuple->weight.Read(strm);
172 LOG(ERROR) << "EncodeTable::Read: read failed: " << source;
291 static EncodeMapper<A> *Read(istream &strm, function in class:fst::EncodeMapper
294 bool r = table->Read(strm, source);
298 static EncodeMapper<A> *Read(const string& filename, EncodeType type) { function in class:fst::EncodeMapper
304 return Read(strm, filename, type);
H A Dexpanded-fst.h37 // Read an ExpandedFst from an input stream; return NULL on error.
38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::ExpandedFst
44 if (!hdr.Read(strm, opts.source))
49 LOG(ERROR) << "ExpandedFst::Read: Not an ExpandedFst: " << ropts.source;
56 LOG(ERROR) << "ExpandedFst::Read: Unknown FST type \"" << hdr.FstType()
65 // Read an ExpandedFst from a file; return NULL on error.
66 static ExpandedFst<A> *Read(const string &filename) { function in class:fst::ExpandedFst
69 LOG(ERROR) << "ExpandedFst::Read: Can't open file: " << filename;
72 return Read(strm, FstReadOptions(filename));
H A Dfloat-weight.h46 istream &Read(istream &strm) { function in class:fst::FloatWeight
H A Dfst.cpp52 bool FstHeader::Read(istream &strm, const string &source) { function in class:fst::FstHeader
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
H A Dfst.h96 bool Read(istream &strm, const string &source);
147 // Read an Fst from an input stream; returns NULL on error
149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::Fst
155 if (!hdr.Read(strm, opts.source))
163 LOG(ERROR) << "Fst::Read: Unknown FST type \"" << hdr.FstType()
171 // Read an Fst from a file; return NULL on error
172 static Fst<A> *Read(const string &filename) { function in class:fst::Fst
175 LOG(ERROR) << "Fst::Read: Can't open file: " << filename;
178 return Read(strm, FstReadOptions(filename));
455 // Read
[all...]
H A Dmutable-fst.h70 // Read an MutableFst from an input stream; return NULL on error.
71 static MutableFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::MutableFst
77 if (!hdr.Read(strm, opts.source))
82 LOG(ERROR) << "MutableFst::Read: Not an MutableFst: " << ropts.source;
89 LOG(ERROR) << "MutableFst::Read: Unknown FST type \"" << hdr.FstType()
98 // Read an MutableFst from a file; returns NULL on error.
99 static MutableFst<A> *Read(const string &filename) { function in class:fst::MutableFst
102 LOG(ERROR) << "MutableFst::Read: Can't open file: " << filename;
105 return Read(strm, FstReadOptions(filename));
H A Dproduct-weight.h54 istream &Read(istream &strm) { function in class:fst::ProductWeight
55 value1_.Read(strm);
56 return value2_.Read(strm);
H A Dstring-weight.h104 istream &Read(istream &strm);
226 inline istream &StringWeight<L, S>::Read(istream &strm) { function in class:fst::StringWeight
H A Dsymbol-table.cpp102 SymbolTableImpl* SymbolTableImpl::Read(istream &strm, function in class:fst::SymbolTableImpl
107 LOG(ERROR) << "SymbolTable::Read: read failed";
124 LOG(ERROR) << "SymbolTable::Read: read failed";
H A Dsymbol-table.h62 static SymbolTableImpl* Read(istream &strm, const string& source);
235 static SymbolTable* Read(istream &strm, const string& source) { function in class:fst::SymbolTable
236 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
244 static SymbolTable* Read(const string& filename) { function in class:fst::SymbolTable
247 LOG(ERROR) << "SymbolTable::Read: Can't open file " << filename;
250 return Read(strm, filename);
H A Dvector-fst.h198 static VectorFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
350 VectorFstImpl<A> *VectorFstImpl<A>::Read(istream &strm, function in class:fst::VectorFstImpl
362 state->final.Read(strm);
366 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
374 arc.weight.Read(strm);
377 LOG(ERROR) << "VectorFst::Read: read failed: " << opts.source;
399 LOG(FATAL) << "VectorFst::Read: Obsolete file format";
525 // Read a VectorFst from an input stream; return NULL on error
526 static VectorFst<A> *Read(istream &strm, const FstReadOptions &opts) { function in class:fst::VectorFst
527 VectorFstImpl<A>* impl = VectorFstImpl<A>::Read(str
532 static VectorFst<A> *Read(const string &filename) { function in class:fst::VectorFst
[all...]
/external/skia/src/utils/win/
H A DSkIStream.cpp54 HRESULT STDMETHODCALLTYPE SkBaseIStream::Read(void* pv function in class:SkBaseIStream
133 HRESULT STDMETHODCALLTYPE SkIStream::Read(void* pv, ULONG cb, ULONG* pcbRead) { function in class:SkIStream
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp164 void BML_XMLParser::Read(SkStream& s, SkXMLWriter& writer) function in class:BML_XMLParser
171 void BML_XMLParser::Read(SkStream& s, SkWStream& output) function in class:BML_XMLParser
174 Read(s, writer);
177 void BML_XMLParser::Read(SkStream& s, SkXMLParser& output) function in class:BML_XMLParser
180 Read(s, writer);
/external/skia/tests/
H A DSerializationTest.cpp37 static void Read(SkValidatingReadBuffer& reader, T** flattenable) { function in struct:SerializationUtils
46 static void Read(SkValidatingReadBuffer& reader, SkMatrix* matrix) { function in struct:SerializationUtils
55 static void Read(SkValidatingReadBuffer& reader, SkPath* path) { function in struct:SerializationUtils
64 static void Read(SkValidatingReadBuffer& reader, SkRegion* region) { function in struct:SerializationUtils
73 static void Read(SkValidatingReadBuffer& reader, SkString* string) { function in struct:SerializationUtils
82 static bool Read(SkValidatingReadBuffer& reader, unsigned char* data, uint32_t arraySize) { function in struct:SerializationUtils
91 static bool Read(SkValidatingReadBuffer& reader, SkColor* data, uint32_t arraySize) { function in struct:SerializationUtils
100 static bool Read(SkValidatingReadBuffer& reader, int32_t* data, uint32_t arraySize) { function in struct:SerializationUtils
109 static bool Read(SkValidatingReadBuffer& reader, SkPoint* data, uint32_t arraySize) { function in struct:SerializationUtils
118 static bool Read(SkValidatingReadBuffe function in struct:SerializationUtils
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_input_stream.cc67 int32_t FontInputStream::Read() { function in class:sfntly::FontInputStream
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { function in class:sfntly::FontInputStream
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) { function in class:sfntly::FontInputStream
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() <<
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc58 int32_t FileInputStream::Read() { function in class:sfntly::FileInputStream
77 int32_t FileInputStream::Read(ByteVector* b) { function in class:sfntly::FileInputStream
78 return Read(b, 0, b->size());
81 int32_t FileInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { function in class:sfntly::FileInputStream
144 Read(b, offset, length);
H A Dmemory_input_stream.cc54 int32_t MemoryInputStream::Read() { function in class:sfntly::MemoryInputStream
71 int32_t MemoryInputStream::Read(ByteVector* b) { function in class:sfntly::MemoryInputStream
72 return Read(b, 0, b->size());
75 int32_t MemoryInputStream::Read(ByteVector* b, int32_t offset, int32_t length) { function in class:sfntly::MemoryInputStream
135 Read(b, offset, length);
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DAudioFilePlayer.h121 OSStatus (*Read)(struct S_AudioFileManager *afm, char *buffer, ByteCount *len); member in struct:S_AudioFileManager
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc136 int FileInputStream::CopyingFileInputStream::Read(void* buffer, int size) { function in class:google::protobuf::io::FileInputStream::CopyingFileInputStream
145 // Read error (not EOF).
301 int IstreamInputStream::CopyingIstreamInputStream::Read( function in class:google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h902 // ChDir(), FReopen(), FDOpen(), Read(), Write(), Close(), and
920 inline int Read(int fd, void* buf, unsigned int count) { function in namespace:testing::internal::posix

Completed in 5931 milliseconds

1234567891011>>