Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILResource.cpp222 std::string Bind = BindingPrefix.str(); in print() local
223 Bind += std::to_string(LowerBound); in print()
225 Bind += ",space" + std::to_string(Space); in print()
227 OS << right_justify(Bind, 15); in print()
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-type-util.h155 struct Bind { struct
160 #define GTEST_BIND_(TmplSel, T) TmplSel::template Bind<T>::type
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenACCKinds.h258 Bind, enumerator
410 case OpenACCClauseKind::Bind: in printOpenACCClauseKind()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.h40 extern bool Bind;
/freebsd/sys/dev/agp/
H A Dagp_if.m62 # Bind a single page in the AGP aperture to a given physical address.
124 # Bind a memory region to a specific byte offset within the chipset's
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp569 uint8_t Bind = ELF::STB_GLOBAL; in addSymbol() local
576 Bind = ELF::STB_GLOBAL; in addSymbol()
579 Bind = ELF::STB_LOCAL; in addSymbol()
582 Bind = ELF::STB_WEAK; in addSymbol()
613 SymInfo.SymbolName, Bind, Type, Sec, Value, Visibility, in addSymbol()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBoolAssignmentChecker.cpp26 class BoolAssignmentChecker : public Checker<check::Bind> {
H A DCheckerDocumentation.cpp42 check::Bind,
H A DAnalysisOrderChecker.cpp40 check::Bind, check::PointerEscape, check::RegionChanges,
H A DDereferenceChecker.cpp32 check::Bind,
/freebsd/etc/
H A Dmaster.passwd14 bind:*:53:53::0:0:Bind Sandbox:/:/usr/sbin/nologin
/freebsd/crypto/openssh/
H A DTODO61 to allow people to (right/wrongfully) link against Bind directly.
/freebsd/contrib/ntp/sntp/m4/
H A Dopenldap.m4207 /* Bind 8/9 interface */
210 /* Bind 4 interface */
218 /* Bind 8/9 interface */
221 /* Bind 4 interface w/ HFIXEDSZ */
224 /* Bind 4 interface w/o HFIXEDSZ */
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h108 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h739 BoundNodesTreeBuilder *Builder, BindKind Bind) {
749 Builder, Bind);
754 BoundNodesTreeBuilder *Builder, BindKind Bind) {
764 Matcher, Builder, Bind);
794 BindKind Bind) = 0;
799 BindKind Bind) = 0;
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp101 .Case("bind", OpenACCClauseKind::Bind) in getOpenACCClauseKind()
525 case OpenACCClauseKind::Bind: in getClauseParensKind()
989 case OpenACCClauseKind::Bind: { in ParseOpenACCClauseParams()
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp216 uint8_t Bind = Sym.Weak ? STB_WEAK : STB_GLOBAL; in ELFStubBuilder() local
222 DynSym.Content.add(DynStr.Content.getOffset(Sym.Name), Size, Bind, in ELFStubBuilder()
/freebsd/contrib/blocklist/
H A DREADME21 - Bind: diff/named.diff [both tcp and udp]
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h380 enum class FixupKind { Bind, Rebase }; enumerator
386 bool isBind() const { return Kind == FixupKind::Bind; } in isBind()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp55 Store = Bind(Store.getStore(), I.first.castAs<Loc>(), I.second); in enterStackFrame()
H A DProgramState.cpp119 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(), in bindLoc()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DUnsafeBufferUsage.cpp95 internal::ASTMatchFinder::BindKind Bind, in MatchDescendantVisitor() argument
97 : Matcher(Matcher), Finder(Finder), Builder(Builder), Bind(Bind), in MatchDescendantVisitor()
199 if (Bind != internal::ASTMatchFinder::BK_All) in match()
209 const internal::ASTMatchFinder::BindKind Bind; member in clang::ast_matchers::MatchDescendantVisitor
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSDPatternMatch.h231 explicit ValueType_bind(EVT &Bind) : BindVT(Bind) {} in ValueType_bind()
/freebsd/contrib/llvm-project/lld/ELF/
H A DOptions.td43 def Bsymbolic: F<"Bsymbolic">, HelpText<"Bind default visibility defined symbols locally for -share…
46 HelpText<"Bind default visibility defined STB_GLOBAL symbols locally for -shared">;
49 HelpText<"Bind default visibility defined function symbols locally for -shared">;
52 HelpText<"Bind default visibility defined STB_GLOBAL function symbols locally for -shared">;
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp7646 CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E); in MaybeBindToTemporary() local
7649 ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind); in MaybeBindToTemporary()
7651 return Bind; in MaybeBindToTemporary()
7785 CXXBindTemporaryExpr *Bind = in ActOnDecltypeExpression() local
7787 if (Bind == TopBind) in ActOnDecltypeExpression()
7790 CXXTemporary *Temp = Bind->getTemporary(); in ActOnDecltypeExpression()
7793 Bind->getType()->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); in ActOnDecltypeExpression()
7797 MarkFunctionReferenced(Bind->getExprLoc(), Destructor); in ActOnDecltypeExpression()
7798 CheckDestructorAccess(Bind->getExprLoc(), Destructor, in ActOnDecltypeExpression()
7800 << Bind->getType()); in ActOnDecltypeExpression()
[all …]

12