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/codegen/ |
D | SkSLVMCodeGenerator.cpp | 478 const Type& lType = left.type(); in writeBinaryExpression() local 480 bool lVecOrMtx = (lType.isVector() || lType.isMatrix()); in writeBinaryExpression() 486 Type::NumberKind nk = base_number_kind(lType); in writeBinaryExpression() 521 && lVecOrMtx && rVecOrMtx && !(lType.isVector() && rType.isVector())) { in writeBinaryExpression() 524 lCols = lType.columns(), in writeBinaryExpression() 525 lRows = lType.rows(); in writeBinaryExpression()
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | GlslangToSpv.cpp | 2612 spv::Id lType = builder.getContainedTypeId(resultTypeId, c); in createCompositeConstruct() local 2614 if (lType != rType) { in createCompositeConstruct() 2616 constituent = builder.createUnaryOp(spv::OpCopyLogical, lType, constituent); in createCompositeConstruct() 2624 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 2634 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 4682 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue)); in multiTypeStore() local 4683 if (lType == rType) { in multiTypeStore() 4698 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0); in multiTypeStore() 4700 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue); in multiTypeStore()
|
/external/deqp-deps/glslang/SPIRV/ |
D | GlslangToSpv.cpp | 2424 spv::Id lType = builder.getContainedTypeId(resultTypeId, c); in createCompositeConstruct() local 2426 if (lType != rType) { in createCompositeConstruct() 2428 constituent = builder.createUnaryOp(spv::OpCopyLogical, lType, constituent); in createCompositeConstruct() 2436 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 2446 constituents[c] = createCompositeConstruct(lType, rTypeConstituents); in createCompositeConstruct() 4349 spv::Id lType = builder.getContainedTypeId(builder.getTypeId(lValue)); in multiTypeStore() local 4350 if (lType == rType) { in multiTypeStore() 4365 bool lBool = builder.containsType(lType, spv::OpTypeBool, 0); in multiTypeStore() 4367 spv::Id logicalCopy = builder.createUnaryOp(spv::OpCopyLogical, lType, rValue); in multiTypeStore()
|