Home
last modified time | relevance | path

Searched refs:StorageType (Results 1 – 25 of 80) sorted by relevance

1234

/external/deqp/framework/common/
DtcuFloat.hpp58 typedef StorageType_ StorageType; typedef in tcu::Float
69 explicit Float (StorageType value);
76 …static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias,… in convert() argument
95 static inline Float construct (int sign, int exponent, StorageType mantissa);
110 static Float constructBits (int sign, int exponent, StorageType mantissaBits);
112 StorageType bits (void) const { return m_value; } in bits()
117 …inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1… in exponentBits()
118 …inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1… in mantissaBits()
122 …inline StorageType mantissa (void) const { return isZero() || isDenorm() ? mantissaBits() : (man… in mantissa()
137 StorageType m_value;
[all …]
/external/v8/src/objects/
Dtagged-impl-inl.h21 template <HeapObjectReferenceType kRefType, typename StorageType>
22 bool TaggedImpl<kRefType, StorageType>::ToSmi(Smi* value) const { in ToSmi()
30 template <HeapObjectReferenceType kRefType, typename StorageType>
31 Smi TaggedImpl<kRefType, StorageType>::ToSmi() const { in ToSmi()
44 template <HeapObjectReferenceType kRefType, typename StorageType>
45 bool TaggedImpl<kRefType, StorageType>::GetHeapObject( in GetHeapObject()
53 template <HeapObjectReferenceType kRefType, typename StorageType>
54 bool TaggedImpl<kRefType, StorageType>::GetHeapObject( in GetHeapObject()
69 template <HeapObjectReferenceType kRefType, typename StorageType>
70 bool TaggedImpl<kRefType, StorageType>::GetHeapObject( in GetHeapObject()
[all …]
Dtagged-impl.cc16 template <HeapObjectReferenceType kRefType, typename StorageType>
17 void TaggedImpl<kRefType, StorageType>::ShortPrint(FILE* out) { in ShortPrint()
22 template <HeapObjectReferenceType kRefType, typename StorageType>
23 void TaggedImpl<kRefType, StorageType>::ShortPrint(StringStream* accumulator) { in ShortPrint()
29 template <HeapObjectReferenceType kRefType, typename StorageType>
30 void TaggedImpl<kRefType, StorageType>::ShortPrint(std::ostream& os) { in ShortPrint()
Dtagged-impl.h23 template <HeapObjectReferenceType kRefType, typename StorageType>
26 static_assert(std::is_same<StorageType, Address>::value ||
27 std::is_same<StorageType, Tagged_t>::value,
33 static const bool kIsFull = sizeof(StorageType) == kSystemPointerSize;
38 explicit constexpr TaggedImpl(StorageType ptr) : ptr_(ptr) {} in TaggedImpl()
63 constexpr StorageType ptr() const { return ptr_; } in ptr()
183 StorageType ptr_;
/external/libchrome/mojo/public/cpp/base/
Dbig_buffer.cc41 BigBuffer::BigBuffer() : storage_type_(StorageType::kBytes) {} in BigBuffer()
53 : storage_type_(StorageType::kSharedMemory), in BigBuffer()
66 case StorageType::kBytes: in data()
68 case StorageType::kSharedMemory: in data()
80 case StorageType::kBytes: in size()
82 case StorageType::kSharedMemory: in size()
98 storage_type_ = BigBuffer::StorageType::kSharedMemory; in BigBufferView()
108 storage_type_ = BigBuffer::StorageType::kBytes; in BigBufferView()
119 storage_type_ = BigBuffer::StorageType::kBytes; in SetBytes()
127 storage_type_ = BigBuffer::StorageType::kSharedMemory; in SetSharedMemory()
[all …]
Dbig_buffer.h69 enum class StorageType { in COMPONENT_EXPORT() enum
103 StorageType storage_type() const { return storage_type_; } in COMPONENT_EXPORT()
106 DCHECK_EQ(storage_type_, StorageType::kBytes); in COMPONENT_EXPORT()
111 DCHECK_EQ(storage_type_, StorageType::kSharedMemory); in COMPONENT_EXPORT()
118 StorageType storage_type_; in COMPONENT_EXPORT()
157 BigBuffer::StorageType storage_type() const { return storage_type_; } in COMPONENT_EXPORT()
160 DCHECK_EQ(storage_type_, BigBuffer::StorageType::kBytes); in COMPONENT_EXPORT()
165 DCHECK_EQ(storage_type_, BigBuffer::StorageType::kSharedMemory); in COMPONENT_EXPORT()
170 BigBuffer::StorageType storage_type_; in COMPONENT_EXPORT()
Dbig_buffer_unittest.cc30 EXPECT_EQ(BigBuffer::StorageType::kBytes, in.storage_type()); in TEST()
35 EXPECT_EQ(BigBuffer::StorageType::kBytes, out.storage_type()); in TEST()
41 EXPECT_EQ(BigBuffer::StorageType::kBytes, in.storage_type()); in TEST()
46 EXPECT_EQ(BigBuffer::StorageType::kBytes, out.storage_type()); in TEST()
56 EXPECT_EQ(BigBuffer::StorageType::kSharedMemory, in.storage_type()); in TEST()
61 EXPECT_EQ(BigBuffer::StorageType::kSharedMemory, out.storage_type()); in TEST()
Dbig_buffer_mojom_traits.cc45 case mojo_base::BigBuffer::StorageType::kBytes: in GetTag()
47 case mojo_base::BigBuffer::StorageType::kSharedMemory: in GetTag()
97 case mojo_base::BigBuffer::StorageType::kBytes: in GetTag()
99 case mojo_base::BigBuffer::StorageType::kSharedMemory: in GetTag()
/external/libchrome/mojo/public/cpp/bindings/lib/
Darray_internal.h45 using StorageType = T; member
51 sizeof(StorageType);
55 return sizeof(ArrayHeader) + sizeof(StorageType) * num_elements; in GetStorageSize()
57 static Ref ToRef(StorageType* storage, size_t offset) { in ToRef()
60 static ConstRef ToConstRef(const StorageType* storage, size_t offset) { in ToConstRef()
92 using StorageType = uint8_t;
99 static BitRef ToRef(StorageType* storage, size_t offset) {
102 static bool ToConstRef(const StorageType* storage, size_t offset) {
124 using ElementType = typename ArrayDataTraits<T>::StorageType;
149 using ElementType = typename ArrayDataTraits<T>::StorageType;
[all …]
/external/v8/src/base/
Dlazy-instance.h97 using StorageType = member
100 static T* MutableInstance(StorageType* storage) { in MutableInstance()
105 static void InitStorageUsingTrait(StorageType* storage) { in InitStorageUsingTrait()
113 using StorageType = T*; member
115 static T* MutableInstance(StorageType* storage) { in MutableInstance()
120 static void InitStorageUsingTrait(StorageType* storage) { in InitStorageUsingTrait()
166 using StorageType = typename AllocationTrait::StorageType;
171 static_cast<StorageType*>(storage)); in InitInstance()
193 mutable StorageType storage_;
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h140 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
242 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash,
255 StorageType Storage, bool ShouldCreate = true) {
262 StorageType Storage, bool ShouldCreate = true);
317 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count,
324 int64_t LowerBound, StorageType Storage,
355 DIEnumerator(LLVMContext &C, StorageType Storage, int64_t Value,
362 StringRef Name, StorageType Storage,
368 MDString *Name, StorageType Storage,
401 DIScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
[all …]
/external/llvm/lib/IR/
DDebugInfoMetadata.cpp22 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation()
43 Metadata *InlinedAt, StorageType Storage, in getImpl()
164 StorageType Storage, bool ShouldCreate) { in getImpl()
216 StorageType Storage, bool ShouldCreate) { in getImpl()
222 MDString *Name, StorageType Storage, in getImpl()
233 StorageType Storage, bool ShouldCreate) { in getImpl()
246 Metadata *ExtraData, StorageType Storage, bool ShouldCreate) { in getImpl()
262 Metadata *TemplateParams, MDString *Identifier, StorageType Storage, in getImpl()
341 StorageType Storage, in getImpl()
349 MDString *Directory, StorageType Storage, in getImpl()
[all …]
DMetadataImpl.h29 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl()
43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DDebugInfoMetadata.h160 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag,
266 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash,
279 StorageType Storage, bool ShouldCreate = true) {
286 StorageType Storage, bool ShouldCreate = true);
340 DISubrange(LLVMContext &C, StorageType Storage, Metadata *Node,
348 int64_t LowerBound, StorageType Storage,
352 int64_t LowerBound, StorageType Storage,
400 DIEnumerator(LLVMContext &C, StorageType Storage, int64_t Value,
410 StorageType Storage, bool ShouldCreate = true) {
416 StorageType Storage, bool ShouldCreate = true);
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DDebugInfoMetadata.cpp25 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation()
46 Metadata *InlinedAt, StorageType Storage, in getImpl()
195 StorageType Storage, bool ShouldCreate) { in getImpl()
251 StorageType Storage, bool ShouldCreate) { in getImpl()
258 int64_t Lo, StorageType Storage, in getImpl()
267 StorageType Storage, bool ShouldCreate) { in getImpl()
277 StorageType Storage, bool ShouldCreate) { in getImpl()
304 StorageType Storage, bool ShouldCreate) { in getImpl()
322 StorageType Storage, bool ShouldCreate) { in getImpl()
401 StorageType Storage, in getImpl()
[all …]
DMetadataImpl.h29 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl()
43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl()
/external/v4l2_codec2/accel/
Dvideo_frame.h71 enum StorageType { enum
89 StorageType storage_type,
169 static bool IsStorageTypeMappable(VideoFrame::StorageType storage_type);
179 StorageType storage_type() const { return storage_type_; } in storage_type()
297 StorageType storage_type,
306 const VideoFrame::StorageType storage_type,
326 StorageType storage_type,
374 StorageType storage_type_; // TODO(mcasas): make const
/external/swiftshader/third_party/subzero/src/
DIceClFlags.h114 using Name##StorageType = \
117 Name##StorageType Name; \
121 Name##StorageType Value) { \
126 typename std::enable_if<!E, void>::type set##Name##Impl(Name##StorageType) { \
130 Name##StorageType get##Name() const { return Name; } \
131 void set##Name(Name##StorageType Value) { \
/external/tensorflow/tensorflow/lite/delegates/gpu/common/
Dtensor.h31 struct StorageType;
34 struct StorageType<DataType::FLOAT32> {
39 struct StorageType<DataType::INT32> {
51 using TensorStorageType = typename internal_tensor::StorageType<Type>::value;
/external/clang/lib/CodeGen/
DCGRecordLayoutBuilder.cpp170 llvm::Type *StorageType);
225 const FieldDecl *FD, CharUnits StartOffset, llvm::Type *StorageType) { in setBitFieldInfo() argument
230 Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType); in setBitFieldInfo()
288 llvm::Type *StorageType = nullptr; in lowerUnion() local
321 StorageType = FieldType; in lowerUnion()
329 if (!StorageType || in lowerUnion()
330 getAlignment(FieldType) > getAlignment(StorageType) || in lowerUnion()
331 (getAlignment(FieldType) == getAlignment(StorageType) && in lowerUnion()
332 getSize(FieldType) > getSize(StorageType))) in lowerUnion()
333 StorageType = FieldType; in lowerUnion()
[all …]
/external/ImageMagick/Magick++/lib/Magick++/
DPixels.h86 PixelData(Magick::Image &image_,std::string map_,const StorageType type_);
91 const StorageType type_);
113 const StorageType type_);
/external/ImageMagick/MagickCore/
Dpixel.h152 } StorageType; typedef
219 const size_t,const char *,const StorageType,void *,ExceptionInfo *),
221 const size_t,const char *,const StorageType,const void *,ExceptionInfo *),
/external/skia/src/core/
DSkCachedData.h46 enum StorageType { enum
58 StorageType fStorageType;
/external/skqp/src/core/
DSkCachedData.h46 enum StorageType { enum
58 StorageType fStorageType;
/external/libchrome/ipc/
Dipc_message_protobuf_utils.h23 template <class RepeatedFieldLike, class StorageType>
39 if (INT_MAX / sizeof(StorageType) <= static_cast<size_t>(size)) in Read()

1234