Searched refs:stream_length (Results 1 – 11 of 11) sorted by relevance
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
D | encode.c | 36 WebRtc_Word16 stream_length = 0; in WebRtcIsacfix_EncodeImpl() local 417 stream_length = WebRtcIsacfix_EncTerminate(&ISACenc_obj->bitstr_obj); in WebRtcIsacfix_EncodeImpl() 424 MinBytes = WebRtcIsacfix_GetMinBytes(&ISACenc_obj->rate_data_obj, (WebRtc_Word16) stream_length, in WebRtcIsacfix_EncodeImpl() 430 usefulstr_len = stream_length; in WebRtcIsacfix_EncodeImpl() 451 while (stream_length < MinBytes) in WebRtcIsacfix_EncodeImpl() 453 if (stream_length & 0x0001){ in WebRtcIsacfix_EncodeImpl() 455 …ISACenc_obj->bitstr_obj.stream[ WEBRTC_SPL_RSHIFT_W16(stream_length, 1) ] |= (WebRtc_UWord16)(ISAC… in WebRtcIsacfix_EncodeImpl() 458 …ISACenc_obj->bitstr_obj.stream[ WEBRTC_SPL_RSHIFT_W16(stream_length, 1) ] = WEBRTC_SPL_LSHIFT_U16(… in WebRtcIsacfix_EncodeImpl() 460 stream_length++; in WebRtcIsacfix_EncodeImpl() 476 WebRtcIsacfix_UpdateRateModel(&ISACenc_obj->rate_data_obj, (WebRtc_Word16) stream_length, in WebRtcIsacfix_EncodeImpl() [all …]
|
/external/v8/src/ |
D | unicode.h | 166 unsigned stream_length); 174 unsigned stream_length);
|
D | unicode-inl.h | 164 unsigned stream_length) { in Utf8DecoderBase() argument 165 Reset(buffer, buffer_length, stream, stream_length); in Utf8DecoderBase()
|
D | unicode.cc | 264 unsigned stream_length) { in Reset() argument 271 while (stream_length != 0) { in Reset() 273 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor); in Reset() 274 DCHECK(cursor > 0 && cursor <= stream_length); in Reset() 276 stream_length -= cursor; in Reset()
|
/external/flac/include/FLAC/ |
D | stream_decoder.h | 628 …oderLengthCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_…
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
D | encode.c | 183 int stream_length = 0; in WebRtcIsac_EncodeLb() local 527 stream_length = WebRtcIsac_EncTerminate(&ISACencLB_obj->bitstr_obj); in WebRtcIsac_EncodeLb() 528 return stream_length; in WebRtcIsac_EncodeLb()
|
/external/flac/libFLAC/ |
D | stream_decoder.c | 111 static FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length… 113 …ek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 … 118 …le_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_… 2995 FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC_… in seek_to_absolute_sample_() argument 3042 upper_bound = stream_length; in seek_to_absolute_sample_() 3205 FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, F… in seek_to_absolute_sample_ogg_() argument 3207 FLAC__uint64 left_pos = 0, right_pos = stream_length; in seek_to_absolute_sample_ogg_() 3380 …le_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_… in file_length_callback_() argument 3390 *stream_length = (FLAC__uint64)filestats.st_size; in file_length_callback_()
|
/external/google-breakpad/src/processor/ |
D | minidump.cc | 4539 uint32_t* stream_length) { in SeekToStreamType() argument 4540 BPLOG_IF(ERROR, !stream_length) << "Minidump::SeekToStreamType requires " in SeekToStreamType() 4542 assert(stream_length); in SeekToStreamType() 4543 *stream_length = 0; in SeekToStreamType() 4572 *stream_length = directory_entry->location.data_size; in SeekToStreamType() 4612 uint32_t stream_length; in GetStream() local 4613 if (!SeekToStreamType(stream_type, &stream_length)) { in GetStream() 4620 if (!new_stream->Read(stream_length)) { in GetStream()
|
D | minidump_unittest.cc | 162 uint32_t stream_length; in TEST() local 163 ASSERT_TRUE(minidump.SeekToStreamType(0xfbb7fa2bU, &stream_length)); in TEST() 164 ASSERT_EQ(15U, stream_length); in TEST()
|
/external/google-breakpad/src/google_breakpad/processor/ |
D | minidump.h | 957 bool SeekToStreamType(uint32_t stream_type, uint32_t* stream_length);
|
/external/v8/src/heap/ |
D | heap.cc | 3776 unsigned stream_length = vector.length(); in WriteTwoByteData() local 3777 while (stream_length != 0) { in WriteTwoByteData() 3779 uint32_t c = unibrow::Utf8::ValueOf(stream, stream_length, &consumed); in WriteTwoByteData() 3781 DCHECK(consumed <= stream_length); in WriteTwoByteData() 3782 stream_length -= consumed; in WriteTwoByteData() 3795 DCHECK(stream_length == 0); in WriteTwoByteData()
|