/external/clang/lib/AST/ |
D | TemplateName.cpp | 55 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName() 58 TemplateName::TemplateName(TemplateDecl *Template) : Storage(Template) {} in TemplateName() 59 TemplateName::TemplateName(OverloadedTemplateStorage *Storage) in TemplateName() argument 60 : Storage(Storage) {} in TemplateName() 61 TemplateName::TemplateName(SubstTemplateTemplateParmStorage *Storage) in TemplateName() argument 62 : Storage(Storage) {} in TemplateName() 63 TemplateName::TemplateName(SubstTemplateTemplateParmPackStorage *Storage) in TemplateName() argument 64 : Storage(Storage) {} in TemplateName() 65 TemplateName::TemplateName(QualifiedTemplateName *Qual) : Storage(Qual) {} in TemplateName() 66 TemplateName::TemplateName(DependentTemplateName *Dep) : Storage(Dep) {} in TemplateName() [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExplodedGraph.cpp | 230 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 …]
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 140 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, 142 : MDNode(C, ID, Storage, Ops1, Ops2) { in MDNode() argument 242 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash, 245 : DINode(C, GenericDINodeKind, Storage, Tag, Ops1, Ops2) { 255 StorageType Storage, bool ShouldCreate = true) { 257 DwarfOps, Storage, ShouldCreate); 262 StorageType Storage, bool ShouldCreate = true); 317 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count, 319 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, None), 324 int64_t LowerBound, StorageType Storage, [all …]
|
/external/llvm/lib/IR/ |
D | DebugInfoMetadata.cpp | 22 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 48 if (Storage == Uniqued) { in getImpl() 64 DILocation(Context, Storage, Line, Column, Ops), in getImpl() 65 Storage, Context.pImpl->DILocations); in getImpl() 164 StorageType Storage, bool ShouldCreate) { in getImpl() argument 166 if (Storage == Uniqued) { in getImpl() 181 Context, Storage, Hash, Tag, PreOps, DwarfOps), in getImpl() 182 Storage, Context.pImpl->GenericDINodes); in getImpl() [all …]
|
D | User.cpp | 128 uint8_t *Storage = static_cast<uint8_t *>( in allocateFixedOperandUser() local 130 Use *Start = reinterpret_cast<Use *>(Storage + DescBytesToAllocate); in allocateFixedOperandUser() 139 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes); in allocateFixedOperandUser() 156 void *Storage = ::operator new(Size + sizeof(Use *)); in operator new() local 157 Use **HungOffOperandList = static_cast<Use **>(Storage); in operator new() 187 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes; in operator delete() local 188 ::operator delete(Storage); in operator delete() 190 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() local 191 Use::zap(Storage, Storage + Obj->NumUserOperands, in operator delete() 193 ::operator delete(Storage); in operator delete()
|
D | MetadataImpl.h | 29 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl() argument 30 switch (Storage) { in storeImpl() 43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument 44 switch (Storage) { in storeImpl()
|
/external/clang/include/clang/AST/ |
D | ASTTypeTraits.h | 232 return BaseConverter<T>::get(NodeKind, Storage.buffer); 240 return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer); 252 ? *reinterpret_cast<void *const *>(Storage.buffer) 374 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { 376 return &getUnchecked(NodeKind, Storage); 379 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) { 382 *reinterpret_cast<const void *const *>(Storage))); 387 new (Result.Storage.buffer) const void *(&Node); 394 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { 396 return &getUnchecked(NodeKind, Storage); [all …]
|
D | TemplateName.h | 182 StorageType Storage; variable 208 TemplateName() : Storage() { } in TemplateName() 210 explicit TemplateName(OverloadedTemplateStorage *Storage); 211 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage); 212 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage); 295 ID.AddPointer(Storage.getOpaqueValue()); in Profile() 299 void *getAsVoidPointer() const { return Storage.getOpaqueValue(); } in getAsVoidPointer()
|
/external/clang/include/clang/Basic/ |
D | PartialDiagnostic.h | 38 struct Storage { struct 39 Storage() : NumDiagArgs(0) { } in Storage() function 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 …]
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 39 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon0d40331a0111::PriorityQueue 45 bool empty() const { return Storage.empty(); } in empty() 49 unsigned Index = Storage.size(); in insert() 50 Storage.push_back(V); in insert() 53 T *data = Storage.data(); in insert() 66 T tmp = Storage[0]; in remove_min() 68 unsigned NewSize = Storage.size() - 1; in remove_min() 72 Storage[0] = Storage[NewSize]; in remove_min() 74 std::swap(Storage[0], Storage[NewSize]); in remove_min() 89 if (Precedes(Storage[L], Storage[Index])) in remove_min() [all …]
|
/external/swiftshader/third_party/LLVM/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 42 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon2f9b57460111::PriorityQueue 48 bool empty() const { return Storage.empty(); } in empty() 52 unsigned Index = Storage.size(); in insert() 53 Storage.push_back(V); in insert() 56 T *data = Storage.data(); in insert() 69 T tmp = Storage[0]; in remove_min() 71 unsigned NewSize = Storage.size() - 1; in remove_min() 75 Storage[0] = Storage[NewSize]; in remove_min() 77 std::swap(Storage[0], Storage[NewSize]); in remove_min() 92 if (Precedes(Storage[L], Storage[Index])) in remove_min() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgVariable.hpp | 40 enum Storage enum in rsg::Variable 54 Variable (const VariableType& type, Storage storage, const char* name); 58 Storage getStorage (void) const { return m_storage; } in getStorage() 63 void setStorage (Storage storage) { m_storage = storage; } in setStorage() 72 Storage m_storage;
|
D | rsgVariableManager.hpp | 66 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name… 208 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* nam… 210 void setStorage (Variable* variable, Variable::Storage storage); 319 template <Variable::Storage Storage> 323 typedef ValueEntryIterator<EntryStorageFilter<Storage> > Iterator; 327 return entry->getVariable()->getStorage() == Storage; in operator ()()
|
/external/clang/include/clang/Lex/ |
D | ModuleMap.h | 116 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable 119 KnownHeader() : Storage(nullptr, NormalHeader) { } in KnownHeader() 120 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader() 123 return A.Storage == B.Storage; 126 return A.Storage != B.Storage; 130 Module *getModule() const { return Storage.getPointer(); } in getModule() 133 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole() 149 return Storage.getPointer() != nullptr;
|
D | ModuleLoader.h | 34 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()
|
/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 1884 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue() 1892 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue() 1900 Storage.clear(); in getValue() 1901 Storage.reserve(UnquotedValue.size()); in getValue() 1904 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue() 1905 Storage.push_back('\''); in getValue() 1908 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue() 1909 return StringRef(Storage.begin(), Storage.size()); in getValue() 1919 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted() 1922 Storage.clear(); in unescapeDoubleQuoted() [all …]
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | User.cpp | 57 void *Storage = ::operator new(s + sizeof(Use) * Us); in operator new() local 58 Use *Start = static_cast<Use*>(Storage); in operator new() 73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands; in operator delete() local 76 ::operator delete(Storage); in operator delete()
|
/external/libcxx/test/std/utilities/memory/storage.iterator/ |
D | raw_storage_iterator.pass.cpp | 38 Storage; in main() typedef 39 Storage buffer; in main() 54 Storage; in main() typedef 55 Storage buffer; in main()
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 1360 std::vector<DataType> Storage; 1365 iterator begin() { return Storage.begin(); } 1366 iterator end() { return Storage.end(); } 1369 const_iterator begin() const { return Storage.begin(); } 1370 const_iterator end() const { return Storage.end(); } 1373 size_type size() const { return Storage.size(); } 1375 bool empty() const { return Storage.empty(); } 1377 void push_back(const DataType &value) { Storage.push_back(value); } 1378 void push_back(DataType &&value) { Storage.push_back(value); } 1382 reference operator[](size_type pos) { return Storage[pos]; } [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | CommandLine.h | 1378 std::vector<DataType> Storage; 1383 iterator begin() { return Storage.begin(); } 1384 iterator end() { return Storage.end(); } 1387 const_iterator begin() const { return Storage.begin(); } 1388 const_iterator end() const { return Storage.end(); } 1391 size_type size() const { return Storage.size(); } 1393 bool empty() const { return Storage.empty(); } 1395 void push_back(const DataType &value) { Storage.push_back(value); } 1396 void push_back(DataType &&value) { Storage.push_back(value); } 1400 reference operator[](size_type pos) { return Storage[pos]; } [all …]
|
/external/deqp/modules/glshared/ |
D | glsDrawTest.hpp | 121 enum Storage enum 185 static std::string storageToString (Storage storage); 194 …static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage sto… 199 Storage storage; 230 Storage indexStorage; //!< used only if drawMethod = DrawElements*
|
/external/pdfium/third_party/lcms/ |
D | 0003-old-uninitialized-in-LUTevalFloat.patch | 9 - cmsFloat32Number Storage[2][MAX_STAGE_CHANNELS]; 10 + cmsFloat32Number Storage[2][MAX_STAGE_CHANNELS] = {0.0f}; 13 memmove(&Storage[Phase][0], In, lut ->InputChannels * sizeof(cmsFloat32Number));
|
D | 0004-old-uninitialized-in-LUTeval16.patch | 9 - cmsFloat32Number Storage[2][MAX_STAGE_CHANNELS]; 10 + cmsFloat32Number Storage[2][MAX_STAGE_CHANNELS] = {0.0f}; 13 From16ToFloat(In, &Storage[Phase][0], lut ->InputChannels);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APFloat.h | 659 union Storage { union 664 explicit Storage(IEEEFloat F, const fltSemantics &S); 665 explicit Storage(DoubleAPFloat F, const fltSemantics &S) in Storage() function 671 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage() function 683 ~Storage() { in ~Storage() 695 Storage(const Storage &RHS) { in Storage() function 707 Storage(Storage &&RHS) { in Storage() function 719 Storage &operator=(const Storage &RHS) { 727 this->~Storage(); 728 new (this) Storage(RHS); [all …]
|
/external/skqp/src/sksl/ir/ |
D | SkSLVariable.h | 26 enum Storage { enum 33 Storage storage, Expression* initialValue = nullptr) 52 const Storage fStorage;
|