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

1 2

  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 128 CSubStreamInfo subStream;
129 RINOK(VolumeCallback->GetVolumeSize(Streams.Size(), &subStream.Size));
130 RINOK(VolumeCallback->GetVolumeStream(Streams.Size(), &subStream.Stream));
131 subStream.Pos = 0;
132 Streams.Add(subStream);
135 CSubStreamInfo &subStream = Streams[_streamIndex];
136 if (_offsetPos >= subStream.Size)
138 _offsetPos -= subStream.Size;
142 if (_offsetPos != subStream.Pos)
145 RINOK(subStream.Stream.QueryInterface(IID_IOutStream, &outStream));
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 17 STDMETHODIMP CSequentialInStreamSizeCount2::GetSubStreamSize(UInt64 subStream, UInt64 *value)
21 return _getSubStreamSize->GetSubStreamSize(subStream, value);
7zFolderInStream.cpp 106 STDMETHODIMP CFolderInStream::GetSubStreamSize(UInt64 subStream, UInt64 *value)
109 unsigned index2 = (unsigned)subStream;
110 if (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.
212 // Don't send data burst until we have 6 blocks per substream.
214 // 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);
  /libcore/ojluni/src/main/java/java/io/
SequenceInputStream.java 153 * tries to read one character from the current substream. If it
155 * method of the current substream and begins reading from the next
156 * substream.
181 * tries to read the data from the current substream. If it fails to
182 * read any characters because the substream has reached the end of
184 * substream and begins reading from the next substream.
  /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/skia/src/codec/
SkBmpStandardCodec.cpp 264 // Create a subStream to pass to decodeIcoMask(). It is useful to encapsulate
271 SkMemoryStream subStream(subStreamMemoryBase, subStreamLength, false);
275 decodeIcoMask(&subStream, dstInfo, dst, dstRowBytes);
  /external/lzma/CPP/7zip/
ICoder.h 87 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:__anon37158
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:__anon39027
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 340 unsigned int substream; /* substream number */ member in struct:snd_emu10k1_fx8010_pcm_rec
342 unsigned int channels; /* 16-bit channels count, zero = remove this substream */
  /external/skia/src/images/
SkImageDecoder_libico.cpp 133 SkMemoryStream subStream(buf + offset, size, false);
134 SkAutoTDelete<SkImageDecoder> otherDecoder(SkImageDecoder::Factory(&subStream));
143 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 */
  /external/webrtc/webrtc/video/
send_statistics_proxy_unittest.cc 384 // Forward 1 ms, reach timeout, substream 0 should have no resolution
385 // reported, but substream 1 should.

Completed in 8183 milliseconds

1 2