Home
last modified time | relevance | path

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

12

/third_party/vk-gl-cts/framework/randomshaders/
H A 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 (cons
[all...]
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.cpp272 template <class T> float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) { return T::getWeight(state, 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<MulO
399 float FloatLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::FloatLiteral
454 float IntLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::IntLiteral
515 float BoolLiteral::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::BoolLiteral
786 float ConstructorOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::ConstructorOp
910 float AssignOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::AssignOp
1173 float VariableRead::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::VariableRead
1234 float VariableWrite::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::VariableWrite
1283 float ParenOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::ParenOp
1388 float SwizzleOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::SwizzleOp
1622 float TexLookup::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::TexLookup
[all...]
H A 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 (cons function in rsg::BlockStatement
321 float DeclarationStatement::getWeight (const GeneratorState& state) getWeight() function in rsg::DeclarationStatement
526 float ConditionalStatement::getWeight (const GeneratorState& state) getWeight() function in rsg::ConditionalStatement
[all...]
H A DrsgBinaryOps.cpp326 float BinaryOp<Precedence, Assoc>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) 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, ConstValueRangeAccess valueRange) in getWeight() function in rsg::RelationalOp
722 return BinaryOp<7, ASSOCIATIVITY_LEFT>::getWeight(state, valueRange); in getWeight()
787 float LessThanOp::getWeight (cons function in rsg::LessThanOp
843 float LessOrEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::LessOrEqualOp
853 float GreaterThanOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::GreaterThanOp
863 float GreaterOrEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::GreaterOrEqualOp
995 float EqualityComparisonOp<IsEqual>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::EqualityComparisonOp
1090 float EqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::EqualOp
1100 float NotEqualOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) getWeight() function in rsg::NotEqualOp
[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 DrsgBuiltinFunctions.hpp48 static float getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange);
121 float UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) 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().trigonometricBaseWeight; 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().exponentialBaseWeight; in getWeight()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/FuzzMutate/
H A DIRMutator.h42 virtual uint64_t getWeight(size_t CurrentSize, size_t MaxSize,
85 uint64_t getWeight(size_t CurrentSize, size_t MaxSize,
97 uint64_t getWeight(size_t CurrentSize, size_t MaxSize,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.h51 unsigned getWeight() const { return (Weight); } in getWeight() function in llvm::HexagonResource
60 return (A.getWeight() < B.getWeight()); in lessWeight()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A 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 <<()
H A DIceRegAlloc.cpp672 RegWeight W = Item->getWeight(Func); in handleNoFreeRegisters()
683 RegWeight W = Item->getWeight(Func); in handleNoFreeRegisters()
693 Iter.Cur->getWeight(Func) <= Iter.Weights[MinWeightIndex]) { in handleNoFreeRegisters()
722 if (Iter.Cur->getWeight(Func) <= Iter.Weights[MinWeightIndex]) { in handleNoFreeRegisters()
H A DIceOperand.h590 BaseType getWeight() const { return Weight; } in getWeight() function in Ice::RegNumT::RegWeight
752 RegWeight getWeight(const Cfg *Func) const;
H A DIceCfg.cpp1764 Str << " weight=" << Var->getWeight(this) << " "; in dump()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
H A 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
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DLocalePriorityListTest.java97 double weight = list.getWeight(ULocale.GERMAN); in testQValue()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DLocalePriorityListTest.java94 double weight = list.getWeight(ULocale.GERMAN); in testQValue()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DLocalePriorityList.java136 public Double getWeight(ULocale locale) { in getWeight() method in LocalePriorityList
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DLocalePriorityList.java132 public Double getWeight(ULocale locale) { in getWeight() method in LocalePriorityList
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.h154 int getWeight(SDNode *N);
H A DHexagonISelDAGToDAG.cpp1626 int HexagonDAGToDAGISel::getWeight(SDNode *N) { in getWeight() function in HexagonDAGToDAGISel
1908 Weight = getWeight(balanceSubTree(Op0N).getNode()); in balanceSubTree()
1911 Weight = getWeight(Op0N); in balanceSubTree()
1915 Weight += getWeight(balanceSubTree(Op1N).getNode()); in balanceSubTree()
1918 Weight += getWeight(Op1N); in balanceSubTree()
1975 Weight = getWeight(Child.getNode()); in balanceSubTree()
2011 int Weight = getWeight(Child.getNode()); in balanceSubTree()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DRegisterPressure.cpp58 unsigned Weight = PSetI.getWeight(); in increaseSetPressure()
72 unsigned Weight = PSetI.getWeight(); in decreaseSetPressure()
162 unsigned Weight = PSetI.getWeight(); in increaseRegPressure()
673 int Weight = IsDec ? -PSetI.getWeight() : PSetI.getWeight();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DSIMachineScheduler.cpp1751 DiffSetPressure[*PSetI] -= PSetI.getWeight(); in checkRegUsageImpact()
1761 DiffSetPressure[*PSetI] += PSetI.getWeight(); in checkRegUsageImpact()
1913 VgprUsage += PSetI.getWeight(); in fillVgprSgprCost()
1915 SgprUsage += PSetI.getWeight(); in fillVgprSgprCost()
H A DGCNRegPressure.cpp131 Value[Kind] += Sign * MRI.getPressureSets(Reg).getWeight(); in inc()
/third_party/vk-gl-cts/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp4195 virtual double getWeight (void) const { return 0.0; } in getWeight() function in deqp::gls::BuiltinPrecisionTests::Sampling
4234 double getWeight (void) const { return 1.0; } in getWeight() function in deqp::gls::BuiltinPrecisionTests::DefaultSampling
4257 double getWeight (void) const { return 1.0; } in getWeight() function in deqp::gls::BuiltinPrecisionTests::DefaultSampling
4394 double getWeight (void) const in getWeight() function in deqp::gls::BuiltinPrecisionTests::DefaultSampling
4396 return dePow(instance<DefaultSampling<T> >().getWeight(), Size); in getWeight()
4440 double getWeight (void) const in getWeight() function in deqp::gls::BuiltinPrecisionTests::DefaultSampling
4442 return dePow(instance<DefaultSampling<T> >().getWeight(), Rows * Columns); in getWeight()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h1194 unsigned getWeight() const { return Weight; } in getWeight() function in llvm::PSetIterator

Completed in 38 milliseconds

12