HomeSort by relevance Sort by last modified time
    Searched defs:Score (Results 1 - 9 of 9) sorted by null

  /external/skia/src/core/
SkFontMgr.cpp 212 struct Score {
213 int score; member in struct:Score
215 Score& operator +=(int rhs) { this->score += rhs; return *this; }
216 Score& operator <<=(int rhs) { this->score <<= rhs; return *this; }
217 bool operator <(const Score& that) { return this->score < that.score; }
220 Score maxScore = { 0, 0 }
251 static const int score[3][3] = { local
    [all...]
  /frameworks/ml/bordeaux/learning/multiclass_pa/native/
multiclass_pa.cpp 70 float MulticlassPA::Score(const vector<float>& inputs,
111 float target_class_score = Score(inputs, parameters_[target]);
112 // VLOG(1) << "target class " << target << " score " << target_class_score;
114 float other_class_score = Score(inputs, parameters_[other_class]);
115 // VLOG(1) << "other class " << other_class << " score " << other_class_score;
145 // VLOG(1) << "target class " << target << " score " << target_class_score;
148 // VLOG(1) << "other class " << other_class << " score " << other_class_score;
203 float score_i = Score(inputs, parameters_[i]);
  /external/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 103 /// Compute the score for widening the condition in \p DominatedGuard
311 auto Score =
313 DEBUG(dbgs() << "Score between " << *GuardInst->getArgOperand(0)
315 << scoreTypeToString(Score) << "\n");
316 if (Score > BestScoreSoFar) {
317 BestScoreSoFar = Score;
332 << " with score " << scoreTypeToString(BestScoreSoFar) << "\n");
  /external/eigen/Eigen/src/LU/
FullPivLU.h 519 typedef typename Scoring::result_type Score;
520 Score biggest_in_corner;
527 if(biggest_in_corner==Score(0))
    [all...]
PartialPivLU.h 368 typedef typename Scoring::result_type Score;
380 Score biggest_in_corner
386 if(biggest_in_corner != Score(0))
  /external/eigen/Eigen/src/QR/
FullPivHouseholderQR.h 486 typedef typename Scoring::result_type Score;
488 Score score = m_qr.bottomRightCorner(rows-k, cols-k) local
493 RealScalar biggest_in_corner = internal::abs_knowing_score<Scalar>()(m_qr(row_of_biggest_in_corner, col_of_biggest_in_corner), score);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 72 /** This scheduler uses the value of Score to determine which
73 * instruction to schedule. Instructions with a higher value of Score
75 int Score;
189 unsigned score = sinst->Score; local
190 fprintf(stderr,"%u (%d) [%u],", ptr->Instruction->IP, score,
233 while(temp && inst->Score <= temp->Score) {
278 sinst->Score = 0;
284 sinst->Score = 0
1073 int score; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dplobby.h 78 * Purpose: Used to send a score of a player to the lobby. The format is an array of long integers.
98 LONG Score[1];
wininet.h     [all...]

Completed in 705 milliseconds