Home
last modified time | relevance | path

Searched refs:dataPoints (Results 1 - 3 of 3) sorted by relevance

/third_party/vk-gl-cts/modules/glshared/
H A DglsCalibration.cpp60 LineParameters theilSenLinearRegression (const std::vector<tcu::Vec2>& dataPoints) in theilSenLinearRegression() argument
64 const int numDataPoints = (int)dataPoints.size(); in theilSenLinearRegression()
72 const Vec2& ptA = dataPoints[i]; in theilSenLinearRegression()
76 const Vec2& ptB = dataPoints[j]; in theilSenLinearRegression()
90 pointwiseOffsets.push_back(dataPoints[i].y() - result.coefficient*dataPoints[i].x()); in theilSenLinearRegression()
120 LineParametersWithConfidence theilSenSiegelLinearRegression (const std::vector<tcu::Vec2>& dataPoints, float reportedConfidence) in theilSenSiegelLinearRegression() argument
122 DE_ASSERT(!dataPoints.empty()); in theilSenSiegelLinearRegression()
127 const int numDataPoints = (int)dataPoints.size(); in theilSenSiegelLinearRegression()
135 const tcu::Vec2& ptA = dataPoints[ in theilSenSiegelLinearRegression()
351 vector<Vec2> dataPoints; recomputeParameters() local
[all...]
H A DglsCalibration.hpp49 LineParameters theilSenLinearRegression (const std::vector<tcu::Vec2>& dataPoints);
66 LineParametersWithConfidence theilSenSiegelLinearRegression (const std::vector<tcu::Vec2>& dataPoints, float reportedConfidence);
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pBufferDataUploadTests.cpp6154 std::vector<tcu::Vec2> dataPoints (m_iterationOrder.size());
6159 dataPoints[m_iterationOrder[ndx]].x() = (float)ndx;
6160 dataPoints[m_iterationOrder[ndx]].y() = (float)(m_results[m_iterationOrder[ndx]].*target);
6163 lineFit = theilSenSiegelLinearRegression(dataPoints, 0.6f);

Completed in 11 milliseconds