/external/eigen/unsupported/Eigen/CXX11/src/Tensor/ |
D | TensorCustomOp.h | 101 : m_op(op), m_device(device), m_result(NULL) 113 m_result = static_cast<CoeffReturnType*>( 115 evalTo(m_result); 121 if (m_result != NULL) { 122 m_device.deallocate(m_result); 123 m_result = NULL; 128 return m_result[index]; 133 return internal::ploadt<PacketReturnType, LoadMode>(m_result + index); 141 EIGEN_DEVICE_FUNC CoeffReturnType* data() const { return m_result; } 153 CoeffReturnType* m_result; [all …]
|
D | TensorReduction.h | 412 …: m_impl(op.expression(), device), m_reducer(op.reducer()), m_result(NULL), m_device(device), m_xp… 492 m_result = static_cast<CoeffReturnType*>(m_device.allocate(sizeof(CoeffReturnType))); 493 data = m_result; 505 m_result = data; 509 return (m_result != NULL); 529 m_result = data; 537 if (m_result) { 538 m_device.deallocate(m_result); 539 m_result = NULL; 543 return (m_result != NULL); [all …]
|
D | TensorContraction.h | 159 m_result(NULL) { 337 … m_result = static_cast<Scalar *>(m_device.allocate(dimensions().TotalSize() * sizeof(Scalar))); 338 evalTo(m_result); 520 if (m_result != NULL) { 521 m_device.deallocate(m_result); 522 m_result = NULL; 527 return m_result[index]; 536 return internal::ploadt<PacketReturnType, LoadMode>(m_result + index); 539 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Scalar* data() const { return m_result; } 566 Scalar* m_result;
|
/external/eigen/unsupported/test/ |
D | cxx11_tensor_thread_pool.cpp | 83 Matrix<float, Dynamic, Dynamic, DataLayout> m_result(1500, 1400); in test_multithread_contraction() local 90 m_result = m_left * m_right; in test_multithread_contraction() 93 VERIFY(&t_result.data()[i] != &m_result.data()[i]); in test_multithread_contraction() 94 if (fabsf(t_result(i) - m_result(i)) < 1e-4f) { in test_multithread_contraction() 97 if (Eigen::internal::isApprox(t_result(i), m_result(i), 1e-4f)) { in test_multithread_contraction() 101 << " vs " << m_result(i) << std::endl; in test_multithread_contraction() 124 Matrix<float, Dynamic, Dynamic, DataLayout> m_result(500, 28*28); in test_contraction_corner_cases() local 131 m_result = m_left.transpose() * m_right; in test_contraction_corner_cases() 135 if (fabsf(t_result.data()[i] - m_result.data()[i]) >= 1e-4f) { in test_contraction_corner_cases() 136 …h detected at index " << i << " : " << t_result.data()[i] << " vs " << m_result.data()[i] << std:… in test_contraction_corner_cases() [all …]
|
D | cxx11_tensor_contraction.cpp | 369 Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result(1500, 1400); in test_large_contraction() local 376 m_result = m_left * m_right; in test_large_contraction() 379 VERIFY(&t_result.data()[i] != &m_result.data()[i]); in test_large_contraction() 380 VERIFY_IS_APPROX(t_result.data()[i], m_result.data()[i]); in test_large_contraction() 397 Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result(30, 1); in test_matrix_vector() local 404 m_result = m_left * m_right; in test_matrix_vector() 407 VERIFY(internal::isApprox(t_result(i), m_result(i, 0), 1)); in test_matrix_vector() 428 …Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result = m_left.transpose() * m_right.transpo… in test_tensor_vector() local 431 VERIFY(internal::isApprox(t_result(i), m_result(i, 0), 1)); in test_tensor_vector() 459 Eigen::Matrix<float, Dynamic, Dynamic, DataLayout> m_result = m_left * m_right; in test_small_blocking_factors() local [all …]
|
D | cxx11_tensor_of_complex.cpp | 82 Matrix<std::complex<float>, Dynamic, Dynamic> m_result(1500, 1400); in test_contractions() local 90 m_result = m_left * m_right; in test_contractions() 92 VERIFY_IS_APPROX(t_result.data()[i], m_result.data()[i]); in test_contractions()
|
/external/deqp/modules/glshared/ |
D | glsMemoryStressCase.cpp | 442 Result getResult (void) const { return m_result; } in getResult() 460 Result m_result; member in deqp::gls::MemObjectAllocator 473 , m_result (RESULT_LAST) in MemObjectAllocator() 527 if (m_result != RESULT_LAST) in allocUntilFailure() 544 m_result = RESULT_GOT_BAD_ALLOC; in allocUntilFailure() 559 m_result = RESULT_DELETE_TEXTURES_FAILED; in clearObjects() 572 m_result = RESULT_DELETE_BUFFERS_FAILED; in clearObjects() 592 m_result = RESULT_GEN_TEXTURES_FAILED; in allocateTexture() 606 m_result = RESULT_BIND_TEXTURE_FAILED; in allocateTexture() 622 m_result = RESULT_TEXTURE_IMAGE_FAILED; in allocateTexture() [all …]
|
D | glsShaderPerformanceMeasurer.hpp | 86 …lt getResult (void) const { DE_ASSERT(m_state == STATE_FINISHED); return m_result; } in getResult() 120 Result m_result; member in deqp::gls::ShaderPerformanceMeasurer
|
/external/deqp/framework/common/ |
D | tcuResultCollector.cpp | 54 , m_result (QP_TEST_RESULT_LAST) in ResultCollector() 62 , m_result (QP_TEST_RESULT_LAST) in ResultCollector() 69 if (m_result == QP_TEST_RESULT_LAST) in getResult() 72 return m_result; in getResult() 80 if (testResultSeverity(result) > testResultSeverity(m_result)) in addResult() 82 m_result = result; in addResult()
|
D | tcuThreadUtil.cpp | 38 : m_result (RESULT_NOT_READY) in Event() 51 DE_ASSERT(m_result == RESULT_NOT_READY); in setResult() 52 m_result = result; in setResult() 63 if (m_result == RESULT_NOT_READY) in waitReady() 68 return m_result; in waitReady() 75 return m_result; in waitReady()
|
D | tcuDefs.hpp | 69 qpTestResult getTestResult (void) const { return m_result; } in getTestResult() 73 const qpTestResult m_result; member in tcu::TestException
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparsePermutation.h | 108 : m_result(xpr.rows(), xpr.cols()) 110 ::new (static_cast<Base*>(this)) Base(m_result); 111 …generic_product_impl<Lhs, Rhs, PermutationShape, SparseShape, ProductTag>::evalTo(m_result, xpr.lh… 115 PlainObject m_result; 131 : m_result(xpr.rows(), xpr.cols()) 133 ::new (static_cast<Base*>(this)) Base(m_result); 134 …generic_product_impl<Lhs, Rhs, SparseShape, PermutationShape, ProductTag>::evalTo(m_result, xpr.lh… 138 PlainObject m_result;
|
D | SparseProduct.h | 147 : m_result(xpr.rows(), xpr.cols()) 150 ::new (static_cast<Base*>(this)) Base(m_result); 157 … typename remove_all<RhsNested>::type, PlainObject>::run(lhsNested,rhsNested,m_result, 162 PlainObject m_result;
|
/external/deqp/modules/egl/ |
D | teglGetFrameTimestampsTests.cpp | 315 tcu::ResultCollector m_result; member in deqp::egl::__anon9bb255fb0111::GetFrameTimestampTest 325 , m_result (m_testCtx.getLog()) in GetFrameTimestampTest() 636 …check_lt<EGLnsecsANDROID>(m_result, 1000000, frame.compositeInterval, "Reported refresh rate great… in executeForConfig() 637 …check_lt<EGLnsecsANDROID>(m_result, frame.compositeInterval, 1000000000, "Reported refresh rate le… in executeForConfig() 638 …check_lt<EGLnsecsANDROID>(m_result, 0, frame.compositeToPresentLatency, "Composite to present late… in executeForConfig() 639 …check_lt(m_result, frame.compositeToPresentLatency, frame.compositeInterval * 4, "Composite to pre… in executeForConfig() 641 …check_lt(m_result, minDeadline, frame.compositeDeadline, "Next composite deadline is in the past."… in executeForConfig() 643 …check_lt(m_result, frame.compositeDeadline, maxDeadline, "Next composite deadline over two interva… in executeForConfig() 672 verifySingleFrame(frame6ago, m_result, verifyReadsDone); in executeForConfig() 676 verifyNeighboringFrames(frame7ago, frame6ago, m_result); in executeForConfig() [all …]
|
/external/deqp/executor/ |
D | xeTestResultParser.cpp | 290 : m_result (DE_NULL) in TestResultParser() 307 m_result = DE_NULL; in clear() 318 m_result = dstResult; in init() 325 DE_ASSERT(m_result && m_state != STATE_NOT_INITIALIZED); in parse() 369 m_result->statusCode = TESTSTATUSCODE_INTERNAL_ERROR; in parse() 370 m_result->statusDetails = e.what(); in parse() 377 m_result->statusCode = TESTSTATUSCODE_INTERNAL_ERROR; in parse() 378 m_result->statusDetails = e.what(); in parse() 426 m_curItemList = &m_result->resultItems; in updateCurrentItemList() 455 m_result->casePath = getAttribute("CasePath"); in handleElementStart() [all …]
|
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
D | SolveWithGuess.h | 82 : m_result(solve.rows(), solve.cols()) 84 ::new (static_cast<Base*>(this)) Base(m_result); 85 m_result = solve.guess(); 86 solve.dec()._solve_with_guess_impl(solve.rhs(), m_result); 90 PlainObject m_result;
|
/external/eigen/Eigen/src/Core/ |
D | Inverse.h | 104 : m_result(inv_xpr.rows(), inv_xpr.cols()) 106 ::new (static_cast<Base*>(this)) Base(m_result); 107 internal::call_assignment_no_alias(m_result, inv_xpr); 111 PlainObject m_result;
|
D | ReturnByValue.h | 103 : m_result(xpr.rows(), xpr.cols()) 105 ::new (static_cast<Base*>(this)) Base(m_result); 106 xpr.evalTo(m_result); 110 PlainObject m_result;
|
D | Solve.h | 124 : m_result(solve.rows(), solve.cols()) 126 ::new (static_cast<Base*>(this)) Base(m_result); 127 solve.dec()._solve_impl(solve.rhs(), m_result); 131 PlainObject m_result;
|
/external/pdfium/core/fxge/dib/ |
D | cfx_imagetransformer.cpp | 225 m_result = result_clip; in CFX_ImageTransformer() 298 if (!pTransformed->Create(m_result.Width(), m_result.Height(), format)) in Continue() 309 CFX_Matrix result2stretch(1.0f, 0.0f, 0.0f, 1.0f, m_result.left, in Continue() 310 m_result.top); in Continue() 487 for (int row = 0; row < m_result.Height(); row++) { in DoBilinearLoop() 489 for (int col = 0; col < m_result.Width(); col++) { in DoBilinearLoop() 516 for (int row = 0; row < m_result.Height(); row++) { in DoBicubicLoop() 518 for (int col = 0; col < m_result.Width(); col++) { in DoBicubicLoop() 543 for (int row = 0; row < m_result.Height(); row++) { in DoDownSampleLoop() 545 for (int col = 0; col < m_result.Width(); col++) { in DoDownSampleLoop()
|
D | cfx_imagetransformer.h | 31 const FX_RECT& result() const { return m_result; } in result() 105 FX_RECT m_result; variable
|
/external/deqp/executor/tools/ |
D | xeTestLogCompare.cpp | 129 : m_result(result) in ShortResultHandler() 151 int caseNdx = (int)m_result.resultHeaders.size(); in testCaseResultComplete() 168 m_result.resultHeaders.push_back(header); in testCaseResultComplete() 169 m_result.resultMap[header.casePath] = caseNdx; in testCaseResultComplete() 173 ShortBatchResult& m_result; member in ShortResultHandler
|
D | xeExtractValues.cpp | 130 : m_result(result) in TagParser() 151 const vector<string>& tagNames = m_result.getTagNames(); in testCaseResultComplete() 188 m_result.add(tagResult); in testCaseResultComplete() 192 BatchResultValues& m_result; member in TagParser
|
/external/emma/core/java12/com/vladium/jcd/lib/ |
D | Types.java | 618 final String [] result = new String [m_result.size ()]; in getResult() 619 m_result.toArray (result); in getResult() 746 m_result.add (m_token.toString ()); in newToken() 750 final java.util.List m_result = new java.util.ArrayList (); field in Types.methodDescriptorCompiler
|
/external/deqp/execserver/tools/ |
D | xsClient.cpp | 50 , m_result (result) in SocketError() 56 return m_result; in getResult() 60 deSocketResult m_result; member in xs::SocketError
|