| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | TemplateName.h | 181 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 …]
|
| D | ASTTypeTraits.h | 170 return BaseConverter<T>::get(NodeKind, Storage.buffer); in KIND_TO_KIND_ID() 223 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() 225 return dyn_cast<T>(*reinterpret_cast<BaseT *const *>(Storage)); in KIND_TO_KIND_ID() 231 new (Result.Storage.buffer) const BaseT * (&Node); in KIND_TO_KIND_ID() 238 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() 240 return *reinterpret_cast<T *const *>(Storage); in KIND_TO_KIND_ID() 246 new (Result.Storage.buffer) const T * (&Node); in KIND_TO_KIND_ID() 253 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() 255 return reinterpret_cast<const T *>(Storage); in KIND_TO_KIND_ID() 261 new (Result.Storage.buffer) T(Node); in KIND_TO_KIND_ID() [all …]
|
| D | DependentDiagnostic.h | 98 PartialDiagnostic::Storage *Storage) in DependentDiagnostic() argument 99 : Diag(PDiag, Storage) {} in DependentDiagnostic()
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| D | ExplodedGraph.cpp | 225 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in replaceNode() local 226 assert(Storage.is<ExplodedNode *>()); in replaceNode() 227 Storage = node; in replaceNode() 228 assert(Storage.is<ExplodedNode *>()); in replaceNode() 234 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in addNode() local 235 if (Storage.isNull()) { in addNode() 236 Storage = N; in addNode() 237 assert(Storage.is<ExplodedNode *>()); in addNode() 241 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>(); in addNode() 245 ExplodedNode *Old = Storage.get<ExplodedNode *>(); in addNode() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Basic/ |
| D | PartialDiagnostic.h | 38 struct Storage { struct 39 Storage() : NumDiagArgs(0), NumDiagRanges(0) { } in Storage() argument 85 Storage Cached[NumCached]; 86 Storage *FreeList[NumCached]; 94 Storage *Allocate() { in Allocate() 96 return new Storage; in Allocate() 98 Storage *Result = FreeList[--NumFreeListEntries]; in Allocate() 106 void Deallocate(Storage *S) { in Deallocate() 125 mutable Storage *DiagStorage; 131 Storage *getStorage() const { in getStorage() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/llvm-diff/ |
| D | DifferenceEngine.cpp | 40 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon2b4910030111::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 …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Lex/ |
| D | ModuleLoader.h | 33 llvm::PointerIntPair<Module *, 1, bool> Storage; variable 36 ModuleLoadResult() : Storage() { } in ModuleLoadResult() 39 : Storage(module, missingExpected) { } in ModuleLoadResult() 41 operator Module *() const { return Storage.getPointer(); } 47 bool isMissingExpected() const { return Storage.getInt(); } in isMissingExpected()
|
| D | ModuleMap.h | 86 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable 89 KnownHeader() : Storage(0, NormalHeader) { } in KnownHeader() 90 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader() 93 Module *getModule() const { return Storage.getPointer(); } in getModule() 96 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole() 105 LLVM_EXPLICIT operator bool() const { return Storage.getPointer() != 0; }
|
| /freebsd-10-stable/contrib/llvm/lib/Support/ |
| D | YAMLParser.cpp | 1683 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue() 1691 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue() 1699 Storage.clear(); in getValue() 1700 Storage.reserve(UnquotedValue.size()); in getValue() 1703 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue() 1704 Storage.push_back('\''); in getValue() 1707 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue() 1708 return StringRef(Storage.begin(), Storage.size()); in getValue() 1718 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted() 1721 Storage.clear(); in unescapeDoubleQuoted() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | TemplateName.cpp | 55 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()
|
| D | TemplateBase.cpp | 82 TemplateArgument *Storage = new (Context) TemplateArgument [NumArgs]; in CreatePackCopy() local 83 std::copy(Args, Args + NumArgs, Storage); in CreatePackCopy() 84 return TemplateArgument(Storage, NumArgs); in CreatePackCopy()
|
| /freebsd-10-stable/contrib/llvm/lib/IR/ |
| D | User.cpp | 60 void *Storage = ::operator new(s + sizeof(Use) * Us); in operator new() local 61 Use *Start = static_cast<Use*>(Storage); in operator new() 76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; in operator delete() local 79 ::operator delete(Storage); in operator delete()
|
| D | DIBuilder.cpp | 1203 Instruction *DIBuilder::insertDeclare(Value *Storage, DIVariable VarInfo, in insertDeclare() argument 1205 assert(Storage && "no storage passed to dbg.declare"); in insertDeclare() 1211 Value *Args[] = { MDNode::get(Storage->getContext(), Storage), VarInfo }; in insertDeclare() 1216 Instruction *DIBuilder::insertDeclare(Value *Storage, DIVariable VarInfo, in insertDeclare() argument 1218 assert(Storage && "no storage passed to dbg.declare"); in insertDeclare() 1224 Value *Args[] = { MDNode::get(Storage->getContext(), Storage), VarInfo }; in insertDeclare()
|
| /freebsd-10-stable/contrib/llvm/lib/Support/Windows/ |
| D | TimeValue.inc | 43 struct tm Storage; 45 int Error = ::_localtime64_s(&Storage, &OurTime); 47 LT = &Storage;
|
| /freebsd-10-stable/sys/dev/isp/ |
| D | Hardware.txt | 140 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 …]
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Support/ |
| D | ErrorOr.h | 54 T *Storage; variable 57 ReferenceStorage(T &Ref) : Storage(&Ref) {} in ReferenceStorage() 59 operator T &() const { return *Storage; } 60 T &get() const { return *Storage; } in get()
|
| D | YAMLTraits.h | 469 std::string Storage; 470 llvm::raw_string_ostream Buffer(Storage); 628 typedef llvm::AlignedCharArrayUnion<TNorm> Storage; 630 Storage Buffer; 664 typedef llvm::AlignedCharArrayUnion<TNorm> Storage; 666 Storage Buffer;
|
| D | YAMLParser.h | 215 StringRef getValue(SmallVectorImpl<char> &Storage) const; 226 , SmallVectorImpl<char> &Storage) const;
|
| /freebsd-10-stable/contrib/llvm/tools/clang/tools/driver/ |
| D | driver.cpp | 285 StringSetSaver(std::set<std::string> &Storage) : Storage(Storage) {} in StringSetSaver() argument 287 return SaveStringInSet(Storage, Str); in SaveString() 290 std::set<std::string> &Storage; member in __anonb65b674d0211::StringSetSaver
|
| /freebsd-10-stable/contrib/llvm/lib/Support/Unix/ |
| D | TimeValue.inc | 26 struct tm Storage; 27 struct tm *LT = ::localtime_r(&OurTime, &Storage);
|
| /freebsd-10-stable/contrib/llvm/include/llvm/Analysis/ |
| D | LoopIterator.h | 132 LoopBlocksTraversal(LoopBlocksDFS &Storage, LoopInfo *LInfo) : in LoopBlocksTraversal() argument 133 DFS(Storage), LI(LInfo) {} in LoopBlocksTraversal()
|
| /freebsd-10-stable/contrib/file/magic/Magdir/ |
| D | convex | 28 # a dump that is dependent on Convex Storage Manager, because data in 34 24 belong =60014 dump format, Convex Storage Manager by-reference dump
|
| /freebsd-10-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| D | ASTMatchersInternal.h | 337 return Storage->matches(DynNode, Finder, Builder); in matches() 344 return Storage->tryBind(ID); in tryBind() 348 uint64_t getID() const { return Storage->getID(); } in getID() 355 return Storage->getSupportedKind(); in getSupportedKind() 416 IntrusiveRefCntPtr<const MatcherStorage> Storage; variable 449 : Storage(new TypedMatcherStorage<T>(M, false)) {} in DynTypedMatcher() 453 : Storage(new TypedMatcherStorage<T>(M, true)) {} in DynTypedMatcher()
|
| /freebsd-10-stable/contrib/llvm/include/llvm/ |
| D | DIBuilder.h | 665 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo, 672 Instruction *insertDeclare(llvm::Value *Storage, DIVariable VarInfo,
|
| /freebsd-10-stable/contrib/llvm/tools/bugpoint/ |
| D | ToolRunner.cpp | 258 SmallString<128> Storage = Result; in PrependMainExecutablePath() local 259 sys::path::append(Storage, ExeName); in PrependMainExecutablePath() 260 sys::path::replace_extension(Storage, EXESuffix); in PrependMainExecutablePath() 261 return Storage.str(); in PrependMainExecutablePath()
|