Home
last modified time | relevance | path

Searched refs:getWeight (Results 1 – 25 of 63) 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);
116 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
134 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
153 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
171 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
193 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
219 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
238 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
260 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
321 float DeclarationStatement::getWeight (const GeneratorState& state) in getWeight() function in rsg::DeclarationStatement
[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);
DrsgBinaryOps.cpp326 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess va… in getWeight() function in rsg::BinaryOp
536 float MulOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::MulOp
541 return MulBase::getWeight(state, valueRange); in getWeight()
586 float AddOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::AddOp
591 return AddBase::getWeight(state, valueRange); in getWeight()
636 float SubOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::SubOp
641 return SubBase::getWeight(state, valueRange); in getWeight()
715 float RelationalOp<ComputeValueRange, EvaluateComp>::getWeight (const GeneratorState& state, ConstV… in getWeight() function in rsg::RelationalOp
722 return BinaryOp<7, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange); in getWeight()
787 float LessThanOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) in getWeight() function in rsg::LessThanOp
[all …]
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
/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
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
DIRMutator.h42 virtual uint64_t getWeight(size_t CurrentSize, size_t MaxSize,
85 uint64_t getWeight(size_t CurrentSize, size_t MaxSize, in getWeight() function
97 uint64_t getWeight(size_t CurrentSize, size_t MaxSize,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonShuffler.h51 unsigned getWeight() const { return (Weight); } in getWeight() function
60 return (A.getWeight() < B.getWeight()); in lessWeight()
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonShuffler.h43 unsigned getWeight() const { return (Weight); }; in getWeight() function
51 return (A.getWeight() < B.getWeight()); in lessWeight()
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/integrationtests/nativegraphics/
DShadowNativeFontTest.java25 assertThat(font.getStyle().getWeight()).isEqualTo(400); in initializeBuilderWithPath()
33 assertThat(font.getStyle().getWeight()).isEqualTo(400); in initializeBuilderWithResource()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DBNF.java201 int weight = getWeight(); in qualify()
286 int weight = getWeight(); in getAlternation()
306 int getWeight() { in getWeight() method in BNF
322 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()
/external/swiftshader/third_party/subzero/src/
DIceOperand.cpp97 return A.getWeight() < B.getWeight(); in operator <()
217 RegWeight Variable::getWeight(const Cfg *Func) const { in getWeight() function in Ice::Variable
665 if (W.getWeight() == RegWeight::Inf) in operator <<()
668 Str << W.getWeight(); in operator <<()
/external/dokka/core/testdata/javadoc/
Ddeprecated.java15 public Double getWeight() { in getWeight() method in Banana
/external/flatbuffers/tests/union_vector/
DFallingTubT.java11 public int getWeight() { return weight; } in getWeight() method in FallingTubT
DFallingTub.java41 _o.getWeight()); in pack()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DIRMutator.cpp64 Strategy->getWeight(CurSize, MaxSize, RS.totalWeight())); in mutateModule()
139 uint64_t InstDeleterIRStrategy::getWeight(size_t CurrentSize, size_t MaxSize, in getWeight() function in InstDeleterIRStrategy
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowFontBuilderTest.java31 assertThat(font.getStyle().getWeight()).isEqualTo(FontStyle.FONT_WEIGHT_NORMAL); in fontBuilder_defaultWeightAndSlant()
/external/guava/android/guava/src/com/google/common/cache/
DLocalCache.java640 int getWeight(); in getWeight() method
689 public int getWeight() {
1460 public int getWeight() { in getWeight() method in LocalCache.WeakValueReference
1504 public int getWeight() { in getWeight() method in LocalCache.SoftValueReference
1552 public int getWeight() { in getWeight() method in LocalCache.StrongValueReference
1597 public int getWeight() { in getWeight() method in LocalCache.WeightedWeakValueReference
1619 public int getWeight() { in getWeight() method in LocalCache.WeightedSoftValueReference
1640 public int getWeight() { in getWeight() method in LocalCache.WeightedStrongValueReference
2115 entryKey, hash, value, valueReference.getWeight(), RemovalCause.COLLECTED); in lockedGetOrLoad()
2120 entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED); in lockedGetOrLoad()
[all …]
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java642 int getWeight(); in getWeight() method
691 public int getWeight() {
1460 public int getWeight() { in getWeight() method in LocalCache.WeakValueReference
1504 public int getWeight() { in getWeight() method in LocalCache.SoftValueReference
1552 public int getWeight() { in getWeight() method in LocalCache.StrongValueReference
1597 public int getWeight() { in getWeight() method in LocalCache.WeightedWeakValueReference
1619 public int getWeight() { in getWeight() method in LocalCache.WeightedSoftValueReference
1640 public int getWeight() { in getWeight() method in LocalCache.WeightedStrongValueReference
2115 entryKey, hash, value, valueReference.getWeight(), RemovalCause.COLLECTED); in lockedGetOrLoad()
2120 entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED); in lockedGetOrLoad()
[all …]

123