Home
last modified time | relevance | path

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

12345678910>>...30

/external/clang/lib/AST/
DTemplateName.cpp55 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/llvm/include/llvm/IR/
DDebugInfoMetadata.h140 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/clang/lib/StaticAnalyzer/Core/
DExplodedGraph.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 …]
/external/llvm/lib/IR/
DDebugInfoMetadata.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
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 …]
DUser.cpp128 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()
DMetadataImpl.h29 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/
DASTTypeTraits.h232 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 …]
DTemplateName.h182 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/
DPartialDiagnostic.h38 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/swiftshader/third_party/LLVM/tools/llvm-diff/
DDifferenceEngine.cpp42 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon6dc9fb490111::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/llvm/tools/llvm-diff/
DDifferenceEngine.cpp39 llvm::SmallVector<T, InlineCapacity> Storage; member in __anon6bb4de1d0111::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/clang/include/clang/Lex/
DModuleMap.h116 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;
DModuleLoader.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()
/external/deqp/framework/randomshaders/
DrsgVariable.hpp40 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;
DrsgVariableManager.hpp66 …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/llvm/lib/Support/
DYAMLParser.cpp1884 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/llvm/include/llvm/Support/
DCommandLine.h1360 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/
DCommandLine.h1378 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/swiftshader/third_party/LLVM/lib/VMCore/
DUser.cpp57 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/
Draw_storage_iterator.pass.cpp38 Storage; in main() typedef
39 Storage buffer; in main()
54 Storage; in main() typedef
55 Storage buffer; in main()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h659 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/libmtp/logs/
Dmtp-detect-nokia-5200.txt85 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
95 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
105 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
115 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
125 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
135 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
145 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
155 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
165 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
175 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
[all …]
Dmtp-detect-htc-droid-incred.txt94 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
105 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
116 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
127 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
138 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
158 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
178 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
194 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
207 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
218 dc01: Storage ID UINT32 data type ANY 32BIT VALUE form READ ONLY
[all …]
/external/gemmlowp/doc/
Dquantization_example.cc173 const std::vector<tScalar>& Storage() const { return storage; } in Storage() function in MatrixWithStorage
174 std::vector<tScalar>& Storage() { return storage; } in Storage() function in MatrixWithStorage
326 Quantize(lhs_qparams, float_lhs.Storage(), &uint8_lhs.Storage()); in main()
327 Quantize(rhs_qparams, float_rhs.Storage(), &uint8_rhs.Storage()); in main()
373 Dequantize(result_qparams, actual_uint8_result.Storage(), in main()
374 &actual_float_result.Storage()); in main()
/external/deqp/modules/glshared/
DglsDrawTest.hpp121 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*

12345678910>>...30