Home
last modified time | relevance | path

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

1234

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDTemplateName.h181 StorageType Storage; variable
184 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
209 TemplateName() : Storage() { } in TemplateName()
210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { } in TemplateName()
211 explicit TemplateName(OverloadedTemplateStorage *Storage) in TemplateName() argument
212 : Storage(Storage) { } in TemplateName()
213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage) in TemplateName() argument
215 : Storage(Storage) { } in TemplateName()
216 explicit TemplateName(QualifiedTemplateName *Qual) : Storage(Qual) { } in TemplateName()
[all …]
HDASTTypeTraits.h223 return BaseConverter<T>::get(NodeKind, Storage.buffer);
231 return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
287 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
289 return cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
292 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
294 return *cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
300 new (Result.Storage.buffer) const BaseT * (&Node);
307 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
309 return *reinterpret_cast<T *const *>(Storage);
312 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
[all …]
HDDependentDiagnostic.h98 PartialDiagnostic::Storage *Storage) in DependentDiagnostic() argument
99 : Diag(PDiag, Storage) {} in DependentDiagnostic()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDExplodedGraph.cpp230 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in replaceNode() local
231 assert(Storage.is<ExplodedNode *>()); in replaceNode()
232 Storage = node; in replaceNode()
233 assert(Storage.is<ExplodedNode *>()); in replaceNode()
239 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in addNode() local
240 if (Storage.isNull()) { in addNode()
241 Storage = N; in addNode()
242 assert(Storage.is<ExplodedNode *>()); in addNode()
246 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>(); in addNode()
250 ExplodedNode *Old = Storage.get<ExplodedNode *>(); in addNode()
[all …]
/NextBSD/contrib/llvm/include/llvm/IR/
HDDebugInfoMetadata.h149 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
151 : MDNode(C, ID, Storage, Ops1, Ops2) { in MDNode() argument
248 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash,
251 : DINode(C, GenericDINodeKind, Storage, Tag, Ops1, Ops2) {
261 StorageType Storage, bool ShouldCreate = true) {
263 DwarfOps, Storage, ShouldCreate);
268 StorageType Storage, bool ShouldCreate = true);
322 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count,
324 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, None),
329 int64_t LowerBound, StorageType Storage,
[all …]
HDMetadata.h56 unsigned Storage : 2; variable
93 Metadata(unsigned ID, StorageType Storage) in Metadata() argument
94 : SubclassID(ID), Storage(Storage), SubclassData16(0), SubclassData32(0) { in Metadata()
767 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage,
817 bool isUniqued() const { return Storage == Uniqued; }
818 bool isDistinct() const { return Storage == Distinct; }
819 bool isTemporary() const { return Storage == Temporary; }
883 static T *storeImpl(T *N, StorageType Storage, StoreT &Store);
976 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash,
978 : MDNode(C, MDTupleKind, Storage, Vals) {
[all …]
/NextBSD/contrib/llvm/lib/IR/
HDDebugInfoMetadata.cpp22 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation() argument
24 : MDNode(C, DILocationKind, Storage, MDs) { in DILocation()
43 Metadata *InlinedAt, StorageType Storage, in getImpl() argument
49 if (Storage == Uniqued) { in getImpl()
65 DILocation(Context, Storage, Line, Column, Ops), in getImpl()
66 Storage, Context.pImpl->DILocations); in getImpl()
179 StorageType Storage, bool ShouldCreate) { in getImpl() argument
181 if (Storage == Uniqued) { in getImpl()
196 Context, Storage, Hash, Tag, PreOps, DwarfOps), in getImpl()
197 Storage, Context.pImpl->GenericDINodes); in getImpl()
[all …]
HDUser.cpp96 void *Storage = ::operator new(Size + sizeof(Use) * Us); in operator new() local
97 Use *Start = static_cast<Use*>(Storage); in operator new()
108 void *Storage = ::operator new(Size + sizeof(Use *)); in operator new() local
109 Use **HungOffOperandList = static_cast<Use **>(Storage); in operator new()
132 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() local
133 Use::zap(Storage, Storage + Obj->NumUserOperands, in operator delete()
135 ::operator delete(Storage); in operator delete()
HDConstantsContext.h345 SmallVectorImpl<Constant *> &Storage) {
346 assert(Storage.empty() && "Expected empty storage");
348 Storage.push_back(C->getOperand(I));
349 Operands = Storage;
437 SmallVectorImpl<Constant *> &Storage)
442 assert(Storage.empty() && "Expected empty storage");
444 Storage.push_back(CE->getOperand(I));
445 Ops = Storage;
532 SmallVector<Constant *, 8> Storage;
533 return getHashValue(LookupKey(CP->getType(), ValType(CP, Storage)));
HDMetadataImpl.h30 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument
31 switch (Storage) { in storeImpl()
HDMetadata.cpp415 MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, in MDNode() argument
417 : Metadata(ID, Storage), NumOperands(Ops1.size() + Ops2.size()), in MDNode()
469 Storage = Uniqued; in makeUniqued()
481 Storage = Uniqued; in makeDistinct()
700 StorageType Storage, bool ShouldCreate) { in getImpl() argument
702 if (Storage == Uniqued) { in getImpl()
713 return storeImpl(new (MDs.size()) MDTuple(Context, Storage, Hash, MDs), in getImpl()
714 Storage, Context.pImpl->MDTuples); in getImpl()
725 Storage = Distinct; in storeDistinctInContext()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDPartialDiagnostic.h38 struct Storage { struct
39 Storage() : NumDiagArgs(0) { } in Storage() argument
80 Storage Cached[NumCached];
81 Storage *FreeList[NumCached];
89 Storage *Allocate() { in Allocate()
91 return new Storage; in Allocate()
93 Storage *Result = FreeList[--NumFreeListEntries]; in Allocate()
101 void Deallocate(Storage *S) { in Deallocate()
120 mutable Storage *DiagStorage;
126 Storage *getStorage() const { in getStorage()
[all …]
/NextBSD/contrib/llvm/tools/llvm-diff/
HDDifferenceEngine.cpp40 llvm::SmallVector<T, InlineCapacity> Storage; member in __anonb87f570a0111::PriorityQueue
46 bool empty() const { return Storage.empty(); } in empty()
50 unsigned Index = Storage.size(); in insert()
51 Storage.push_back(V); in insert()
54 T *data = Storage.data(); in insert()
67 T tmp = Storage[0]; in remove_min()
69 unsigned NewSize = Storage.size() - 1; in remove_min()
73 Storage[0] = Storage[NewSize]; in remove_min()
75 std::swap(Storage[0], Storage[NewSize]); in remove_min()
90 if (Precedes(Storage[L], Storage[Index])) in remove_min()
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Lex/
HDModuleLoader.h34 llvm::PointerIntPair<Module *, 1, bool> Storage; variable
37 ModuleLoadResult() : Storage() { } in ModuleLoadResult()
40 : Storage(module, missingExpected) { } in ModuleLoadResult()
42 operator Module *() const { return Storage.getPointer(); }
48 bool isMissingExpected() const { return Storage.getInt(); } in isMissingExpected()
HDModuleMap.h91 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable
94 KnownHeader() : Storage(nullptr, NormalHeader) { } in KnownHeader()
95 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader()
98 Module *getModule() const { return Storage.getPointer(); } in getModule()
101 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole()
111 return Storage.getPointer() != nullptr;
/NextBSD/contrib/llvm/lib/Support/
HDYAMLParser.cpp1886 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue()
1894 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue()
1902 Storage.clear(); in getValue()
1903 Storage.reserve(UnquotedValue.size()); in getValue()
1906 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue()
1907 Storage.push_back('\''); in getValue()
1910 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue()
1911 return StringRef(Storage.begin(), Storage.size()); in getValue()
1921 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted()
1924 Storage.clear(); in unescapeDoubleQuoted()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDTemplateName.cpp55 if (Storage.is<TemplateDecl *>()) in getKind()
57 if (Storage.is<DependentTemplateName *>()) in getKind()
59 if (Storage.is<QualifiedTemplateName *>()) in getKind()
63 = Storage.get<UncommonTemplateNameStorage*>(); in getKind()
72 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in getAsTemplateDecl()
130 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in print()
/NextBSD/contrib/llvm/include/llvm/Support/
HDCommandLine.h1299 std::vector<DataType> Storage;
1304 iterator begin() { return Storage.begin(); }
1305 iterator end() { return Storage.end(); }
1308 const_iterator begin() const { return Storage.begin(); }
1309 const_iterator end() const { return Storage.end(); }
1312 size_type size() const { return Storage.size(); }
1314 bool empty() const { return Storage.empty(); }
1316 void push_back(const DataType &value) { Storage.push_back(value); }
1317 void push_back(DataType &&value) { Storage.push_back(value); }
1321 reference operator[](size_type pos) { return Storage[pos]; }
[all …]
HDErrorOr.h43 T *Storage; variable
46 ReferenceStorage(T &Ref) : Storage(&Ref) {} in ReferenceStorage()
48 operator T &() const { return *Storage; }
49 T &get() const { return *Storage; } in get()
/NextBSD/contrib/llvm/lib/Support/Windows/
HDTimeValue.inc46 struct tm Storage;
48 int Error = ::_localtime64_s(&Storage, &OurTime);
51 LT = &Storage;
/NextBSD/sys/dev/isp/
HDHardware.txt140 5. Storage JBODs/RAID
216 2xxx <----------> Single Unit of Storage (JBOD, RAID)
228 | +<---> Storage
230 | +<---> Storage
232 | +<---> Storage
258 | +<---> Storage
260 | +<---> Storage
262 | +<---> Storage
286 | +<---> Storage
288 | +<---> Storage
[all …]
/NextBSD/contrib/llvm/lib/MC/
HDMCSymbol.cpp34 void *Storage = Ctx.allocate(Size, alignOf<NameEntryStorageTy>()); in operator new() local
35 NameEntryStorageTy *Start = static_cast<NameEntryStorageTy*>(Storage); in operator new()
/NextBSD/contrib/llvm/lib/Support/Unix/
HDTimeValue.inc26 struct tm Storage;
27 struct tm *LT = ::localtime_r(&OurTime, &Storage);
/NextBSD/contrib/llvm/include/llvm/Analysis/
HDLoopIterator.h132 LoopBlocksTraversal(LoopBlocksDFS &Storage, LoopInfo *LInfo) : in LoopBlocksTraversal() argument
133 DFS(Storage), LI(LInfo) {} in LoopBlocksTraversal()
/NextBSD/contrib/file/magic/Magdir/
HDconvex28 # a dump that is dependent on Convex Storage Manager, because data in
34 24 belong =60014 dump format, Convex Storage Manager by-reference dump

1234