/third_party/flutter/skia/third_party/externals/angle2/src/common/ |
D | FixedVector.h | 21 template <class T, size_t N, class Storage = std::array<T, N>> 25 using value_type = typename Storage::value_type; 26 using size_type = typename Storage::size_type; 27 using reference = typename Storage::reference; 28 using const_reference = typename Storage::const_reference; 29 using pointer = typename Storage::pointer; 30 using const_pointer = typename Storage::const_pointer; 31 using iterator = typename Storage::iterator; 32 using const_iterator = typename Storage::const_iterator; 33 using reverse_iterator = typename Storage::reverse_iterator; [all …]
|
D | FastVector.h | 22 template <class T, size_t N, class Storage = std::array<T, N>> 26 using value_type = typename Storage::value_type; 27 using size_type = typename Storage::size_type; 28 using reference = typename Storage::reference; 29 using const_reference = typename Storage::const_reference; 30 using pointer = typename Storage::pointer; 31 using const_pointer = typename Storage::const_pointer; 39 FastVector(const FastVector<T, N, Storage> &other); 40 FastVector(FastVector<T, N, Storage> &&other); 43 FastVector<T, N, Storage> &operator=(const FastVector<T, N, Storage> &other); [all …]
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | FixedVector.h | 21 template <class T, size_t N, class Storage = std::array<T, N>> 25 using value_type = typename Storage::value_type; 26 using size_type = typename Storage::size_type; 27 using reference = typename Storage::reference; 28 using const_reference = typename Storage::const_reference; 29 using pointer = typename Storage::pointer; 30 using const_pointer = typename Storage::const_pointer; 31 using iterator = typename Storage::iterator; 32 using const_iterator = typename Storage::const_iterator; 33 using reverse_iterator = typename Storage::reverse_iterator; [all …]
|
D | CircularBuffer.h | 20 template <class T, size_t N, class Storage = std::array<T, N>> 24 using value_type = typename Storage::value_type; 25 using size_type = typename Storage::size_type; 26 using reference = typename Storage::reference; 27 using const_reference = typename Storage::const_reference; 28 using pointer = typename Storage::pointer; 29 using const_pointer = typename Storage::const_pointer; 30 using iterator = typename Storage::iterator; 31 using const_iterator = typename Storage::const_iterator; 36 CircularBuffer(const CircularBuffer<T, N, Storage> &other); [all …]
|
D | FastVector.h | 23 template <class T, size_t N, class Storage = std::array<T, N>> 27 using value_type = typename Storage::value_type; 28 using size_type = typename Storage::size_type; 29 using reference = typename Storage::reference; 30 using const_reference = typename Storage::const_reference; 31 using pointer = typename Storage::pointer; 32 using const_pointer = typename Storage::const_pointer; 40 FastVector(const FastVector<T, N, Storage> &other); 41 FastVector(FastVector<T, N, Storage> &&other); 47 FastVector<T, N, Storage> &operator=(const FastVector<T, N, Storage> &other); [all …]
|
/third_party/boost/boost/spirit/home/support/iterators/detail/ |
D | combine_policies.hpp | 27 , typename Ownership, typename Checking, typename Input, typename Storage 35 , typename Input, typename Storage> 36 struct multi_pass_unique<T, Ownership, Checking, Input, Storage 38 : Ownership, Checking, Input, Storage 50 Storage::destroy(mp); in destroy() 58 this->Storage::swap(x); in swap() 65 Storage::clear_queue(mp); in clear_queue() 71 , typename Input, typename Storage> 72 struct multi_pass_unique<T, Ownership, Checking, Input, Storage 74 : Ownership, Checking, Storage [all …]
|
/third_party/boost/boost/algorithm/string/detail/ |
D | replace_storage.hpp | 28 StorageT& Storage, in move_from_storage() argument 34 while( !Storage.empty() && OutputIt!=DestEnd ) in move_from_storage() 36 *OutputIt=Storage.front(); in move_from_storage() 37 Storage.pop_front(); in move_from_storage() 46 StorageT& Storage, in copy_to_storage() argument 49 Storage.insert( Storage.end(), ::boost::begin(What), ::boost::end(What) ); in copy_to_storage() 64 StorageT& Storage, in operator ()() 71 …ForwardIteratorT It=::boost::algorithm::detail::move_from_storage( Storage, InsertIt, SegmentBegin… in operator ()() 78 if( Storage.empty() ) in operator ()() 97 Storage.push_back( *It ); in operator ()() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/cleanup/internal/ |
D | cleanup.h | 46 class Storage { 48 Storage() = delete; 50 explicit Storage(Callback callback) { in Storage() function 58 Storage(Storage&& other) { in Storage() function 67 Storage(const Storage& other) = delete; 69 Storage& operator=(Storage&& other) = delete; 71 Storage& operator=(const Storage& other) = delete;
|
/third_party/boost/boost/histogram/ |
D | make_histogram.hpp | 33 template <class Storage, class Axis, class... Axes, 34 class = detail::requires_storage_or_adaptible<Storage>, 36 auto make_histogram_with(Storage&& storage, Axis&& axis, Axes&&... axes) { in make_histogram_with() 38 using U = std::decay_t<Storage>; in make_histogram_with() 40 return histogram<decltype(a), S>(std::move(a), S(std::forward<Storage>(storage))); in make_histogram_with() 70 template <class Storage, class Iterable, 71 class = detail::requires_storage_or_adaptible<Storage>, 73 auto make_histogram_with(Storage&& storage, Iterable&& iterable) { in make_histogram_with() 74 using U = std::decay_t<Storage>; in make_histogram_with() 80 S(std::forward<Storage>(storage))); in make_histogram_with() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | Any.h | 57 : Storage(Other.Storage ? Other.Storage->clone() : nullptr) {} in Any() 81 Storage = std::make_unique<StorageImpl<U>>(std::forward<T>(Value)); in Any() 84 Any(Any &&Other) : Storage(std::move(Other.Storage)) {} in Any() 87 std::swap(Storage, Other.Storage); in swap() 92 Storage = std::move(Other.Storage); 96 bool hasValue() const { return !!Storage; } in hasValue() 98 void reset() { Storage.reset(); } in reset() 108 std::unique_ptr<StorageBase> Storage; variable 115 if (!Value.Storage) in any_isa() 119 return Value.Storage->id() == &Any::TypeId<U>::Id; in any_isa() [all …]
|
/third_party/boost/libs/histogram/examples/ |
D | guide_histogram_in_api.cpp | 13 template <class Axes, class Storage> 14 boost::histogram::histogram<Axes, Storage> any_histogram( in any_histogram() 15 boost::histogram::histogram<Axes, Storage>& h) { in any_histogram() 20 template <class Storage, class... Axes> 21 boost::histogram::histogram<std::tuple<Axes...>, Storage> only_static_histogram( in only_static_histogram() 22 boost::histogram::histogram<std::tuple<Axes...>, Storage>& h) { in only_static_histogram() 27 template <class Storage, class... Axes> 29 Storage> 32 Storage>& h) { in only_dynamic_histogram()
|
/third_party/boost/libs/histogram/benchmark/ |
D | histogram_filling.cpp | 36 template <class Distribution, class Tag, class Storage = SStore> 38 auto h = make_s(Tag(), Storage(), reg(100, 0, 1)); in fill_1d() 44 template <class Distribution, class Tag, class Storage = SStore> 46 auto h = make_s(Tag(), Storage(), reg(100, 0, 1)); in fill_n_1d() 52 template <class Distribution, class Tag, class Storage = SStore> 54 auto h = make_s(Tag(), Storage(), reg(100, 0, 1), reg(100, 0, 1)); in fill_2d() 60 template <class Distribution, class Tag, class Storage = SStore> 62 auto h = make_s(Tag(), Storage(), reg(100, 0, 1), reg(100, 0, 1)); in fill_n_2d() 69 template <class Distribution, class Tag, class Storage = SStore> 71 auto h = make_s(Tag(), Storage(), reg(100, 0, 1), reg(100, 0, 1), reg(100, 0, 1)); in fill_3d() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/ |
D | pool.h | 48 class Storage; variable 57 MARL_NO_EXPORT inline Loan(Item*, const std::shared_ptr<Storage>&); 70 std::shared_ptr<Storage> storage; 77 class Storage { 79 virtual ~Storage() = default; 127 Pool<T>::Loan::Loan(Item* item, const std::shared_ptr<Storage>& storage) in Loan() 233 class Storage : public Pool<T>::Storage { 235 MARL_NO_EXPORT inline Storage(Allocator* allocator); 236 MARL_NO_EXPORT inline ~Storage(); 244 std::shared_ptr<Storage> storage; [all …]
|
/third_party/boost/libs/hana/include/boost/hana/ |
D | map.hpp | 126 template <typename HashTable, typename Storage> 128 : detail::searchable_operators<map_impl<HashTable, Storage>> 129 , detail::operators::adl<map_impl<HashTable, Storage>> 132 using storage_type = Storage; 134 Storage storage; 140 Storage, 148 explicit constexpr map_impl(Storage&& xs) in map_impl() 149 : storage(static_cast<Storage&&>(xs)) in map_impl() 153 detail::storage_is_default_constructible<Storage, Dummy...>::value 160 detail::storage_is_copy_constructible<Storage, Dummy...>::value [all …]
|
/third_party/boost/boost/hana/ |
D | map.hpp | 126 template <typename HashTable, typename Storage> 128 : detail::searchable_operators<map_impl<HashTable, Storage>> 129 , detail::operators::adl<map_impl<HashTable, Storage>> 132 using storage_type = Storage; 134 Storage storage; 140 Storage, 148 explicit constexpr map_impl(Storage&& xs) in map_impl() 149 : storage(static_cast<Storage&&>(xs)) in map_impl() 153 detail::storage_is_default_constructible<Storage, Dummy...>::value 160 detail::storage_is_copy_constructible<Storage, Dummy...>::value [all …]
|
/third_party/boost/libs/histogram/test/ |
D | storage_adaptor_test.cpp | 36 using Storage = storage_adaptor<T>; in tests() typedef 39 Storage a; in tests() 41 Storage b(a); in tests() 42 Storage c; in tests() 49 Storage d(std::move(a)); in tests() 51 Storage e; in tests() 58 const auto u = std::vector<typename Storage::value_type>(3, 1); in tests() 59 Storage h(u); // tests converting ctor in tests() 68 Storage a; in tests() 101 Storage a; in tests() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 123 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, 125 : MDNode(C, ID, Storage, Ops1, Ops2) { in MDNode() argument 218 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash, in GenericDINode() argument 221 : DINode(C, GenericDINodeKind, Storage, Tag, Ops1, Ops2) { in GenericDINode() 231 StorageType Storage, bool ShouldCreate = true) { 233 DwarfOps, Storage, ShouldCreate); 238 StorageType Storage, bool ShouldCreate = true); 292 DISubrange(LLVMContext &C, StorageType Storage, Metadata *Node, in DISubrange() argument 294 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, Ops), in DISubrange() 300 int64_t LowerBound, StorageType Storage, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | User.cpp | 123 uint8_t *Storage = static_cast<uint8_t *>( in allocateFixedOperandUser() local 125 Use *Start = reinterpret_cast<Use *>(Storage + DescBytesToAllocate); in allocateFixedOperandUser() 134 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes); in allocateFixedOperandUser() 151 void *Storage = ::operator new(Size + sizeof(Use *)); in operator new() local 152 Use **HungOffOperandList = static_cast<Use **>(Storage); in operator new() 184 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes; in operator delete() local 185 ::operator delete(Storage); in operator delete() 187 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() local 188 Use::zap(Storage, Storage + Obj->NumUserOperands, in operator delete() 190 ::operator delete(Storage); in operator delete()
|
D | DebugInfoMetadata.cpp | 29 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation() argument 32 : MDNode(C, DILocationKind, Storage, MDs) { in DILocation() 54 StorageType Storage, bool ShouldCreate) { in getImpl() argument 58 if (Storage == Uniqued) { in getImpl() 73 return storeImpl(new (Ops.size()) DILocation(Context, Storage, Line, Column, in getImpl() 75 Storage, Context.pImpl->DILocations); in getImpl() 265 StorageType Storage, bool ShouldCreate) { in getImpl() argument 267 if (Storage == Uniqued) { in getImpl() 282 Context, Storage, Hash, Tag, PreOps, DwarfOps), in getImpl() 283 Storage, Context.pImpl->GenericDINodes); in getImpl() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | DJB.cpp | 37 static StringRef toUTF8(UTF32 C, MutableArrayRef<UTF8> Storage) { in toUTF8() argument 39 UTF8 *Begin8 = Storage.begin(); in toUTF8() 44 Storage.end(), strictConversion); in toUTF8() 47 return StringRef(reinterpret_cast<char *>(Storage.begin()), in toUTF8() 48 Begin8 - Storage.begin()); in toUTF8() 75 std::array<UTF8, UNI_MAX_UTF8_BYTES_PER_CODE_POINT> Storage; in caseFoldingDjbHash() local 78 StringRef Folded = toUTF8(C, Storage); in caseFoldingDjbHash()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Minidump.h | 110 MemoryInfoIterator(ArrayRef<uint8_t> Storage, size_t Stride) in MemoryInfoIterator() argument 111 : Storage(Storage), Stride(Stride) { in MemoryInfoIterator() 112 assert(Storage.size() % Stride == 0); in MemoryInfoIterator() 116 return Storage.size() == R.Storage.size(); 120 assert(Storage.size() >= sizeof(minidump::MemoryInfo)); 121 return *reinterpret_cast<const minidump::MemoryInfo *>(Storage.data()); 125 Storage = Storage.drop_front(Stride); 130 ArrayRef<uint8_t> Storage;
|
/third_party/boost/boost/dll/detail/ |
D | type_info.hpp | 25 template<typename Class, typename Lib, typename Storage> 26 const std::type_info& load_type_info(Lib & lib, Storage & storage) in load_type_info() 52 template<typename Class, typename Lib, typename Storage> 53 const std::type_info& load_type_info(Lib & lib, Storage & storage) 76 template<typename Class, typename Lib, typename Storage> 77 const std::type_info& load_type_info(Lib & lib, Storage & storage)
|
/third_party/vk-gl-cts/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;
|
/third_party/skia/src/sksl/ir/ |
D | SkSLVarDeclarations.cpp | 40 const Type* baseType, Variable::Storage storage) { in ErrorCheck() 49 if (baseType->componentType().isOpaque() && storage != Variable::Storage::kGlobal) { in ErrorCheck() 88 if (storage == Variable::Storage::kGlobal) { in ErrorCheck() 119 if (var.storage() == Variable::Storage::kInterfaceBlock) { in ErrorCheckAndCoerce() 140 if (var.storage() == Variable::Storage::kInterfaceBlock) { in ErrorCheckAndCoerce() 147 if (var.storage() == Variable::Storage::kGlobal) { in ErrorCheckAndCoerce() 175 if ((var->storage() == Variable::Storage::kGlobal) && var->name() == Compiler::FRAGCOLOR_NAME) { in Convert() 181 } else if ((var->storage() == Variable::Storage::kGlobal || in Convert() 182 var->storage() == Variable::Storage::kInterfaceBlock) && in Convert() 208 SkASSERT(var->storage() != Variable::Storage::kParameter); in Make() [all …]
|
/third_party/boost/boost/wave/util/ |
D | flex_string.hpp | 845 template <class Storage, unsigned int threshold, 846 typename Align = typename Storage::value_type*> 850 typedef typename Storage::value_type value_type; 853 typedef typename Storage::allocator_type allocator_type; 857 enum { temp1 = threshold * sizeof(value_type) > sizeof(Storage) 859 : sizeof(Storage) }; 876 Storage& GetStorage() in GetStorage() 879 Storage* p = reinterpret_cast<Storage*>(&buf_[0]); in GetStorage() 883 const Storage& GetStorage() const in GetStorage() 886 const Storage *p = reinterpret_cast<const Storage*>(&buf_[0]); in GetStorage() [all …]
|