/third_party/vk-gl-cts/framework/common/ |
H A D | tcuFloat.hpp | 59 typedef StorageType_ StorageType; typedef in tcu::Float 70 explicit Float (StorageType value); 77 static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias, Flags>& src, RoundingDirection = ROUND_TO_EVEN) { return src; } in convert() 96 static inline Float construct (int sign, int exponent, StorageType mantissa); 111 static Float constructBits (int sign, int exponent, StorageType mantissaBits); 113 StorageType bits (void) const { return m_value; } in bits() 118 inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1)<<ExponentBits)-1); } in exponentBits() 119 inline StorageType mantissaBits (void) const { return m_value & ((StorageType( in exponentBits() [all...] |
/third_party/node/deps/v8/src/objects/ |
H A D | tagged-impl-inl.h | 21 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> [all...] |
H A D | tagged-impl.cc | 16 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()
|
H A D | tagged-impl.h | 22 template <HeapObjectReferenceType kRefType, typename StorageType> 25 static_assert(std::is_same<StorageType, Address>::value || 26 std::is_same<StorageType, Tagged_t>::value, 27 "StorageType must be either Address or Tagged_t"); 32 static const bool kIsFull = sizeof(StorageType) == kSystemPointerSize; 37 explicit constexpr TaggedImpl(StorageType ptr) : ptr_(ptr) {} in TaggedImpl() 62 constexpr StorageType ptr() const { return ptr_; } in ptr() 181 StorageType ptr_;
|
/third_party/node/deps/v8/include/v8-include/cppgc/ |
H A D | member.h | 31 template <typename StorageType> 34 using RawStorage = StorageType; 76 typename CheckingPolicy, typename StorageType> 77 class V8_TRIVIAL_ABI BasicMember final : private MemberBase<StorageType>, 79 using Base = MemberBase<StorageType>; 123 OtherCheckingPolicy, StorageType>& other) in BasicMember() 131 OtherCheckingPolicy, StorageType>& other) in BasicMember() 148 StorageType>&& other) noexcept 158 StorageType>&& other) noexcept 185 OtherCheckingPolicy, StorageType> in operator =() [all...] |
H A D | heap-consistency.h | 65 typename CheckingPolicy, typename StorageType> 68 CheckingPolicy, StorageType>& value, in GetWriteBarrierType()
|
H A D | type-traits.h | 19 typename CheckingPolicy, typename StorageType> 129 template <typename T, typename CheckingPolicy, typename StorageType> 132 StorageType>*);
|
/third_party/node/deps/v8/src/base/ |
H A D | lazy-instance.h | 97 using StorageType = 100 static T* MutableInstance(StorageType* storage) { in MutableInstance() 105 static void InitStorageUsingTrait(StorageType* storage) { in InitStorageUsingTrait() 113 using StorageType = T*; 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 [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 123 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, in DINode() 218 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash, 231 StorageType Storage, bool ShouldCreate = true) { 238 StorageType Storage, bool ShouldCreate = true); 292 DISubrange(LLVMContext &C, StorageType Storage, Metadata *Node, in DISubrange() 300 int64_t LowerBound, StorageType Storage, 304 int64_t LowerBound, StorageType Storage, 352 DIEnumerator(LLVMContext &C, StorageType Storage, int64_t Value, in DIEnumerator() 362 StorageType Storage, bool ShouldCreate = true) { in getImpl() 368 StorageType Storag [all...] |
H A D | Metadata.h | 66 enum StorageType { Uniqued, Distinct, Temporary }; enum in llvm::Metadata 84 Metadata(unsigned ID, StorageType Storage) in Metadata() 882 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, 1019 static T *storeImpl(T *N, StorageType Storage, StoreT &Store); 1020 template <class T> static T *storeImpl(T *N, StorageType Storage); 1118 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash, in MDTuple() 1130 StorageType Storage, bool ShouldCreate = true);
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A 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) { \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | DebugInfoMetadata.cpp | 29 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation() 54 StorageType Storage, bool ShouldCreate) { 265 StorageType Storage, bool ShouldCreate) { in getImpl() 321 StorageType Storage, bool ShouldCreate) { in getImpl() 328 int64_t Lo, StorageType Storage, in getImpl() 337 StorageType Storage, bool ShouldCreate) { in getImpl() 347 DIFlags Flags, StorageType Storage, in getImpl() 375 StorageType Storage, bool ShouldCreate) { in getImpl() 393 StorageType Storage, bool ShouldCreate) { in getImpl() 472 StorageType Storag in getImpl() [all...] |
H A D | MetadataImpl.h | 28 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl() 42 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl()
|
H A D | Metadata.cpp | 505 MDNode::MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, in MDNode() 815 StorageType Storage, bool ShouldCreate) {
|
/third_party/skia/src/core/ |
H A D | SkCachedData.h | 46 enum StorageType { enum in SkCachedData 58 StorageType fStorageType;
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderLibraryCase.hpp | 66 enum StorageType enum 82 StorageType storageType;
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderFConvertTests.cpp | 72 static constexpr typename T::StorageType kLeadingMantissaBit = (static_cast<typename T::StorageType>(1) << T::MANTISSA_BITS); in getRandomNormal() 77 typename T::StorageType mantissa = static_cast<typename T::StorageType>(rnd.getUint64() & static_cast<deUint64>(kLeadingMantissaBit - 1)); in getRandomNormal() 330 const size_t elementSize = sizeof(typename T::StorageType); in calculate() 374 const size_t elementSize = sizeof(typename T::StorageType); in unpackFloats()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/shaderexecutor/ |
H A D | vktShaderFConvertTests.cpp | 72 static constexpr typename T::StorageType kLeadingMantissaBit = (static_cast<typename T::StorageType>(1) << T::MANTISSA_BITS); in getRandomNormal() 77 typename T::StorageType mantissa = static_cast<typename T::StorageType>(rnd.getUint64() & static_cast<deUint64>(kLeadingMantissaBit - 1)); in getRandomNormal() 330 const size_t elementSize = sizeof(typename T::StorageType); in calculate() 374 const size_t elementSize = sizeof(typename T::StorageType); in unpackFloats()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
H A D | es31fSynchronizationTests.cpp | 140 enum StorageType enum in deqp::gles31::Functional::__anon30920::InterInvocationTestCase 154 InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storage, int flags = 0); 169 const StorageType m_storage; 186 InterInvocationTestCase::InterInvocationTestCase (Context& context, const char* name, const char* desc, StorageType storage, int flags) in InterInvocationTestCase() 467 InvocationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, int flags); 473 InvocationBasicCase::InvocationBasicCase (Context& context, const char* name, const char* desc, StorageType storage, int flags) 530 InvocationWriteReadCase (Context& context, const char* name, const char* desc, StorageType storage, int flags); 535 InvocationWriteReadCase::InvocationWriteReadCase (Context& context, const char* name, const char* desc, StorageType storage, int flags) 588 InvocationReadWriteCase (Context& context, const char* name, const char* desc, StorageType storage, int flags); 593 InvocationReadWriteCase::InvocationReadWriteCase (Context& context, const char* name, const char* desc, StorageType storag [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A D | Metadata.h | 63 enum StorageType { Uniqued, Distinct, Temporary }; enum in llvm::Metadata 79 Metadata(unsigned ID, StorageType Storage) in Metadata() 853 MDNode(LLVMContext &Context, unsigned ID, StorageType Storage, 973 static T *storeImpl(T *N, StorageType Storage, StoreT &Store); 974 template <class T> static T *storeImpl(T *N, StorageType Storage); 1076 MDTuple(LLVMContext &C, StorageType Storage, unsigned Hash, in MDTuple() 1088 StorageType Storage, bool ShouldCreate = true);
|
/third_party/jerryscript/jerry-core/ext/ |
H A D | tracker.h | 22 } StorageType; typedef
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | RDFGraph.h | 698 // Pos-1 is the index in the StorageType object that corresponds to 719 using StorageType = std::vector<value_type>; 721 bool isDelimiter(const StorageType::value_type &P, NodeId N = 0) const { in isDelimiter() 728 StorageType Stack;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | angletypes.h | 488 struct StorageType final 610 using FactorStorage = StorageType<BlendFactorType, angle::EnumSize<BlendFactorType>()>; 611 using EquationStorage = StorageType<BlendEquationType, angle::EnumSize<BlendEquationType>()>; 612 using ColorMaskStorage = StorageType<uint8_t, 16>;
|
/third_party/node/deps/v8/include/v8-include/cppgc/internal/ |
H A D | pointer-policies.h | 236 typename StorageType = DefaultMemberStorage>
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-printer.cc | 2472 template <HeapObjectReferenceType kRefType, typename StorageType> 2473 void TaggedImpl<kRefType, StorageType>::Print() { in Print() 2479 template <HeapObjectReferenceType kRefType, typename StorageType> 2480 void TaggedImpl<kRefType, StorageType>::Print(std::ostream& os) { in Print()
|