Home
last modified time | relevance | path

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

12345678910>>...23

/third_party/flutter/skia/third_party/externals/angle2/src/common/
DFixedVector.h21 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 …]
DFastVector.h22 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/
DFixedVector.h21 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 …]
DCircularBuffer.h20 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 …]
DFastVector.h23 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/skia/third_party/externals/abseil-cpp/absl/cleanup/internal/
Dcleanup.h46 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAny.h57 : 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/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
Dpool.h48 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDebugInfoMetadata.h123 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/rust/crates/bindgen/bindgen/ir/
Dtraversal.rs374 pub struct ItemTraversal<'ctx, Storage, Queue>
376 Storage: TraversalStorage<'ctx>,
382 seen: Storage,
394 impl<'ctx, Storage, Queue> ItemTraversal<'ctx, Storage, Queue>
396 Storage: TraversalStorage<'ctx>,
404 ) -> ItemTraversal<'ctx, Storage, Queue> in new() argument
408 let mut seen = Storage::new(ctx); in new()
426 impl<'ctx, Storage, Queue> Tracer for ItemTraversal<'ctx, Storage, Queue>
428 Storage: TraversalStorage<'ctx>,
445 impl<'ctx, Storage, Queue> Iterator for ItemTraversal<'ctx, Storage, Queue>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DUser.cpp123 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()
DDebugInfoMetadata.cpp29 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/rust/crates/bindgen/bindgen/codegen/
Dbitfield_unit.rs3 pub struct __BindgenBitfieldUnit<Storage> {
4 storage: Storage,
7 impl<Storage> __BindgenBitfieldUnit<Storage> {
9 pub const fn new(storage: Storage) -> Self { in new()
14 impl<Storage> __BindgenBitfieldUnit<Storage>
16 Storage: AsRef<[u8]> + AsMut<[u8]>,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DMinidump.h110 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/rust/crates/signal-hook/src/iterator/exfiltrator/
Dmod.rs52 type Storage: Debug + Default + Send + Sync + 'static; typedef
76 fn store(&self, slot: &Self::Storage, signal: c_int, info: &siginfo_t); in store() argument
94 fn load(&self, slot: &Self::Storage, signal: c_int) -> Option<Self::Output>; in load() argument
106 fn init(&self, slot: &Self::Storage, signal: c_int) { in init() argument
132 type Storage = AtomicBool; typedef
138 fn store(&self, slot: &Self::Storage, _: c_int, _: &siginfo_t) { in store() argument
142 fn load(&self, slot: &Self::Storage, signal: c_int) -> Option<Self::Output> { in load() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDJB.cpp37 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/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dissue-1076-unnamed-bitfield-alignment.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
Dissue-1034.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
Ddivide-by-zero-in-struct-layout.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
Dbitfield-method-same-name.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
Donly_bitfields.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
Dbitfield_method_mangling.rs10 pub struct __BindgenBitfieldUnit<Storage> {
11 storage: Storage,
13 impl<Storage> __BindgenBitfieldUnit<Storage> {
15 pub const fn new(storage: Storage) -> Self { in new()
19 impl<Storage> __BindgenBitfieldUnit<Storage>
21 Storage: AsRef<[u8]> + AsMut<[u8]>,
/third_party/skia/src/sksl/ir/
DSkSLVarDeclarations.cpp40 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/skia/third_party/externals/abseil-cpp/absl/container/
Dinlined_vector.h73 using Storage = inlined_vector_internal::Storage<T, N, A>; variable
75 using AllocatorTraits = typename Storage::AllocatorTraits;
76 using RValueReference = typename Storage::RValueReference;
77 using MoveIterator = typename Storage::MoveIterator;
78 using IsMemcpyOk = typename Storage::IsMemcpyOk;
82 typename Storage::template IteratorValueAdapter<Iterator>;
83 using CopyValueAdapter = typename Storage::CopyValueAdapter;
84 using DefaultValueAdapter = typename Storage::DefaultValueAdapter;
94 using allocator_type = typename Storage::allocator_type;
95 using value_type = typename Storage::value_type;
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dcompressed_tuple.h103 struct Storage {
105 constexpr Storage() = default;
107 explicit constexpr Storage(absl::in_place_t, V&& v)
116 struct ABSL_INTERNAL_COMPRESSED_TUPLE_DECLSPEC Storage<T, I, true> : T {
117 constexpr Storage() = default;
120 explicit constexpr Storage(absl::in_place_t, V&& v)
140 Storage<Ts, std::integral_constant<size_t, I>::value>... {
144 : Storage<Ts, I>(absl::in_place, absl::forward<Vs>(args))... {}
152 : Storage<Ts, std::integral_constant<size_t, I>::value, false>... {
156 : Storage<Ts, I, false>(absl::in_place, absl::forward<Vs>(args))... {}
[all …]

12345678910>>...23