Searched refs:weight (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
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;
/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/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/clang/www/demo/
H A Dsyntax.css4 .llvm_keyword { font-weight: bold; color: blue }
/external/marisa-trie/lib/marisa/
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 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/jmdns/src/javax/jmdns/
H A DServiceInfo.java111 * @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) { argument
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) { argument
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text);
155 * @param weight
156 * weight o
163 create(final String type, final String name, final int port, final int weight, final int priority, final Map<String, ?> props) argument
186 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final Map<String, ?> props) argument
207 create(final String type, final String name, final int port, final int weight, final int priority, final byte[] text) argument
230 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final byte[] text) argument
253 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final String text) argument
278 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final String text) argument
301 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
326 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
349 create(final String type, final String name, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
374 create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final boolean persistent, final byte[] text) argument
395 create(final Map<Fields, String> qualifiedNameMap, final int port, final int weight, final int priority, final boolean persistent, final Map<String, ?> props) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationWeights.java75 * @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
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;
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) { argument
178 if((weight
189 getWeightTrail(long weight, int length) argument
193 setWeightTrail(long weight, int length, int trail) argument
198 getWeightByte(long weight, int idx) argument
202 setWeightByte(long weight, int idx, int b) argument
225 truncateWeight(long weight, int length) argument
229 incWeightTrail(long weight, int length) argument
233 decWeightTrail(long weight, int length) argument
242 incWeight(long weight, int length) argument
256 incWeightByOffset(long weight, int length, int offset) argument
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ssim.h21 int lumamask, double *weight);
/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;
H A Dcollationweights.cpp37 /* collation element weight allocation -------------------------------------- */
42 getWeightTrail(uint32_t weight, int32_t length) { argument
43 return (uint32_t)(weight>>(8*(4-length)))&0xff;
47 setWeightTrail(uint32_t weight, int32_t length, uint32_t trail) { argument
49 return (uint32_t)((weight&(0xffffff00<<length))|(trail<<length));
53 getWeightByte(uint32_t weight, int32_t idx) { argument
54 return getWeightTrail(weight, idx); /* same calculation */
58 setWeightByte(uint32_t weight, int32_t idx, uint32_t byte) { argument
78 return (uint32_t)((weight&mask)|(byte<<idx));
82 truncateWeight(uint32_t weight, int32_ argument
87 incWeightTrail(uint32_t weight, int32_t length) argument
92 decWeightTrail(uint32_t weight, int32_t length) argument
152 incWeight(uint32_t weight, int32_t length) const argument
167 incWeightByOffset(uint32_t weight, int32_t length, int32_t offset) const argument
261 uint32_t weight=lowerLimit; local
527 uint32_t weight = range.start; local
[all...]
/external/openfst/src/include/fst/
H A Dfstlib.h22 // input label, an output label, and a weight. The more familiar
32 // (transition) definition, which allows changing the label, weight,
34 // integral types but the weight can be an arbitrary type whose
72 #include <fst/factor-weight.h>
101 #include <fst/weight.h>
102 #include <fst/expectation-weight.h>
103 #include <fst/float-weight.h>
104 #include <fst/lexicographic-weight.h>
105 #include <fst/pair-weight.h>
106 #include <fst/power-weight
[all...]
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...]
H A Darc.h28 #include <fst/expectation-weight.h>
29 #include <fst/float-weight.h>
30 #include <fst/lexicographic-weight.h>
31 #include <fst/power-weight.h>
32 #include <fst/product-weight.h>
33 #include <fst/signed-log-weight.h>
34 #include <fst/sparse-power-weight.h>
38 #include <fst/string-weight.h>
51 : ilabel(i), olabel(o), weight(w), nextstate(s) {}
63 Weight weight; member in class:fst::ArcTpl
99 Weight weight; // Transition weight member in class:fst::StringArc
133 Weight weight; // Transition weight member in struct:fst::GallicArc
158 Weight weight; // Transition weight member in struct:fst::ReverseArc
182 Weight weight; // Transition weight member in struct:fst::LexicographicArc
206 Weight weight; // Transition weight member in struct:fst::ProductArc
238 Weight weight; // Transition weight member in struct:fst::PowerArc
270 Weight weight; // Transition weight member in struct:fst::SparsePowerArc
301 Weight weight; // Transition weight member in struct:fst::ExpectationArc
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocalePriorityList.java50 * 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) { argument
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
310 add(final ULocale languageCode, double weight) argument
[all...]
/external/selinux/sepolgen/tests/
H A Dtest_objectmodel.py32 self.assertEquals(pm.weight, 1)
39 self.assertEquals(pm.weight, 5)
44 self.assertEquals(pm.weight, 5)
/external/skia/src/pathops/
H A DSkPathOpsConic.h41 const SkDConic& set(const SkPoint pts[kPointCount], SkScalar weight) { argument
43 fWeight = weight;
59 static int FindExtrema(const double src[], SkScalar weight, double tValue[1]);
99 static SkDConic SubDivide(const SkPoint a[kPointCount], SkScalar weight, double t1, double t2) { argument
101 conic.set(a, weight);
106 SkScalar* weight) const;
108 static SkDPoint SubDivide(const SkPoint pts[kPointCount], SkScalar weight, argument
112 conic.set(pts, weight);
/external/clang/docs/tools/
H A Dmanpage.css14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none;
45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
49 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none;
53 font-family: Arial,Helvetica; font-weight
[all...]
/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
/external/mesa3d/docs/
H A Dmesa.css11 font-weight: bold;
17 font-weight: bold;
/external/pdfium/core/src/fxge/apple/
H A Dfx_mac_imp.cpp31 virtual void* MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR family, FX_BOOL& bExact);
35 static void GetJapanesePreference(CFX_ByteString& face, int weight, int picth_family) argument
41 if (!(picth_family & FXFONT_FF_ROMAN) && weight > 400) {
47 void* CFX_MacFontInfo::MapFont(int weight, FX_BOOL bItalic, int charset, int pitch_family, FX_LPCSTR cstr_face, FX_BOOL& bExact) argument
72 GetJapanesePreference(face, weight, pitch_family);
/external/selinux/sepolgen/src/sepolgen/
H A Dobjectmodel.py82 of the bandwidth of the flow (weight).
84 def __init__(self, perm, dir, weight):
87 self.weight = weight
92 self.weight)
148 default is FLOW_BOTH with a weight of 5.
167 total += pm.weight
/external/bzip2/
H A Dhuffman.c37 while (weight[tmp] < weight[heap[zz >> 1]]) { \
52 weight[heap[yy+1]] < weight[heap[yy]]) \
54 if (weight[tmp] < weight[heap[yy]]) break; \
76 Int32 weight [ BZ_MAX_ALPHA_SIZE * 2 ]; local
80 weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8;
88 weight[0] = 0;
105 weight[nNode
[all...]
/external/zopfli/src/zopfli/
H A Dkatajainen.c36 size_t weight; /* Total weight (symbol count) of this chain. */ member in struct:Node
54 static void InitNode(size_t weight, int count, Node* tail, Node* node) { argument
55 node->weight = weight;
123 InitNode(leaves[lastcount].weight, lastcount + 1, 0, newchain);
125 size_t sum = lists[index - 1][0]->weight + lists[index - 1][1]->weight;
126 if (lastcount < numsymbols && sum > leaves[lastcount].weight) {
128 InitNode(leaves[lastcount].weight, lastcoun
[all...]
/external/skia/src/fonts/
H A DSkFontMgr_indirect.cpp73 // If pattern.weight < 400, weights below pattern.weight are checked
74 // in descending order followed by weights above pattern.weight
76 // If pattern.weight > 500, weights above pattern.weight are checked
77 // in ascending order followed by weights below pattern.weight
79 // If pattern.weight is 400, 500 is checked first
80 // and then the rule for pattern.weight < 400 is used.
81 // If pattern.weight is 500, 400 is checked first
82 // and then the rule for pattern.weight < 40
[all...]

Completed in 870 milliseconds

1234567891011>>