Searched defs:Weight (Results 1 - 25 of 145) sorted by path

123456

/external/chromium_org/courgette/
H A Dadjustment_method.cc152 uint32 Weight() const { function in struct:courgette::Node
193 uint32 a_weight = a->Weight();
194 uint32 b_weight = b->Weight();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js740 // Weight of CSS properties based on their usage on a few popular websites: https://gist.github.com/3751436
741 WebInspector.CSSMetadata.Weight = {
886 var weight = WebInspector.CSSMetadata.Weight[properties[i]];
888 weight = WebInspector.CSSMetadata.Weight[WebInspector.CSSMetadata.canonicalPropertyName(properties[i])];
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFontDescription.h58 enum Weight { enum in struct:blink::WebFontDescription
89 Weight weight;
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dmcomp.c27 int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight) argument
33 * NEAREST for subsequent blocks. The "Weight" parameter allows, to a
36 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7;
/external/chromium_org/third_party/skia/include/ports/
H A DSkFontStyle.h15 enum Weight { enum in class:SkFontStyle
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkPanose.h54 struct Weight { struct in struct:SkPanose::Data::TextAndDisplay
234 struct Weight { struct in struct:SkPanose::Data::Script
382 struct Weight { struct in struct:SkPanose::Data::Decorative
543 struct Weight { struct in struct:SkPanose::Data::Pictoral
/external/clang/lib/CodeGen/
H A DCGStmt.cpp1118 uint64_t Weight = Total / NCases, Rem = Total % NCases; local
1121 SwitchWeights->push_back(Weight + (Rem ? 1 : 0));
H A DCodeGenPGO.cpp954 /// greater than \c Weight.
955 static uint32_t scaleBranchWeight(uint64_t Weight, uint64_t Scale) { argument
957 uint64_t Scaled = Weight / Scale + 1;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libvpx/libvpx/vp8/encoder/
H A Dmcomp.c26 int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight) argument
32 * NEAREST for subsequent blocks. The "Weight" parameter allows, to a
35 return ((mvcost[0][(mv->as_mv.row - ref->as_mv.row) >> 1] + mvcost[1][(mv->as_mv.col - ref->as_mv.col) >> 1]) * Weight) >> 7;
/external/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h327 /// In addition to the raw weight amount, Weight stores the type of the edge
331 struct Weight { struct in class:llvm::BlockFrequencyInfoImplBase
336 Weight() : Type(Local), Amount(0) {} function in struct:llvm::BlockFrequencyInfoImplBase::Weight
348 typedef SmallVector<Weight, 4> WeightList;
355 add(Node, Amount, Weight::Local);
358 add(Node, Amount, Weight::Exit);
361 add(Node, Amount, Weight::Backedge);
366 /// Combines multiple edges to the same \a Weight::TargetNode and scales
376 void add(const BlockNode &Node, uint64_t Amount, Weight::DistType Type);
405 const BlockNode &Pred, const BlockNode &Succ, uint64_t Weight);
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveInterval.h535 LiveInterval(unsigned Reg, float Weight) argument
536 : reg(Reg), weight(Weight) {}
H A DMachineRegisterInfo.h974 unsigned Weight; member in class:llvm::PSetIterator
976 PSetIterator(): PSet(nullptr), Weight(0) {}
982 Weight = TRI->getRegClassWeight(RC).RegWeight;
986 Weight = TRI->getRegUnitWeight(RegUnit);
993 unsigned getWeight() const { return Weight; }
/external/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp61 typedef BlockFrequencyInfoImplBase::Weight Weight;
88 BlockMass takeMass(uint32_t Weight);
99 BlockMass DitheringDistributer::takeMass(uint32_t Weight) {
100 assert(Weight && "invalid weight");
101 assert(Weight <= RemWeight);
102 BlockMass Mass = RemMass * BranchProbability(Weight, RemWeight);
105 RemWeight -= Weight;
111 Weight::DistType Type) {
124 Weight
261 addToDist(Distribution &Dist, const LoopData *OuterLoop, const BlockNode &Pred, const BlockNode &Succ, uint64_t Weight) argument
[all...]
H A DBranchProbabilityInfo.cpp47 // | | (Weight = 124)
51 // | (Weight = 4)
74 /// \brief Weight for a branch taken going into a cold block.
82 /// \brief Weight for a branch not-taken into a cold block.
199 ConstantInt *Weight = dyn_cast<ConstantInt>(WeightsNode->getOperand(i)); local
200 if (!Weight)
203 std::max<uint32_t>(1, Weight->getLimitedValue(WeightLimit)));
544 uint32_t Weight = getEdgeWeight(BB, I.getSuccessorIndex()); local
547 Sum += Weight;
568 uint32_t Weight local
610 uint32_t Weight = 0; local
624 setEdgeWeight(const BasicBlock *Src, unsigned IndexInSuccessors, uint32_t Weight) argument
629 << Weight << "\\n"); local
[all...]
/external/llvm/lib/CodeGen/
H A DLiveIntervalAnalysis.cpp175 float Weight = TargetRegisterInfo::isPhysicalRegister(reg) ? local
177 return new LiveInterval(reg, Weight);
H A DMachineBasicBlock.cpp490 // If we see non-zero value for the first time it means we actually use Weight
507 // If Weight list is empty it means we don't use it (disabled optimization).
520 // If Weight list is empty it means we don't use it (disabled optimization).
586 uint32_t Weight = 0; local
588 // If Weight list is empty it means we don't use it (disabled optimization).
590 Weight = *fromMBB->Weights.begin();
592 addSuccessor(Succ, Weight);
604 uint32_t Weight = 0; local
606 Weight = *fromMBB->Weights.begin();
607 addSuccessor(Succ, Weight);
[all...]
H A DMachineBranchProbabilityInfo.cpp41 uint32_t Weight = getEdgeWeight(MBB, I); local
42 Sum += Weight;
56 uint32_t Weight = getEdgeWeight(MBB, I); local
57 Sum += Weight / Scale;
66 uint32_t Weight = Src->getSuccWeight(Dst); local
67 if (!Weight)
69 return Weight;
94 uint32_t Weight = getEdgeWeight(MBB, I); local
95 if (Weight > MaxWeight) {
96 MaxWeight = Weight;
[all...]
H A DRegisterPressure.cpp29 unsigned Weight = PSetI.getWeight(); local
31 CurrSetPressure[*PSetI] += Weight;
37 unsigned Weight = PSetI.getWeight(); local
39 assert(CurrSetPressure[*PSetI] >= Weight && "register pressure underflow");
40 CurrSetPressure[*PSetI] -= Weight;
86 unsigned Weight = PSetI.getWeight(); local
88 CurrSetPressure[*PSetI] += Weight;
388 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight(); local
406 I->setUnitInc(I->getUnitInc() + Weight);
H A DTailDuplication.cpp734 uint32_t Weight = MBPI->getEdgeWeight(PredBB, TailBB); local
739 PredBB->addSuccessor(NewTarget, Weight);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h157 uint32_t Weight):
158 Mask(mask), BB(bb), Bits(bits), ExtraWeight(Weight) { }
265 uint32_t Weight):
266 Mask(M), ThisBB(T), TargetBB(Tr), ExtraWeight(Weight) { }
672 uint32_t Weight = 0);
156 CaseBits(uint64_t mask, MachineBasicBlock* bb, unsigned bits, uint32_t Weight) argument
264 BitTestCase(uint64_t M, MachineBasicBlock* T, MachineBasicBlock* Tr, uint32_t Weight) argument
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp516 SmallVector<std::pair<BinaryOperator*, APInt>, 8> Worklist; // (Op, Weight)
548 APInt Weight = P.second; // Number of paths to this operand. local
549 DEBUG(dbgs() << "OPERAND: " << *Op << " (" << Weight << ")\n"); local
556 DEBUG(dbgs() << "DIRECT ADD: " << *Op << " (" << Weight << ")\n"); local
557 Worklist.push_back(std::make_pair(BO, Weight));
569 DEBUG(dbgs() << "ADD USES LEAF: " << *Op << " (" << Weight << ")\n"); local
571 Leaves[Op] = Weight;
580 IncorporateWeight(It->second, Weight, Opcode);
607 Weight = It->second;
624 DEBUG(dbgs() << "MORPH LEAF: " << *Op << " (" << Weight << ") T local
634 DEBUG(dbgs() << "ADD LEAF: " << *Op << " (" << Weight << ")\\n"); local
650 APInt Weight = It->second; local
[all...]
H A DSampleProfile.cpp550 unsigned Weight = local
554 << " - weight: " << Weight << ")\n"); local
555 return Weight;
575 unsigned Weight = 0; local
578 if (InstWeight > Weight)
579 Weight = InstWeight;
581 Entry.first->second = Weight;
582 return Weight;
595 unsigned Weight = getBlockWeight(B); local
596 Changed |= (Weight >
938 unsigned Weight = EdgeWeights[E]; local
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp536 unsigned Weight = 0; local
539 Weight += RegBank.getRegUnit(*I).Weight;
541 return Weight;
1226 // A Weight field caches the max per-register unit weight in each UberRegSet.
1233 unsigned Weight; member in struct:__anon26577::UberRegSet
1236 UberRegSet(): Weight(0) {}
1316 unsigned MaxWeight = 0, Weight = 0; local
1319 if (Weight > MaxWeight)
1320 MaxWeight = Weight;
[all...]
H A DCodeGenRegisters.h404 // Weight assigned to this RegUnit for estimating register pressure.
407 unsigned Weight; member in struct:llvm::RegUnit
418 RegUnit() : Weight(0), RegClassUnitSetsIdx(0) {
434 unsigned Weight; // Cache the sum of all unit weights. member in struct:llvm::RegUnitSet
437 RegUnitSet() : Weight(0), Order(0) {}
587 unsigned newRegUnit(unsigned Weight) { argument
589 RegUnits.back().Weight = Weight;
623 unsigned Weight = 0; local
626 Weight
[all...]

Completed in 1457 milliseconds

123456