Searched refs:getWeight (Results 1 - 25 of 36) sorted by relevance

12

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
H A DWeightedObservedPoint.java56 public double getWeight() { method in class:WeightedObservedPoint
H A DGaussianParametersGuesser.java261 if (p1.getWeight() < p2.getWeight()) {
264 if (p1.getWeight() > p2.getWeight()) {
H A DCurveFitter.java135 weights[i] = point.getWeight();
/external/deqp/framework/randomshaders/
H A DrsgBinaryOps.hpp55 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
98 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
120 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
142 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
156 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
180 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
204 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
231 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
258 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
272 static float getWeight (cons
[all...]
H A DrsgExpression.hpp94 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
103 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
115 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
133 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
151 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
169 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
191 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
216 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
235 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
257 static float getWeight (cons
[all...]
H A DrsgStatement.hpp65 static float getWeight (const GeneratorState& state);
81 static float getWeight (const GeneratorState& state);
101 static float getWeight (const GeneratorState& state);
122 static float getWeight (const GeneratorState& state);
H A DrsgStatement.cpp44 template <class T> float getWeight (const GeneratorState& state) { return T::getWeight(state); } function in namespace:rsg::__anon3086
49 float (*getWeight) (const GeneratorState& state); member in struct:rsg::__anon3086::StatementSpec
57 { getWeight<BlockStatement>, create<BlockStatement> },
58 { getWeight<ExpressionStatement>, create<ExpressionStatement> },
59 { getWeight<DeclarationStatement>, create<DeclarationStatement> },
60 { getWeight<ConditionalStatement>, create<ConditionalStatement> }
69 weights[ndx] = statementSpecs[ndx].getWeight(state);
128 float ExpressionStatement::getWeight (const GeneratorState& state) function in class:rsg::ExpressionStatement
190 float BlockStatement::getWeight (cons function in class:rsg::BlockStatement
322 float DeclarationStatement::getWeight (const GeneratorState& state) function in class:rsg::DeclarationStatement
527 float ConditionalStatement::getWeight (const GeneratorState& state) function in class:rsg::ConditionalStatement
[all...]
H A DrsgExpression.cpp272 template <class T> float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) { return T::getWeight(state, valueRange); } function in namespace:rsg::__anon3078
277 float (*getWeight) (const GeneratorState& state, ConstValueRangeAccess valueRange); member in struct:rsg::__anon3078::ExpressionSpec
283 { getWeight<FloatLiteral>, create<FloatLiteral> },
284 { getWeight<IntLiteral>, create<IntLiteral> },
285 { getWeight<BoolLiteral>, create<BoolLiteral> },
286 { getWeight<ConstructorOp>, create<ConstructorOp> },
287 { getWeight<AssignOp>, create<AssignOp> },
288 { getWeight<VariableRead>, create<VariableRead> },
289 { getWeight<MulO
387 float FloatLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::FloatLiteral
442 float IntLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::IntLiteral
490 float BoolLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::BoolLiteral
761 float ConstructorOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::ConstructorOp
885 float AssignOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::AssignOp
1148 float VariableRead::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::VariableRead
1209 float VariableWrite::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::VariableWrite
1253 float ParenOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::ParenOp
1358 float SwizzleOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::SwizzleOp
1592 float TexLookup::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::TexLookup
[all...]
H A DrsgBinaryOps.cpp76 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::BinaryOp
286 float MulOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::MulOp
291 return MulBase::getWeight(state, valueRange);
336 float AddOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::AddOp
341 return AddBase::getWeight(state, valueRange);
386 float SubOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::SubOp
391 return SubBase::getWeight(state, valueRange);
465 float RelationalOp<ComputeValueRange, EvaluateComp>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::RelationalOp
472 return BinaryOp<7, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange);
537 float LessThanOp::getWeight (cons function in class:rsg::LessThanOp
593 float LessOrEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::LessOrEqualOp
603 float GreaterThanOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::GreaterThanOp
613 float GreaterOrEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::GreaterOrEqualOp
745 float EqualityComparisonOp<IsEqual>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::EqualityComparisonOp
840 float EqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::EqualOp
850 float NotEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::NotEqualOp
[all...]
H A DrsgBuiltinFunctions.hpp48 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
121 float UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::UnaryBuiltinVecFunc
213 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::UnaryTrigonometricFunc
218 return UnaryBuiltinVecTemplateProxy<C>::getWeight(state, valueRange) * state.getProgramParameters().trigonometricBaseWeight;
428 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::UnaryExponentialFunc
433 return UnaryBuiltinVecTemplateProxy<C>::getWeight(state, valueRange) * state.getProgramParameters().exponentialBaseWeight;
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DWeightedMeasurement.java105 public double getWeight() { method in class:WeightedMeasurement
H A DAbstractEstimator.java132 double factor = -FastMath.sqrt(wm.getWeight());
164 residuals[i] = FastMath.sqrt(wm.getWeight()) * residual;
165 cost += wm.getWeight() * residual * residual;
187 criterion += wm[i].getWeight() * residual * residual;
202 chiSquare += residual * residual / wm[i].getWeight();
H A DGaussNewtonEstimator.java183 double weight = measurements[i].getWeight();
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DBitmapPreFiller.java60 totalWeight += size.getWeight();
67 int bytesForSize = Math.round(bytesPerWeight * size.getWeight());
H A DPreFillType.java64 int getWeight() { method in class:PreFillType
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DBNF.java188 int weight = getWeight();
273 int weight = getWeight();
293 int getWeight() { method in class:BNF
309 int weight = getWeight();
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DProber.java133 newOut = this.addAuthoritativeAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, this.getTTL(), info.getPriority(), info.getWeight(), info.getPort(), this.getDns().getLocalHost()
/external/llvm/lib/CodeGen/
H A DRegisterPressure.cpp28 unsigned Weight = PSetI.getWeight();
36 unsigned Weight = PSetI.getWeight();
85 unsigned Weight = PSetI.getWeight();
389 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocalePriorityList.java131 public Double getWeight(ULocale language) { method in class:LocalePriorityList
H A DLocaleMatcher.java117 add(language, languagePriorityList.getWeight(language));
180 final double weight = matchRow.get1() * languageList.getWeight(language);
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java559 public abstract int getWeight(); method in class:ServiceInfo
/external/skia/src/utils/
H A DSkTextureCompressor_ASTC.cpp1433 int getWeight(const int* unquantizedWeights, int idx, bool dualPlane) const {
1473 const int p00 = this->getWeight(unquantizedValues, idx, dualPlane);
1474 const int p01 = this->getWeight(unquantizedValues, idx + 1, dualPlane);
1475 const int p10 = this->getWeight(unquantizedValues, idx + fWeightDimX, dualPlane);
1476 const int p11 = this->getWeight(unquantizedValues, idx + fWeightDimX + 1, dualPlane);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java647 int getWeight(); method in interface:LocalCache.ValueReference
697 public int getWeight() {
1591 public int getWeight() { method in class:LocalCache.WeakValueReference
1638 public int getWeight() { method in class:LocalCache.SoftValueReference
1688 public int getWeight() { method in class:LocalCache.StrongValueReference
1735 public int getWeight() { method in class:LocalCache.WeightedWeakValueReference
1759 public int getWeight() { method in class:LocalCache.WeightedSoftValueReference
1782 public int getWeight() { method in class:LocalCache.WeightedStrongValueReference
2643 totalWeight -= valueReference.getWeight();
2676 int weight = e.getValueReference().getWeight();
3489 public int getWeight() { method in class:LocalCache.LoadingValueReference
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSRecord.java698 public int getWeight() { method in class:DNSRecord.Service
728 DNSRecord.Service localService = new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(), dns.getLocalHost().getName());
798 return dns.addAnswer(in, addr, port, out, new DNSRecord.Service(info.getQualifiedName(), DNSRecordClass.CLASS_IN, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(), dns
H A DServiceInfoImpl.java220 this._weight = info.getWeight();
582 * @see javax.jmdns.ServiceInfo#getWeight()
585 public int getWeight() { method in class:ServiceInfoImpl
887 _weight = srv.getWeight();

Completed in 2543 milliseconds

12