Searched refs:lower_bound (Results 26 - 50 of 131) sorted by relevance

123456

/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dalgo.h103 using std::lower_bound;
/freebsd-11-stable/contrib/libstdc++/include/debug/
H A Dmap.h237 lower_bound(const key_type& __x) function in class:std::__debug::map
238 { return iterator(_Base::lower_bound(__x), this); }
241 lower_bound(const key_type& __x) const function in class:std::__debug::map
242 { return const_iterator(_Base::lower_bound(__x), this); }
H A Dmultimap.h224 lower_bound(const key_type& __x) function in class:std::__debug::multimap
225 { return iterator(_Base::lower_bound(__x), this); }
228 lower_bound(const key_type& __x) const function in class:std::__debug::multimap
229 { return const_iterator(_Base::lower_bound(__x), this); }
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp157 const size_t* p_lower = std::lower_bound(detail::g_a_sizes,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryItemStream.h92 std::lower_bound(ItemEndOffsets.begin(), ItemEndOffsets.end(), Offset);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h209 auto Iter = std::lower_bound(Begin, End, AddrOffset);
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DASTTableGen.cpp101 auto i = map.lower_bound(node), e = map.upper_bound(node);
H A DClangASTNodesEmitter.cpp91 ChildIterator i = Tree.lower_bound(Base), e = Tree.upper_bound(Base);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCSection.cpp62 std::lower_bound(SubsectionFragmentMap.begin(),
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/bin_search_tree_/
H A Ddebug_fn_imps.hpp217 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)).m_p_nd == it.m_p_nd);
235 _GLIBCXX_DEBUG_ASSERT(lower_bound(
H A Dbin_search_tree_.hpp279 lower_bound(const_key_reference r_key);
282 lower_bound(const_key_reference r_key) const;
/freebsd-11-stable/contrib/llvm-project/libcxx/src/
H A Dregex.cpp233 _VSTD::lower_bound(begin(collatenames), end(collatenames), s, use_strcmp());
244 _VSTD::lower_bound(begin(ClassNames), end(ClassNames), s, use_strcmp());
H A Dhash.cpp176 return *std::lower_bound(small_primes, small_primes + N, n);
185 size_t in = static_cast<size_t>(std::lower_bound(indices, indices + M, n - k0 * L)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DValueList.cpp193 ResolveConstantsTy::iterator It = llvm::lower_bound(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBStringTableBuilder.cpp127 auto Entry = StringsToBuckets.lower_bound(NumStrings);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp124 insert_pos = m_unwinds.lower_bound(file_addr);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h76 iterator I = llvm::lower_bound(Rep, Val, Compare());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h40 /// Compare routine for std::lower_bound
59 /// Compare routine for std::lower_bound
221 auto Found = std::lower_bound(ProcDesc.begin(), ProcDesc.end(), CPU);
/freebsd-11-stable/contrib/gcc/
H A Dlambda.h113 lambda_linear_expression lower_bound; member in struct:lambda_loop_s
119 #define LL_LOWER_BOUND(T) ((T)->lower_bound)
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
H A Dpat_trie_.hpp256 lower_bound(const_key_reference);
259 lower_bound(const_key_reference) const;
H A Dsplit_fn_imps.hpp118 iterator it = lower_bound(r_key);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfo.cpp123 // llvm::lower_bound is not used as for DIE offsets it would still return
166 auto pos = llvm::lower_bound(m_type_hash_to_unit_index,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadList.cpp214 m_addr_to_sect.lower_bound(load_addr);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTargetParser.cpp110 auto I = std::lower_bound(Table.begin(), Table.end(), Search,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DBuildTree.cpp178 auto It = Trees.lower_bound(Range.begin());
192 auto BeginExecuted = DelayedFolds.lower_bound(Tokens.begin());
263 auto BeginChildren = Trees.lower_bound(FirstToken);
267 auto EndChildren = Trees.lower_bound(Tokens.end());

Completed in 377 milliseconds

123456