HomeSort by relevance Sort by last modified time
    Searched refs:_max (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/modules/audio_conference_mixer/source/
level_indicator.cc 19 : _max(0),
36 if(_max < speech[i])
38 _max = speech[i];
47 if(-min > _max)
49 _max = -min;
55 int32_t position = _max / 1000;
57 (_max > 250))
64 _max = _max >> 1;
level_indicator.h 31 int32_t _max; member in class:webrtc::LevelIndicator
  /external/chromium_org/third_party/webrtc/base/
bandwidthsmoother.cc 23 percent_increase_(rtc::_max(1.0, percent_increase)),
29 rtc::_max(0.0, min_sample_count_percent))) {
diskcache_win32.cc 48 entry->streams = _max(entry->streams, index + 1);
proxyserver.cc 127 buffer->ConsumeWriteBuffer(_max(read, 0));
137 buffer->ConsumeReadData(_max(written, 0));
basictypes.h 116 template<class T> inline T _max(T a, T b) { return (a < b) ? b : a; } function in namespace:rtc
rollingaccumulator.h 102 max_ = _max(max_, samples_[(next_index_ + i) % max_count()]);
common.h 59 #define stdmax(x, y) rtc::_max(x, y)
profiler.cc 68 maximum_ = _max(maximum_, elapsed);
bytebuffer.cc 198 size_ = _max(size, 3 * size_ / 2);
messagequeue.cc 247 cmsNext = _max(0, cmsTotal - cmsElapsed);
  /external/chromium_org/third_party/opus/src/celt/
fixed_c5x.h 46 #define MAX16(a,b) _max(a,b)
fixed_c6x.h 50 #define MAX16(a,b) _max(a,b)
  /external/chromium_org/chrome/renderer/pepper/
pepper_uma_host.cc 120 #define RETURN_IF_BAD_ARGS(_min, _max, _buckets) \
122 if (_min >= _max || _buckets <= 1) \
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AlignedBox.h 44 /** Constructs a box with extremities \a _min and \a _max. */
45 inline AlignedBox(const VectorType& _min, const VectorType& _max) : m_min(_min), m_max(_max) {}
  /external/chromium_org/third_party/webrtc/overrides/webrtc/base/
basictypes.h 84 template<class T> inline T _max(T a, T b) { return (a < b) ? b : a; } function in namespace:rtc
  /external/chromium_org/third_party/freetype/include/freetype/internal/
psaux.h 267 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \
273 _max, \
278 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \
284 _max, 0, \
    [all...]
  /external/freetype/include/internal/
psaux.h 267 #define T1_NEW_TABLE_FIELD( _ident, _type, _fname, _max, _dict ) \
273 _max, \
278 #define T1_NEW_TABLE_FIELD2( _ident, _type, _fname, _max, _dict ) \
284 _max, 0, \
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
pseudotcp.cc 170 return rtc::_min(rtc::_max(lower, middle), upper);
323 m_ssthresh = rtc::_max(nInFlight / 2, 2 * m_mss);
733 rtc::_max<uint32>(1, 4 * m_rx_rttvar), MAX_RTO);
791 m_cwnd += rtc::_max<uint32>(1, m_mss * m_mss / m_cwnd);
814 m_ssthresh = rtc::_max(nInFlight / 2, 2 * m_mss);
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocapturer.h 277 screencast_max_pixels_ = rtc::_max(0, p);
filemediaengine.cc 245 wait = rtc::_max(0, wait);
  /external/libpcap/
pcap-dos.h 79 #define max(a,b) _max(a,b)
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 66 /** Constructs a box with extremities \a _min and \a _max. */
68 inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {}
  /external/chromium_org/third_party/mesa/src/src/mesa/x86/
mmx_blend.S 342 #define TAG(x) CONCAT(x,_max)
343 #define LLTAG(x) LLBL2(x,_max)
  /external/mesa3d/src/mesa/x86/
mmx_blend.S 342 #define TAG(x) CONCAT(x,_max)
343 #define LLTAG(x) LLBL2(x,_max)

Completed in 454 milliseconds

1 2