| /freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXContainerGlobals.cpp | 188 [](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 D | DXILOpLowering.cpp | 243 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 D | DXILPrettyPrinter.cpp | 203 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 D | init.hxx | 32 IN RPC_BINDING_HANDLE Binding, 42 IN RPC_BINDING_HANDLE Binding,
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | InterfaceStubFunctionsConsumer.cpp | 30 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 D | DXILResource.h | 367 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 D | DXILResource.cpp | 639 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 D | ExegesisEmitter.cpp | 236 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 D | Store.h | 274 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 D | ELFObjcopy.cpp | 260 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 D | MCSymbolELF.cpp | 43 void MCSymbolELF::setBinding(unsigned Binding) const { in setBinding() 46 switch (Binding) { in setBinding()
|
| /freebsd/sys/contrib/device-tree/Bindings/power/ |
| H A D | mti,mips-cpc.txt | 1 Binding for MIPS Cluster Power Controller (CPC).
|
| /freebsd/sys/contrib/device-tree/Bindings/powerpc/opal/ |
| H A D | oppanel-opal.txt | 1 IBM OPAL Operator Panel Binding
|
| /freebsd/sys/contrib/device-tree/Bindings/fpga/ |
| H A D | fpga-bridge.txt | 1 FPGA Bridge Device Tree Binding
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSymbolELF.h | 36 void setBinding(unsigned Binding) const;
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | qcom,lcc.txt | 1 Qualcomm LPASS Clock & Reset Controller Binding
|
| H A D | qcom,turingcc.txt | 1 Qualcomm Turing Clock & Reset Controller Binding
|
| H A D | qcom,camcc.txt | 1 Qualcomm Camera Clock & Reset Controller Binding
|
| H A D | gpio-mux-clock.txt | 1 Binding for simple gpio clock multiplexer.
|
| H A D | gpio-gate-clock.txt | 1 Binding for simple gpio gated clock.
|
| /freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
| H A D | isp1704.txt | 1 Binding for NXP ISP1704 USB Charger Detection
|
| /freebsd/sys/contrib/device-tree/Bindings/mips/ |
| H A D | ath79-soc.txt | 1 Binding for Qualcomm Atheros AR7xxx/AR9XXX SoC
|
| /freebsd/sys/contrib/device-tree/Bindings/reset/ |
| H A D | ath79-reset.txt | 1 Binding for Qualcomm Atheros AR7xxx/AR9XXX reset controller
|
| /freebsd/sys/contrib/device-tree/Bindings/hwlock/ |
| H A D | sirf,hwspinlock.txt | 1 SIRF Hardware spinlock device Binding
|
| /freebsd/sys/contrib/device-tree/Bindings/sound/ |
| H A D | sprd-mcdt.txt | 1 Spreadtrum Multi-Channel Data Transfer Binding
|