Home
last modified time | relevance | path

Searched refs:lower_bound (Results 1 – 25 of 201) sorted by relevance

123456789

/openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/25_algorithms/
Dbinary_search.cc47 using std::lower_bound; in test01()
52 const int* p = lower_bound(A, A + N, 3); in test01()
55 const int* q = lower_bound(A, A + N, first); in test01()
58 const int* r = lower_bound(A, A + N, last); in test01()
61 const int* s = lower_bound(A, A + N, 4); in test01()
64 const int* t = lower_bound(C, C + N, 3, gt()); in test01()
67 const int* u = lower_bound(C, C + N, first, gt()); in test01()
70 const int* v = lower_bound(C, C + N, last, gt()); in test01()
73 const int* w = lower_bound(C, C + N, 4, gt()); in test01()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParser.cpp38 uint64_t lower_bound = 0; in ParseChildArrayInfo() local
78 lower_bound = form_value.Unsigned(); in ParseChildArrayInfo()
93 if (upper_bound_valid && upper_bound >= lower_bound) in ParseChildArrayInfo()
94 num_elements = upper_bound - lower_bound + 1; in ParseChildArrayInfo()
/openbsd/src/gnu/usr.bin/binutils/gdb/
Df-valprint.c71 f77_get_dynamic_lowerbound (struct type *type, int *lower_bound) in f77_get_dynamic_lowerbound() argument
82 *lower_bound = in f77_get_dynamic_lowerbound()
89 *lower_bound = DEFAULT_LOWER_BOUND; in f77_get_dynamic_lowerbound()
95 *lower_bound = TYPE_ARRAY_LOWER_BOUND_VALUE (type); in f77_get_dynamic_lowerbound()
110 *lower_bound = read_memory_integer (ptr_to_lower_bound, 4); in f77_get_dynamic_lowerbound()
114 *lower_bound = DEFAULT_LOWER_BOUND; in f77_get_dynamic_lowerbound()
197 int lower_bound = 1; in f77_get_dynamic_length_of_aggregate() local
214 retcode = f77_get_dynamic_lowerbound (type, &lower_bound); in f77_get_dynamic_length_of_aggregate()
225 (upper_bound - lower_bound + 1) * TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type))); in f77_get_dynamic_length_of_aggregate()
Df-typeprint.c159 int upper_bound, lower_bound; in f_type_print_varspec_suffix() local
183 retcode = f77_get_dynamic_lowerbound (type, &lower_bound); in f_type_print_varspec_suffix()
189 else if (lower_bound == 1) /* The default */ in f_type_print_varspec_suffix()
192 fprintf_filtered (stream, "%d", lower_bound); in f_type_print_varspec_suffix()
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/ov_tree_map_/
Dov_tree_map_.hpp244 point_iterator it = lower_bound(r_key); in operator []()
265 point_iterator it = lower_bound(r_key); in insert()
279 lower_bound(const_key_reference r_key) in lower_bound() function in pb_ds::detail::PB_DS_OV_TREE_CLASS_NAME
295 lower_bound(const_key_reference r_key) const in lower_bound() function in pb_ds::detail::PB_DS_OV_TREE_CLASS_NAME
296 { return const_cast<PB_DS_CLASS_C_DEC& >(*this).lower_bound(r_key); } in lower_bound()
301 iterator pot_it = lower_bound(r_key); in upper_bound()
320 iterator pot_it = lower_bound(r_key); in find()
/openbsd/src/gnu/llvm/lldb/source/Breakpoint/
DBreakpointSiteList.cpp171 bool BreakpointSiteList::FindInRange(lldb::addr_t lower_bound, in FindInRange() argument
174 if (lower_bound > upper_bound) in FindInRange()
179 lower = m_bp_site_list.lower_bound(lower_bound); in FindInRange()
190 if (prev_bp->GetLoadAddress() + prev_bp->GetByteSize() > lower_bound) in FindInRange()
/openbsd/src/gnu/gcc/libstdc++-v3/include/bits/
Dstl_map.h347 iterator __i = lower_bound(__k); in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
366 iterator __i = lower_bound(__k); in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
375 const_iterator __i = lower_bound(__k); in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
583 lower_bound(const key_type& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
584 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
598 lower_bound(const key_type& __x) const in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
599 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
Dstl_multiset.h435 lower_bound(const key_type& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
436 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
439 lower_bound(const key_type& __x) const in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
440 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
Dstl_set.h450 lower_bound(const key_type& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
451 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
454 lower_bound(const key_type& __x) const in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
455 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
Dstl_multimap.h517 lower_bound(const key_type& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
518 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
532 lower_bound(const key_type& __x) const in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
533 { return _M_t.lower_bound(__x); } in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/
Dstl_multiset.h190 iterator lower_bound(const key_type& __x) { in lower_bound() function
191 return _M_t.lower_bound(__x); in lower_bound()
193 const_iterator lower_bound(const key_type& __x) const { in lower_bound() function
194 return _M_t.lower_bound(__x); in lower_bound()
210 iterator lower_bound(const key_type& __x) const { in lower_bound() function
211 return _M_t.lower_bound(__x); in lower_bound()
Dstl_set.h189 iterator lower_bound(const key_type& __x) { in lower_bound() function
190 return _M_t.lower_bound(__x); in lower_bound()
192 const_iterator lower_bound(const key_type& __x) const { in lower_bound() function
193 return _M_t.lower_bound(__x); in lower_bound()
209 iterator lower_bound(const key_type& __x) const { in lower_bound() function
210 return _M_t.lower_bound(__x); in lower_bound()
Dstl_map.h316 iterator __i = lower_bound(__k);
508 lower_bound(const key_type& __x) { return _M_t.lower_bound(__x); } in lower_bound() function
522 lower_bound(const key_type& __x) const { return _M_t.lower_bound(__x); } in lower_bound() function
Dstl_multimap.h491 lower_bound(const key_type& __x) { return _M_t.lower_bound(__x); } in lower_bound() function
505 lower_bound(const key_type& __x) const { return _M_t.lower_bound(__x); } in lower_bound() function
/openbsd/src/gnu/llvm/llvm/lib/TextAPI/
DInterfaceFile.cpp35 lower_bound(Container, Target_, [](const Target &LHS, const Target &RHS) { in addEntry()
62 auto Iter = lower_bound(ParentUmbrellas, Target_, in addParentUmbrella()
75 auto Iter = lower_bound(UUIDs, Target_, in addUUID()
122 auto Pos = llvm::lower_bound(Documents, Document, in addDocument()
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
Dfind_fn_imps.hpp166 lower_bound(const_key_reference r_key) in lower_bound() function in PB_DS_CLASS_C_DEC
172 lower_bound(const_key_reference r_key) const in lower_bound() function in PB_DS_CLASS_C_DEC
182 point_iterator l_bound_it = lower_bound(r_key); in upper_bound()
200 const_point_iterator l_bound_it = lower_bound(r_key); in upper_bound()
/openbsd/src/gnu/gcc/libstdc++-v3/include/debug/
Dset.h231 lower_bound(const key_type& __x) in lower_bound() function
232 { return iterator(_Base::lower_bound(__x), this); } in lower_bound()
237 lower_bound(const key_type& __x) const in lower_bound() function
238 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
Dmultiset.h226 lower_bound(const key_type& __x) in lower_bound() function
227 { return iterator(_Base::lower_bound(__x), this); } in lower_bound()
232 lower_bound(const key_type& __x) const in lower_bound() function
233 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
Dmultimap.h226 lower_bound(const key_type& __x) in lower_bound() function
227 { return iterator(_Base::lower_bound(__x), this); } in lower_bound()
230 lower_bound(const key_type& __x) const in lower_bound() function
231 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
Dmap.h239 lower_bound(const key_type& __x) in lower_bound() function
240 { return iterator(_Base::lower_bound(__x), this); } in lower_bound()
243 lower_bound(const key_type& __x) const in lower_bound() function
244 { return const_iterator(_Base::lower_bound(__x), this); } in lower_bound()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/POSIX/
DCrashReason.cpp24 void AppendBounds(std::string &str, lldb::addr_t lower_bound, in AppendBounds() argument
27 if ((unsigned long)addr < lower_bound) in AppendBounds()
34 stream.write_hex(lower_bound); in AppendBounds()
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/
Dfind_fn_imps.hpp50 lower_bound(const_key_reference r_key) const in lower_bound() function in PB_DS_CLASS_C_DEC
73 lower_bound(const_key_reference r_key) in lower_bound() function in PB_DS_CLASS_C_DEC
/openbsd/src/gnu/llvm/libcxx/include/
Dset165 iterator lower_bound(const key_type& k);
166 const_iterator lower_bound(const key_type& k) const;
168 iterator lower_bound(const K& x); // C++14
170 const_iterator lower_bound(const K& x) const; // C++14
389 iterator lower_bound(const key_type& k);
390 const_iterator lower_bound(const key_type& k) const;
392 iterator lower_bound(const K& x); // C++14
394 const_iterator lower_bound(const K& x) const; // C++14
878 iterator lower_bound(const key_type& __k)
879 {return __tree_.lower_bound(__k);}
[all …]
/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DRangeMap.h192 auto pos = std::lower_bound(begin, end, entry); in Insert()
325 std::lower_bound(begin, end, entry, BaseLessThan); in FindEntryIndexThatContains()
347 std::lower_bound(begin, end, entry, BaseLessThan); in FindEntryThatContains()
369 std::lower_bound(begin, end, range, BaseLessThan); in FindEntryThatContains()
581 std::lower_bound(begin, end, range, BaseLessThan); in FindEntryThatContains()
598 auto pos = std::lower_bound(begin, end, Entry(addr, 1), BaseLessThan); in FindEntryStartsAt()
621 typename Collection::const_iterator pos = llvm::lower_bound( in FindEntryThatContainsOrFollows()
796 llvm::lower_bound(m_entries, entry, BaseLessThan); in FindEntry()
/openbsd/src/gnu/llvm/llvm/lib/MC/
DMCRegisterInfo.cpp75 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key); in getDwarfRegNum()
89 const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key); in getLLVMRegNum()

123456789