Searched defs:weight (Results 1 - 25 of 199) sorted by relevance

12345678

/external/skia/src/core/
H A DSkFontStyle.cpp19 SkFontStyle::SkFontStyle(int weight, int width, Slant slant) { argument
21 fUnion.fR.fWeight = SkPin32(weight, kThin_Weight, kBlack_Weight);
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DGaussianFitter.java68 * with a weight of 1.0.
79 * with a weight of <code>weight</code>.
81 * @param weight weight assigned to point
85 public void addObservedPoint(double weight, double x, double y) { argument
86 fitter.addObservedPoint(weight, x, y);
H A DWeightedObservedPoint.java34 private final double weight; field in class:WeightedObservedPoint
43 * @param weight weight of the measurement in the fitting process
47 public WeightedObservedPoint(final double weight, final double x, final double y) { argument
48 this.weight = weight;
53 /** Get the weight of the measurement in the fitting process.
54 * @return weight of the measurement in the fitting process
57 return weight;
H A DHarmonicFitter.java65 * @param weight weight of the observed point in the fit
70 public void addObservedPoint(double weight, double x, double y) { argument
71 fitter.addObservedPoint(weight, x, y);
H A DPolynomialFitter.java53 * @param weight weight of the observed point in the fit
58 public void addObservedPoint(double weight, double x, double y) { argument
59 fitter.addObservedPoint(weight, x, y);
H A DCurveFitter.java59 /** Add an observed (x,y) point to the sample with unit weight.
74 * @param weight weight of the observed point in the fit
82 public void addObservedPoint(double weight, double x, double y) { argument
83 observations.add(new WeightedObservedPoint(weight, x, y));
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.h25 uptr weight; member in struct:__sanitizer::Suppression
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DTrack.java47 * @param weight The weight from 0 to 1 on how much to apply the track
51 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars); argument
H A DBoneTrack.java185 * @param weight the weight of the animation
190 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
246 if (weight != 1f) {
247 target.blendAnimTransforms(tempV, tempQ, scales != null ? tempS : null, weight);
331 public void setTime(float time, float weight, AnimControl control, AnimChannel channel) { argument
H A DPoseTrack.java103 private void applyFrame(Mesh target, int frameIndex, float weight){ argument
108 float poseWeight = frame.weights[i] * weight;
117 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
124 applyFrame(target, 0, weight);
126 applyFrame(target, times.length - 1, weight);
137 applyFrame(target, startFrame, blend * weight);
138 applyFrame(target, endFrame, (1f - blend) * weight);
H A DSpatialTrack.java68 public void setTime(float time, float weight, AnimControl control, AnimChannel channel, TempVars vars) { argument
/external/libnl/src/lib/
H A Dlink.c69 uint32_t weight = nl_cli_parse_u32(arg); local
70 rtnl_link_set_weight(link, weight);
/external/openfst/src/include/fst/
H A Dreweight.h39 // An arc of weight w, with an origin state of potential p and
73 typename Arc::Weight weight = potential[state]; local
74 if (weight != Weight::Zero()) {
85 arc.weight = Divide(Times(arc.weight, nextweight), weight,
88 arc.weight = Divide(Times(weight, arc.weight), nextweight,
93 fst->SetFinal(state, Divide(fst->Final(state), weight, DIVIDE_LEF
[all...]
/external/skia/samplecode/
H A DSampleHairCurves.cpp88 SkScalar weight = randW.nextUScalar1() * 2.0f; local
93 weight);
/external/speex/libspeex/
H A Dquant_lsp_bfin.h108 spx_word16_t *weight,
131 " I1 = %3;\n\t" /* %3: &weight[0] */
155 : "a" (x), "a" (weight), "b" (cdbk), "a" (nbVec), "a" (nbDim)
106 lsp_weight_quant( spx_word16_t *x, spx_word16_t *weight, const signed char *cdbk, int nbVec, int nbDim ) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DWeightedMeasurement.java59 /** Measurement weight. */
60 private final double weight; field in class:WeightedMeasurement
72 * @param weight weight of the measurement in the least squares problem
79 public WeightedMeasurement(double weight, double measuredValue) { argument
80 this.weight = weight;
89 * @param weight weight of the measurement in the least squares problem
93 public WeightedMeasurement(double weight, doubl argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationweights.h36 static inline int32_t lengthOfWeight(uint32_t weight) { argument
37 if((weight&0xffffff)==0) {
39 } else if((weight&0xffff)==0) {
41 } else if((weight&0xff)==0) {
57 * @param lowerLimit A collation element weight; the ranges will be filled to cover
59 * @param upperLimit A collation element weight; the ranges will be filled to cover
72 * @return The next weight in the ranges, or 0xffffffff if there is none left.
88 uint32_t incWeight(uint32_t weight, int32_t length) const;
89 uint32_t incWeightByOffset(uint32_t weight, int32_t length, int32_t offset) const;
/external/marisa-trie/lib/marisa/
H A Dkey.h14 void set_weight(double weight) { argument
15 weight_ = weight;
27 double weight() const { function in class:marisa::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa::WRange
83 return lhs.weight() > rhs.weight();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dkey.h16 void set_weight(double weight) { argument
17 weight_ = weight;
29 double weight() const { function in class:marisa_alpha::Key
H A Drange.h43 WRange(const Range &range, double weight) argument
44 : range_(range), weight_(weight) {}
45 WRange(UInt32 begin, UInt32 end, UInt32 pos, double weight) argument
46 : range_(begin, end, pos), weight_(weight) {}
57 void set_weight(double weight) { argument
58 weight_ = weight;
73 double weight() const { function in class:marisa_alpha::WRange
83 return lhs.weight() > rhs.weight();
/external/ceres-solver/internal/ceres/
H A Dgraph.h54 // its weight is set to the new weight.
55 void AddVertex(const Vertex& vertex, double weight) { argument
60 vertex_weights_[vertex] = weight;
63 // Uses weight = 1.0. If vertex already exists, its weight is set to
97 void AddEdge(const Vertex& vertex1, const Vertex& vertex2, double weight) { argument
106 edge_weights_[make_pair(vertex1, vertex2)] = weight;
108 edge_weights_[make_pair(vertex2, vertex1)] = weight;
112 // Uses weight
[all...]
H A Dvisibility.cc146 const double weight = static_cast<double>(count) / local
149 graph->AddEdge(camera1, camera2, weight);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DPreFillType.java15 private final int weight; field in class:PreFillType
26 * @param weight An integer indicating how to balance pre-filling this size and configuration of
29 PreFillType(int width, int height, Bitmap.Config config, int weight) { argument
37 this.weight = weight;
62 * Returns the weight of the {@link android.graphics.Bitmap Bitmaps} of this type.
65 return weight;
74 && weight == other.weight
85 result = 31 * result + weight;
107 private int weight = 1; field in class:PreFillType.Builder
157 setWeight(int weight) argument
[all...]
/external/pdfium/core/src/fxge/android/
H A Dfx_android_font.cpp26 void* CFX_AndroidFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR face, FX_BOOL& bExact) argument
32 if (weight >= 700) {

Completed in 620 milliseconds

12345678