HomeSort by relevance Sort by last modified time
    Searched refs:lower_bound (Results 176 - 200 of 365) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/ceres-solver/internal/ceres/
problem_impl.h 134 void SetParameterLowerBound(double* values, int index, double lower_bound);
  /external/clang/lib/StaticAnalyzer/Core/
CheckerRegistry.cpp 54 std::lower_bound(checkers.begin(), e, packageInfo, checkerNameLT);
  /external/clang/tools/diagtool/
TreeView.cpp 95 std::lower_bound(AllGroups.begin(), AllGroups.end(), RootGroup);
  /external/google-breakpad/src/common/windows/
omap.cc 439 EndpointIndexMap::iterator it1 = std::lower_bound(
444 EndpointIndexMap::iterator it2 = std::lower_bound(
610 EndpointIndexMap::const_iterator it1 = std::lower_bound(
625 Mapping::const_iterator it2 = std::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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/
map.h 429 lower_bound(const key_type& __x) function in class:__profile::map
432 return iterator(_Base::lower_bound(__x));
436 lower_bound(const key_type& __x) const function in class:__profile::map
439 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/
map.h 429 lower_bound(const key_type& __x) function in class:__profile::map
432 return iterator(_Base::lower_bound(__x));
436 lower_bound(const key_type& __x) const function in class:__profile::map
439 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/
map.h 429 lower_bound(const key_type& __x) function in class:__profile::map
432 return iterator(_Base::lower_bound(__x));
436 lower_bound(const key_type& __x) const function in class:__profile::map
439 return const_iterator(_Base::lower_bound(__x));
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/debug/
map.h 432 lower_bound(const key_type& __x) function in class:__debug::map
433 { return iterator(_Base::lower_bound(__x), this); }
436 lower_bound(const key_type& __x) const function in class:__debug::map
437 { return const_iterator(_Base::lower_bound(__x), this); }
multimap.h 416 lower_bound(const key_type& __x) function in class:__debug::multimap
417 { return iterator(_Base::lower_bound(__x), this); }
420 lower_bound(const key_type& __x) const function in class:__debug::multimap
421 { return const_iterator(_Base::lower_bound(__x), this); }
set.h 411 lower_bound(const key_type& __x) function in class:__debug::set
412 { return iterator(_Base::lower_bound(__x), this); }
417 lower_bound(const key_type& __x) const function in class:__debug::set
418 { return const_iterator(_Base::lower_bound(__x), this); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/
map.h 462 lower_bound(const key_type& __x) function in class:__profile::map
465 return iterator(_Base::lower_bound(__x));
469 lower_bound(const key_type& __x) const function in class:__profile::map
472 return const_iterator(_Base::lower_bound(__x));
  /art/runtime/jdwp/
object_registry.cc 124 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end();
261 for (auto inner_it = object_to_entry_.lower_bound(hash_code), end = object_to_entry_.end();
  /external/google-breakpad/src/common/
module.cc 102 ExternSet::iterator it_debug = externs_.lower_bound(&ext);
153 // created our file. lower_bound does the lookup without doing an
156 FileByNameMap::iterator destiny = files_.lower_bound(&name);
  /external/libcxx/src/
hash.cpp 185 return *std::lower_bound(small_primes, small_primes + N, n);
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L)
  /frameworks/base/tools/aapt2/
Debug.cpp 138 auto iter = std::lower_bound(sortedEntries.begin(), sortedEntries.end(), entry.get(),
180 auto iter = std::lower_bound(names.begin(), names.end(), name);
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 69 auto iter = std::lower_bound(ranges.begin(), ranges.end(), span.firstChar, cmp);
78 iter = std::lower_bound(ranges.begin(), ranges.end(), span.lastChar, cmp);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
hash.cpp 185 return *std::lower_bound(small_primes, small_primes + N, n);
194 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L)
  /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_/
bin_search_tree_.hpp 199 lower_bound(key_const_reference);
202 lower_bound(key_const_reference) const;
  /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_/
bin_search_tree_.hpp 199 lower_bound(key_const_reference);
202 lower_bound(key_const_reference) const;
  /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_/
bin_search_tree_.hpp 199 lower_bound(key_const_reference);
202 lower_bound(key_const_reference) const;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
bin_search_tree_.hpp 199 lower_bound(key_const_reference);
202 lower_bound(key_const_reference) const;
  /external/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 546 LineTable::RowIter row_pos = std::lower_bound(
569 SequenceIter seq_pos = std::lower_bound(first_seq, last_seq, sequence,
594 SequenceIter seq_pos = std::lower_bound(first_seq, last_seq, sequence,
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_region.cc 422 std::lower_bound(row->spans.begin(), row->spans.end(), left,
428 std::lower_bound(start, row->spans.end(), right + 1, CompareSpanLeft);
463 std::lower_bound(row.spans.begin(), row.spans.end(), span.left,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
hashtable_policy.h 423 const unsigned long* __p = std::lower_bound(__prime_list, __prime_list
437 const unsigned long* __p = std::lower_bound(__prime_list, __prime_list
466 std::lower_bound(__prime_list, __prime_list + _S_n_primes,

Completed in 2005 milliseconds

1 2 3 4 5 6 78 91011>>