HomeSort by relevance Sort by last modified time
    Searched refs:strm (Results 201 - 225 of 237) sorted by null

1 2 3 4 5 6 7 8910

  /external/chromium_org/third_party/libxml/src/
nanohttp.c 161 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->avail_in = 0
    [all...]
  /external/libxml2/
nanohttp.c 159 z_stream *strm; /* Zlib stream object */ member in struct:xmlNanoHTTPCtxt
424 if (ctxt->strm != NULL) {
425 inflateEnd(ctxt->strm);
426 xmlFree(ctxt->strm);
813 ctxt->strm = xmlMalloc(sizeof(z_stream));
815 if (ctxt->strm != NULL) {
816 ctxt->strm->zalloc = Z_NULL;
817 ctxt->strm->zfree = Z_NULL;
818 ctxt->strm->opaque = Z_NULL;
819 ctxt->strm->avail_in = 0
    [all...]
  /frameworks/base/core/jni/android/graphics/
Movie.cpp 99 SkStream* strm = CreateJavaInputStreamAdaptor(env, istream, byteArray); local
100 if (NULL == strm) {
108 SkAutoTUnref<SkStreamRewindable> bufferedStream(SkFrontBufferedStream::Create(strm, 6));
112 strm->unref();
YuvToJpegEncoder.cpp 224 SkWStream* strm = CreateJavaOutputStreamAdaptor(env, jstream, jstorage); local
232 encoder->encode(strm, yuv, width, height, imgOffsets, jpegQuality);
  /external/openfst/src/include/fst/extensions/far/
far.h 36 ifstream strm(filename.c_str());
37 if (!strm)
39 return IsFstHeader(strm, filename);
165 void operator()(ostream &strm, const Fst<A> &fst) const {
166 fst.Write(strm, FstWriteOptions());
290 Fst<A> *operator()(istream &strm) const {
291 return Fst<A>::Read(strm, FstReadOptions());
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 96 static NGramFstImpl<A>* Read(istream &strm, // NOLINT
100 if (!impl->ReadHeader(strm, opts, kMinFileVersion, &hdr)) return 0;
105 strm.read(reinterpret_cast<char *>(&num_states), sizeof(num_states));
106 strm.read(reinterpret_cast<char *>(&num_futures), sizeof(num_futures));
107 strm.read(reinterpret_cast<char *>(&num_final), sizeof(num_final));
117 strm.read(data + offset, size - offset);
118 if (!strm) {
126 bool Write(ostream &strm, // NOLINT
131 WriteHeader(strm, opts, kFileVersion, &hdr);
132 strm.write(data_, StorageSize())
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
register.h 44 typedef Fst<A> *(*Reader)(istream &strm, const FstReadOptions &opts);
137 F *(*reader)(istream &strm,
  /external/chromium_org/third_party/zlib/
gzguts.h 114 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon16446
gzlib.c 85 state->strm.avail_in = 0; /* no input data yet */
318 state->strm.avail_in = 0;
410 offset -= state->strm.avail_in; /* don't count buffered input */
439 (state->eof && state->strm.avail_in == 0 && state->have == 0) : 0;
  /external/openfst/src/include/fst/
flags.h 176 std::ostringstream strm; local
177 strm << default_value;
178 return strm.str();
matcher-fst.h 112 static MatcherFst<F, M, N, I> *Read(istream &strm,
114 Impl *impl = Impl::Read(strm, opts);
125 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const {
126 return GetImpl()->Write(strm, opts);
  /external/openfst/src/include/fst/script/
compile-impl.h 189 istringstream strm(s);
190 strm >> w;
191 if (!strm || (!allow_zero && w == Weight::Zero())) {
draw-impl.h 66 void Draw(ostream *strm, const string &dest) {
67 ostrm_ = strm;
  /external/qemu/block/
qcow2-cluster.c 876 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->next_out - out_buf
    [all...]
qcow2.c 1153 z_stream strm; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/comp/
c_zlib.c 100 typedef int (*inflateEnd_ft)(z_streamp strm);
101 typedef int (*inflate_ft)(z_streamp strm, int flush);
102 typedef int (*inflateInit__ft)(z_streamp strm,
104 typedef int (*deflateEnd_ft)(z_streamp strm);
105 typedef int (*deflate_ft)(z_streamp strm, int flush);
106 typedef int (*deflateInit__ft)(z_streamp strm, int level,
  /external/openssl/crypto/comp/
c_zlib.c 100 typedef int (*inflateEnd_ft)(z_streamp strm);
101 typedef int (*inflate_ft)(z_streamp strm, int flush);
102 typedef int (*inflateInit__ft)(z_streamp strm,
104 typedef int (*deflateEnd_ft)(z_streamp strm);
105 typedef int (*deflate_ft)(z_streamp strm, int flush);
106 typedef int (*deflateInit__ft)(z_streamp strm, int level,
  /external/bzip2/
decompress.c 54 if (s->strm->avail_in == 0) RETURN(BZ_OK); \
58 (*((UChar*)(s->strm->next_in)))); \
60 s->strm->next_in++; \
61 s->strm->avail_in--; \
62 s->strm->total_in_lo32++; \
63 if (s->strm->total_in_lo32 == 0) \
64 s->strm->total_in_hi32++; \
111 bz_stream* strm = s->strm; local
  /external/zlib/src/
gzguts.h 191 z_stream strm; /* stream structure in-place (not a pointer) */ member in struct:__anon30833
gzlib.c 87 state->strm.avail_in = 0; /* no input data yet */
404 state->strm.avail_in = 0;
496 offset -= state->strm.avail_in; /* don't count buffered input */
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
  /external/openfst/src/test/
fst_test.cc 86 bool Write(ostream &strm) const { return true; }
88 static CustomCompactor *Read(istream &strm) {
  /external/srec/tools/grxmlcompile/
fst-io.h 56 // Print Fst to an output strm
340 istringstream strm(s);
341 strm >> w;
342 if (strm.fail() || !allow_zero && w == Weight::Zero()) {
367 int CompileMain(int argc, char **argv, istream& /* strm */,
  /external/chromium_org/third_party/skia/src/ports/
SkFontHost_FreeType.cpp 216 SkFaceRec(SkStream* strm, uint32_t fontID);
253 SkFaceRec::SkFaceRec(SkStream* strm, uint32_t fontID)
254 : fNext(NULL), fSkStream(strm), fRefCnt(1), fFontID(fontID) {
255 // SkDEBUGF(("SkFaceRec: opening %s (%p)\n", key.c_str(), strm));
279 SkStream* strm = typeface->openStream(&face_index); local
280 if (NULL == strm) {
284 // this passes ownership of strm to the rec
285 rec = SkNEW_ARGS(SkFaceRec, (strm, fontID));
289 const void* memoryBase = strm->getMemoryBase();
295 args.memory_size = strm->getLength()
    [all...]
  /external/skia/src/ports/
SkFontHost_FreeType.cpp 219 SkFaceRec(SkStream* strm, uint32_t fontID);
256 SkFaceRec::SkFaceRec(SkStream* strm, uint32_t fontID)
257 : fNext(NULL), fSkStream(strm), fRefCnt(1), fFontID(fontID) {
258 // SkDEBUGF(("SkFaceRec: opening %s (%p)\n", key.c_str(), strm));
282 SkStream* strm = typeface->openStream(&face_index); local
283 if (NULL == strm) {
287 // this passes ownership of strm to the rec
288 rec = SkNEW_ARGS(SkFaceRec, (strm, fontID));
292 const void* memoryBase = strm->getMemoryBase();
298 args.memory_size = strm->getLength()
    [all...]

Completed in 795 milliseconds

1 2 3 4 5 6 7 8910