| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | binary_search.h | 25 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __com… in binary_search() function 32 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in binary_search() function 33 return std::binary_search(__first, __last, __value, __less<>()); in binary_search()
|
| H A D | ranges_binary_search.h | 61 inline constexpr auto binary_search = __binary_search{};
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | binary_search.h | 26 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __com… in binary_search() function 33 binary_search(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in binary_search() function 34 return std::binary_search(__first, __last, __value, __less<>()); in binary_search()
|
| /freebsd/usr.bin/look/ |
| H A D | look.c | 71 static char *binary_search(wchar_t *, unsigned char *, unsigned char *); 189 front = binary_search(string, front, back); in look() 240 binary_search(wchar_t *string, unsigned char *front, unsigned char *back) in binary_search() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | UnicodeCharRanges.h | 64 bool contains(uint32_t C) const { return llvm::binary_search(Ranges, C); } in contains()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsCCState.cpp | 33 return llvm::binary_search(LibCalls, CallSym, Comp); in isF128SoftLibCall()
|
| H A D | Mips16ISelLowering.cpp | 439 if (llvm::binary_search(HardFloatLibCalls, Find)) in getOpndList() 480 if (llvm::binary_search(HardFloatLibCalls, Find)) in getOpndList()
|
| H A D | Mips16HardFloat.cpp | 371 return llvm::binary_search(IntrinsicInline, F->getName()); in isIntrinsicInline()
|
| /freebsd/contrib/nvi/ex/ |
| H A D | ex_tag.c | 35 static char *binary_search(char *, char *, char *); 1052 front = binary_search(tname, front, back); in ctag_sfile() 1237 binary_search(char *string, char *front, char *back) in binary_search() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | AnalyzerOptions.h | 314 return !llvm::binary_search(AnalyzerConfigCmdFlags, Name); in isUnknownAnalyzerConfig()
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | algorithm.cppm | |
| H A D | algorithm.inc | 429 using std::binary_search; 432 using std::ranges::binary_search;
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | FormatToken.cpp | 47 llvm::binary_search(CppNonKeywordTypes, TokenText); in isTypeName()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | CodeGenIntrinsics.cpp | 465 return llvm::binary_search(ArgumentAttributes[ParamIdx], Val); in isParamImmArg()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | PPC.cpp | 283 llvm::binary_search(M.getCodeGenOpts().TocDataVarsUserSpecified, GVId); in setTargetAttributes() 288 !llvm::binary_search(M.getCodeGenOpts().NoTocDataVars, GVId))) { in setTargetAttributes()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | DiagnosticRenderer.cpp | 273 if (llvm::binary_search(CommonArgExpansions, MacroFileID)) in retrieveMacroLocation()
|
| H A D | VerifyDiagnosticConsumer.cpp | 484 if (!llvm::binary_search(Prefixes, DToken)) in ParseDirective()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 2000 template <typename R, typename T> auto binary_search(R &&Range, T &&Value) { 2001 return std::binary_search(adl_begin(Range), adl_end(Range), 2006 auto binary_search(R &&Range, T &&Value, Compare C) { 2007 return std::binary_search(adl_begin(Range), adl_end(Range),
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerLoop.cpp | 528 if (std::binary_search(II->UniqFeatureSet.begin(), in RunOne()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | algorithm | 604 constexpr bool binary_search(I first, S last, const T& value, Comp comp = {}, 610 constexpr bool binary_search(R&& r, const T& value, Comp comp = {}, 1583 binary_search(ForwardIterator first, ForwardIterator last, const T& value); 1587 binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp); 1826 #include <__cxx03/__algorithm/binary_search.h>
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | algorithm | 611 constexpr bool binary_search(I first, S last, const T& value, Comp comp = {}, 617 constexpr bool binary_search(R&& r, const T& value, Comp comp = {}, 1599 binary_search(ForwardIterator first, ForwardIterator last, const T& value); 1603 binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp); 1845 # include <__algorithm/binary_search.h>
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CodeCoverage.cpp | 552 return !llvm::binary_search(CoveredFiles, SF); in removeUnmappedInputs()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 249 return std::binary_search(Nodes.begin(), Nodes.begin() + NumHeaders, in isHeader()
|
| /freebsd/lib/libc++/ |
| H A D | Makefile | 287 ALG_HEADERS+= binary_search.h 810 C3ALG_HEADERS+= binary_search.h
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
| H A D | StdSpecialSymbolMap.inc | 450 SYMBOL(binary_search, std::ranges::, <algorithm>)
|