Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXContainerGlobals.cpp188 [](const dxil::ResourceInfo::ResourceBinding &Binding, in addResourcesForPSV()
193 BindInfo.LowerBound = Binding.LowerBound; in addResourcesForPSV()
194 BindInfo.UpperBound = Binding.LowerBound + Binding.Size - 1; in addResourcesForPSV()
195 BindInfo.Space = Binding.Space; in addResourcesForPSV()
202 const dxil::ResourceInfo::ResourceBinding &Binding = RI.getBinding(); in addResourcesForPSV() local
203 PSV.Resources.push_back(MakeBinding(Binding, dxbc::PSV::ResourceType::CBV, in addResourcesForPSV()
207 const dxil::ResourceInfo::ResourceBinding &Binding = RI.getBinding(); in addResourcesForPSV() local
208 PSV.Resources.push_back(MakeBinding(Binding, in addResourcesForPSV()
213 const dxil::ResourceInfo::ResourceBinding &Binding = RI.getBinding(); in addResourcesForPSV() local
225 MakeBinding(Binding, ResType, TypeInfo.getResourceKind())); in addResourcesForPSV()
[all …]
H A DDXILOpLowering.cpp243 const auto &Binding = RI.getBinding(); in lowerToCreateHandle() local
247 if (Binding.LowerBound != 0) in lowerToCreateHandle()
249 ConstantInt::get(Int32Ty, Binding.LowerBound)); in lowerToCreateHandle()
253 ConstantInt::get(Int32Ty, Binding.RecordID), IndexOp, in lowerToCreateHandle()
277 const auto &Binding = RI.getBinding(); in lowerToBindAndAnnotateHandle() local
282 if (Binding.LowerBound != 0) in lowerToBindAndAnnotateHandle()
284 ConstantInt::get(Int32Ty, Binding.LowerBound)); in lowerToBindAndAnnotateHandle()
292 uint32_t UpperBound = Binding.Size == Unbounded in lowerToBindAndAnnotateHandle()
294 : Binding.LowerBound + Binding.Size - 1; in lowerToBindAndAnnotateHandle()
295 Constant *ResBind = OpBuilder.getResBind(Binding.LowerBound, UpperBound, in lowerToBindAndAnnotateHandle()
[all …]
H A DDXILPrettyPrinter.cpp203 const auto &Binding = Item.getBinding(); in format() local
204 OS << getRCPrefix(RC) << Binding.LowerBound; in format()
205 if (Binding.Space) in format()
206 OS << ",space" << Binding.Space; in format()
/freebsd/crypto/krb5/src/ccapi/common/win/OldCC/
H A Dinit.hxx32 IN RPC_BINDING_HANDLE Binding,
42 IN RPC_BINDING_HANDLE Binding,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp30 uint8_t Binding; member
34 MangledSymbol(const std::string &ParentName, uint8_t Type, uint8_t Binding, in MangledSymbol()
36 : ParentName(ParentName), Type(Type), Binding(Binding), in MangledSymbol()
322 if (Symbol.Binding == llvm::ELF::STB_WEAK) in HandleTranslationUnit()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDXILResource.h367 ResourceBinding Binding;
379 : Binding{RecordID, Space, LowerBound, Size}, HandleTy(HandleTy),
382 void setBindingID(unsigned ID) { Binding.RecordID = ID; } in setBindingID()
388 const ResourceBinding &getBinding() const { return Binding; } in getBinding()
400 return std::tie(Binding, HandleTy, Symbol, Name) ==
401 std::tie(RHS.Binding, RHS.HandleTy, RHS.Symbol, RHS.Name);
405 return Binding < RHS.Binding;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDXILResource.cpp639 MDVals.push_back(getIntMD(Binding.RecordID)); in getAsMetadata()
643 MDVals.push_back(getIntMD(Binding.Space)); in getAsMetadata()
644 MDVals.push_back(getIntMD(Binding.LowerBound)); in getAsMetadata()
645 MDVals.push_back(getIntMD(Binding.Size)); in getAsMetadata()
750 << " Record ID: " << Binding.RecordID << "\n" in print()
751 << " Space: " << Binding.Space << "\n" in print()
752 << " Lower Bound: " << Binding.LowerBound << "\n" in print()
753 << " Size: " << Binding.Size << "\n"; in print()
998 struct Binding { in populate() struct
1004 Binding(ResourceClass RC, uint32_t Space, uint32_t LowerBound, in populate() argument
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DExegesisEmitter.cpp236 for (const Record *Binding : Bindings) { in emitPfmCountersLookupTable() local
239 << Binding->getValueAsString("CpuName") << "\"," // in emitPfmCountersLookupTable()
240 << " &" << Target << Binding->getValueAsDef("Counters")->getName() // in emitPfmCountersLookupTable()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStore.h274 const MemRegion* Binding = nullptr; variable
280 explicit operator bool() { return First && Binding; }
284 const MemRegion *getRegion() { return Binding; } in getRegion()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp260 if (Sym.Binding != STB_LOCAL || Sym.Type != STT_NOTYPE || in isAArch64MappingSymbol()
270 if (Sym.Binding != STB_LOCAL || Sym.Type != STT_NOTYPE || in isArmMappingSymbol()
296 (Sym.Binding == STB_LOCAL || Sym.getShndx() == SHN_UNDEF) && in isUnneededSymbol()
317 Sym.Binding = STB_LOCAL; in updateAndRemoveSymbols()
336 Sym.Binding = STB_LOCAL; in updateAndRemoveSymbols()
340 Sym.Binding = STB_GLOBAL; in updateAndRemoveSymbols()
343 if (Config.SymbolsToWeaken.matches(Sym.Name) && Sym.Binding != STB_LOCAL) in updateAndRemoveSymbols()
344 Sym.Binding = STB_WEAK; in updateAndRemoveSymbols()
346 if (Config.Weaken && Sym.Binding != STB_LOCAL && in updateAndRemoveSymbols()
348 Sym.Binding = STB_WEAK; in updateAndRemoveSymbols()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSymbolELF.cpp43 void MCSymbolELF::setBinding(unsigned Binding) const { in setBinding()
46 switch (Binding) { in setBinding()
/freebsd/sys/contrib/device-tree/Bindings/power/
H A Dmti,mips-cpc.txt1 Binding for MIPS Cluster Power Controller (CPC).
/freebsd/sys/contrib/device-tree/Bindings/powerpc/opal/
H A Doppanel-opal.txt1 IBM OPAL Operator Panel Binding
/freebsd/sys/contrib/device-tree/Bindings/fpga/
H A Dfpga-bridge.txt1 FPGA Bridge Device Tree Binding
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbolELF.h36 void setBinding(unsigned Binding) const;
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dqcom,lcc.txt1 Qualcomm LPASS Clock & Reset Controller Binding
H A Dqcom,turingcc.txt1 Qualcomm Turing Clock & Reset Controller Binding
H A Dqcom,camcc.txt1 Qualcomm Camera Clock & Reset Controller Binding
H A Dgpio-mux-clock.txt1 Binding for simple gpio clock multiplexer.
H A Dgpio-gate-clock.txt1 Binding for simple gpio gated clock.
/freebsd/sys/contrib/device-tree/Bindings/power/supply/
H A Disp1704.txt1 Binding for NXP ISP1704 USB Charger Detection
/freebsd/sys/contrib/device-tree/Bindings/mips/
H A Dath79-soc.txt1 Binding for Qualcomm Atheros AR7xxx/AR9XXX SoC
/freebsd/sys/contrib/device-tree/Bindings/reset/
H A Dath79-reset.txt1 Binding for Qualcomm Atheros AR7xxx/AR9XXX reset controller
/freebsd/sys/contrib/device-tree/Bindings/hwlock/
H A Dsirf,hwspinlock.txt1 SIRF Hardware spinlock device Binding
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dsprd-mcdt.txt1 Spreadtrum Multi-Channel Data Transfer Binding

123456789