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

12345678910

/external/skia/src/core/
H A DSkFontStyle.cpp19 SkFontStyle::SkFontStyle(int weight, int width, Slant slant) { argument
21 fUnion.fR.fWeight = SkTPin<int>(weight, kInvisible_Weight, kExtraBlack_Weight);
/external/dng_sdk/source/
H A Ddng_mosaic_info.cpp65 real32 weight);
78 real32 weight)
81 // Don't add zero weight elements.
83 if (weight <= 0.0f)
97 fWeight32 [j] += weight;
110 fWeight32 [fCount] = weight;
217 // Keep track of which weight is biggest.
77 Add(const dng_point &delta, real32 weight) argument
/external/webrtc/webrtc/modules/audio_processing/vad/
H A Dgmm.h23 // weight[n] = log(w[n]) - |dimension|/2 * log(2*pi) - 1/2 * log(det(cov[n]));
25 const double* weight; member in struct:webrtc::GmmParameters
/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/autotest/client/profilers/powertop/src/
H A Dprocess.c77 void suggest_process_death(char *process_match, char *tokill, struct line *slines, int linecount, double minwakeups, char *comment, int weight) argument
87 add_suggestion(comment, weight, 'K' , hotkey_string, do_kill);
H A Dconfig.c89 void suggest_kernel_config(char *string, int onoff, char *comment, int weight) argument
110 add_suggestion(comment, weight, 0, NULL, NULL);
H A Dsuggestions.c46 int weight; member in struct:suggestion
80 void add_suggestion(char *text, int weight, char key, char *keystring, suggestion_func *func) argument
92 new->weight = weight;
99 total_weight += weight;
106 int weight; local
118 weight = total_weight;
120 weight+=50;
121 value = rand() % weight;
124 running += ptr->weight;
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.h27 uptr weight; member in struct:__sanitizer::Suppression
/external/skia/samplecode/
H A DSampleHairCurves.cpp87 SkScalar weight = randW.nextUScalar1() * 2.0f; local
92 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/caliper/caliper/src/main/java/com/google/caliper/model/
H A DMeasurement.java50 private double weight; field in class:Measurement
55 this.weight = 0.0;
62 this.weight = builder.weight;
71 && this.weight == that.weight
79 return Objects.hashCode(value, weight, description);
85 .add("weight", weight)
94 public double weight() { method in class:Measurement
104 private Double weight; field in class:Measurement.Builder
112 weight(double weight) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationweights.h38 static inline int32_t lengthOfWeight(uint32_t weight) { argument
39 if((weight&0xffffff)==0) {
41 } else if((weight&0xffff)==0) {
43 } else if((weight&0xff)==0) {
59 * @param lowerLimit A collation element weight; the ranges will be filled to cover
61 * @param upperLimit A collation element weight; the ranges will be filled to cover
74 * @return The next weight in the ranges, or 0xffffffff if there is none left.
90 uint32_t incWeight(uint32_t weight, int32_t length) const;
91 uint32_t incWeightByOffset(uint32_t weight, int32_t length, int32_t offset) const;
/external/skia/src/pathops/
H A DSkOpContour.cpp50 void SkOpContourBuilder::addConic(SkPoint pts[3], SkScalar weight) { argument
52 fContour->addConic(pts, weight);
60 void SkOpContourBuilder::addCurve(SkPath::Verb verb, const SkPoint pts[4], SkScalar weight) { argument
75 this->addConic(ptStorage, 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/libtextclassifier/lang_id/
H A Dlanguage-identifier-features.cc127 const float weight = counts_[ngram_id] / norm; local
128 FloatFeatureValue value(ngram_id, weight);
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegColoring.cpp62 // Compute the total spill weight for VReg.
66 float weight = 0.0f; local
68 weight += LiveIntervals::getSpillWeight(MO.isDef(), MO.isUse(), MBFI,
70 return weight;
107 assert(LI->weight == 0.0f);
108 LI->weight = computeWeight(MRI, MBFI, VReg);
115 // registers), by weight next, and then by position.
122 if (LHS->weight != RHS->weight)
123 return LHS->weight > RH
[all...]
/external/pdfium/core/fxge/android/
H A Dcfx_androidfontinfo.cpp29 void* CFX_AndroidFontInfo::MapFont(int weight, argument
39 if (weight >= 700)
/external/pdfium/core/fxge/apple/
H A Dfx_mac_imp.cpp40 void* MapFont(int weight,
51 void GetJapanesePreference(CFX_ByteString* face, int weight, int pitch_family) { argument
56 *face = ((pitch_family & FXFONT_FF_ROMAN) || weight <= 400) ? JAPAN_MINCHO
60 void* CFX_MacFontInfo::MapFont(int weight, argument
84 if (weight > 400)
105 GetJapanesePreference(&face, weight, pitch_family);
/external/pdfium/core/fxge/ge/
H A Dfx_ge_fontmap.cpp56 int weight,
55 MapFontByUnicode(uint32_t dwUnicode, int weight, bool bItalic, int pitch_family) argument
H A Dfx_ge_linux.cpp42 int weight,
60 if (!(pitch_family & FXFONT_FF_ROMAN) && weight > 400)
71 void* MapFont(int weight,
80 void* CFX_LinuxFontInfo::MapFont(int weight, argument
94 size_t index = GetJapanesePreference(cstr_face, weight, pitch_family);
131 return FindFont(weight, bItalic, charset, pitch_family, cstr_face, !bCJK);
41 GetJapanesePreference(const FX_CHAR* facearr, int weight, int pitch_family) argument

Completed in 516 milliseconds

12345678910