Searched defs:strm (Results 151 - 175 of 200) sorted by relevance

12345678

/external/qemu/block/
H A Dqcow2-cluster.c876 z_stream strm1, *strm = &strm1; local
879 memset(strm, 0, sizeof(*strm));
881 strm->next_in = (uint8_t *)buf;
882 strm->avail_in = buf_size;
883 strm->next_out = out_buf;
884 strm->avail_out = out_buf_size;
886 ret = inflateInit2(strm, -12);
889 ret = inflate(strm, Z_FINISH);
890 out_len = strm
[all...]
H A Dqcow2.c1153 z_stream strm; local
1173 memset(&strm, 0, sizeof(strm));
1174 ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION,
1182 strm.avail_in = s->cluster_size;
1183 strm.next_in = (uint8_t *)buf;
1184 strm.avail_out = s->cluster_size;
1185 strm.next_out = out_buf;
1187 ret = deflate(&strm, Z_FINISH);
1190 deflateEnd(&strm);
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Ddeflate.h98 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dvector-fst.h198 static VectorFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
204 bool Write(ostream &strm, const FstWriteOptions &opts) const;
350 VectorFstImpl<A> *VectorFstImpl<A>::Read(istream &strm, argument
354 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
362 state->final.Read(strm);
364 ReadType(strm, &narcs);
365 if (!strm) {
372 ReadType(strm, &arc.ilabel);
373 ReadType(strm, &arc.olabel);
374 arc.weight.Read(strm);
420 Write(ostream &strm, const FstWriteOptions &opts) const argument
526 Read(istream &strm, const FstReadOptions &opts) argument
542 Write(ostream &strm, const FstWriteOptions &opts) const argument
[all...]
H A Dfst.h96 bool Read(istream &strm, const string &source);
97 bool Write(ostream &strm, const string &source) const;
149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { argument
155 if (!hdr.Read(strm, opts.source))
168 return reader(strm, ropts);
173 ifstream strm(filename.c_str());
174 if (!strm) {
178 return Read(strm, FstReadOptions(filename));
182 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const { argument
458 bool ReadHeaderAndSymbols(istream &strm, cons argument
500 WriteHeaderAndSymbols(ostream &strm, const FstWriteOptions& opts, int version, FstHeader *hdr) const argument
[all...]
/external/zlib/src/
H A Ddeflate.h98 z_streamp strm; /* pointer back to this zlib stream */ member in struct:internal_state
/external/bzip2/
H A Dbzlib.c149 ( bz_stream* strm,
159 if (strm == NULL ||
165 if (strm->bzalloc == NULL) strm->bzalloc = default_bzalloc;
166 if (strm->bzfree == NULL) strm->bzfree = default_bzfree;
170 s->strm = strm;
203 strm->state = s;
204 strm
148 BZ2_bzCompressInit( bz_stream* strm, int blockSize100k, int verbosity, int workFactor ) argument
407 BZ2_bzCompress( bz_stream *strm, int action ) argument
492 BZ2_bzDecompressInit( bz_stream* strm, int verbosity, int small ) argument
898 bz_stream strm; member in struct:__anon1743
1256 bz_stream strm; local
1307 bz_stream strm; local
[all...]
H A Dbzlib_private.h102 #define BZALLOC(nnn) (strm->bzalloc)(strm->opaque,(nnn),1)
103 #define BZFREE(ppp) (strm->bzfree)(strm->opaque,(ppp))
199 bz_stream* strm; member in struct:__anon1745
350 bz_stream* strm; member in struct:__anon1746
/external/chromium_org/third_party/libxml/src/
H A Dnanohttp.c161 z_stream *strm; /* Zlib stream object */ member in struct:xmlNanoHTTPCtxt
426 if (ctxt->strm != NULL) {
427 inflateEnd(ctxt->strm);
428 xmlFree(ctxt->strm);
815 ctxt->strm = xmlMalloc(sizeof(z_stream));
817 if (ctxt->strm != NULL) {
818 ctxt->strm->zalloc = Z_NULL;
819 ctxt->strm->zfree = Z_NULL;
820 ctxt->strm->opaque = Z_NULL;
821 ctxt->strm
[all...]
/external/libxml2/
H A Dnanohttp.c156 z_stream *strm; /* Zlib stream object */ member in struct:xmlNanoHTTPCtxt
431 if (ctxt->strm != NULL) {
432 inflateEnd(ctxt->strm);
433 xmlFree(ctxt->strm);
820 ctxt->strm = xmlMalloc(sizeof(z_stream));
822 if (ctxt->strm != NULL) {
823 ctxt->strm->zalloc = Z_NULL;
824 ctxt->strm->zfree = Z_NULL;
825 ctxt->strm->opaque = Z_NULL;
826 ctxt->strm
[all...]
/external/lldb/source/API/
H A DSBProcess.cpp1162 Stream &strm = description.ref(); local
1174 strm.Printf ("SBProcess: pid = %" PRIu64 ", state = %s, threads = %d%s%s",
1182 strm.PutCString ("No value");
H A DSBDebugger.cpp1078 Stream &strm = description.ref(); local
1084 strm.Printf ("Debugger (instance: \"%s\", id: %" PRIu64 ")", name, id);
1087 strm.PutCString ("No value");
H A DSBValue.cpp1392 Stream &strm = description.ref(); local
1398 ValueObject::DumpValueObject (strm, value_sp.get());
1401 strm.PutCString ("No value");
/external/lldb/source/Commands/
H A DCommandObjectThread.cpp167 Stream &strm = result.GetOutputStream(); local
175 if (thread->GetStatus (strm,
191 if (!thread_sp->GetStatus (strm,
238 if (!thread_sps[i]->GetStatus (strm,
1234 Stream &strm = result.GetOutputStream(); local
1241 process->GetStatus(strm);
1242 process->GetThreadStatus (strm,
H A DCommandObjectProcess.cpp1594 Stream &strm = result.GetOutputStream(); local
1602 process->GetStatus(strm);
1603 process->GetThreadStatus (strm,
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp242 ProcessKDP::DoConnectRemote (Stream *strm, const char *remote_url) argument
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.cpp295 StreamString strm; local
296 DWARFDebugInfoEntry::DumpDIECollection (strm, m_die_array);
297 log->PutCString (strm.GetString().c_str());
/external/lldb/source/Target/
H A DStackFrame.cpp1278 StackFrame::DumpUsingSettingsFormat (Stream *strm) argument
1280 if (strm == NULL)
1292 strm->Write(s.GetData(), s.GetSize());
1296 Dump (strm, true, false);
1297 strm->EOL();
1302 StackFrame::Dump (Stream *strm, bool show_frame_index, bool show_fullpaths) argument
1304 if (strm == NULL)
1308 strm->Printf("frame #%u: ", m_frame_index);
1311 strm->Printf("0x%0*" PRIx64 " ",
1317 m_sc.DumpStopContext (strm,
1371 GetStatus(Stream& strm, bool show_frame_info, bool show_source) argument
[all...]
/external/openfst/src/include/fst/
H A Dcompact-fst.h90 // bool Write(ostream &strm);
92 // static Compactor *Read(istream &strm);
167 static CompactFstData<E, U> *Read(istream &strm,
172 bool Write(ostream &strm, const FstWriteOptions &opts) const;
362 istream &strm,
372 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
378 data->states_region_ = MappedFile::Map(&strm, opts, b);
379 if (!strm || data->states_region_ == NULL) {
392 if ((hdr.GetFlags() & FstHeader::IS_ALIGNED) && !AlignInput(strm)) {
398 data->compacts_region_ = MappedFile::Map(&strm, opt
361 Read( istream &strm, const FstReadOptions &opts, const FstHeader &hdr, const C &compactor) argument
410 Write(ostream &strm, const FstWriteOptions &opts) const argument
621 Read(istream &strm, const FstReadOptions &opts) argument
649 Write(ostream &strm, const FstWriteOptions &opts) const argument
857 Read(istream &strm, const FstReadOptions &opts) argument
869 Write(ostream &strm, const FstWriteOptions &opts) const argument
927 WriteFst(const F &fst, const C &compactor, ostream &strm, const FstWriteOptions &opts) argument
1249 Read(istream &strm) argument
1292 Read(istream &strm) argument
1376 Read(istream &strm) argument
1418 Read(istream &strm) argument
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c86 local void flush_pending OF((z_streamp strm));
87 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
202 z_streamp strm,
207 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
209 /* To do: ignore strm->next_in if we use it as window */
214 z_streamp strm,
236 if (strm == Z_NULL) return Z_STREAM_ERROR;
238 strm->msg = Z_NULL;
239 if (strm->zalloc == (alloc_func)0) {
243 strm
201 deflateInit_( z_streamp strm, int level, const char *version, int stream_size) argument
213 deflateInit2_( z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) argument
322 deflateSetDictionary( z_streamp strm, const Bytef *dictionary, uInt dictLength) argument
391 deflateResetKeep( z_streamp strm) argument
426 deflateReset( z_streamp strm) argument
449 deflatePending( z_streamp strm, unsigned *pending, int *bits) argument
489 deflateParams( z_streamp strm, int level, int strategy) argument
530 deflateTune( z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain) argument
565 deflateBound( z_streamp strm, uLong sourceLen) argument
641 flush_pending( z_streamp strm) argument
664 deflate( z_streamp strm, int flush) argument
978 deflateEnd( z_streamp strm) argument
1075 read_buf( z_streamp strm, Bytef *buf, unsigned size) argument
[all...]
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontHost_FreeType.cpp244 SkFaceRec(SkStream* strm, uint32_t fontID);
281 SkFaceRec::SkFaceRec(SkStream* strm, uint32_t fontID) argument
282 : fNext(NULL), fSkStream(strm), fRefCnt(1), fFontID(fontID) {
283 // SkDEBUGF(("SkFaceRec: opening %s (%p)\n", key.c_str(), strm));
307 SkStream* strm = typeface->openStream(&face_index); local
308 if (NULL == strm) {
312 // this passes ownership of strm to the rec
313 rec = SkNEW_ARGS(SkFaceRec, (strm, fontID));
317 const void* memoryBase = strm->getMemoryBase();
323 args.memory_size = strm
[all...]
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_indata.c529 struct sctp_stream_in *strm; local
531 strm = &asoc->strmin[stream_no];
532 nxt_todel = strm->last_sequence_delivered + 1;
533 TAILQ_FOREACH_SAFE(ctl, &strm->inqueue, next, nctl) {
536 TAILQ_REMOVE(&strm->inqueue, ctl, next);
539 strm->last_sequence_delivered++;
548 nxt_todel = strm->last_sequence_delivered + 1;
583 struct sctp_stream_in *strm; local
593 strm = &asoc->strmin[control->sinfo_stream];
594 nxt_todel = strm
5152 struct sctp_stream_in *strm; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/lldb/source/Core/
H A DModule.cpp115 StreamString strm;
118 module->GetDescription(&strm, eDescriptionLevelFull);
123 strm.GetString().c_str());
930 StreamString strm; local
931 strm.PutCString("error: ");
932 GetDescription(&strm, lldb::eDescriptionLevelBrief);
933 strm.PutChar (' ');
936 strm.PrintfVarArg(format, args);
944 strm.EOL();
946 Host::SystemLog (Host::eSystemLogError, "%s", strm
969 StreamString strm; local
998 StreamString strm; local
[all...]
/external/lldb/source/Host/common/
H A DHost.cpp537 Host::Backtrace (Stream &strm, uint32_t max_frames) argument

Completed in 5812 milliseconds

12345678