Home
last modified time | relevance | path

Searched refs:TypeKind (Results 1 – 25 of 27) sorted by relevance

12

/third_party/skia/src/sksl/
DSkSLMemoryLayout.h52 case Type::TypeKind::kScalar: in alignment()
54 case Type::TypeKind::kVector: in alignment()
56 case Type::TypeKind::kMatrix: in alignment()
59 case Type::TypeKind::kArray: in alignment()
61 case Type::TypeKind::kStruct: { in alignment()
82 case Type::TypeKind::kMatrix: { in stride()
86 case Type::TypeKind::kArray: { in stride()
106 case Type::TypeKind::kScalar: in size()
114 case Type::TypeKind::kVector: in size()
119 case Type::TypeKind::kMatrix: // fall through in size()
[all …]
DSkSLBuiltinTypes.cpp56 , fInvalid(Type::MakeSpecialType("<INVALID>", "O", Type::TypeKind::kOther)) in BuiltinTypes()
57 , fPoison(Type::MakeSpecialType(Compiler::POISON_TAG, "P", Type::TypeKind::kOther)) in BuiltinTypes()
58 , fVoid(Type::MakeSpecialType("void", "v", Type::TypeKind::kVoid)) in BuiltinTypes()
123 , fSampler(Type::MakeSpecialType("sampler", "ss", Type::TypeKind::kSeparateSampler)) in BuiltinTypes()
173 , fSkCaps(Type::MakeSpecialType("$sk_Caps", "O", Type::TypeKind::kOther))
174 , fColorFilter(Type::MakeSpecialType("colorFilter", "CF", Type::TypeKind::kColorFilter))
175 , fShader(Type::MakeSpecialType("shader", "SH", Type::TypeKind::kShader))
176 , fBlender(Type::MakeSpecialType("blender", "B", Type::TypeKind::kBlender)) {}
DSkSLDehydrator.cpp181 case Type::TypeKind::kArray: in write()
187 case Type::TypeKind::kStruct: in write()
/third_party/skia/src/sksl/ir/
DSkSLType.h77 enum class TypeKind : int8_t { enum
141 Type::TypeKind typeKind);
225 TypeKind typeKind() const { in typeKind()
297 case TypeKind::kBlender: in isOpaque()
298 case TypeKind::kColorFilter: in isOpaque()
299 case TypeKind::kOther: in isOpaque()
300 case TypeKind::kSampler: in isOpaque()
301 case TypeKind::kSeparateSampler: in isOpaque()
302 case TypeKind::kShader: in isOpaque()
303 case TypeKind::kTexture: in isOpaque()
[all …]
DSkSLType.cpp27 inline static constexpr TypeKind kTypeKind = TypeKind::kArray;
77 inline static constexpr TypeKind kTypeKind = TypeKind::kGeneric;
95 inline static constexpr TypeKind kTypeKind = TypeKind::kLiteral;
148 inline static constexpr TypeKind kTypeKind = TypeKind::kScalar;
199 inline static constexpr TypeKind kTypeKind = TypeKind::kMatrix;
249 inline static constexpr TypeKind kTypeKind = TypeKind::kTexture;
292 inline static constexpr TypeKind kTypeKind = TypeKind::kSampler;
330 inline static constexpr TypeKind kTypeKind = TypeKind::kStruct;
372 inline static constexpr TypeKind kTypeKind = TypeKind::kVector;
447 Type::TypeKind typeKind) { in MakeSpecialType()
[all …]
DSkSLChildCall.cpp51 case Type::TypeKind::kBlender: return { half4, half4 }; in call_signature_is_valid()
52 case Type::TypeKind::kColorFilter: return { half4 }; in call_signature_is_valid()
53 case Type::TypeKind::kShader: return { float2 }; in call_signature_is_valid()
DSkSLFunctionDeclaration.cpp411 if (parameterType.typeKind() != Type::TypeKind::kGeneric) { in determineFinalTypes()
435 if (returnType.typeKind() == Type::TypeKind::kGeneric) { in determineFinalTypes()
/third_party/googletest/googlemock/include/gmock/internal/
Dgmock-internal-utils.h100 enum TypeKind { enum
141 static_cast< ::testing::internal::TypeKind>( \
153 template <TypeKind kFromKind, typename From, TypeKind kToKind, typename To>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DTypeRecordMapping.cpp188 assert(!TypeKind.hasValue() && "Already in a type mapping!"); in visitTypeBegin()
199 TypeKind = CVR.kind(); in visitTypeBegin()
220 assert(TypeKind.hasValue() && "Not in a type mapping!"); in visitTypeEnd()
225 TypeKind.reset(); in visitTypeEnd()
230 assert(TypeKind.hasValue() && "Not in a type mapping!"); in visitMemberBegin()
256 assert(TypeKind.hasValue() && "Not in a type mapping!"); in visitMemberEnd()
637 const bool IsFromOverloadList = (TypeKind == LF_METHODLIST); in visitKnownMember()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.h127 enum TypeKind : uint8_t { enum
515 unsigned AttributeEncodingVersion(TypeKind E);
529 unsigned AttributeEncodingVendor(TypeKind E);
/third_party/flutter/skia/src/sksl/
DSkSLJIT.h126 enum TypeKind { enum
151 TypeKind typeKind(const Type& type);
DSkSLJIT.cpp470 JIT::TypeKind JIT::typeKind(const Type& type) { in typeKind()
891 TypeKind from = this->typeKind(c.fArguments[0]->fType); in compileConstructor()
892 TypeKind to = this->typeKind(c.fType); in compileConstructor()
1509 TypeKind from = this->typeKind(c.fArguments[0]->fType); in compileVectorConstructor()
1510 TypeKind to = this->typeKind(c.fType); in compileVectorConstructor()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecordMapping.h46 Optional<TypeLeafKind> TypeKind;
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp83 case Type::TypeKind::kVector: { in getTypeName()
104 case Type::TypeKind::kMatrix: { in getTypeName()
120 case Type::TypeKind::kArray: { in getTypeName()
124 case Type::TypeKind::kScalar: { in getTypeName()
1156 case Type::TypeKind::kScalar: in getTypePrecision()
1172 case Type::TypeKind::kVector: // fall through in getTypePrecision()
1173 case Type::TypeKind::kMatrix: in getTypePrecision()
1174 case Type::TypeKind::kArray: in getTypePrecision()
DSkSLVMCodeGenerator.cpp339 if (type.typeKind() == Type::TypeKind::kMatrix || type.typeKind() == Type::TypeKind::kVector) { in base_number_kind()
506 case Type::TypeKind::kArray: { in addDebugSlotInfo()
516 case Type::TypeKind::kStruct: { in addDebugSlotInfo()
528 case Type::TypeKind::kScalar: in addDebugSlotInfo()
529 case Type::TypeKind::kVector: in addDebugSlotInfo()
530 case Type::TypeKind::kMatrix: { in addDebugSlotInfo()
1051 case Type::TypeKind::kShader: { in writeChildCall()
1058 case Type::TypeKind::kColorFilter: { in writeChildCall()
1066 case Type::TypeKind::kBlender: { in writeChildCall()
1956 case Type::TypeKind::kStruct: in gather_uniforms()
[all …]
DSkSLMetalCodeGenerator.cpp98 case Type::TypeKind::kArray: in typeName()
103 case Type::TypeKind::kVector: in typeName()
106 case Type::TypeKind::kMatrix: in typeName()
110 case Type::TypeKind::kSampler: in typeName()
977 case Type::TypeKind::kScalar: { in assembleMatrixFromExpressions()
983 case Type::TypeKind::kVector: { in assembleMatrixFromExpressions()
992 case Type::TypeKind::kMatrix: { in assembleMatrixFromExpressions()
1329 var.type().typeKind() != Type::TypeKind::kSampler) { in writeVariableReference()
1829 if (var.var().type().typeKind() == Type::TypeKind::kSampler) { in writeFunctionDeclaration()
2275 var.type().typeKind() != Type::TypeKind::kSampler) { in writeUniformStruct()
[all …]
DSkSLPipelineStageCodeGenerator.cpp176 case Type::TypeKind::kShader: { in writeChildCall()
182 case Type::TypeKind::kColorFilter: { in writeChildCall()
189 case Type::TypeKind::kBlender: { in writeChildCall()
DSkSLSPIRVCodeGenerator.cpp587 case Type::TypeKind::kScalar: in getType()
600 case Type::TypeKind::kVector: in getType()
605 case Type::TypeKind::kMatrix: in getType()
613 case Type::TypeKind::kStruct: in getType()
616 case Type::TypeKind::kArray: { in getType()
643 case Type::TypeKind::kSampler: { in getType()
656 case Type::TypeKind::kSeparateSampler: { in getType()
660 case Type::TypeKind::kTexture: { in getType()
685 SkASSERT(type.typeKind() == Type::TypeKind::kSampler); in getImageType()
1836 if (var.type().typeKind() == Type::TypeKind::kSampler || in get_storage_class()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfCompileUnit.h133 BaseTypeRef(unsigned BitSize, dwarf::TypeKind Encoding) : in BaseTypeRef()
136 dwarf::TypeKind Encoding;
DDwarfExpression.cpp451 dwarf::TypeKind Encoding = static_cast<dwarf::TypeKind>(Op->getArg(1)); in addExpression()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DDwarf.cpp210 unsigned llvm::dwarf::AttributeEncodingVersion(dwarf::TypeKind ATE) { in AttributeEncodingVersion()
221 unsigned llvm::dwarf::AttributeEncodingVendor(dwarf::TypeKind ATE) { in AttributeEncodingVendor()
/third_party/mesa3d/src/gtest/include/gtest/
Dgtest-printers.h134 enum TypeKind { enum
149 template <typename T, TypeKind kTypeKind>
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DPNaClTranslator.cpp71 enum TypeKind { Undefined, Simple, FuncSig }; enum in __anona889abdc0111::ExtendedType
78 ExtendedType::TypeKind getKind() const { return Kind; } in getKind()
100 ExtendedType::TypeKind Kind = Undefined;
110 Ice::Ostream &operator<<(Ice::Ostream &Stream, ExtendedType::TypeKind Kind) { in operator <<()
456 ExtendedType::TypeKind WantedKind) { in getTypeByIDAsKind()
567 ExtendedType::TypeKind WantedType);
603 ExtendedType::TypeKind WantedType) { in reportBadTypeIDAs()
/third_party/skia/src/core/
DSkRuntimeEffect.cpp136 case SkSL::Type::TypeKind::kBlender: return ChildType::kBlender; in child_type()
137 case SkSL::Type::TypeKind::kColorFilter: return ChildType::kColorFilter; in child_type()
138 case SkSL::Type::TypeKind::kShader: return ChildType::kShader; in child_type()
/third_party/mesa3d/docs/relnotes/
D18.0.0.rst302 [8], int, llvm::dwarf::TypeKind)’

12