Searched refs:Score (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/core/
H A DSkFontMgr.cpp221 struct Score { struct
224 Score& operator +=(int rhs) { this->score += rhs; return *this; }
225 Score& operator <<=(int rhs) { this->score <<= rhs; return *this; }
226 bool operator <(const Score& that) { return this->score < that.score; }
229 Score maxScore = { 0, 0 };
233 Score currentScore = { 0, i };
/external/skqp/src/core/
H A DSkFontMgr.cpp221 struct Score { struct
224 Score& operator +=(int rhs) { this->score += rhs; return *this; }
225 Score& operator <<=(int rhs) { this->score <<= rhs; return *this; }
226 bool operator <(const Score& that) { return this->score < that.score; }
229 Score maxScore = { 0, 0 };
233 Score currentScore = { 0, i };
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_pair_schedule.c72 /** This scheduler uses the value of Score to determine which
73 * instruction to schedule. Instructions with a higher value of Score
75 int Score; member in struct:schedule_instruction
189 unsigned score = sinst->Score;
233 while(temp && inst->Score <= temp->Score) {
278 sinst->Score = 0;
284 sinst->Score = 0;
291 sinst->Score += 100;
293 sinst->Score
[all...]
/external/eigen/Eigen/src/LU/
H A DPartialPivLU.h368 typedef typename Scoring::result_type Score; typedef
380 Score biggest_in_corner
386 if(biggest_in_corner != Score(0))
H A DFullPivLU.h519 typedef typename Scoring::result_type Score; typedef
520 Score biggest_in_corner;
527 if(biggest_in_corner==Score(0))
/external/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp311 auto Score = local
313 DEBUG(dbgs() << "Score between " << *GuardInst->getArgOperand(0)
315 << scoreTypeToString(Score) << "\n");
316 if (Score > BestScoreSoFar) {
317 BestScoreSoFar = Score;
/external/eigen/Eigen/src/QR/
H A DFullPivHouseholderQR.h486 typedef typename Scoring::result_type Score; typedef
488 Score score = m_qr.bottomRightCorner(rows-k, cols-k)
/external/eigen/Eigen/src/Core/functors/
H A DUnaryFunctors.h75 template<typename Score>
76 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const result_type operator() (const Scalar& a, const Score&) const { return numext::abs(a); }

Completed in 262 milliseconds