Searched refs:lType (Results 1 – 5 of 5) sorted by relevance
/external/angle/src/compiler/translator/tree_ops/ |
D | EmulatePrecision.h | 46 TypePair(const char *l, const char *r) : lType(l), rType(r) {} in TypePair() 48 const char *lType; member 56 if (l.lType == r.lType) in operator() 58 return l.lType < r.lType; in operator()
|
D | EmulatePrecision.cpp | 31 const char *lType, 145 const char *lType, in writeCompoundAssignmentHelper() argument 150 std::string lTypeStr = getTypeString(lType); in writeCompoundAssignmentHelper() 677 roundingHelperWriter->writeCompoundAssignmentHelper(sink, it->lType, it->rType, "+", "add"); in writeEmulationHelpers() 679 roundingHelperWriter->writeCompoundAssignmentHelper(sink, it->lType, it->rType, "-", "sub"); in writeEmulationHelpers() 681 roundingHelperWriter->writeCompoundAssignmentHelper(sink, it->lType, it->rType, "/", "div"); in writeEmulationHelpers() 683 roundingHelperWriter->writeCompoundAssignmentHelper(sink, it->lType, it->rType, "*", "mul"); in writeEmulationHelpers()
|
/external/skia/src/sksl/ |
D | SkSLByteCodeGenerator.cpp | 497 const Type& lType = b.fLeft->fType; in writeBinaryExpression() local 499 bool lVecOrMtx = (lType.kind() == Type::kVector_Kind || lType.kind() == Type::kMatrix_Kind); in writeBinaryExpression() 505 operandType = &lType; in writeBinaryExpression() 534 SkDEBUGCODE(TypeCategory tc = type_category(lType)); in writeBinaryExpression() 535 int count = std::max(SlotCount(lType), SlotCount(rType)); in writeBinaryExpression() 596 this->write(type_category(lType) == TypeCategory::kSigned in writeBinaryExpression() 607 if (lType.columns() > 1 && rType.columns() > 1 && in writeBinaryExpression() 608 (lType.rows() > 1 || rType.rows() > 1)) { in writeBinaryExpression() 613 lCols = lType.columns(), in writeBinaryExpression() 614 lRows = lType.rows(); in writeBinaryExpression()
|
/external/angle/third_party/glslang/src/SPIRV/ |
D | GlslangToSpv.cpp | 2324 spv::Id lType = builder.getContainedTypeId(resultTypeId, c); in createCompositeConstruct() local 2326 if (lType != rType) { in createCompositeConstruct() 2328 constituent = builder.createUnaryOp(spv::OpCopyLogical, lType, constituent); in createCompositeConstruct() 2336 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 2346 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 4160 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue)); in multiTypeStore() local 4161 if (lType == rType) { in multiTypeStore() 4176 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0); in multiTypeStore() 4178 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue); in multiTypeStore()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 2324 spv::Id lType = builder.getContainedTypeId(resultTypeId, c); in createCompositeConstruct() local 2326 if (lType != rType) { in createCompositeConstruct() 2328 constituent = builder.createUnaryOp(spv::OpCopyLogical, lType, constituent); in createCompositeConstruct() 2336 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 2346 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 4160 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue)); in multiTypeStore() local 4161 if (lType == rType) { in multiTypeStore() 4176 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0); in multiTypeStore() 4178 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue); in multiTypeStore()
|