Home
last modified time | relevance | path

Searched refs:algorithm_ (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/media/filters/
Daudio_renderer_impl.cc73 DCHECK(!algorithm_.get()); in ~AudioRendererImpl()
84 if (algorithm_->playback_rate() == 0) { in StartRendering()
98 DCHECK_NE(algorithm_->playback_rate(), 0); in StartRendering_Locked()
116 if (algorithm_->playback_rate() == 0) { in StopRendering()
187 algorithm_->FlushBuffers(); in ResetDecoderDone()
209 algorithm_.reset(); in Stop()
339 algorithm_.reset(new AudioRendererAlgorithm()); in OnAudioBufferStreamInitialized()
340 algorithm_->Initialize(0, audio_parameters_); in OnAudioBufferStreamInitialized()
371 algorithm_->IncreaseQueueCapacity(); in ResumeAfterUnderflow()
474 algorithm_->EnqueueBuffer(buffer); in HandleSplicerBuffer()
[all …]
Daudio_renderer_algorithm_unittest.cc97 algorithm_.Initialize(1, params); in Initialize()
105 while (!algorithm_.IsQueueFull()) { in FillAlgorithmQueue()
143 algorithm_.EnqueueBuffer(buffer); in FillAlgorithmQueue()
154 ASSERT_EQ(algorithm_.is_muted(), all_zero) << " for channel " << ch; in CheckFakeData()
161 int buffered_delta = algorithm_.frames_buffered() - initial_frames_buffered; in ComputeConsumedFrames()
168 const int kDefaultBufferSize = algorithm_.samples_per_second() / 100; in TestPlaybackRate()
170 algorithm_.samples_per_second(); in TestPlaybackRate()
180 int initial_frames_buffered = algorithm_.frames_buffered(); in TestPlaybackRate()
181 algorithm_.SetPlaybackRate(static_cast<float>(playback_rate)); in TestPlaybackRate()
187 algorithm_.FillBuffer(bus.get(), buffer_size_in_frames); in TestPlaybackRate()
[all …]
Daudio_renderer_impl.h248 scoped_ptr<AudioRendererAlgorithm> algorithm_; variable
Daudio_renderer_impl_unittest.cc364 return renderer_->algorithm_->frames_buffered(); in frames_buffered()
368 return renderer_->algorithm_->QueueCapacity(); in buffer_capacity()
/external/chromium_org/net/http/
Dhttp_auth_handler_digest.cc161 algorithm_(ALGORITHM_UNSPECIFIED), in HttpAuthHandlerDigest()
197 algorithm_ = ALGORITHM_UNSPECIFIED; in ParseChallenge()
246 algorithm_ = ALGORITHM_MD5; in ParseChallengeProperty()
248 algorithm_ = ALGORITHM_MD5_SESS; in ParseChallengeProperty()
329 if (algorithm_ == HttpAuthHandlerDigest::ALGORITHM_MD5_SESS) in AssembleResponseDigest()
361 if (algorithm_ != ALGORITHM_UNSPECIFIED) { in AssembleCredentials()
362 authorization += ", algorithm=" + AlgorithmToString(algorithm_); in AssembleCredentials()
Dhttp_auth_handler_digest.h165 DigestAlgorithm algorithm_; variable
Dhttp_auth_handler_digest_unittest.cc376 EXPECT_EQ(tests[i].parsed_algorithm, digest->algorithm_); in TEST()