• Home
  • Raw
  • Download

Lines Matching refs:m_spec

180 	ShaderSpec				m_spec;  member in deqp::gles31::Functional::IntegerFunctionCase
195 m_spec.version = glu::GLSL_VERSION_310_ES; in IntegerFunctionCase()
207 m_executor = createExecutor(m_context.getRenderContext(), m_shaderType, m_spec); in init()
258 const int numInputScalars = computeTotalScalarSize(m_spec.inputs); in iterate()
259 const int numOutputScalars = computeTotalScalarSize(m_spec.outputs); in iterate()
262 …const vector<void*> inputPointers = getInputOutputPointers(m_spec.inputs, inputData, m_numValue… in iterate()
263 …const vector<void*> outputPointers = getInputOutputPointers(m_spec.outputs, outputData, m_numVa… in iterate()
274 const vector<int> inScalarSizes = getScalarSizes(m_spec.inputs); in iterate()
275 const vector<int> outScalarSizes = getScalarSizes(m_spec.outputs); in iterate()
297 m_testCtx.getLog() << TestLog::Message << " " << m_spec.inputs[inNdx].name << " = " in iterate()
298 << VarValue(m_spec.inputs[inNdx].varType, curInputPtr[inNdx]) in iterate()
303 m_testCtx.getLog() << TestLog::Message << " " << m_spec.outputs[outNdx].name << " = " in iterate()
304 << VarValue(m_spec.outputs[outNdx].varType, curOutputPtr[outNdx]) in iterate()
361 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in UaddCarryCase()
362 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in UaddCarryCase()
363 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision))); in UaddCarryCase()
364 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP))); in UaddCarryCase()
365 m_spec.source = "sum = uaddCarry(x, y, carry);"; in UaddCarryCase()
371 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
372 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
425 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
426 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
457 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in UsubBorrowCase()
458 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in UsubBorrowCase()
459 m_spec.outputs.push_back(Symbol("diff", glu::VarType(baseType, precision))); in UsubBorrowCase()
460 m_spec.outputs.push_back(Symbol("carry", glu::VarType(baseType, glu::PRECISION_LOWP))); in UsubBorrowCase()
461 m_spec.source = "diff = usubBorrow(x, y, carry);"; in UsubBorrowCase()
467 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
468 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
519 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
520 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
551 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in UmulExtendedCase()
552 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in UmulExtendedCase()
553 m_spec.outputs.push_back(Symbol("msb", glu::VarType(baseType, precision))); in UmulExtendedCase()
554 m_spec.outputs.push_back(Symbol("lsb", glu::VarType(baseType, precision))); in UmulExtendedCase()
555 m_spec.source = "umulExtended(x, y, msb, lsb);"; in UmulExtendedCase()
561 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
611 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
641 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision))); in ImulExtendedCase()
642 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision))); in ImulExtendedCase()
643 m_spec.outputs.push_back(Symbol("msb", glu::VarType(baseType, precision))); in ImulExtendedCase()
644 m_spec.outputs.push_back(Symbol("lsb", glu::VarType(baseType, precision))); in ImulExtendedCase()
645 m_spec.source = "imulExtended(x, y, msb, lsb);"; in ImulExtendedCase()
651 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
702 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
732 m_spec.inputs.push_back(Symbol("value", glu::VarType(baseType, precision))); in BitfieldExtractCase()
733 m_spec.inputs.push_back(Symbol("offset", glu::VarType(glu::TYPE_INT, precision))); in BitfieldExtractCase()
734 m_spec.inputs.push_back(Symbol("bits", glu::VarType(glu::TYPE_INT, precision))); in BitfieldExtractCase()
735 m_spec.outputs.push_back(Symbol("extracted", glu::VarType(baseType, precision))); in BitfieldExtractCase()
736 m_spec.source = "extracted = bitfieldExtract(value, offset, bits);"; in BitfieldExtractCase()
742 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
743 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
764 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
795 m_spec.inputs.push_back(Symbol("base", glu::VarType(baseType, precision))); in BitfieldInsertCase()
796 m_spec.inputs.push_back(Symbol("insert", glu::VarType(baseType, precision))); in BitfieldInsertCase()
797 m_spec.inputs.push_back(Symbol("offset", glu::VarType(glu::TYPE_INT, precision))); in BitfieldInsertCase()
798 m_spec.inputs.push_back(Symbol("bits", glu::VarType(glu::TYPE_INT, precision))); in BitfieldInsertCase()
799 m_spec.outputs.push_back(Symbol("result", glu::VarType(baseType, precision))); in BitfieldInsertCase()
800 m_spec.source = "result = bitfieldInsert(base, insert, offset, bits);"; in BitfieldInsertCase()
806 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
807 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
829 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
830 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
872 m_spec.inputs.push_back(Symbol("value", glu::VarType(baseType, precision))); in BitfieldReverseCase()
873 m_spec.outputs.push_back(Symbol("result", glu::VarType(baseType, glu::PRECISION_HIGHP))); in BitfieldReverseCase()
874 m_spec.source = "result = bitfieldReverse(value);"; in BitfieldReverseCase()
880 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
881 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
889 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
890 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
921 m_spec.inputs.push_back(Symbol("value", glu::VarType(baseType, precision))); in BitCountCase()
922 m_spec.outputs.push_back(Symbol("count", glu::VarType(intType, glu::PRECISION_LOWP))); in BitCountCase()
923 m_spec.source = "count = bitCount(value);"; in BitCountCase()
929 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
930 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
938 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
939 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
981 m_spec.inputs.push_back(Symbol("value", glu::VarType(baseType, precision))); in FindLSBCase()
982 m_spec.outputs.push_back(Symbol("lsb", glu::VarType(intType, glu::PRECISION_LOWP))); in FindLSBCase()
983 m_spec.source = "lsb = findLSB(value);"; in FindLSBCase()
989 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
990 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
998 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
999 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()
1059 m_spec.inputs.push_back(Symbol("value", glu::VarType(baseType, precision))); in FindMSBCase()
1060 m_spec.outputs.push_back(Symbol("msb", glu::VarType(intType, glu::PRECISION_LOWP))); in FindMSBCase()
1061 m_spec.source = "msb = findMSB(value);"; in FindMSBCase()
1067 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in getInputValues()
1068 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in getInputValues()
1076 const glu::DataType type = m_spec.inputs[0].varType.getBasicType(); in compare()
1077 const glu::Precision precision = m_spec.inputs[0].varType.getPrecision(); in compare()