Searched refs:stream_length (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dencode.c39 int16_t stream_length = 0; local
420 stream_length = WebRtcIsacfix_EncTerminate(&ISACenc_obj->bitstr_obj);
427 MinBytes = WebRtcIsacfix_GetMinBytes(&ISACenc_obj->rate_data_obj, (int16_t) stream_length,
433 usefulstr_len = stream_length;
454 while (stream_length < MinBytes)
456 assert(stream_length >= 0);
457 if (stream_length & 0x0001){
459 ISACenc_obj->bitstr_obj.stream[ WEBRTC_SPL_RSHIFT_W16(stream_length, 1) ] |= (uint16_t)(ISACenc_obj->bitstr_seed & 0xFF);
462 ISACenc_obj->bitstr_obj.stream[stream_length / 2] =
465 stream_length
499 int stream_length = 0; local
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dencode.c36 WebRtc_Word16 stream_length = 0; local
417 stream_length = WebRtcIsacfix_EncTerminate(&ISACenc_obj->bitstr_obj);
424 MinBytes = WebRtcIsacfix_GetMinBytes(&ISACenc_obj->rate_data_obj, (WebRtc_Word16) stream_length,
430 usefulstr_len = stream_length;
451 while (stream_length < MinBytes)
453 if (stream_length & 0x0001){
455 ISACenc_obj->bitstr_obj.stream[ WEBRTC_SPL_RSHIFT_W16(stream_length, 1) ] |= (WebRtc_UWord16)(ISACenc_obj->bitstr_seed & 0xFF);
458 ISACenc_obj->bitstr_obj.stream[ WEBRTC_SPL_RSHIFT_W16(stream_length, 1) ] = WEBRTC_SPL_LSHIFT_U16(ISACenc_obj->bitstr_seed, 8);
460 stream_length++;
463 /* to get the real stream_length, withou
493 int stream_length = 0; local
[all...]
/external/chromium_org/v8/src/
H A Dunicode-inl.h164 unsigned stream_length) {
165 Reset(buffer, buffer_length, stream, stream_length);
161 Utf8DecoderBase(uint16_t* buffer, unsigned buffer_length, const uint8_t* stream, unsigned stream_length) argument
H A Dunicode.h166 unsigned stream_length);
174 unsigned stream_length);
H A Dunicode.cc264 unsigned stream_length) {
271 while (stream_length != 0) {
273 uint32_t character = Utf8::ValueOf(stream, stream_length, &cursor);
274 DCHECK(cursor > 0 && cursor <= stream_length);
276 stream_length -= cursor;
261 Reset(uint16_t* buffer, unsigned buffer_length, const uint8_t* stream, unsigned stream_length) argument
/external/chromium_org/net/quic/test_tools/
H A Dquic_test_utils.cc576 const size_t stream_length = local
586 if (stream_length < ack_length) {
587 *payload_length = 1 + ack_length - stream_length;
/external/flac/include/FLAC/
H A Dstream_decoder.h600 * FLAC__StreamDecoderLengthStatus length_cb(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
610 * *stream_length = (FLAC__uint64)filestats.st_size;
620 * \param stream_length A pointer to storage for the length of the stream
627 typedef FLAC__StreamDecoderLengthStatus (*FLAC__StreamDecoderLengthCallback)(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dencode.c183 int stream_length = 0; local
527 stream_length = WebRtcIsac_EncTerminate(&ISACencLB_obj->bitstr_obj);
528 return stream_length;
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dencode.c183 int stream_length = 0; local
527 stream_length = WebRtcIsac_EncTerminate(&ISACencLB_obj->bitstr_obj);
528 return stream_length;
/external/flac/libFLAC/
H A Dstream_decoder.c134 static FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample);
136 static FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample);
141 static FLAC__StreamDecoderLengthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data);
2980 FLAC__bool seek_to_absolute_sample_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample) argument
3027 upper_bound = stream_length;
3195 FLAC__bool seek_to_absolute_sample_ogg_(FLAC__StreamDecoder *decoder, FLAC__uint64 stream_length, FLAC__uint64 target_sample) argument
3197 FLAC__uint64 left_pos = 0, right_pos = stream_length;
3375 FLAC__StreamDecoderLengthStatus file_length_callback_(const FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data) argument
3385 *stream_length = (FLAC__uint64)filestats.st_size;
/external/chromium_org/v8/src/heap/
H A Dheap.cc3776 unsigned stream_length = vector.length(); local
3777 while (stream_length != 0) {
3779 uint32_t c = unibrow::Utf8::ValueOf(stream, stream_length, &consumed);
3781 DCHECK(consumed <= stream_length);
3782 stream_length -= consumed;
3795 DCHECK(stream_length == 0);

Completed in 1835 milliseconds