Home
last modified time | relevance | path

Searched refs:secondarySize (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/OpenGL/compiler/
DTypes.h244 …primarySize(s0), secondarySize(s1), array(false), arraySize(0), maxArraySize(0), arrayInformationT… in type()
250 …primarySize(s0), secondarySize(s1), array(a), arraySize(0), maxArraySize(0), arrayInformationType(… in type()
257 …primarySize(1), secondarySize(1), array(false), arraySize(0), maxArraySize(0), arrayInformationTyp… in type()
266 …primarySize(1), secondarySize(1), array(arraySizeIn > 0), arraySize(arraySizeIn), maxArraySize(0),… in TType()
313 return primarySize * secondarySize; in getElementSize()
377 return isMatrix() ? secondarySize : primarySize; in registerSize()
380 bool isMatrix() const { return secondarySize > 1; } in isMatrix()
381 void setSecondarySize(int s1) { secondarySize = s1; } in setSecondarySize()
382 int getSecondarySize() const { return secondarySize; } in getSecondarySize()
421 secondarySize == right.secondarySize && in sameElementType()
[all …]
DCompiler.cpp174 integer.secondarySize = 1; in InitBuiltInSymbolTable()
180 floatingPoint.secondarySize = 1; in InitBuiltInSymbolTable()
DSymbolTable.cpp38 …primarySize(p.primarySize), secondarySize(p.secondarySize), array(p.array), arraySize(p.arraySize)… in TType()
DintermOut.cpp56 …stream << static_cast<int>(primarySize) << "X" << static_cast<int>(secondarySize) << " matrix of "; in getCompleteString()
DSymbolTable.h482 if (type.primarySize > 1 || type.secondarySize > 1 || type.array) in setDefaultPrecision()
DIntermediate.cpp1141 const int secondarySize = std::max( in promote() local
1144 static_cast<unsigned char>(primarySize), static_cast<unsigned char>(secondarySize))); in promote()
DParseHelper.cpp673 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) { in boolErrorCheck()
3012 type->setSecondarySize(typeSpecifier.secondarySize); in addStructDeclaratorList()