Searched refs:m_op (Results 1 - 13 of 13) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorCustomOp.h101 : m_op(op), m_device(device), m_result(NULL)
147 m_op.func().eval(m_op.expression(), result, m_device);
151 const ArgType m_op; member in struct:Eigen::TensorEvaluator
257 : m_op(op), m_device(device), m_result(NULL)
301 m_op.func().eval(m_op.lhsExpression(), m_op.rhsExpression(), result, m_device);
305 const XprType m_op; member in struct:Eigen::TensorEvaluator
H A DTensorEvalTo.h113 m_buffer(op.buffer()), m_op(op), m_expression(op.expression())
118 return m_op;
174 const XprType& m_op; member in struct:Eigen::TensorEvaluator
H A DTensorForcedEval.h111 : m_impl(op.expression(), device), m_op(op.expression()), m_device(device), m_buffer(NULL)
126 EvalTo evalToTmp(m_buffer, m_op);
159 const ArgType m_op; member in struct:Eigen::TensorEvaluator
/external/deqp/modules/gles31/stress/
H A Des31sDrawTests.cpp114 const InvalidOperation m_op; member in class:deqp::gles31::Stress::__anon4933::InvalidDrawCase
125 , m_op (op)
196 const int indexBufferSize = (m_op == INVALID_INDEX_COUNT) ? (drawCount) : (overBoundDrawCount);
200 indices[ndx] = (deUint16)((m_op == INVALID_INDEX) ? (overBoundDrawCount + ndx) : (ndx));
210 const int dataSize = (m_op == INVALID_DATA_COUNT) ? (drawCount) : (overBoundDrawCount);
239 drawCommand.primCount = (m_op == INVALID_DATA_INSTANCED) ? (overBoundInstances) : (drawInstances);
240 drawCommand.first = (m_op == INVALID_DATA_FIRST) ? (overBoundDrawCount) : (0);
241 drawCommand.reservedMustBeZero = (m_op == INVALID_RESERVED) ? (5) : (0);
261 drawCommand.primCount = (m_op == INVALID_DATA_INSTANCED) ? (overBoundInstances) : (drawInstances);
262 drawCommand.firstIndex = (m_op
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp754 MatrixOp m_op; member in class:deqp::gles2::Functional::ShaderMatrixCase
761 , m_op (op)
782 int numInputs = (isOperationBinary(m_op)) ? (2) : (1);
796 else if (getOperationType(m_op) == OPERATIONTYPE_UNARY_PREFIX_OPERATOR ||
797 getOperationType(m_op) == OPERATIONTYPE_UNARY_POSTFIX_OPERATOR)
912 switch (getOperationNature(m_op))
915 DE_ASSERT(getOperationType(m_op) != OPERATIONTYPE_ASSIGNMENT);
922 DE_ASSERT(getOperationType(m_op) != OPERATIONTYPE_ASSIGNMENT);
931 DE_ASSERT(getOperationType(m_op) == OPERATIONTYPE_ASSIGNMENT);
941 switch (getOperationType(m_op))
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp1408 const MatrixOp m_op);
1419 const MatrixOp m_op; member in class:vkt::sr::__anon3981::ShaderMatrixInstance
1431 , m_op (op)
1448 if (getOperationTestMatrixType(m_op) != TESTMATRIXTYPE_DEFAULT)
1455 switch (getOperationTestMatrixType(m_op))
1481 int numInputs = isOperationBinary(m_op) ? 2 : 1;
1588 const int numInputs = isOperationBinary(m_op) ? 2 : 1;
1644 const MatrixOp m_op; member in class:vkt::sr::__anon3981::ShaderMatrixCase
1663 , m_op (op)
1674 return new ShaderMatrixInstance(context, m_isVertexCase, *m_evaluator, m_in0, m_in1, m_op);
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderMatrixTests.cpp1398 MatrixOp m_op; member in class:deqp::gles3::Functional::ShaderMatrixCase
1406 , m_op (op)
1428 int numInputs = (isOperationBinary(m_op)) ? (2) : (1);
1437 if (m_op == OP_MUL && isDataTypeMatrix(m_in0.dataType) && isDataTypeMatrix(m_in1.dataType))
1441 else if (m_op == OP_OUTER_PRODUCT)
1445 else if (m_op == OP_TRANSPOSE)
1449 else if (m_op == OP_INVERSE)
1453 else if (m_op == OP_DETERMINANT)
1457 else if (getOperationType(m_op) == OPERATIONTYPE_UNARY_PREFIX_OPERATOR ||
1458 getOperationType(m_op)
[all...]
H A Des3fShaderPrecisionTests.cpp197 std::string m_op; member in class:deqp::gles3::Functional::ShaderFloatPrecisionCase
217 , m_op (op)
246 m_program = createFloatPrecisionEvalProgram(m_context.getRenderContext(), m_precision, m_op.c_str(), m_isVertexCase);
448 std::string m_op; member in class:deqp::gles3::Functional::ShaderIntPrecisionCase
469 , m_op (op)
499 m_program = createIntUintPrecisionEvalProgram(m_context.getRenderContext(), glu::TYPE_INT, m_precision, m_op.c_str(), m_isVertexCase);
642 std::string m_op; member in class:deqp::gles3::Functional::ShaderUintPrecisionCase
663 , m_op (op)
693 m_program = createIntUintPrecisionEvalProgram(m_context.getRenderContext(), glu::TYPE_UINT, m_precision, m_op.c_str(), m_isVertexCase);
/external/pdfium/core/fpdfapi/page/
H A Dfpdf_page_func.cpp119 explicit CPDF_PSOP(PDF_PSOP op) : m_op(op), m_value(0) {
120 ASSERT(m_op != PSOP_CONST);
121 ASSERT(m_op != PSOP_PROC);
123 explicit CPDF_PSOP(FX_FLOAT value) : m_op(PSOP_CONST), m_value(value) {}
125 : m_op(PSOP_PROC), m_value(0), m_proc(std::move(proc)) {}
128 if (m_op == PSOP_CONST)
135 if (m_op == PSOP_PROC)
141 PDF_PSOP GetOp() const { return m_op; }
144 const PDF_PSOP m_op; member in class:CPDF_PSOP
/external/pdfium/xfa/fxfa/fm2js/
H A Dxfa_simpleexpression.cpp121 : m_line(line), m_op(op) {}
128 return m_op;
342 switch (m_op) {
370 switch (m_op) {
406 switch (m_op) {
433 switch (m_op) {
648 if (m_op == TOKdotscream) {
652 } else if (m_op == TOKdotstar) {
654 } else if (m_op == TOKcall) {
H A Dxfa_simpleexpression.h69 XFA_FM_TOKEN m_op; member in class:CXFA_FMSimpleExpression
/external/deqp/modules/gles2/performance/
H A Des2pShaderOperatorTests.cpp1121 const string m_op;
1131 , m_op (op)
1227 op << "\t\tacc" << i << "a = acc" << i << "b " << m_op << " acc" << i << "a" << ";\n";
1228 op << "\t\tacc" << i << "b = acc" << i << "a " << m_op << " acc" << i << "b" << ";\n";
1238 op << (i > 0 ? " "+m_op : "") << " acc" << i << "b";
1336 const char* const opName = m_op == "+" ? "addition"
1337 : m_op == "-" ? "subtraction"
1338 : m_op == "*" ? "multiplication"
1339 : m_op == "/" ? "division"
/external/deqp/modules/gles3/performance/
H A Des3pShaderOperatorTests.cpp1121 const string m_op;
1131 , m_op (op)
1231 op << "\t\tacc" << i << "a = acc" << i << "b " << m_op << " acc" << i << "a" << ";\n";
1232 op << "\t\tacc" << i << "b = acc" << i << "a " << m_op << " acc" << i << "b" << ";\n";
1242 op << (i > 0 ? " "+m_op : "") << " acc" << i << "b";
1340 const char* const opName = m_op == "+" ? "addition"
1341 : m_op == "-" ? "subtraction"
1342 : m_op == "*" ? "multiplication"
1343 : m_op == "/" ? "division"

Completed in 445 milliseconds