Home
last modified time | relevance | path

Searched refs:Score (Results 1 – 25 of 91) sorted by relevance

1234

/netbsd-src/games/mille/
H A Dsave.c119 mvwaddstr(Score, ERR_Y, ERR_X, buf); in save()
120 wrefresh(Score); in save()
135 wprintw(Score, " [%s]", buf); in save()
137 wclrtoeol(Score); in save()
138 wrefresh(Score); in save()
H A Dmille.c84 Score = newwin(SCORE_Y, SCORE_X, 0, 40); in main()
88 idlok(Score, TRUE); in main()
91 leaveok(Score, TRUE); in main()
121 mvwaddstr(Score, ERR_Y, ERR_X, Initstr); in main()
H A Dmisc.c64 wmove(Score, ERR_Y, ERR_X); in error()
65 vwprintw(Score, str, ap); in error()
66 wclrtoeol(Score); in error()
H A Dmove.c397 mvwaddstr(Score, 12, 21, in getmove()
400 mvwaddstr(Score, 12, 21, in getmove()
402 wclrtoeol(Score); in getmove()
413 wrefresh(Score); in getmove()
431 wrefresh(Score); in getmove()
H A Dprint.c101 wrefresh(Score); in prboard()
126 stdscr = Score; in prscore()
H A Dinit.c119 werase(Score); in newboard()
179 stdscr = Score; in newscore()
H A Dextern.c173 *Score; /* Score screen */ variable
H A Dmille.h229 extern WINDOW *Board, *Miles, *Score;
H A Dcomp.c63 wmove(Score, ERR_Y, ERR_X); /* get rid of error messages */ in calcmove()
64 wclrtoeol(Score); in calcmove()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp275 APInt Score(64, 1); in getVariantMatchScore() local
284 Score += UserScore.getZExtValue(); in getVariantMatchScore()
312 Score += (1ULL << (NoConstructTraits + 0)); in getVariantMatchScore()
315 Score += (1ULL << (NoConstructTraits + 1)); in getVariantMatchScore()
318 Score += (1ULL << (NoConstructTraits + 2)); in getVariantMatchScore()
334 Score += (1ULL << ConstructMatches[ConstructIdx++]); in getVariantMatchScore()
337 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Score in getVariantMatchScore()
339 return Score; in getVariantMatchScore()
358 APInt Score = getVariantMatchScore(VMI, Ctx, ConstructMatches); in getBestVariantMatchForContext() local
359 if (Score.ult(BestScore)) in getBestVariantMatchForContext()
[all …]
/netbsd-src/games/robots/
H A Dscore.c134 if (Top[MAXSCORES-1].s_score <= Score) { in score()
138 if (scp->s_score > Score) in score()
140 scp->s_score = Score; in score()
149 Top[MAXSCORES-1].s_score = Score; in score()
176 if (!done_show && scp->s_uid == uid && scp->s_score == Score) in score()
181 if (!done_show && scp->s_uid == uid && scp->s_score == Score) { in score()
H A Dmove_robs.c136 Score += add; in add_score()
138 printw("%d", Score); in add_score()
H A Dextern.c77 uint32_t Score; /* Current score */ variable
H A Dinit_field.c85 Score = 0; in init_field()
H A Drobots.h102 extern uint32_t Score;
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h125 APInt *Score = nullptr) {
127 Score);
134 APInt *Score = nullptr) {
135 if (Score)
136 ScoreMap[Property] = *Score;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp237 unsigned Score = 0; in getLAScore() local
240 Score += in getLAScore()
242 return Score; in getLAScore()
281 unsigned Score = getLAScore(Last, Candidate, Depth, IAI); in getBest() local
283 PrevScore = Score; in getBest()
284 if (PrevScore != Score) in getBest()
286 PrevScore = Score; in getBest()
288 if (Score > BestScore) { in getBest()
289 BestScore = Score; in getBest()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DHotColdSplitting.cpp431 static unsigned getEntryPointScore(BasicBlock &BB, unsigned Score) { in getEntryPointScore() argument
432 return mayExtractBlock(BB) ? Score : 0; in getEntryPointScore()
457 auto addBlockToRegion = [&](BasicBlock *BB, unsigned Score) { in create() argument
459 ColdRegion->Blocks.emplace_back(BB, Score); in create()
571 unsigned Score = Block.second; in takeSingleEntrySubRegion() local
574 if (!InSubRegion && Score > NextScore) { in takeSingleEntrySubRegion()
576 NextScore = Score; in takeSingleEntrySubRegion()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp148 unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1]; in findJumpTables() local
152 Score += PartitionScores::SingleCase; in findJumpTables()
154 Score += PartitionScores::FewCases; in findJumpTables()
156 Score += PartitionScores::Table; in findJumpTables()
161 (NumPartitions == MinPartitions[i] && Score > PartitionsScore[i])) { in findJumpTables()
164 PartitionsScore[i] = Score; in findJumpTables()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64StackTaggingPreRA.cpp275 int Score = 0; in findFirstSlotCandidate() local
299 Score++; in findFirstSlotCandidate()
303 int TotalScore = RetagScore[ST] += Score; in findFirstSlotCandidate()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp370 auto Score = computeWideningScore(Instr, Candidate, InvertCondition); in eliminateInstrViaWidening() local
373 << scoreTypeToString(Score) << "\n"); in eliminateInstrViaWidening()
374 if (Score > BestScoreSoFar) { in eliminateInstrViaWidening()
375 BestScoreSoFar = Score; in eliminateInstrViaWidening()
H A DReassociate.cpp2401 unsigned Score = 0; in ReassociateExpression() local
2414 Score += it->second.Score; in ReassociateExpression()
2418 if (Score > Max || (Score == Max && MaxRank < BestRank)) { in ReassociateExpression()
2420 Max = Score; in ReassociateExpression()
2491 ++res.first->second.Score; in BuildPairMap()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp529 double Score = 0.0f, FuncLevelScore = 0.0f; in overlap() local
536 Score += OverlapStats::score(I->Count, J->Count, in overlap()
549 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap()
600 double Score = 0.0; in overlap() local
604 Score += OverlapStats::score(Counts[I], Other.Counts[I], in overlap()
608 Overlap.Overlap.CountSum += Score; in overlap()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
H A DReassociate.h89 unsigned Score; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp304 static bool mergeScore(const MergeInfo &M, unsigned &Score,
1369 bool WaitcntBrackets::mergeScore(const MergeInfo &M, unsigned &Score, in mergeScore() argument
1371 unsigned MyShifted = Score <= M.OldLB ? 0 : Score + M.MyShift; in mergeScore()
1374 Score = std::max(MyShifted, OtherShifted); in mergeScore()

1234