HomeSort by relevance Sort by last modified time
    Searched defs:saturated (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
LayoutUnit.h 402 uint32_t saturated = (static_cast<uint32_t>(a.rawValue() ^ b.rawValue()) >> 31) + std::numeric_limits<int>::max(); local
405 result = saturated;
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
analog_agc.c 590 void WebRtcAgc_SaturationCtrl(Agc_t *stt, uint8_t *saturated, int32_t *env)
594 /* Check if the signal is saturated */
606 *saturated = 1;
768 uint8_t saturated = 0; local
854 /* Checks if the signal is saturated. Also a check if individual samples
858 WebRtcAgc_SaturationCtrl(stt, &saturated, stt->env[0]);
860 /* The AGC is always allowed to lower the level if the signal is saturated */
861 if (saturated == 1)
883 "\tAGC->ProcessAnalog, frame %d: saturated, micVol = %d\n",
    [all...]

Completed in 41 milliseconds