Home
last modified time | relevance | path

Searched refs:getWeight (Results 1 – 25 of 56) sorted by relevance

123

/external/deqp/framework/randomshaders/
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 (const GeneratorState& state, ConstValueRangeAccess valueRange);
[all …]
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 (const GeneratorState& state, ConstValueRangeAccess valueRange);
DrsgExpression.cpp272 template <class T> float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange)… in getWeight() function
277 float (*getWeight) (const GeneratorState& state, ConstValueRangeAccess valueRange); member
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<MulOp>, create<MulOp> },
290 { getWeight<AddOp>, create<AddOp> },
[all …]
DrsgStatement.cpp44 template <class T> float getWeight (const GeneratorState& state) { return T::getWeight(state); } in getWeight() function
49 float (*getWeight) (const GeneratorState& state); member
57 { getWeight<BlockStatement>, create<BlockStatement> }, in chooseStatement()
58 { getWeight<ExpressionStatement>, create<ExpressionStatement> }, in chooseStatement()
59 { getWeight<DeclarationStatement>, create<DeclarationStatement> }, in chooseStatement()
60 { getWeight<ConditionalStatement>, create<ConditionalStatement> } in chooseStatement()
69 weights[ndx] = statementSpecs[ndx].getWeight(state); in chooseStatement()
128 float ExpressionStatement::getWeight (const GeneratorState& state) in getWeight() function in rsg::ExpressionStatement
190 float BlockStatement::getWeight (const GeneratorState& state) in getWeight() function in rsg::BlockStatement
322 float DeclarationStatement::getWeight (const GeneratorState& state) in getWeight() function in rsg::DeclarationStatement
[all …]
DrsgBinaryOps.cpp76 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess va… in getWeight() function in rsg::BinaryOp
286 float MulOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::MulOp
291 return MulBase::getWeight(state, valueRange); in getWeight()
336 float AddOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::AddOp
341 return AddBase::getWeight(state, valueRange); in getWeight()
386 float SubOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::SubOp
391 return SubBase::getWeight(state, valueRange); in getWeight()
465 float RelationalOp<ComputeValueRange, EvaluateComp>::getWeight (const GeneratorState& state, ConstV… in getWeight() function in rsg::RelationalOp
472 return BinaryOp<7, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange); in getWeight()
537 float LessThanOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::LessThanOp
[all …]
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);
DrsgBuiltinFunctions.hpp48 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
121 float UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::getWeight (const Gener… in getWeight() function in rsg::UnaryBuiltinVecFunc
213 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::UnaryTrigonometricFunc
218 …return UnaryBuiltinVecTemplateProxy<C>::getWeight(state, valueRange) * state.getProgramParameters(… in getWeight()
428 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::UnaryExponentialFunc
433 …return UnaryBuiltinVecTemplateProxy<C>::getWeight(state, valueRange) * state.getProgramParameters(… in getWeight()
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DAbstractEstimator.java132 double factor = -FastMath.sqrt(wm.getWeight()); in updateJacobian()
164 residuals[i] = FastMath.sqrt(wm.getWeight()) * residual; in updateResidualsAndCost()
165 cost += wm.getWeight() * residual * residual; in updateResidualsAndCost()
187 criterion += wm[i].getWeight() * residual * residual; in getRMS()
202 chiSquare += residual * residual / wm[i].getWeight(); in getChiSquare()
DWeightedMeasurement.java105 public double getWeight() { in getWeight() method in WeightedMeasurement
DGaussNewtonEstimator.java183 double weight = measurements[i].getWeight(); in estimate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
DGaussianParametersGuesser.java261 if (p1.getWeight() < p2.getWeight()) { in createWeightedObservedPointComparator()
264 if (p1.getWeight() > p2.getWeight()) { in createWeightedObservedPointComparator()
DWeightedObservedPoint.java56 public double getWeight() { in getWeight() method in WeightedObservedPoint
DCurveFitter.java135 weights[i] = point.getWeight(); in fit()
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonShuffler.h42 unsigned getWeight() const { return (Weight); }; in getWeight() function
50 return (A.getWeight() < B.getWeight()); in lessWeight()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
DBNF.java188 int weight = getWeight(); in qualify()
273 int weight = getWeight(); in getAlternation()
293 int getWeight() { in getWeight() method in BNF
309 int weight = getWeight(); in getWeights()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DBNF.java189 int weight = getWeight(); in qualify()
274 int weight = getWeight(); in getAlternation()
294 int getWeight() { in getWeight() method in BNF
310 int weight = getWeight(); in getWeights()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
DBitmapPreFiller.java60 totalWeight += size.getWeight(); in generateAllocationOrder()
67 int bytesForSize = Math.round(bytesPerWeight * size.getWeight()); in generateAllocationOrder()
DPreFillType.java64 int getWeight() { in getWeight() method in PreFillType
/external/llvm/lib/CodeGen/
DRegisterPressure.cpp28 unsigned Weight = PSetI.getWeight(); in increaseSetPressure()
36 unsigned Weight = PSetI.getWeight(); in decreaseSetPressure()
97 unsigned Weight = PSetI.getWeight(); in increaseRegPressure()
439 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight(); in addPressureChange()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DProber.java133 …_IN, DNSRecordClass.NOT_UNIQUE, this.getTTL(), info.getPriority(), info.getWeight(), info.getPort(… in buildOutgoingForInfo()
/external/skia/src/utils/
DSkTextureCompressor_ASTC.cpp1433 int getWeight(const int* unquantizedWeights, int idx, bool dualPlane) const { in getWeight() function
1473 const int p00 = this->getWeight(unquantizedValues, idx, dualPlane); in infillWeight()
1474 const int p01 = this->getWeight(unquantizedValues, idx + 1, dualPlane); in infillWeight()
1475 const int p10 = this->getWeight(unquantizedValues, idx + fWeightDimX, dualPlane); in infillWeight()
1476 const int p11 = this->getWeight(unquantizedValues, idx + fWeightDimX + 1, dualPlane); in infillWeight()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java698 public int getWeight() { in getWeight() method in DNSRecord.Service
728 …, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(… in handleQuery()
798 …, DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL, info.getPriority(), info.getWeight(), info.getPort(… in addAnswer()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DLocalePriorityList.java127 public Double getWeight(ULocale language) { in getWeight() method in LocalePriorityList
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DLocalePriorityList.java131 public Double getWeight(ULocale language) { in getWeight() method in LocalePriorityList
/external/opencv3/modules/imgproc/test/
Dtest_imgwarp_strict.cpp352 double getWeight(double a, double b, int x);
451 double CV_Resize_Test::getWeight(double a, double b, int x) in getWeight() function in CV_Resize_Test
493 double wy = getWeight(fsy0, fsy1, sy); in resize_area()
494 double wx = getWeight(fsx0, fsx1, sx); in resize_area()

123