HomeSort by: relevance | last modified time | path
    Searched defs:Score (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPContext.h 105 /// specify a score for properties in \p Selector and if the \p Selector
121 /// string we parsed and derived \p Property from. If \p Score is not null, it
125 APInt *Score = nullptr) {
127 Score);
131 /// \p Score is not null, it recorded as well. If \p Set is the `construct`
134 APInt *Score = nullptr) {
135 if (Score)
136 ScoreMap[Property] = *Score;
187 /// Return the index (into \p VMIs) of the variant with the highest score
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
Reassociate.h 89 unsigned Score;
  /src/games/mille/
extern.c 173 *Score; /* Score screen */
  /src/games/robots/
extern.c 51 bool Newscore; /* There was a new score added */
77 uint32_t Score; /* Current score */
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwitchLoweringUtils.cpp 148 unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1];
152 Score += PartitionScores::SingleCase;
154 Score += PartitionScores::FewCases;
156 Score += PartitionScores::Table;
159 // partitions with better score, it is a better partitioning.
161 (NumPartitions == MinPartitions[i] && Score > PartitionsScore[i])) {
164 PartitionsScore[i] = Score;
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPContext.cpp 275 APInt Score(64, 1);
280 // If there is a user score attached, use it.
284 Score += UserScore.getZExtValue();
294 // No effect on the score (implementation defined).
297 // No effect on the score.
312 Score += (1ULL << (NoConstructTraits + 0));
315 Score += (1ULL << (NoConstructTraits + 1));
318 Score += (1ULL << (NoConstructTraits + 2));
334 Score += (1ULL << ConstructMatches[ConstructIdx++]);
337 LLVM_DEBUG(dbgs() << "[" << DEBUG_TYPE << "] Variant has a score of " << Scor
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64StackTaggingPreRA.cpp 275 int Score = 0;
299 Score++;
303 int TotalScore = RetagScore[ST] += Score;
330 // the highest score slot without changing anything else.
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
VPlanSLP.cpp 237 unsigned Score = 0;
240 Score +=
242 return Score;
281 unsigned Score = getLAScore(Last, Candidate, Depth, IAI);
283 PrevScore = Score;
284 if (PrevScore != Score)
286 PrevScore = Score;
288 if (Score > BestScore) {
289 BestScore = Score;
SLPVectorizer.cpp 159 // The maximum depth that the look-ahead score heuristic will explore.
970 /// Score for failing to find a decent match.
977 /// \returns the score of placing \p V1 and \p V2 in consecutive lanes.
998 // Extracts from consecutive indexes of the same vector better score as
1027 /// score calculation. This is used in the external uses cost calculation.
1081 /// MaxLevel, and return the cummulative score. For example:
1089 /// each level recursively, accumulating the score. It starts from matching
1091 /// score of G1 and G2 is higher than G1 and G3, because {A[0],A[1]} and
1093 /// {A[0],C[0]} has a score of VLOperands::ScoreFail.
1095 /// evaluate the score of all profitable combinations of operands. I
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GuardWidening.cpp 160 /// Compute the score for widening the condition in \p DominatedInstr
370 auto Score = computeWideningScore(Instr, Candidate, InvertCondition);
371 LLVM_DEBUG(dbgs() << "Score between " << *getCondition(Instr)
373 << scoreTypeToString(Score) << "\n");
374 if (Score > BestScoreSoFar) {
375 BestScoreSoFar = Score;
390 << " with score " << scoreTypeToString(BestScoreSoFar)
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp 529 double Score = 0.0f, FuncLevelScore = 0.0f;
536 Score += OverlapStats::score(I->Count, J->Count,
539 FuncLevelScore += OverlapStats::score(
549 Overlap.Overlap.ValueCounts[ValueKind] += Score;
600 double Score = 0.0;
604 Score += OverlapStats::score(Counts[I], Other.Counts[I],
608 Overlap.Overlap.CountSum += Score;
614 FuncScore += OverlapStats::score(Counts[I], Other.Counts[I]
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseOpenMP.cpp 1007 // If we make it here the property, selector, set, score, condition, ... are
1083 /// Parse optional 'score' '(' <expr> ')' ':'.
1089 if (!SelectorName.equals("score"))
1100 << "score expression";
1106 /// <trait-selector-name> ['('[<trait-score>] <trait-property> [, <t-p>]* ')']
1189 ExprResult Score = parseContextScore(*this);
1191 if (!AllowsTraitScore && !Score.isUnset()) {
1192 if (Score.isUsable()) {
1195 << getOpenMPContextTraitSetName(Set) << Score.get();
1201 Score = ExprResult()
    [all...]

Completed in 42 milliseconds