Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dbinary_search.h26 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 Dranges_binary_search.h63 inline constexpr auto binary_search = __binary_search::__fn{};
/freebsd-14.2/usr.bin/look/
H A Dlook.c83 static char *binary_search(wchar_t *, unsigned char *, unsigned char *);
201 front = binary_search(string, front, back); in look()
252 binary_search(wchar_t *string, unsigned char *front, unsigned char *back) in binary_search() function
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h65 return std::binary_search(Ranges.begin(), Ranges.end(), C); in contains()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCCState.cpp33 return std::binary_search(std::begin(LibCalls), std::end(LibCalls), CallSym, in isF128SoftLibCall()
H A DMips16ISelLowering.cpp430 if (std::binary_search(std::begin(HardFloatLibCalls), in getOpndList()
473 if (std::binary_search(std::begin(HardFloatLibCalls), in getOpndList()
H A DMips16HardFloat.cpp372 return std::binary_search(std::begin(IntrinsicInline), in isIntrinsicInline()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyzerOptions.h283 return !std::binary_search(AnalyzerConfigCmdFlags.begin(), in isUnknownAnalyzerConfig()
/freebsd-14.2/contrib/nvi/ex/
H A Dex_tag.c35 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-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenIntrinsics.cpp261 return std::binary_search(ArgumentAttributes[ParamIdx].begin(), in isParamImmArg()
H A DCodeGenRegisters.cpp889 return std::binary_search(Members.begin(), Members.end(), Reg, in contains()
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.inc428 using std::binary_search;
431 using std::ranges::binary_search;
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp276 if (std::binary_search(CommonArgExpansions.begin(), in retrieveMacroLocation()
H A DVerifyDiagnosticConsumer.cpp476 if (!std::binary_search(Prefixes.begin(), Prefixes.end(), DToken)) in ParseDirective()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp528 if (std::binary_search(II->UniqFeatureSet.begin(), in RunOne()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dalgorithm566 constexpr bool binary_search(I first, S last, const T& value, Comp comp = {},
572 constexpr bool binary_search(R&& r, const T& value, Comp comp = {},
1545 binary_search(ForwardIterator first, ForwardIterator last, const T& value);
1549 binary_search(ForwardIterator first, ForwardIterator last, const T& value, Compare comp);
1790 #include <__algorithm/binary_search.h>
H A Dlibcxx.imp5 { include: [ "<__algorithm/binary_search.h>", "private", "<algorithm>", "public" ] },
H A Dmodule.modulemap.in637 …rithm_binary_search [system] { header "__algorithm/binary_search.h" }
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp578 return !std::binary_search(CoveredFiles.begin(), CoveredFiles.end(), SF); in removeUnmappedInputs()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h252 return std::binary_search(Nodes.begin(), Nodes.begin() + NumHeaders, in isHeader()
/freebsd-14.2/lib/libc++/
H A DMakefile278 ALG_HEADERS+= binary_search.h
H A Dmodule.modulemap637 …rithm_binary_search [system] { header "__algorithm/binary_search.h" }
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp151 return std::binary_search(std::begin(ReservedMacro), std::end(ReservedMacro), in isFeatureTestMacro()
/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp2927 std::binary_search(std::begin(FoundationIdentifiers), in guessIsObjC()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc807 SYMBOL(binary_search, std::, <algorithm>)