| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Bitfields.h | 157 static_assert(std::is_unsigned<StorageType>::value, 161 using BP = BitPatterns<StorageType, Bitfield::Bits>; 178 static IntegerType extract(StorageType Packed) { 185 static StorageType test(StorageType Packed) { return Packed & Mask; } 253 template <typename Bitfield, typename StorageType> 254 static typename Bitfield::Type get(StorageType Packed) { 255 using I = bitfields_details::Impl<Bitfield, StorageType>; 261 template <typename Bitfield, typename StorageType> 262 static StorageType test(StorageType Packed) { 263 using I = bitfields_details::Impl<Bitfield, StorageType>; [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DarwinSDKInfo.h | 35 using StorageType = uint64_t; 41 : Value(((StorageType(FromOS) * StorageType(llvm::Triple::LastOSType) + in OSEnvPair() 42 StorageType(FromEnv)) in OSEnvPair() 44 (StorageType(ToOS) * StorageType(llvm::Triple::LastOSType) + in OSEnvPair() 45 StorageType(ToEnv))) {} in OSEnvPair() 76 StorageType Value; 122 llvm::DenseMap<OSEnvPair::StorageType, 125 llvm::DenseMap<OSEnvPair::StorageType, 159 llvm::DenseMap<OSEnvPair::StorageType,
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | DebugInfoMetadata.h | 312 DIAssignID(LLVMContext &C, StorageType Storage) in DIAssignID() 414 DIGenericSubrange(LLVMContext &C, StorageType Storage, 613 DIFile(LLVMContext &C, StorageType Storage, 1127 DINodeArray Annotations, StorageType Storage, 1331 StorageType Storage, 1337 StorageType Storage, 1448 StorageType Storage, bool ShouldCreate = true); 1689 MDString *TargetFuncName, StorageType Storage, 2198 StorageType Storage, 3264 StorageType Storage, [all …]
|
| H A D | Metadata.h | 70 enum StorageType { Uniqued, Distinct, Temporary }; enum 86 Metadata(unsigned ID, StorageType Storage) in Metadata() 1099 static size_t getAllocSize(StorageType Storage, size_t NumOps) { 1106 static bool isResizable(StorageType Storage) { return Storage != Uniqued; } 1140 explicit Header(size_t NumOps, StorageType Storage); 1173 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, 1177 void *operator new(size_t Size, size_t NumOps, StorageType Storage); 1346 static T *storeImpl(T *N, StorageType Storage, StoreT &Store); 1347 template <class T> static T *storeImpl(T *N, StorageType Storage); 1466 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash, [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 447 DISubrange::DISubrange(LLVMContext &C, StorageType Storage, in DISubrange() 461 int64_t Lo, StorageType Storage, in getImpl() 643 DIEnumerator::DIEnumerator(LLVMContext &C, StorageType Storage, in DIEnumerator() 741 StorageType Storage, bool ShouldCreate) { in getImpl() 761 Metadata *Rank, Metadata *Annotations, StorageType Storage, in getImpl() 872 DIFile::DIFile(LLVMContext &C, StorageType Storage, in DIFile() 906 MDString *Source, StorageType Storage, in getImpl() 940 MDString *SDK, StorageType Storage, bool ShouldCreate) { in getImpl() 1120 StorageType Storage, bool ShouldCreate) { in getImpl() 1160 StorageType Storage, in DILexicalBlockBase() [all …]
|
| H A D | MetadataImpl.h | 28 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl() 42 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl()
|
| H A D | Metadata.cpp | 618 void *MDNode::operator new(size_t Size, size_t NumOps, StorageType Storage) { in operator new() 635 MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, in MDNode() 663 MDNode::Header::Header(size_t NumOps, StorageType Storage) { in Header() 1016 StorageType Storage, bool ShouldCreate) { in getImpl()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGRecordLayoutBuilder.cpp | 182 llvm::Type *StorageType); 314 llvm::Type *StorageType = nullptr; in lowerUnion() local 345 StorageType = FieldType; in lowerUnion() 353 if (!StorageType || in lowerUnion() 356 getSize(FieldType) > getSize(StorageType))) in lowerUnion() 357 StorageType = FieldType; in lowerUnion() 360 if (!StorageType) in lowerUnion() 364 if (LayoutSize < getSize(StorageType)) in lowerUnion() 365 StorageType = getByteArrayType(LayoutSize); in lowerUnion() 366 FieldTypes.push_back(StorageType); in lowerUnion() [all …]
|
| /freebsd-14.2/contrib/bsnmp/snmp_vacm/ |
| H A D | vacm_tree.def | 48 (4 vacmSecurityToGroupStorageType StorageType GET SET) 61 (8 vacmAccessStorageType StorageType GET SET) 73 (5 vacmViewTreeFamilyStorageType StorageType GET SET)
|
| /freebsd-14.2/contrib/bsnmp/snmp_target/ |
| H A D | target_tree.def | 52 (8 snmpTargetAddrStorageType StorageType GET SET) 63 (6 snmpTargetParamsStorageType StorageType GET SET) 78 (4 snmpNotifyStorageType StorageType GET SET)
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TemplateName.h | 207 using StorageType = variable 211 StorageType Storage;
|
| /freebsd-14.2/contrib/bsnmp/lib/ |
| H A D | tc.def | 40 typedef StorageType ENUM (
|
| /freebsd-14.2/contrib/bsnmp/snmp_usm/ |
| H A D | usm_tree.def | 81 (12 usmUserStorageType StorageType GET SET)
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Basic/ |
| H A D | DarwinSDKInfo.cpp | 85 llvm::DenseMap<OSEnvPair::StorageType, in parseDarwinSDKSettingsJSON()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | RDFGraph.h | 758 using StorageType = std::vector<value_type>; member 760 bool isDelimiter(const StorageType::value_type &P, NodeId N = 0) const { 767 StorageType Stack;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateName.cpp | 103 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
|
| /freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 779 std::string StorageType = std::string(getStorageType(getType())); in writePCHReadDecls() local 781 if (StorageType != getType()) { in writePCHReadDecls() 783 OS << " SmallVector<" << StorageType << ", 4> " in writePCHReadDecls() 793 if (StorageType != getType()) { in writePCHReadDecls()
|
| /freebsd-14.2/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-matchers.h | 2182 typedef Functor StorageType; 2196 typedef ResType (*StorageType)(ArgType); 2232 typedef typename CallableTraits<Callable>::StorageType CallableStorageType;
|