/freebsd/contrib/llvm-project/libcxx/include/__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()
|
H A D | ranges_binary_search.h | 63 inline constexpr auto binary_search = __binary_search::__fn{};
|
/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 | 65 return std::binary_search(Ranges.begin(), Ranges.end(), C); in contains()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | MipsCCState.cpp | 33 return std::binary_search(std::begin(LibCalls), std::end(LibCalls), CallSym, in isF128SoftLibCall()
|
H A D | Mips16ISelLowering.cpp | 430 if (std::binary_search(std::begin(HardFloatLibCalls), in getOpndList() 473 if (std::binary_search(std::begin(HardFloatLibCalls), in getOpndList()
|
H A D | Mips16HardFloat.cpp | 372 return std::binary_search(std::begin(IntrinsicInline), in isIntrinsicInline()
|
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
H A D | AnalyzerOptions.h | 284 return !std::binary_search(AnalyzerConfigCmdFlags.begin(), in isUnknownAnalyzerConfig()
|
/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/llvm/utils/TableGen/Basic/ |
H A D | CodeGenIntrinsics.cpp | 261 return std::binary_search(ArgumentAttributes[ParamIdx].begin(), in isParamImmArg()
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | algorithm.cppm |
|
H A D | algorithm.inc | 427 using std::binary_search; 430 using std::ranges::binary_search;
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | FormatToken.cpp | 48 std::binary_search(CppNonKeywordTypes.begin(), in isTypeName()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | PPC.cpp | 279 llvm::binary_search(M.getCodeGenOpts().TocDataVarsUserSpecified, GVId); in setTargetAttributes() 284 !llvm::binary_search(M.getCodeGenOpts().NoTocDataVars, GVId))) { in setTargetAttributes()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | DiagnosticRenderer.cpp | 276 if (std::binary_search(CommonArgExpansions.begin(), in retrieveMacroLocation()
|
H A D | VerifyDiagnosticConsumer.cpp | 481 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken)) in ParseDirective()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | STLExtras.h | 1941 template <typename R, typename T> auto binary_search(R &&Range, T &&Value) { 1942 return std::binary_search(adl_begin(Range), adl_end(Range), 1947 auto binary_search(R &&Range, T &&Value, Compare C) { 1948 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/ |
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 <__algorithm/binary_search.h>
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | CodeCoverage.cpp | 550 return !std::binary_search(CoveredFiles.begin(), CoveredFiles.end(), SF); in removeUnmappedInputs()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfoImpl.h | 252 return std::binary_search(Nodes.begin(), Nodes.begin() + NumHeaders, in isHeader()
|
/freebsd/lib/libc++/ |
H A D | Makefile | 282 ALG_HEADERS+= binary_search.h
|
H A D | libcxx.imp | 5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | CodeGenRegisters.cpp | 909 return std::binary_search(Members.begin(), Members.end(), Reg, in contains()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | PPDirectives.cpp | 152 return std::binary_search(std::begin(ReservedMacro), std::end(ReservedMacro), in isFeatureTestMacro()
|