HomeSort by relevance Sort by last modified time
    Searched full:substream (Results 1 - 25 of 35) sorted by null

1 2

  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 125 CSubStreamInfo subStream;
126 RINOK(VolumeCallback->GetVolumeSize(Streams.Size(), &subStream.Size));
127 RINOK(VolumeCallback->GetVolumeStream(Streams.Size(), &subStream.Stream));
128 subStream.Pos = 0;
129 Streams.Add(subStream);
132 CSubStreamInfo &subStream = Streams[_streamIndex];
133 if (_offsetPos >= subStream.Size)
135 _offsetPos -= subStream.Size;
139 if (_offsetPos != subStream.Pos)
142 RINOK(subStream.Stream.QueryInterface(IID_IOutStream, &outStream));
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 18 UInt64 subStream, UInt64 *value)
22 return _getSubStreamSize->GetSubStreamSize(subStream, value);
7zFolderInStream.cpp 106 STDMETHODIMP CFolderInStream::GetSubStreamSize(UInt64 subStream, UInt64 *value)
109 int index2 = (int)subStream;
110 if (index2 < 0 || subStream > Sizes.Size())
7zSpecStream.h 32 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
7zFolderInStream.h 43 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
7zFolderOutStream.h 43 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
7zFolderOutStream.cpp 124 STDMETHODIMP CFolderOutStream::GetSubStreamSize(UInt64 subStream, UInt64 *value)
127 if ((int)subStream >= _extractStatuses->Size())
129 *value = _db->Files[_startIndex + (int)subStream].Size;
  /external/nanopb-c/
pb_decode.c 285 * a substream. Size is maximum size on call, and actual size on return.
314 /* Decode string length from stream and return a substream with limited length.
315 * Remember to close the substream using pb_close_string_substream().
317 bool checkreturn pb_make_string_substream(pb_istream_t *stream, pb_istream_t *substream)
323 *substream = *stream;
324 if (substream->bytes_left < size)
327 substream->bytes_left = size;
332 void pb_close_string_substream(pb_istream_t *stream, pb_istream_t *substream)
334 stream->state = substream->state;
337 stream->errmsg = substream->errmsg
433 pb_istream_t substream; local
616 pb_istream_t substream; local
636 pb_istream_t substream; local
909 pb_istream_t substream; local
1160 pb_istream_t substream; local
    [all...]
pb_encode.c 507 /* First calculate the message size using a non-writing substream. */
508 pb_ostream_t substream = PB_OSTREAM_SIZING; local
512 if (!pb_encode(&substream, fields, src_struct))
515 stream->errmsg = substream.errmsg;
520 size = substream.bytes_written;
531 /* Use a substream to verify that a callback doesn't write more than
533 substream.callback = stream->callback;
534 substream.state = stream->state;
535 substream.max_size = size;
536 substream.bytes_written = 0
    [all...]
pb_decode.h 141 /* Make a limited-length substream for reading a PB_WT_STRING field. */
142 bool pb_make_string_substream(pb_istream_t *stream, pb_istream_t *substream);
143 void pb_close_string_substream(pb_istream_t *stream, pb_istream_t *substream);
  /system/media/audio_utils/spdif/
AC3FrameScanner.h 53 // Keep track of how many of each substream blocks have been accumulated.
54 // We need all of each substream before sending block data burst.
59 // substream index
AC3FrameScanner.cpp 122 ALOGW("EAC3 substream[%d] has only %d audio blocks!",
137 // Substream zero must be the first.
139 // the 7th block of substream#0.
208 // Don't send data burst until we have 6 blocks per substream.
210 // Keep track of how many audio blocks we have for each substream.
  /external/nanopb-c/examples/using_union_messages/
decode.c 47 pb_istream_t substream; local
49 if (!pb_make_string_substream(stream, &substream))
52 status = pb_decode(&substream, fields, dest_struct);
53 pb_close_string_substream(stream, &substream);
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 114 CSubStreamInfo subStream;
122 subStream.StreamSpec = new COutFileStream;
123 subStream.Stream = subStream.StreamSpec;
124 if (!subStream.StreamSpec->Create(name, false))
131 subStream.Pos = 0;
132 subStream.RealSize = 0;
133 subStream.Name = name;
134 Streams.Add(subStream);
137 CSubStreamInfo &subStream = Streams[_streamIndex];
    [all...]
OpenArchive.cpp 439 CMyComPtr<IInStream> subStream;
440 if (subSeqStream.QueryInterface(IID_IInStream, &subStream) != S_OK || !subStream)
452 HRESULT result = arc2.OpenStream(codecs, formatIndex, subStream, NULL, callback);
  /libcore/luni/src/main/java/java/io/
SequenceInputStream.java 156 * current substream returns. If that call does not return as many bytes as
161 * If a substream has already reached the end when this call is made, it
162 * will close that substream and start with the next one. If there are no
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 42 * @param it an iterator of I/O suppliers that will provide each substream
  /external/lzma/CPP/7zip/
ICoder.h 85 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value) PURE;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/
emu10k1.h 269 unsigned int subdevice; /* subdevice (substream) number */
318 unsigned int substream; /* substream number */ member in struct:__anon30474
320 unsigned int channels; /* 16-bit channels count, zero = remove this substream */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/sound/
emu10k1.h 269 unsigned int subdevice; /* subdevice (substream) number */
318 unsigned int substream; /* substream number */ member in struct:__anon32343
320 unsigned int channels; /* 16-bit channels count, zero = remove this substream */
  /external/nanopb-c/docs/
reference.rst 735 Decode the length for a field with wire type *PB_WT_STRING* and create a substream for reading the data. ::
737 bool pb_make_string_substream(pb_istream_t *stream, pb_istream_t *substream);
    [all...]
  /external/kernel-headers/original/uapi/sound/
emu10k1.h 333 unsigned int substream; /* substream number */ member in struct:snd_emu10k1_fx8010_pcm_rec
335 unsigned int channels; /* 16-bit channels count, zero = remove this substream */
  /external/skia/src/images/
SkImageDecoder_libico.cpp 128 SkMemoryStream subStream(buf + offset, size, false);
129 SkAutoTDelete<SkImageDecoder> otherDecoder(SkImageDecoder::Factory(&subStream));
138 const Result result = otherDecoder->decode(&subStream, bm, this->getDefaultPref(),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sound/
emu10k1.h 331 unsigned int substream; /* substream number */ member in struct:snd_emu10k1_fx8010_pcm_rec
333 unsigned int channels; /* 16-bit channels count, zero = remove this substream */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/
emu10k1.h 331 unsigned int substream; /* substream number */ member in struct:snd_emu10k1_fx8010_pcm_rec
333 unsigned int channels; /* 16-bit channels count, zero = remove this substream */

Completed in 1879 milliseconds

1 2