/third_party/skia/src/core/ |
H A D | SkFontMgr.cpp | 212 struct Score { in matchStyleCSS3() struct 215 Score& operator +=(int rhs) { this->score += rhs; return *this; } in matchStyleCSS3() 216 Score& operator <<=(int rhs) { this->score <<= rhs; return *this; } in matchStyleCSS3() 217 bool operator <(const Score& that) { return this->score < that.score; } in matchStyleCSS3() 220 Score maxScore = { 0, 0 }; in matchStyleCSS3() 224 Score currentScore = { 0, i }; in matchStyleCSS3()
|
/third_party/skia/third_party/externals/brotli/research/ |
H A D | durchschlag.cc | 12 typedef uint32_t Score; typedef 21 Score score; 30 Score score; 80 static Score buildCandidatesList(std::vector<Candidate>* candidates, in buildCandidatesList() 91 Score score = 0; in buildCandidatesList() 105 Score maxScore = 0; in buildCandidatesList() 127 Score minScore = candidates->at(0).score; in buildCandidatesList() 168 static Score rebuildCandidatesList(std::vector<TextIdx>* candidates, in rebuildCandidatesList() 183 Score score = 0; in rebuildCandidatesList() 195 Score maxScor in rebuildCandidatesList() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanSLP.cpp | 232 unsigned Score = 0; in getLAScore() local 235 Score += getLAScore(cast<VPUser>(V1)->getOperand(I), in getLAScore() 237 return Score; in getLAScore() 276 unsigned Score = getLAScore(Last, Candidate, Depth, IAI); in getBest() local 278 PrevScore = Score; in getBest() 279 if (PrevScore != Score) in getBest() 281 PrevScore = Score; in getBest() 283 if (Score > BestScore) { in getBest() 284 BestScore = Score; in getBest()
|
H A D | SLPVectorizer.cpp | 811 /// Score for failing to find a decent match. 1031 unsigned Score = 0; in getBestOperand() member 1059 unsigned Score = in getBestOperand() local 1061 if (Score > BestOp.Score) { in getBestOperand() 1063 BestOp.Score = Score; in getBestOperand()
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | 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; member 189 unsigned score = sinst->Score; in print_list() 233 while(temp && inst->Score <= temp->Score) { in add_inst_to_list_score() 278 sinst->Score = 0; 284 sinst->Score = 0; 291 sinst->Score += 100; 293 sinst->Score [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | HotColdSplitting.cpp | 382 /// If \p BB is a viable entry point, return \p Score. Return 0 otherwise. 383 static unsigned getEntryPointScore(BasicBlock &BB, unsigned Score) { in getEntryPointScore() argument 384 return mayExtractBlock(BB) ? Score : 0; in getEntryPointScore() 409 auto addBlockToRegion = [&](BasicBlock *BB, unsigned Score) { in create() 411 ColdRegion->Blocks.emplace_back(BB, Score); in create() 519 unsigned Score = Block.second; in takeSingleEntrySubRegion() 522 if (!InSubRegion && Score > NextScore) { in takeSingleEntrySubRegion() 524 NextScore = Score; in takeSingleEntrySubRegion()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | SwitchLoweringUtils.cpp | 145 unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1]; in findJumpTables() local 149 Score += PartitionScores::SingleCase; in findJumpTables() 151 Score += PartitionScores::FewCases; in findJumpTables() 153 Score += PartitionScores::Table; in findJumpTables() 158 (NumPartitions == MinPartitions[i] && Score > PartitionsScore[i])) { in findJumpTables() 161 PartitionsScore[i] = Score; in findJumpTables()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 507 double Score = 0.0f, FuncLevelScore = 0.0f; in overlap() local 514 Score += OverlapStats::score(I->Count, J->Count, in overlap() 527 Overlap.Overlap.ValueCounts[ValueKind] += Score; in overlap() 578 double Score = 0.0; in overlap() local 582 Score += OverlapStats::score(Counts[I], Other.Counts[I], in overlap() 586 Overlap.Overlap.CountSum += Score; in overlap()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | GuardWidening.cpp | 371 auto Score = computeWideningScore(Instr, Candidate, InvertCondition); in eliminateInstrViaWidening() local 372 LLVM_DEBUG(dbgs() << "Score between " << *getCondition(Instr) in eliminateInstrViaWidening() 374 << scoreTypeToString(Score) << "\n"); in eliminateInstrViaWidening() 375 if (Score > BestScoreSoFar) { in eliminateInstrViaWidening() 376 BestScoreSoFar = Score; in eliminateInstrViaWidening()
|
H A D | Reassociate.cpp | 2290 unsigned Score = 0; 2303 Score += it->second.Score; 2307 if (Score > Max || (Score == Max && MaxRank < BestRank)) { 2309 Max = Score; 2380 ++res.first->second.Score;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Scalar/ |
H A D | Reassociate.h | 89 unsigned Score; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 311 static bool mergeScore(const MergeInfo &M, uint32_t &Score, 1306 bool WaitcntBrackets::mergeScore(const MergeInfo &M, uint32_t &Score, in mergeScore() argument 1308 uint32_t MyShifted = Score <= M.OldLB ? 0 : Score + M.MyShift; in mergeScore() 1311 Score = std::max(MyShifted, OtherShifted); in mergeScore()
|
/third_party/skia/modules/skparagraph/src/ |
H A D | TextWrapper.cpp | 635 struct Score { in moveForward() struct 642 std::map<Index, Score> cache_; in moveForward()
|