HomeSort by relevance Sort by last modified time
    Searched refs:weight (Results 1 - 25 of 888) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
WeightedObservedPoint.java 33 /** Weight of the measurement in the fitting process. */
34 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) {
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;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
WeightedMeasurement.java 59 /** 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) {
80 this.weight = weight;
89 * @param weight weight of the measurement in the least squares problem
93 public WeightedMeasurement(double weight, double measuredValue
    [all...]
  /frameworks/minikin/include/minikin/
AnalyzeStyle.h 22 bool analyzeStyle(const uint8_t* os2_data, size_t os2_size, int* weight, bool* italic);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillType.java 15 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) {
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
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Measurement.java 50 private double weight;
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() {
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/vad/
gmm.h 23 // 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/clang/www/demo/
syntax.css 4 .llvm_keyword { font-weight: bold; color: blue }
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/bin/
route53 75 def _add_del(conn, hosted_zone_id, change, name, type, identifier, weight, values, ttl, comment):
79 identifier=identifier, weight=weight)
84 def _add_del_alias(conn, hosted_zone_id, change, name, type, identifier, weight, alias_hosted_zone_id, alias_dns_name, comment):
88 identifier=identifier, weight=weight)
93 identifier=None, weight=None, comment=""):
94 """Add a new record to a zone. identifier and weight are optional."""
96 weight, values, ttl, comment)
99 identifier=None, weight=None, comment="")
    [all...]
  /external/jmdns/src/javax/jmdns/
ServiceInfo.java 111 * @param weight
112 * weight of the service
119 public static ServiceInfo create(final String type, final String name, final int port, final int weight, final int priority, final String text) {
120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text);
134 * @param weight
135 * weight of the service
142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) {
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
155 * @param weight
156 * weight of the servic
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationWeights.java 77 * @param lowerLimit A collation element weight; the ranges will be filled to cover
79 * @param upperLimit A collation element weight; the ranges will be filled to cover
92 // printf("error: unable to get Weight ranges\n");
136 * @return The next weight in the ranges, or 0xffffffff if there is none left.
142 /* get the next weight */
144 long weight = range.start; local
149 /* increment the weight for the next value */
150 range.start = incWeight(weight, range.length);
154 return weight;
179 public static int lengthOfWeight(long weight) {
332 long weight=lowerLimit; local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationWeights.java 75 * @param lowerLimit A collation element weight; the ranges will be filled to cover
77 * @param upperLimit A collation element weight; the ranges will be filled to cover
90 // printf("error: unable to get Weight ranges\n");
134 * @return The next weight in the ranges, or 0xffffffff if there is none left.
140 /* get the next weight */
142 long weight = range.start; local
147 /* increment the weight for the next value */
148 range.start = incWeight(weight, range.length);
152 return weight;
177 public static int lengthOfWeight(long weight) {
330 long weight=lowerLimit; local
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/IN/
SRV.py 27 @ivar weight: the weight
28 @type weight: int
35 __slots__ = ['priority', 'weight', 'port', 'target']
37 def __init__(self, rdclass, rdtype, priority, weight, port, target):
40 self.weight = weight
46 return '%d %d %d %s' % (self.priority, self.weight, self.port,
51 weight = tok.get_uint16()
56 return cls(rdclass, rdtype, priority, weight, port, target
    [all...]
  /dalvik/docs/
prettify.css 18 .kwd { color: #006; font-weight: bold; }
20 .typ { color: #404; font-weight: bold; }
24 .tag { color: #006; font-weight: bold; }
  /external/icu/icu4c/source/i18n/
collationweights.h 36 static inline int32_t lengthOfWeight(uint32_t weight) {
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/autotest/client/profilers/powertop/src/
suggestions.c 46 int weight; member in struct:suggestion
80 void add_suggestion(char *text, int weight, char key, char *keystring, suggestion_func *func)
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/icu/android_icu4j/src/main/java/android/icu/util/
LocalePriorityList.java 51 * weight, and then by input order. That is, if two languages have the same weight, the first one in the original order
79 * Add a language code to the list being built, with weight 1.0.
89 * Add a language code to the list being built, with specified weight.
92 * @param weight value from 0.0 to 1.0
95 public static Builder add(ULocale languageCode, final double weight) {
96 return new Builder().add(languageCode, weight);
121 * Return the weight for a given language, or null if there is none. Note that
124 * @param language to get weight of
125 * @return weight
142 double weight = languagesAndWeights.get(language); local
230 Double weight = languageToWeight.get(lang); local
241 final Double weight = langEntry.getKey(); local
321 final double weight = Double.parseDouble(itemMatcher.group(2)); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocalePriorityList.java 50 * weight, and then by input order. That is, if two languages have the same weight, the first one in the original order
78 * Add a language code to the list being built, with weight 1.0.
89 * Add a language code to the list being built, with specified weight.
92 * @param weight value from 0.0 to 1.0
96 public static Builder add(ULocale languageCode, final double weight) {
97 return new Builder().add(languageCode, weight);
124 * Return the weight for a given language, or null if there is none. Note that
127 * @param language to get weight of
128 * @return weight
147 double weight = languagesAndWeights.get(language); local
241 Double weight = languageToWeight.get(lang); local
252 final Double weight = langEntry.getKey(); local
337 final double weight = Double.parseDouble(itemMatcher.group(2)); local
    [all...]
  /external/opencv3/modules/imgproc/src/
gcgraph.hpp 66 TWeight weight; member in class:GCGraph::Vtx
74 TWeight weight; member in class:GCGraph::Edge
127 fromI.weight = w;
133 toI.weight = revw;
143 TWeight dw = vtcs[i].weight;
149 vtcs[i].weight = sourceW - sinkW;
169 if( v->weight != 0 )
174 v->t = v->weight < 0;
188 TWeight minWeight, weight; local
200 if( edgePtr[ei^vt].weight == 0
    [all...]
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker_commons.hpp 141 WT weight = (WT)cvRound(fixed_point_mult * w); local
142 if (weight < WEIGHT_THRESHOLD * fixed_point_mult) weight = 0;
144 return weight;
263 WT weight = (WT)cvRound(fixed_point_mult * w); local
264 if (weight < WEIGHT_THRESHOLD * fixed_point_mult) weight = 0;
266 return weight;
318 static inline void f(IT* estimation, IT* weights_sum, WT weight, T p)
320 estimation[0] += (IT)weight * p
    [all...]
  /cts/tests/openglperf2/assets/fragment/
water 22 float weight = abs(mod(float(u_Time), 101.0) - 50.0) / 50.0;// loop between 0.0 and 1.0
27 vec3 normal = normalize((map1 * weight) + (map2 * (1.0 - weight)));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
HistoryEvaluator.java 60 sumValue += data.evaluation * data.weight;
61 sumWeight += data.weight;
86 list.get(i).weight *= factor;
90 while (!list.isEmpty() && isZero(list.get(0).weight)) {
100 * For each stroke it holds its initial value and the current weight. Initially the
101 * weight is set to 1.0
105 public float weight; field in class:HistoryEvaluator.Data
109 weight = 1.0f;
  /developers/build/prebuilts/gradle/PermissionRequest/Application/src/main/assets/
sample.css 28 font-weight: bold;
  /developers/samples/android/content/webview/PermissionRequest/Application/src/main/assets/
sample.css 28 font-weight: bold;
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/static/css/
main.css 35 font-weight: normal;
43 font-weight: bold;
66 font-weight: normal;
75 font-weight: normal;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
prettify.css 4 .kwd { color: #7F0055; font-weight:bold; }

Completed in 1077 milliseconds

1 2 3 4 5 6 7 8 91011>>