HomeSort by relevance Sort by last modified time
    Searched defs:lower_bound (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 44 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
63 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 44 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
63 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 44 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
63 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
find_fn_imps.hpp 44 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
63 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /bionic/libc/bionic/
mbrtoc32.cpp 78 char32_t lower_bound; local
86 lower_bound = 0;
90 lower_bound = 0x80;
94 lower_bound = 0x800;
98 lower_bound = 0x10000;
126 if (c32 < lower_bound) {
  /external/google-breakpad/src/processor/
static_map-inl.h 59 // find(), lower_bound() and upper_bound() implement binary search algorithm.
83 StaticMap<Key, Value, Compare>::lower_bound(const Key &key) const { function in class:google_breakpad::StaticMap
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/detail/
binary_search.hpp 37 ForwardIter lower_bound(ForwardIter first, ForwardIter last, function in namespace:boost::detail
62 ForwardIter lower_bound(ForwardIter first, ForwardIter last, function in namespace:boost::detail
158 left = boost::detail::lower_bound(first, middle, val);
190 left = boost::detail::lower_bound(first, middle, val, comp);
202 ForwardIter i = boost::detail::lower_bound(first, last, val);
210 ForwardIter i = boost::detail::lower_bound(first, last, val, comp);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 160 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
166 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
176 point_iterator l_bound_it = lower_bound(r_key);
194 point_const_iterator l_bound_it = lower_bound(r_key);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 160 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
166 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
176 point_iterator l_bound_it = lower_bound(r_key);
194 point_const_iterator l_bound_it = lower_bound(r_key);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 160 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
166 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
176 point_iterator l_bound_it = lower_bound(r_key);
194 point_const_iterator l_bound_it = lower_bound(r_key);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
find_fn_imps.hpp 160 lower_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
166 lower_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
176 point_iterator l_bound_it = lower_bound(r_key);
194 point_const_iterator l_bound_it = lower_bound(r_key);
  /art/runtime/
safe_map.h 78 iterator lower_bound(const K& k) { return map_.lower_bound(k); } function in class:art::SafeMap
79 const_iterator lower_bound(const K& k) const { return map_.lower_bound(k); } function in class:art::SafeMap
132 auto lb = lower_bound(k);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
nack.cc 109 NackList::const_iterator lower_bound = local
110 nack_list_.lower_bound(static_cast<uint16_t>(
113 for (NackList::iterator it = nack_list_.begin(); it != lower_bound; ++it)
  /external/webrtc/webrtc/modules/audio_processing/aec/
system_delay_unittest.cc 245 int lower_bound = WebRtcAec_extended_filter_enabled(self_->aec) local
248 EXPECT_LE(lower_bound, WebRtcAec_system_delay(self_->aec));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algo.h 461 // auxiliary class for lower_bound, etc.
479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
481 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, function
491 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, function
_map.h 176 iterator __i = lower_bound(__k);
216 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } function in class:map
218 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } function in class:map
392 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } function in class:multimap
394 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } function in class:multimap
_set.h 196 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } function in class:set
198 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } function in class:set
367 iterator lower_bound(const _KT& __x) { return _M_t.lower_bound(__x); } function in class:multiset
369 const_iterator lower_bound(const _KT& __x) const { return _M_t.lower_bound(__x); } function in class:multiset
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
set.h 313 lower_bound(const key_type& __x) function in class:__profile::set
314 { return iterator(_Base::lower_bound(__x)); }
319 lower_bound(const key_type& __x) const function in class:__profile::set
320 { return const_iterator(_Base::lower_bound(__x)); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
set.h 313 lower_bound(const key_type& __x) function in class:__profile::set
314 { return iterator(_Base::lower_bound(__x)); }
319 lower_bound(const key_type& __x) const function in class:__profile::set
320 { return const_iterator(_Base::lower_bound(__x)); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
set.h 313 lower_bound(const key_type& __x) function in class:__profile::set
314 { return iterator(_Base::lower_bound(__x)); }
319 lower_bound(const key_type& __x) const function in class:__profile::set
320 { return const_iterator(_Base::lower_bound(__x)); }
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_algo.h 461 // auxiliary class for lower_bound, etc.
479 // Binary search (lower_bound, upper_bound, equal_range, binary_search).
481 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, function
491 inline _ForwardIter lower_bound(_ForwardIter __first, _ForwardIter __last, function
  /external/ceres-solver/internal/ceres/
program.cc 203 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
205 if (lower_bound > -std::numeric_limits<double>::max() ||
225 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
227 if (parameters[j] < lower_bound || parameters[j] > upper_bound) {
234 parameters, size, j, lower_bound, parameters[j], upper_bound);
244 const double lower_bound = parameter_block->LowerBoundForParameter(j); local
246 if (lower_bound >= upper_bound) {
253 parameters, size, j, lower_bound, upper_bound);
  /external/gmock/src/
gmock-spec-builders.cc 194 const int lower_bound = cardinality().ConservativeLowerBound(); local
200 } else if (0 < action_count && action_count < lower_bound &&
  /external/google-breakpad/src/testing/src/
gmock-spec-builders.cc 194 const int lower_bound = cardinality().ConservativeLowerBound(); local
200 } else if (0 < action_count && action_count < lower_bound &&
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_tree.h 185 iterator lower_bound(const _KT& __x) function in class:_Rb_tree
186 { return iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)); }
188 const_iterator lower_bound(const _KT& __x) const function in class:_Rb_tree
189 { return const_iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)); }
200 return pair<iterator, iterator>(iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)),
205 return pair<const_iterator,const_iterator>(const_iterator(&_M_iter_list, _M_non_dbg_impl.lower_bound(__x)),

Completed in 721 milliseconds

1 2 3 4 5