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

1 2 3

  /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 82 upper_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
101 upper_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 82 upper_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
101 upper_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
  /external/google-breakpad/src/processor/
static_map-inl.h 59 // find(), lower_bound() and upper_bound() implement binary search algorithm.
104 StaticMap<Key, Value, Compare>::upper_bound(const Key &key) const { function in class:google_breakpad::StaticMap
  /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 174 upper_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
192 upper_bound(key_const_reference r_key) const 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/pat_trie_/
find_fn_imps.hpp 174 upper_bound(key_const_reference r_key) function in class:PB_DS_CLASS_C_DEC
192 upper_bound(key_const_reference r_key) const function in class:PB_DS_CLASS_C_DEC
  /system/extras/perfprofd/
symbolizer.cc 53 auto upper_bound = map.upper_bound(address); variable
54 if (upper_bound == map.begin()) {
59 upper_bound--;
60 if (upper_bound->first + upper_bound->second.length > address) {
62 return upper_bound->second.name;
  /external/tensorflow/tensorflow/core/util/
cuda_kernel_helper.h 95 __device__ IntType upper_bound(IntType* first, IntType count, IntType val) { function in namespace:tensorflow::cuda_helper
  /external/jemalloc/src/
quarantine.c 18 size_t upper_bound);
109 quarantine_drain(tsdn_t *tsdn, quarantine_t *quarantine, size_t upper_bound)
112 while (quarantine->curbytes > upper_bound && quarantine->curobjs > 0)
134 size_t upper_bound = (opt_quarantine >= usize) ? opt_quarantine local
136 quarantine_drain(tsd_tsdn(tsd), quarantine, upper_bound); local
  /system/bt/packet/tests/base/
iterator_test.cc 34 auto upper_bound = bounds.second; local
36 return TestPacket::Make(test_l2cap_data, lower_bound, upper_bound);
  /external/tensorflow/tensorflow/compiler/xla/tests/
test_utils.cc 179 const int32 upper_bound = ShapeUtil::GetDimension(input_shape, i) - local
181 std::uniform_int_distribution<int32> generator(0, upper_bound);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
set.h 323 upper_bound(const key_type& __x) function in class:__profile::set
324 { return iterator(_Base::upper_bound(__x)); }
329 upper_bound(const key_type& __x) const function in class:__profile::set
330 { return const_iterator(_Base::upper_bound(__x)); }
map.h 443 upper_bound(const key_type& __x) function in class:__profile::map
446 return iterator(_Base::upper_bound(__x));
450 upper_bound(const key_type& __x) const function in class:__profile::map
453 return const_iterator(_Base::upper_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 323 upper_bound(const key_type& __x) function in class:__profile::set
324 { return iterator(_Base::upper_bound(__x)); }
329 upper_bound(const key_type& __x) const function in class:__profile::set
330 { return const_iterator(_Base::upper_bound(__x)); }
  /art/libartbase/base/
safe_map.h 81 iterator upper_bound(const K& k) { return map_.upper_bound(k); } function in class:art::SafeMap
82 const_iterator upper_bound(const K& k) const { return map_.upper_bound(k); } function in class:art::SafeMap
  /external/google-breakpad/src/testing/src/
gmock-spec-builders.cc 193 const int upper_bound = cardinality().ConservativeUpperBound(); local
197 if (action_count > upper_bound ||
198 (action_count == upper_bound && repeated_action_specified_)) {
  /external/googletest/googlemock/src/
gmock-spec-builders.cc 192 const int upper_bound = cardinality().ConservativeUpperBound(); local
196 if (action_count > upper_bound ||
197 (action_count == upper_bound && repeated_action_specified_)) {
  /external/v8/testing/gmock/src/
gmock-spec-builders.cc 193 const int upper_bound = cardinality().ConservativeUpperBound(); local
197 if (action_count > upper_bound ||
198 (action_count == upper_bound && repeated_action_specified_)) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_map.h 888 upper_bound(const key_type& __x) function in class:map
898 upper_bound(const key_type& __x) const function in class:map
    [all...]
stl_multimap.h 794 upper_bound(const key_type& __x) function in class:multimap
795 { return _M_t.upper_bound(__x); }
804 upper_bound(const key_type& __x) const function in class:multimap
805 { return _M_t.upper_bound(__x); }
816 * c.upper_bound(val))
833 * c.upper_bound(val))
    [all...]
stl_multiset.h 682 upper_bound(const key_type& __x) function in class:multiset
683 { return _M_t.upper_bound(__x); }
686 upper_bound(const key_type& __x) const function in class:multiset
687 { return _M_t.upper_bound(__x); }
700 * c.upper_bound(val))
stl_set.h 699 upper_bound(const key_type& __x) function in class:set
700 { return _M_t.upper_bound(__x); }
703 upper_bound(const key_type& __x) const function in class:set
704 { return _M_t.upper_bound(__x); }
717 * c.upper_bound(val))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
map.h 399 upper_bound(const key_type& __x) function in class:__debug::map
400 { return iterator(_Base::upper_bound(__x), this); }
403 upper_bound(const key_type& __x) const function in class:__debug::map
404 { return const_iterator(_Base::upper_bound(__x), this); }
multimap.h 382 upper_bound(const key_type& __x) function in class:__debug::multimap
383 { return iterator(_Base::upper_bound(__x), this); }
386 upper_bound(const key_type& __x) const function in class:__debug::multimap
387 { return const_iterator(_Base::upper_bound(__x), this); }
multiset.h 371 upper_bound(const key_type& __x) function in class:__debug::multiset
372 { return iterator(_Base::upper_bound(__x), this); }
377 upper_bound(const key_type& __x) const function in class:__debug::multiset
378 { return const_iterator(_Base::upper_bound(__x), this); }
set.h 380 upper_bound(const key_type& __x) function in class:__debug::set
381 { return iterator(_Base::upper_bound(__x), this); }
386 upper_bound(const key_type& __x) const function in class:__debug::set
387 { return const_iterator(_Base::upper_bound(__x), this); }

Completed in 621 milliseconds

1 2 3