Searched defs:curType (Results 1 - 10 of 10) sorted by relevance

/external/deqp/framework/opengl/
H A DgluVarTypeUtil.cpp107 VarType curType = getVarType(type, path); local
113 TCU_CHECK_MSG(curType.isStructType(), "Invalid field selector");
118 for (; ndx < curType.getStructPtr()->getNumMembers(); ndx++)
120 if (memberName == curType.getStructPtr()->getMember(ndx).getName())
123 TCU_CHECK_MSG(ndx < curType.getStructPtr()->getNumMembers(), "Member not found in type");
135 if (curType.isArrayType())
137 TCU_CHECK(de::inBounds(ndx, 0, curType.getArraySize()));
140 else if (curType.isBasicType() && isDataTypeMatrix(curType.getBasicType()))
142 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeMatrixNumColumns(curType
164 const VarType* curType = &format.type; local
[all...]
H A DgluVarType.cpp359 const VarType* curType = &type; local
363 while (curType->isArrayType())
365 arraySizes.push_back(curType->getArraySize());
366 curType = &curType->getElementType();
369 if (curType->isBasicType())
371 if (curType->getPrecision() != PRECISION_LAST)
372 str << glu::getPrecisionName(curType->getPrecision()) << " ";
373 str << glu::getDataTypeName(curType->getBasicType());
375 else if (curType
[all...]
H A DgluVarTypeUtil.hpp286 VarType curType = getVarType(*m_type, m_path); local
288 if (IsExpanded()(curType))
292 if (curType.isBasicType())
294 DataType basicType = curType.getBasicType();
303 else if (curType.isArrayType())
305 else if (curType.isStructType())
315 const VarType* curType = &type; local
323 if (!curType->isStructType() || !de::inBounds(pathIter->index, 0, curType->getStructPtr()->getNumMembers()))
326 curType
378 const VarType* curType = &type; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DFloatingObjects.cpp217 FloatingObject::Type curType = floatingObject->type(); local
219 if (curType & FloatingObject::FloatLeft)
221 if (curType & FloatingObject::FloatRight)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp1218 Type *curType; local
1222 curType = *eib;
1223 size += getTypeSize(curType, dereferencePtr);
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILPeepholeOptimizer.cpp1218 Type *curType; local
1222 curType = *eib;
1223 size += getTypeSize(curType, dereferencePtr);
/external/deqp/modules/glshared/
H A DglsUniformBlockCase.cpp865 const VarType* curType = &type; local
866 while (curType->isArrayType())
868 arraySizes.push_back(curType->getArraySize());
869 curType = &curType->getElementType();
872 if (curType->isBasicType())
874 if ((curType->getFlags() & PRECISION_MASK) != 0)
875 src << PrecisionFlagsFmt(curType->getFlags() & PRECISION_MASK) << " ";
876 src << glu::getDataTypeName(curType->getBasicType());
880 DE_ASSERT(curType
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp1414 DataType curType = s_selectionInfo[typeNdx].type; local
1416 bool isBoolCase = isDataTypeBoolOrBVec(curType);
1417 bool isFloatCase = isDataTypeFloatOrVec(curType);
1418 bool isIntCase = isDataTypeIntOrIVec(curType);
1419 const char* dataTypeStr = getDataTypeName(curType);
1443 shaderSpec.output = curType;
1451 shaderSpec.inputs[1] = ShaderValue(curType, rangeMin, rangeMax);
1452 shaderSpec.inputs[2] = ShaderValue(curType, rangeMin, rangeMax);
/external/deqp/modules/gles3/functional/
H A Des3fShaderOperatorTests.cpp2066 DataType curType = s_selectionInfo[typeNdx].type; local
2068 bool isBoolCase = isDataTypeBoolOrBVec(curType);
2069 bool isFloatCase = isDataTypeFloatOrVec(curType);
2070 bool isIntCase = isDataTypeIntOrIVec(curType);
2071 bool isUintCase = isDataTypeUintOrUVec(curType);
2072 const char* dataTypeStr = getDataTypeName(curType);
2096 shaderSpec.output = curType;
2106 shaderSpec.inputs[1] = ShaderValue(curType, rangeMin, rangeMax);
2107 shaderSpec.inputs[2] = ShaderValue(curType, rangeMin, rangeMax);
/external/deqp/modules/gles31/functional/
H A Des31fSSBOLayoutCase.cpp1056 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); local
1057 const StructType* structPtr = curType.getStructPtr();
1097 const VarType curType = glu::getVarType(var.getType(), accessPath.begin(), pathComp); local
1098 const StructType* structPtr = curType.getStructPtr();
1129 const VarType curType = accessPath.getType(); local
1131 if (curType.isArrayType())
1133 const int arraySize = curType.getArraySize() == VarType::UNSIZED_ARRAY ? block.getLastUnsizedArraySize(instanceNdx) : curType.getArraySize();
1138 else if (curType.isStructType())
1140 const int numMembers = curType
1213 const VarType curType = accessPath.getType(); local
1572 const VarType curType = accessPath.getType(); local
[all...]

Completed in 260 milliseconds