| /netbsd-src/games/mille/ |
| H A D | save.c | 119 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 D | mille.c | 84 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 D | misc.c | 64 wmove(Score, ERR_Y, ERR_X); in error() 65 vwprintw(Score, str, ap); in error() 66 wclrtoeol(Score); in error()
|
| H A D | move.c | 397 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 D | print.c | 101 wrefresh(Score); in prboard() 126 stdscr = Score; in prscore()
|
| H A D | init.c | 119 werase(Score); in newboard() 179 stdscr = Score; in newscore()
|
| H A D | extern.c | 173 *Score; /* Score screen */ variable
|
| H A D | mille.h | 229 extern WINDOW *Board, *Miles, *Score;
|
| H A D | comp.c | 63 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 D | OMPContext.cpp | 275 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 D | score.c | 134 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 D | move_robs.c | 136 Score += add; in add_score() 138 printw("%d", Score); in add_score()
|
| H A D | extern.c | 77 uint32_t Score; /* Current score */ variable
|
| H A D | init_field.c | 85 Score = 0; in init_field()
|
| H A D | robots.h | 102 extern uint32_t Score;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMPContext.h | 125 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 D | VPlanSLP.cpp | 237 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 D | HotColdSplitting.cpp | 431 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 D | SwitchLoweringUtils.cpp | 148 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 D | AArch64StackTaggingPreRA.cpp | 275 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 D | GuardWidening.cpp | 370 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 D | Reassociate.cpp | 2401 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 D | InstrProf.cpp | 529 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 D | Reassociate.h | 89 unsigned Score; member
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | SIInsertWaitcnts.cpp | 304 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()
|