Searched refs:Weight (Results 1 - 25 of 169) sorted by path

1234567

/external/chromium_org/content/child/
H A Dbrowser_font_resource_trusted.cc217 result.weight = static_cast<WebFontDescription::Weight>(font.weight);
/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/Source/web/
H A DWebFontDescription.cpp45 weight = static_cast<Weight>(desc.weight());
/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;
H A Dmcomp.h40 extern int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight);
/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/ports/
H A DSkFontMgr_android.cpp236 SkFontStyle::Weight weight(int index) {
/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/fonttools/Lib/fontTools/
H A DafmLib.py64 "Weight",
370 print(afm.Weight)
/external/fonttools/Tools/fontTools/
H A DafmLib.py64 "Weight",
370 print(afm.Weight)
/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;
H A Dmcomp.h40 extern int vp8_mv_bit_cost(int_mv *mv, int_mv *ref, int *mvcost[2], int Weight);
/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...]
H A DBranchProbabilityInfo.h112 uint32_t Weight);
/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...]

Completed in 569 milliseconds

1234567