Searched defs:RMS (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_processing/
H A Drms_level.cc42 int RMSLevel::RMS() { function in class:webrtc::RMSLevel
H A Dlevel_estimator_impl.cc49 int LevelEstimatorImpl::RMS() { function in class:webrtc::LevelEstimatorImpl
55 return rms_level->RMS();
/external/webrtc/src/modules/audio_processing/
H A Dlevel_estimator_impl.cc52 int RMS() { function in class:webrtc::__anon32618::Level
124 int LevelEstimatorImpl::RMS() { function in class:webrtc::LevelEstimatorImpl
130 return level->RMS();
/external/chromium_org/content/browser/speech/endpointer/
H A Denergy_endpointer.cc17 // Returns the RMS (quadratic mean) of the input signal.
18 float RMS(const int16* samples, int num_samples) { function in namespace:__anon7103
237 float rms = RMS(samples, num_samples);
304 // threshold to be about 6dB above the average RMS.
310 // be about 10dB below the average RMS. If the noise level is high,
/external/llvm/lib/CodeGen/
H A DRegAllocGreedy.cpp1689 ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber()); local
1690 DEBUG(dbgs() << RMS.size() << " regmasks in block:");
1692 unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1693 Uses.front().getRegSlot()) - RMS.begin();
1694 unsigned re = RMS.size();
1696 // Look for Uses[i] <= RMS <= Uses[i+1].
1697 assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1698 if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
1702 if (SlotIndex::isSameInstr(Uses[i+1], RMS[r
[all...]

Completed in 171 milliseconds