/external/deqp/framework/common/ |
D | tcuFloat.hpp | 51 typedef StorageType_ StorageType; typedef in tcu::Float 62 explicit Float (StorageType value); 69 …static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias,… in convert() argument 88 static inline Float construct (int sign, int exponent, StorageType mantissa); 103 static Float constructBits (int sign, int exponent, StorageType mantissaBits); 105 StorageType bits (void) const { return m_value; } in bits() 110 …inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1… in exponentBits() 111 …inline StorageType mantissaBits (void) const { return m_value & ((StorageType(1)<<MantissaBits)-1… in mantissaBits() 115 …inline StorageType mantissa (void) const { return isZero() || isDenorm() ? mantissaBits() : (man… in mantissa() 127 StorageType m_value; [all …]
|
/external/libchrome/mojo/public/cpp/base/ |
D | big_buffer.cc | 41 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 …]
|
D | big_buffer.h | 69 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()
|
D | big_buffer_unittest.cc | 30 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()
|
D | big_buffer_mojom_traits.cc | 45 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/v8/src/base/ |
D | lazy-instance.h | 96 struct V8_ALIGNAS(T, 16) StorageType { struct 100 STATIC_ASSERT(V8_ALIGNOF(StorageType) >= V8_ALIGNOF(T)); 102 static T* MutableInstance(StorageType* storage) { in MutableInstance() 107 static void InitStorageUsingTrait(StorageType* storage) { in InitStorageUsingTrait() 115 typedef T* StorageType; typedef 117 static T* MutableInstance(StorageType* storage) { in MutableInstance() 122 static void InitStorageUsingTrait(StorageType* storage) { in InitStorageUsingTrait() 168 typedef typename AllocationTrait::StorageType StorageType; typedef 173 static_cast<StorageType*>(storage)); in InitInstance() 195 mutable StorageType storage_;
|
/external/libchrome/mojo/public/cpp/bindings/lib/ |
D | array_internal.h | 45 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/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 140 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/ |
D | DebugInfoMetadata.cpp | 22 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 …]
|
D | MetadataImpl.h | 29 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/ |
D | DebugInfoMetadata.h | 160 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/ |
D | DebugInfoMetadata.cpp | 25 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 …]
|
D | MetadataImpl.h | 29 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/subzero/src/ |
D | IceClFlags.h | 114 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/clang/lib/CodeGen/ |
D | CGRecordLayoutBuilder.cpp | 170 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++/ |
D | Pixels.h | 86 PixelData(Magick::Image &image_,std::string map_,const StorageType type_); 91 const StorageType type_); 113 const StorageType type_);
|
/external/ImageMagick/MagickCore/ |
D | pixel.h | 153 } StorageType; typedef 220 const size_t,const char *,const StorageType,void *,ExceptionInfo *), 222 const size_t,const char *,const StorageType,const void *,ExceptionInfo *),
|
/external/skqp/src/core/ |
D | SkCachedData.h | 46 enum StorageType { enum 58 StorageType fStorageType;
|
/external/skia/src/core/ |
D | SkCachedData.h | 46 enum StorageType { enum 58 StorageType fStorageType;
|
/external/libchrome/ipc/ |
D | ipc_message_protobuf_utils.h | 23 template <class RepeatedFieldLike, class StorageType> 39 if (INT_MAX / sizeof(StorageType) <= static_cast<size_t>(size)) in Read()
|
/external/ImageMagick/Magick++/lib/ |
D | Pixels.cpp | 108 const StorageType type_) in PixelData() 115 const StorageType type_) in PixelData() 142 std::string map_,const StorageType type_) in init()
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtp_sender_video.cc | 104 StorageType storage) { in SendVideoPacket() 123 StorageType media_packet_storage, in SendVideoPacketAsRed() 127 StorageType fec_storage = kDontRetransmit; in SendVideoPacketAsRed() 242 StorageType storage; in SendVideo()
|
D | rtp_packet_history.h | 43 StorageType type); 95 StorageType storage_type = kDontRetransmit;
|
D | rtp_sender_video.h | 92 StorageType storage); 100 StorageType media_packet_storage,
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderLibraryCase.hpp | 66 enum StorageType enum 82 StorageType storageType;
|