Home
last modified time | relevance | path

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

/external/swiftshader/src/OpenGL/compiler/
DTypes.h246 …primarySize(s0), secondarySize(s1), array(false), arraySize(0), maxArraySize(0), arrayInformationT… in type()
253 …primarySize(s0), secondarySize(s1), array(a), arraySize(0), maxArraySize(0), arrayInformationType(… in type()
260 …primarySize(1), secondarySize(1), array(false), arraySize(0), maxArraySize(0), arrayInformationTyp… in type()
268 …primarySize(1), secondarySize(1), array(arraySizeIn > 0), arraySize(arraySizeIn), maxArraySize(0),… in TType()
330 return primarySize * secondarySize; in getElementSize()
424 return isMatrix() ? secondarySize : primarySize; in registerSize()
427 bool isMatrix() const { return secondarySize > 1; } in isMatrix()
428 void setSecondarySize(int s1) { secondarySize = s1; } in setSecondarySize()
429 int getSecondarySize() const { return secondarySize; } in getSecondarySize()
468 secondarySize == right.secondarySize && in sameElementType()
[all …]
DCompiler.cpp175 integer.secondarySize = 1; in InitBuiltInSymbolTable()
181 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.h467 if (type.primarySize > 1 || type.secondarySize > 1 || type.array) in setDefaultPrecision()
DIntermediate.cpp1144 const int secondarySize = std::max( in promote() local
1147 static_cast<unsigned char>(primarySize), static_cast<unsigned char>(secondarySize))); in promote()
DParseHelper.cpp633 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) { in boolErrorCheck()
2942 type->setSecondarySize(typeSpecifier.secondarySize); in addStructDeclaratorList()