/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/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() 170 typedef typename AllocationTrait::StorageType StorageType; typedef 173 static void InitInstance(StorageType* storage) { in InitInstance() 201 mutable StorageType storage_;
|
/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() 179 StorageType Storage, bool ShouldCreate) { in getImpl() 232 StorageType Storage, bool ShouldCreate) { in getImpl() 238 MDString *Name, StorageType Storage, in getImpl() 249 StorageType Storage, bool ShouldCreate) { in getImpl() 262 Metadata *ExtraData, StorageType Storage, bool ShouldCreate) { in getImpl() 278 Metadata *TemplateParams, MDString *Identifier, StorageType Storage, in getImpl() 295 StorageType Storage, in getImpl() 303 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/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 152 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, 251 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash, 264 StorageType Storage, bool ShouldCreate = true) { 271 StorageType Storage, bool ShouldCreate = true); 325 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count, 332 int64_t LowerBound, StorageType Storage, 363 DIEnumerator(LLVMContext &C, StorageType Storage, int64_t Value, 370 StringRef Name, StorageType Storage, 376 MDString *Name, StorageType Storage, 409 DIScope(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, [all …]
|
D | Metadata.h | 50 enum StorageType { Uniqued, Distinct, Temporary }; enum 92 Metadata(unsigned ID, StorageType Storage) in Metadata() 769 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, 886 static T *storeImpl(T *N, StorageType Storage, StoreT &Store); 887 template <class T> static T *storeImpl(T *N, StorageType Storage); 982 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash, 993 StorageType Storage, bool ShouldCreate = true);
|
/external/libchrome/base/ |
D | callback_internal.h | 154 using StorageType = T; 165 using StorageType = T; 176 using StorageType = const T*; 183 using StorageType = const T*; 202 using StorageType = T;
|
D | bind_internal.h | 328 typename StorageType, typename Unwrappers, 333 typename StorageType, 339 StorageType, TypeList<Unwrappers...>, 343 StorageType* storage = static_cast<StorageType*>(base); 376 using StorageType = BindState<Runnable, R(Args...), BoundArgs...>; 400 using InvokerType = Invoker<BoundIndices, StorageType, Unwrappers,
|
D | bind.h | 55 typename internal::CallbackParamTraits<Args>::StorageType...> 93 typename internal::CallbackParamTraits<Args>::StorageType...>; in Bind()
|
/external/libweave/third_party/chromium/base/ |
D | callback_internal.h | 153 using StorageType = T; 164 using StorageType = T; 175 using StorageType = const T*; 182 using StorageType = const T*; 201 using StorageType = T;
|
D | bind_internal.h | 328 typename StorageType, typename Unwrappers, 333 typename StorageType, 339 StorageType, TypeList<Unwrappers...>, 343 StorageType* storage = static_cast<StorageType*>(base); 376 using StorageType = BindState<Runnable, R(Args...), BoundArgs...>; 400 using InvokerType = Invoker<BoundIndices, StorageType, Unwrappers,
|
D | bind.h | 55 typename internal::CallbackParamTraits<Args>::StorageType...> 93 typename internal::CallbackParamTraits<Args>::StorageType...>; in Bind()
|
/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/skia/src/core/ |
D | SkCachedData.h | 45 enum StorageType { enum 57 StorageType fStorageType;
|
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtp_packet_history.h | 43 StorageType type); 95 StorageType storage_type = kDontRetransmit;
|
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_sender_video.h | 92 StorageType storage); 100 StorageType media_packet_storage,
|
D | rtp_format.h | 48 virtual StorageType GetStorageType(uint32_t retransmission_settings) = 0;
|
D | rtp_format_video_generic.h | 50 StorageType GetStorageType(uint32_t retransmission_settings) override;
|
D | rtp_format_vp9.h | 42 StorageType GetStorageType(uint32_t retransmission_settings) override;
|
D | rtp_format_h264.h | 46 StorageType GetStorageType(uint32_t retransmission_settings) override;
|
D | rtp_format_video_generic.cc | 81 StorageType RtpPacketizerGeneric::GetStorageType( in GetStorageType()
|
/external/clang/include/clang/AST/ |
D | TemplateName.h | 179 DependentTemplateName *> StorageType; typedef 181 StorageType Storage; 184 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName()
|
/external/deqp/modules/gles31/functional/ |
D | es31fSynchronizationTests.cpp | 118 enum StorageType enum in deqp::gles31::Functional::__anonc454e2ef0111::InterInvocationTestCase 132 …InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storag… 147 const StorageType m_storage; 164 …ocationTestCase (Context& context, const char* name, const char* desc, StorageType storage, int fl… in InterInvocationTestCase() 444 …InvocationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, i… 450 …cationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, int fl… in InvocationBasicCase() 507 …InvocationWriteReadCase (Context& context, const char* name, const char* desc, StorageType storag… 512 …onWriteReadCase (Context& context, const char* name, const char* desc, StorageType storage, int fl… in InvocationWriteReadCase() 565 …InvocationReadWriteCase (Context& context, const char* name, const char* desc, StorageType storag… 570 …onReadWriteCase (Context& context, const char* name, const char* desc, StorageType storage, int fl… in InvocationReadWriteCase() [all …]
|
/external/libbrillo/brillo/ |
D | any_internal_impl.h | 221 enum StorageType { kExternal, kContained }; enum 357 StorageType storage_; // Declare after the union to eliminate member padding.
|