HomeSort by relevance Sort by last modified time
    Searched full:_min (Results 1 - 25 of 70) sorted by null

1 2 3

  /ndk/tests/build/stdint-c++/jni/
gen-sources.sh 9 LIMITS="$LIMITS $PREFIX${SIZE}_MIN $PREFIX${SIZE}_MAX"
22 LIMITS="$LIMITS ${PREFIX}_MIN ${PREFIX}_MAX"
  /external/chromium/third_party/libjingle/overrides/talk/base/
basictypes.h 45 template<class T> inline T _min(T a, T b) { return (a > b) ? b : a; } function in namespace:talk_base
  /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/protobuf/python/google/protobuf/internal/
type_checkers.py 105 if not self._MIN <= proposed_value <= self._MAX:
134 _MIN = -2147483648
139 _MIN = 0
144 _MIN = -(1 << 63)
149 _MIN = 0
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
pseudotcp.cc 168 return talk_base::_min(talk_base::_max(lower, middle), upper);
321 m_rx_rto = talk_base::_min(rto_limit, m_rx_rto * 2);
339 m_rx_rto = talk_base::_min(MAX_RTO, m_rx_rto * 2);
409 uint32 read = talk_base::_min(uint32(len), m_rlen);
417 >= talk_base::_min<uint32>(sizeof(m_rbuf) / 2, m_mss)) {
579 nTimeout = talk_base::_min<int32>(nTimeout,
583 nTimeout = talk_base::_min<int32>(nTimeout,
587 nTimeout = talk_base::_min<int32>(nTimeout, talk_base::TimeDiff(m_lastsend + m_rx_rto, now));
591 nTimeout = talk_base::_min<int32>(nTimeout,
712 m_cwnd = talk_base::_min(m_ssthresh, nInFlight + m_mss); // (Fast Retransmit
    [all...]
stunrequest.cc 193 int delay = DELAY_UNIT * talk_base::_min(1 << count_, DELAY_MAX_FACTOR);
relayserver.cc 283 uint32 length = talk_base::_min(static_cast<uint32>(username_attr->length()),
380 lifetime = talk_base::_min(lifetime, lifetime_attr->value() * 1000);
  /external/chromium/chrome/browser/sync/protocol/
proto_enum_conversions.cc 15 COMPILE_ASSERT(enum_parent::enum_type##_MIN == enum_parent::enum_min, \
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 252 buffer_len = _min(buffer_len, length_ - pos_);
298 *size = _min(*size, length_);
308 *size = _min(*size, length_ - pos_);
744 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
767 const size_t copy = _min(bytes, available);
768 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
800 const size_t copy = _min(bytes, available);
801 const size_t tail_copy = _min(copy, buffer_length_ - write_position);
947 size_t available = _min(buffer_len, str_.size() - read_pos_);
basictypes.h 83 template<class T> inline T _min(T a, T b) { return (a > b) ? b : a; } function in namespace:talk_base
logging.cc 248 sev = _min(sev, it->second);
366 min_sev = _min(dbg_sev_, it->second);
521 size_t line_len = _min(len, LINE_SIZE);
bytebuffer.cc 184 size_t len = _min(end_ - start_, size);
httpcommon.cc 966 _min(sizeof(userbuf) - 1, username.size()));
972 _min(sizeof(passbuf) - 1, password.GetLength()));
977 _min(sizeof(userbuf) - 1, username.size() - pos - 1));
981 _min(sizeof(domainbuf) - 1, pos));
985 _min(sizeof(passbuf) - 1, password.GetLength()));
socketadapters.cc 86 read = _min(cb, data_len_);
325 size_t consume = _min(*len - pos, content_length_);
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_enum.cc 99 "const $classname$ $prefix$$short_name$_MIN = $prefix$$min_name$;\n"
150 "static const $nested_name$ $nested_name$_MIN =\n"
151 " $classname$_$nested_name$_MIN;\n"
247 "const $classname$ $parent$::$nested_name$_MIN;\n"
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.adapt/rand.adapt.ibits/
result_type.pass.cpp 37 static const result_type _Min = Min;
eval.pass.cpp 35 static const result_type _Min = Min;
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/rand/rand.adapt/rand.adapt.shuf/
eval.pass.cpp 35 static const result_type _Min = Min;
result_type.pass.cpp 37 static const result_type _Min = Min;
  /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) {}
  /ndk/sources/cxx-stl/llvm-libc++/include/
random     [all...]
  /external/libpcap/
pcap-dos.h 78 #define min(a,b) _min(a,b)
  /external/safe-iop/include/
safe_iop.h 494 #define MAKE_SSUB(_prefix, _bits, _type, _min, _max) \
507 #define MAKE_SMUL(_prefix, _bits, _type, _max, _min) \
519 #define MAKE_SDIV(_prefix, _bits, _type, _min) \
531 #define MAKE_SMOD(_prefix, _bits, _type, _min) \
  /external/bison/data/
java.m4 114 [b4_int_type($1_min, $1_max)])
  /external/bison/m4/
stdint.m4 213 [dnl Determine whether the various *_MIN, *_MAX macros are usable

Completed in 1424 milliseconds

1 2 3