/third_party/vk-gl-cts/framework/referencerenderer/ |
D | rrPrimitiveTypes.hpp | 53 …TYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 54 …E_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 55 …PE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef 56 …PRIMITIVETYPE_LINES> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 57 …MITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 58 …MITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line BaseType; typedef pa::Line… typedef 59 …IMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point BaseType; typedef pa::Poin… typedef 60 …LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::Line… typedef 61 …_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line BaseType; typedef pa::Line… typedef 62 …_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triangle BaseType; typedef pa::Tria… typedef [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
D | vktSpvAsmTrinaryMinMaxTests.cpp | 67 enum class BaseType enum 95 BaseType baseType; 239 BaseType type; 275 { { BaseType::TYPE_INT, TypeSize::SIZE_8BIT, OperationType::MIN }, { genInt8, minInt8 } }, 276 { { BaseType::TYPE_INT, TypeSize::SIZE_8BIT, OperationType::MAX }, { genInt8, maxInt8 } }, 277 { { BaseType::TYPE_INT, TypeSize::SIZE_8BIT, OperationType::MID }, { genInt8, midInt8 } }, 278 { { BaseType::TYPE_INT, TypeSize::SIZE_16BIT, OperationType::MIN }, { genInt16, minInt16 } }, 279 { { BaseType::TYPE_INT, TypeSize::SIZE_16BIT, OperationType::MAX }, { genInt16, maxInt16 } }, 280 { { BaseType::TYPE_INT, TypeSize::SIZE_16BIT, OperationType::MID }, { genInt16, midInt16 } }, 281 { { BaseType::TYPE_INT, TypeSize::SIZE_32BIT, OperationType::MIN }, { genInt32, minInt32 } }, [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | circularConstraintYieldsAppropriateError.symbols | 3 class BaseType<T> { 4 >BaseType : Symbol(BaseType, Decl(circularConstraintYieldsAppropriateError.ts, 0, 0)) 8 >bar : Symbol(BaseType.bar, Decl(circularConstraintYieldsAppropriateError.ts, 1, 19)) 12 class NextType<C extends { someProp: any }, T = C['someProp']> extends BaseType<T> { 18 >BaseType : Symbol(BaseType, Decl(circularConstraintYieldsAppropriateError.ts, 0, 0)) 44 >foo.bar : Symbol(BaseType.bar, Decl(circularConstraintYieldsAppropriateError.ts, 1, 19)) 46 >bar : Symbol(BaseType.bar, Decl(circularConstraintYieldsAppropriateError.ts, 1, 19))
|
D | circularConstraintYieldsAppropriateError.types | 3 class BaseType<T> { 4 >BaseType : BaseType<T> 10 class NextType<C extends { someProp: any }, T = C['someProp']> extends BaseType<T> { 13 >BaseType : BaseType<T>
|
D | circularConstraintYieldsAppropriateError.js | 3 class BaseType<T> { class 7 class NextType<C extends { someProp: any }, T = C['someProp']> extends BaseType<T> { 37 var BaseType = /** @class */ (function () { 38 function BaseType() { class in BaseType 40 return BaseType; 48 }(BaseType));
|
D | inferenceErasedSignatures.symbols | 96 interface BaseType<T1, T2> { 97 >BaseType : Symbol(BaseType, Decl(inferenceErasedSignatures.ts, 24, 35)) 102 >set : Symbol(BaseType.set, Decl(inferenceErasedSignatures.ts, 28, 29)) 111 >useT1 : Symbol(BaseType.useT1, Decl(inferenceErasedSignatures.ts, 29, 63)) 116 >useT2 : Symbol(BaseType.useT2, Decl(inferenceErasedSignatures.ts, 30, 23)) 121 >unrelatedButSomehowRelevant : Symbol(BaseType.unrelatedButSomehowRelevant, Decl(inferenceErasedSig… 125 interface InheritedType extends BaseType<number, boolean> { 127 >BaseType : Symbol(BaseType, Decl(inferenceErasedSignatures.ts, 24, 35)) 161 type GetT1<T> = T extends BaseType<infer U, any> ? U : never; 165 >BaseType : Symbol(BaseType, Decl(inferenceErasedSignatures.ts, 24, 35))
|
D | inferenceErasedSignatures.js | 30 interface BaseType<T1, T2> { 37 interface InheritedType extends BaseType<number, boolean> { 50 type GetT1<T> = T extends BaseType<infer U, any> ? U : never;
|
/third_party/skia/experimental/graphite/src/ |
D | UniformManager.cpp | 25 template<typename BaseType> 27 return sizeof(BaseType) * vecLength; in tight_vec_size() 65 template<typename BaseType, int RowsOrVecLength = 1, int Cols = 1> 79 return Rules140<BaseType, RowsOrVecLength>::Stride(1); in Stride() 83 return RowsOrVecLength * sizeof(BaseType); in Stride() 92 size_t kElementAlignment = tight_vec_size<BaseType>(n); in Stride() 105 template<typename BaseType, int RowsOrVecLength = 1, int Cols = 1> 115 return Rules430<BaseType, RowsOrVecLength>::Stride(1); in Stride() 119 return RowsOrVecLength * sizeof(BaseType); in Stride() 122 return tight_vec_size<BaseType>(RowsOrVecLength == 3 ? 4 : RowsOrVecLength); in Stride() [all …]
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | SynchronizedValue.h | 55 using BaseType = ConstStrictLockPtr<T, Lockable>; 58 StrictLockPtr(T &value, Lockable &mutex) : BaseType(value, mutex) {} in StrictLockPtr() 60 : BaseType(value, mutex, std::adopt_lock) in StrictLockPtr() 64 : BaseType(std::move(static_cast<BaseType &&>(other))) in StrictLockPtr() 92 using BaseType = std::unique_lock<Lockable>; 98 ConstUniqueLockPtr(const T &value, Lockable &mutex) : BaseType(mutex), mValue(value) {} 100 : BaseType(mutex, std::adopt_lock), mValue(value) 103 : BaseType(mutex, std::defer_lock), mValue(value) 106 : BaseType(mutex, std::try_to_lock), mValue(value) 110 : BaseType(std::move(static_cast<BaseType &&>(other))), mValue(other.mValue) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86InstrBuilder.h | 46 } BaseType; member 60 : BaseType(RegBase), Scale(1), IndexReg(0), Disp(0), GV(nullptr), in X86AddressMode() 68 if (BaseType == X86AddressMode::RegBase) in getFullAddress() 72 assert(BaseType == X86AddressMode::FrameIndexBase); in getFullAddress() 97 AM.BaseType = X86AddressMode::RegBase; in getAddressFromInstr() 100 AM.BaseType = X86AddressMode::FrameIndexBase; in getAddressFromInstr() 176 if (AM.BaseType == X86AddressMode::RegBase) in addFullAddress() 179 assert(AM.BaseType == X86AddressMode::FrameIndexBase); in addFullAddress()
|
/third_party/gn/src/gn/ |
D | hash_table_base_unittest.cc | 85 using BaseType = HashTableBase<TestHashNode>; typedef in TestHashTable 86 using Node = BaseType::Node; 91 BaseType& asBaseType() { return *this; } in asBaseType() 92 const BaseType& asBaseType() const { return *this; } in asBaseType() 101 TestHashTable(const TestHashTable& other) : BaseType(other) { in TestHashTable() 116 TestHashTable(TestHashTable&& other) noexcept : BaseType(std::move(other)) {} in TestHashTable() 179 struct const_iterator : public BaseType::NodeIterator { 181 return (this->BaseType::NodeIterator::operator*()).int_ptr->x(); in operator *() 186 const_iterator begin() const { return {BaseType::NodeBegin()}; } in begin() 188 const_iterator end() const { return {BaseType::NodeEnd()}; } in end()
|
D | string_atom.cc | 75 using BaseType = HashTableBase<KeyNode>; typedef 76 using Node = BaseType::Node; 93 return BaseType::NodeLookup(hash, [hash, &str](const Node* node) { in Lookup() 104 BaseType::UpdateAfterInsert(); in Insert()
|
D | unique_vector.h | 50 using BaseType = UniqueVectorHashTableBase; 51 using Node = BaseType::Node; 62 return BaseType::NodeLookup(hash32, [&](const Node* node) { in Lookup() 71 BaseType::UpdateAfterInsert(); in Insert()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | vertex_pulling.cc | 39 enum class BaseType { enum 50 std::ostream& operator<<(std::ostream& out, BaseType format) { in operator <<() 52 case BaseType::kInvalid: in operator <<() 54 case BaseType::kU32: in operator <<() 56 case BaseType::kI32: in operator <<() 58 case BaseType::kF32: in operator <<() 136 BaseType base_type; 142 return {BaseType::kI32, 1}; in DataTypeOf() 145 return {BaseType::kU32, 1}; in DataTypeOf() 148 return {BaseType::kF32, 1}; in DataTypeOf() [all …]
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | SpirvUtils.h | 42 spirv_cross::SPIRType::BaseType spirvBaseType); 43 SampleTypeBit SpirvBaseTypeToSampleTypeBit(spirv_cross::SPIRType::BaseType spirvBaseType); 47 spirv_cross::SPIRType::BaseType spirvBaseType);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | SafepointIRVerifier.cpp | 315 enum BaseType { enum 327 static enum BaseType getBaseType(const Value *Val) { in getBaseType() 373 return BaseType::NonConstant; in getBaseType() 377 return isExclusivelyDerivedFromNull ? BaseType::ExclusivelyNull in getBaseType() 378 : BaseType::ExclusivelySomeConstant; in getBaseType() 382 return getBaseType(V) == BaseType::NonConstant; in isNotExclusivelyConstantDerived() 813 enum BaseType baseTyLHS = getBaseType(LHS), in verifyInstruction() 834 if ((baseTyLHS == BaseType::ExclusivelySomeConstant && in verifyInstruction() 835 baseTyRHS == BaseType::NonConstant) || in verifyInstruction() 836 (baseTyLHS == BaseType::NonConstant && in verifyInstruction() [all …]
|
D | MDBuilder.cpp | 237 MDNode *MDBuilder::createTBAAStructTagNode(MDNode *BaseType, MDNode *AccessType, in createTBAAStructTagNode() argument 242 return MDNode::get(Context, {BaseType, AccessType, createConstant(Off), in createTBAAStructTagNode() 245 return MDNode::get(Context, {BaseType, AccessType, createConstant(Off)}); in createTBAAStructTagNode() 264 MDNode *MDBuilder::createTBAAAccessTag(MDNode *BaseType, MDNode *AccessType, in createTBAAAccessTag() argument 272 return MDNode::get(Context, {BaseType, AccessType, OffsetNode, SizeNode, in createTBAAAccessTag() 275 return MDNode::get(Context, {BaseType, AccessType, OffsetNode, SizeNode}); in createTBAAAccessTag() 279 MDNode *BaseType = cast<MDNode>(Tag->getOperand(0)); in createMutableTBAAAccessTag() local 298 return createTBAAStructTagNode(BaseType, AccessType, Offset); in createMutableTBAAAccessTag() 302 return createTBAAAccessTag(BaseType, AccessType, Offset, Size); in createMutableTBAAAccessTag()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
D | MSP430ISelDAGToDAG.cpp | 40 } BaseType = RegBase; member 64 if (BaseType == RegBase && Base.Reg.getNode() != nullptr) { in dump() 67 } else if (BaseType == FrameIndexBase) { in dump() 169 if (AM.BaseType != MSP430ISelAddressMode::RegBase || AM.Base.Reg.getNode()) { in MatchAddressBase() 175 AM.BaseType = MSP430ISelAddressMode::RegBase; in MatchAddressBase() 197 if (AM.BaseType == MSP430ISelAddressMode::RegBase in MatchAddress() 199 AM.BaseType = MSP430ISelAddressMode::FrameIndexBase; in MatchAddress() 251 if (AM.BaseType == MSP430ISelAddressMode::RegBase) in SelectAddr() 255 Base = (AM.BaseType == MSP430ISelAddressMode::FrameIndexBase) in SelectAddr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TypeBasedAliasAnalysis.cpp | 567 static bool hasField(TBAAStructTypeNode BaseType, in hasField() argument 569 for (unsigned I = 0, E = BaseType.getNumFields(); I != E; ++I) { in hasField() 570 TBAAStructTypeNode T = BaseType.getFieldType(I); in hasField() 605 TBAAStructTypeNode BaseType(BaseTag.getBaseType()); in mayBeAccessToSubobjectOf() local 611 if (!BaseType.getNode()) { in mayBeAccessToSubobjectOf() 616 if (BaseType.getNode() == SubobjectTag.getBaseType()) { in mayBeAccessToSubobjectOf() 627 if (NewFormat && BaseType.getNode() == BaseTag.getAccessType()) in mayBeAccessToSubobjectOf() 632 BaseType = BaseType.getField(OffsetInBase); in mayBeAccessToSubobjectOf() 641 if (hasField(BaseType, FieldType)) { in mayBeAccessToSubobjectOf()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceOperand.h | 459 using BaseType = uint32_t; 473 static RegNumT fromInt(BaseType Value) { return RegNumT(Value); } in fromInt() 478 static RegNumT fixme(BaseType Value) { return RegNumT(Value); } in fixme() 481 static void setLimit(BaseType Value) { in setLimit() 489 enum : BaseType { NoRegisterValue = std::numeric_limits<BaseType>::max() }; 495 BaseType Value = NoRegisterValue; 496 static BaseType Limit; 498 RegNumT(BaseType Value) : Value(Value) { validate(Value); } in RegNumT() 500 static void validate(BaseType Value) { in validate() 573 using BaseType = uint32_t; [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | inferenceErasedSignatures.ts | 32 interface BaseType<T1, T2> { interface 39 interface InheritedType extends BaseType<number, boolean> { 52 type GetT1<T> = T extends BaseType<infer U, any> ? U : never;
|
D | circularConstraintYieldsAppropriateError.ts | 2 class BaseType<T> { class 6 class NextType<C extends { someProp: any }, T = C['someProp']> extends BaseType<T> {
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/ |
D | vktSampleVerifierUtil.cpp | 750 template <typename BaseType> 751 deUint64 unpackBits (const BaseType pack, in unpackBits() 755 DE_ASSERT(bitOffset + numBits <= 8 * (int) sizeof(BaseType)); in unpackBits() 757 const BaseType mask = (BaseType) (((BaseType) 1 << (BaseType) numBits) - (BaseType) 1); in unpackBits() 759 return mask & (pack >> (BaseType) (8 * (int) sizeof(BaseType) - bitOffset - numBits)); in unpackBits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugHandlerBase.cpp | 156 DIType *BaseType = DDTy->getBaseType(); in getBaseTypeSize() local 158 if (!BaseType) in getBaseTypeSize() 164 if (BaseType->getTag() == dwarf::DW_TAG_reference_type || in getBaseTypeSize() 165 BaseType->getTag() == dwarf::DW_TAG_rvalue_reference_type) in getBaseTypeSize() 168 return getBaseTypeSize(BaseType); in getBaseTypeSize()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_glsl.hpp | 640 … SPIRType::BaseType input_type, SPIRType::BaseType expected_result_type); 642 SPIRType::BaseType input_type, bool skip_cast_if_equal_type); 644 const char *op, SPIRType::BaseType input_type); 646 const char *op, SPIRType::BaseType input_type); 648 … uint32_t op2, const char *op, SPIRType::BaseType expected_result_type, 649 … SPIRType::BaseType input_type0, SPIRType::BaseType input_type1, 650 SPIRType::BaseType input_type2); 652 uint32_t op3, const char *op, SPIRType::BaseType offset_count_type); 658 bool negate, SPIRType::BaseType expected_type); 660 SPIRType::BaseType input_type, bool skip_cast_if_equal_type); [all …]
|