Searched defs:strm (Results 76 - 100 of 200) sorted by relevance

12345678

/external/lldb/source/Interpreter/
H A DOptionValueDictionary.cpp28 OptionValueDictionary::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) argument
34 strm.Printf ("(%s of %ss)", GetTypeAsCString(), GetBuiltinTypeAsCString(dict_type));
36 strm.Printf ("(%s)", GetTypeAsCString());
41 strm.PutCString (" =");
45 strm.IndentMore();
50 strm.EOL();
51 strm.Indent(pos->first.GetCString());
62 strm.PutChar (' ');
63 option_value->DumpValue(exe_ctx, strm, dump_mask | extra_dump_options);
75 strm
92 StreamString strm; local
430 StreamString strm; local
[all...]
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp197 StreamString strm; local
198 threads_list.Dump(strm);
199 log->Printf("threads_list = %s", strm.GetString().c_str());
/external/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.cpp358 PlatformLinux::GetStatus (Stream &strm) argument
362 Platform::GetStatus(strm);
367 strm.Printf (" Kernel: %s\n", un.sysname);
368 strm.Printf (" Release: %s\n", un.release);
369 strm.Printf (" Version: %s\n", un.version);
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformiOSSimulator.cpp162 PlatformiOSSimulator::GetStatus (Stream &strm) argument
164 Platform::GetStatus (strm);
167 strm.Printf (" SDK Path: \"%s\"\n", sdk_directory);
169 strm.PutCString (" SDK Path: error: unable to locate SDK\n");
/external/lldb/source/Target/
H A DThreadPlanCallFunction.cpp250 StreamString strm; local
264 reg_value.Dump(&strm, reg_info, true, false, eFormatDefault);
265 strm.EOL();
268 log->PutCString(strm.GetData());
/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.cpp83 static int ReadNumber( RLByteStream& strm, int maxdigits ) argument
89 code = strm.GetByte();
99 code = strm.GetByte();
104 code = strm.GetByte();
107 code = strm.GetByte();
116 code = strm.GetByte();
/external/openfst/src/include/fst/
H A Dadd-on.h200 static AddOnImpl<F, T> *Read(istream &strm, const FstReadOptions &opts) { argument
204 hdr.Read(strm, nopts.source);
208 if (!impl->ReadHeader(strm, nopts, kMinFileVersion, &hdr))
213 ReadType(strm, &magic_number); // Ensures this is an add-on Fst.
221 F *fst = F::Read(strm, fopts);
227 ReadType(strm, &have_addon);
229 t = T::Read(strm);
240 bool Write(ostream &strm, const FstWriteOptions &opts) const { argument
245 WriteHeader(strm, nopts, kFileVersion, &hdr);
246 WriteType(strm, kAddOnMagicNumbe
[all...]
H A Dflags.h176 std::ostringstream strm; local
177 strm << default_value;
178 return strm.str();
H A Dinterval-set.h59 istream &Read(istream &strm) { argument
61 ReadType(strm, &n);
63 ReadType(strm, &n);
65 return strm;
68 ostream &Write(ostream &strm) const {
70 WriteType(strm, n);
72 WriteType(strm, n);
73 return strm;
157 istream &Read(istream &strm) { argument
158 ReadType(strm,
364 operator <<(ostream &strm, const IntervalSet<T> &s) argument
[all...]
H A Dpair-weight.h39 istream &operator>>(istream &strm, PairWeight<W1, W2> &w);
71 istream &Read(istream &strm) { argument
72 value1_.Read(strm);
73 return value2_.Read(strm);
76 ostream &Write(ostream &strm) const {
77 value1_.Write(strm);
78 return value2_.Write(strm);
116 istream &strm, PairWeight<W1, W2>& w, char separator) {
119 c = strm.get();
125 strm
115 ReadNoParen( istream &strm, PairWeight<W1, W2>& w, char separator) argument
144 ReadWithParen( istream &strm, PairWeight<W1, W2>& w, char separator, char open_paren, char close_paren) argument
234 operator <<(ostream &strm, const PairWeight<W1, W2> &w) argument
256 operator >>(istream &strm, PairWeight<W1, W2> &w) argument
[all...]
H A Dtuple-weight.h38 istream &operator>>(istream &strm, TupleWeight<W, n> &w);
83 istream &Read(istream &strm) { argument
85 values_[i].Read(strm);
86 return strm;
89 ostream &Write(ostream &strm) const {
91 values_[i].Write(strm);
92 return strm;
135 inline static istream &ReadNoParen(istream &strm, argument
140 c = strm.get();
146 c = strm
171 ReadWithParen(istream &strm, TupleWeight<W, n> &w, char separator, char open_paren, char close_paren) argument
275 operator <<(ostream &strm, const TupleWeight<W, n> &w) argument
306 operator >>(istream &strm, TupleWeight<W, n> &w) argument
[all...]
H A Dutil.h64 inline istream &ReadType(istream &strm, T *t) { argument
65 return t->Read(strm);
70 inline istream &ReadType(istream &strm, T *t) { \
71 return strm.read(reinterpret_cast<char *>(t), sizeof(T)); \
90 inline istream &ReadType(istream &strm, string *s) { argument
93 strm.read(reinterpret_cast<char *>(&ns), sizeof(ns));
96 strm.read(&c, 1);
99 return strm;
104 inline istream &ReadType(istream &strm, pair<S, T> *p) { argument
105 ReadType(strm,
111 ReadType(istream &strm, pair<const S, T> *p) argument
170 WriteType(ostream &strm, const T t) argument
197 WriteType(ostream &strm, const string &s) argument
205 WriteType(ostream &strm, const pair<S, T> &p) argument
265 ostringstream strm; local
317 ostream *strm = &cout; local
[all...]
/external/openfst/src/include/fst/extensions/far/
H A Dsttable.h248 ifstream *strm = streams_[id]; local
254 strm->seekg(positions[mid]);
256 ReadType(*strm, &key);
263 strm->seekg(positions[i - 1]);
264 ReadType(*strm, &key);
266 strm->seekg(positions[i]);
270 strm->seekg(positions[low]);
274 strm->seekg(positions[low]);
329 // Read(istream &strm, const string &filename);
334 ifstream strm(filenam
[all...]
/external/openfst/src/include/fst/script/
H A Ddraw-impl.h66 void Draw(ostream *strm, const string &dest) { argument
67 ostrm_ = strm;
/external/openfst/src/test/
H A Dfst_test.cc86 bool Write(ostream &strm) const { return true; }
88 static CustomCompactor *Read(istream &strm) { argument
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_infback.c22 strm provides memory allocation functions in zalloc and zfree, or
29 z_streamp strm,
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
44 if (strm->zalloc == (alloc_func)0) {
48 strm->zalloc = zcalloc;
49 strm->opaque = (voidpf)0;
52 if (strm->zfree == (free_func)0)
56 strm->zfree = zcfree;
58 state = (struct inflate_state FAR *)ZALLOC(strm,
28 inflateBackInit_( z_streamp strm, int windowBits, unsigned char FAR *window, const char *version, int stream_size) argument
250 inflateBack( z_streamp strm, in_func in, void FAR *in_desc, out_func out, void FAR *out_desc) argument
631 inflateBackEnd( z_streamp strm) argument
[all...]
H A Dfx_zlib_inflate.c26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset)
59 * input in strm.
96 local int updatewindow OF((z_streamp strm, const unsigned char FAR *end,
105 z_streamp strm)
109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR;
110 state = (struct inflate_state FAR *)strm->state;
111 strm->total_in = strm
104 inflateResetKeep( z_streamp strm) argument
129 inflateReset( z_streamp strm) argument
142 inflateReset2( z_streamp strm, int windowBits) argument
180 inflateInit2_( z_streamp strm, int windowBits, const char *version, int stream_size) argument
222 inflateInit_( z_streamp strm, const char *version, int stream_size) argument
230 inflatePrime( z_streamp strm, int bits, int value) argument
379 updatewindow( z_streamp strm, const Bytef *end, unsigned copy) argument
605 inflate( z_streamp strm, int flush) argument
[all...]
H A Dgzguts.h207 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon28593
H A Dgzwrite.c19 z_streamp strm = &(state->strm); local
39 strm->zalloc = Z_NULL;
40 strm->zfree = Z_NULL;
41 strm->opaque = Z_NULL;
42 ret = deflateInit2(strm, state->level, Z_DEFLATED,
57 strm->avail_out = state->size;
58 strm->next_out = state->out;
59 state->x.next = strm->next_out;
76 z_streamp strm local
139 z_streamp strm = &(state->strm); local
172 z_streamp strm; local
252 z_streamp strm; local
314 z_streamp strm; local
394 z_streamp strm; local
502 z_streamp strm; local
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dgzguts.h191 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon29632
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfloat-weight.h46 istream &Read(istream &strm) { argument
47 return ReadType(strm, &value_);
50 ostream &Write(ostream &strm) const {
51 return WriteType(strm, value_);
85 inline ostream &operator<<(ostream &strm, const FloatWeight &w) { argument
87 return strm << "Infinity";
89 return strm << "-Infinity";
91 return strm << "BadFloat";
93 return strm << w.Value();
96 inline istream &operator>>(istream &strm, FloatWeigh argument
[all...]
H A Dproduct-weight.h54 istream &Read(istream &strm) { argument
55 value1_.Read(strm);
56 return value2_.Read(strm);
59 ostream &Write(ostream &strm) const {
60 value1_.Write(strm);
61 return value2_.Write(strm);
125 inline ostream &operator<<(ostream &strm, const ProductWeight<W1, W2> &w) { argument
128 return strm << w.Value1() << separator << w.Value2();
132 inline istream &operator>>(istream &strm, ProductWeight<W1, W2> &w) { argument
139 c = strm
[all...]
H A Dsymbol-table.h62 static SymbolTableImpl* Read(istream &strm, const string& source);
64 bool Write(ostream &strm) const;
66 bool WriteText(ostream &strm) const;
235 static SymbolTable* Read(istream &strm, const string& source) { argument
236 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
245 ifstream strm(filename.c_str());
246 if (!strm) {
250 return Read(strm, filename);
253 bool Write(ostream &strm) const {
254 return impl_->Write(strm);
[all...]
/external/zlib/src/examples/
H A Dgun.c193 of buffered input at next. strm is used for passing error information back
197 file, read error, or write error (a write error indicated by strm->next_in
201 int outfile, z_stream *strm)
230 strm->msg = (char *)"unknown lzw flags set";
235 strm->msg = (char *)"lzw bits out of range";
255 strm->msg = (char *)"invalid lzw code";
282 strm->next_in = outbuf; /* signal write error */
322 strm->msg = (char *)"invalid lzw code";
354 strm->next_in = outbuf; /* signal write error */
371 /* Decompress a gzip file from infile to outfile. strm i
200 lunpipe(unsigned have, z_const unsigned char *next, struct ind *indp, int outfile, z_stream *strm) argument
383 gunpipe(z_stream *strm, int infile, int outfile) argument
548 gunzip(z_stream *strm, char *inname, char *outname, int test) argument
636 z_stream strm; local
[all...]
H A Dgzappend.c255 /* decompress gzip file "name", return strm with a deflate stream ready to
259 local int gzscan(char *name, z_stream *strm, int level) argument
283 strm->zalloc = Z_NULL;
284 strm->zfree = Z_NULL;
285 strm->opaque = Z_NULL;
286 ret = inflateInit2(strm, -15);
293 strm->avail_in = gz.left;
294 strm->next_in = gz.next;
299 if (strm->avail_in == 0) {
301 strm
388 gztack(char *name, int gd, z_stream *strm, int last) argument
469 z_stream strm; local
[all...]

Completed in 285 milliseconds

12345678