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

123

/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::__anon4848
49 float (*getWeight) (const GeneratorState& state); member in struct:rsg::__anon4848::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::__anon4840
277 float (*getWeight) (const GeneratorState& state, ConstValueRangeAccess valueRange); member in struct:rsg::__anon4840::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/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h43 unsigned getWeight() const { return (Weight); }; function in class:llvm::HexagonResource
51 return (A.getWeight() < B.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/swiftshader/third_party/LLVM/lib/Analysis/
H A DPathProfileInfo.cpp130 (*next)->getWeight() <= pathNumber && // weight must be <= pathNumber
131 (!best || (best->getWeight() < (*next)->getWeight())) ) // best one?
146 increment -= next->getWeight();
184 increment -= next->getWeight();
/external/swiftshader/third_party/subzero/src/
H A DIceOperand.cpp97 return A.getWeight() < B.getWeight();
217 RegWeight Variable::getWeight(const Cfg *Func) const { function in class:Ice::Variable
654 if (W.getWeight() == RegWeight::Inf)
657 Str << W.getWeight();
H A DIceRegAlloc.cpp672 RegWeight W = Item->getWeight(Func);
683 RegWeight W = Item->getWeight(Func);
693 Iter.Cur->getWeight(Func) <= Iter.Weights[MinWeightIndex]) {
722 if (Iter.Cur->getWeight(Func) <= Iter.Weights[MinWeightIndex]) {
/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/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DPathNumbering.h153 unsigned getWeight();
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DLocalePriorityList.java129 public Double getWeight(ULocale language) { method in class:LocalePriorityList
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocalePriorityList.java133 public Double getWeight(ULocale language) { method in class:LocalePriorityList
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java559 public abstract int getWeight(); method in class:ServiceInfo
/external/llvm/lib/CodeGen/
H A DRegisterPressure.cpp34 unsigned Weight = PSetI.getWeight();
48 unsigned Weight = PSetI.getWeight();
119 unsigned Weight = PSetI.getWeight();
633 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight();

Completed in 459 milliseconds

123