Home
last modified time | relevance | path

Searched refs:canImplicitlyPromote (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp1124 if (! canImplicitlyPromote(node->getBasicType(), type.getBasicType(), op)) in addConversion()
1617 bool TIntermediate::canImplicitlyPromote(TBasicType from, TBasicType to, TOperator op) const in canImplicitlyPromote() function in glslang::TIntermediate
1931 if (canImplicitlyPromote(type1, type0, op)) { in getConversionDestinationType()
1934 } else if (canImplicitlyPromote(type0, type1, op)) { in getConversionDestinationType()
1941 if ((type0 == EbtDouble && canImplicitlyPromote(type1, EbtDouble, op)) || in getConversionDestinationType()
1942 (type1 == EbtDouble && canImplicitlyPromote(type0, EbtDouble, op)) ) { in getConversionDestinationType()
1945 } else if ((type0 == EbtFloat && canImplicitlyPromote(type1, EbtFloat, op)) || in getConversionDestinationType()
1946 (type1 == EbtFloat && canImplicitlyPromote(type0, EbtFloat, op)) ) { in getConversionDestinationType()
1949 } else if ((type0 == EbtFloat16 && canImplicitlyPromote(type1, EbtFloat16, op)) || in getConversionDestinationType()
1950 (type1 == EbtFloat16 && canImplicitlyPromote(type0, EbtFloat16, op)) ) { in getConversionDestinationType()
[all …]
Dlocalintermediate.h478 bool canImplicitlyPromote(TBasicType from, TBasicType to, TOperator op = EOpNull) const;
DParseHelper.cpp6372 …if (! intermediate.canImplicitlyPromote(call[i].type->getBasicType(), function[i].type->getBasicTy… in findFunction120()
6376 …if (! intermediate.canImplicitlyPromote(function[i].type->getBasicType(), call[i].type->getBasicTy… in findFunction120()
6469 return intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType()); in findFunction400()
6545 return intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType()); in findFunctionExplicitTypes()
7082 if (destType != initType && !intermediate.canImplicitlyPromote(initType, destType)) { in convertInitializerList()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.cpp7553 … if (! intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType(), EOpFunctionCall)) in findFunction()