Searched defs:getWeight (Results 1 - 21 of 21) sorted by relevance

/external/smack/src/org/jivesoftware/smack/util/dns/
H A DSRVRecord.java59 public int getWeight() { method in class:SRVRecord
/external/smack/src/org/xbill/DNS/
H A DSRVRecord.java85 getWeight() { method in class:SRVRecord
/external/deqp/framework/randomshaders/
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;
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 DrsgStatement.cpp44 template <class T> float getWeight (const GeneratorState& state) { return T::getWeight(state); } function in namespace:rsg::__anon19792
49 float (*getWeight) (const GeneratorState& state); member in struct:rsg::__anon19792::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::__anon19784
277 float (*getWeight) (const GeneratorState& state, ConstValueRangeAccess valueRange); member in struct:rsg::__anon19784::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
760 float ConstructorOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::ConstructorOp
884 float AssignOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::AssignOp
1147 float VariableRead::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::VariableRead
1208 float VariableWrite::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::VariableWrite
1252 float ParenOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::ParenOp
1357 float SwizzleOp::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::SwizzleOp
1591 float TexLookup::getWeight (const GeneratorState& state, ConstValueRangeAccess valueRange) function in class:rsg::TexLookup
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceInfo.java559 public abstract int getWeight(); method in class:ServiceInfo
/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();
/external/llvm/include/llvm/CodeGen/
H A DMachineRegisterInfo.h993 unsigned getWeight() const { return Weight; } function in class:llvm::PSetIterator
/external/guava/guava-tests/test/com/google/common/cache/
H A DLocalCacheTest.java2627 public int getWeight() { method in class:LocalCacheTest.DummyValueReference
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp535 unsigned CodeGenRegister::getWeight(const CodeGenRegBank &RegBank) const { function in class:CodeGenRegister
1350 && (*RegI)->getWeight(RegBank) == I->Weight)
1394 unsigned RegWeight = Reg->getWeight(RegBank);
/external/guava/guava/src/com/google/common/cache/
H A DLocalCache.java639 int getWeight(); method in interface:LocalCache.ValueReference
686 public int getWeight() {
1645 public int getWeight() { method in class:LocalCache.WeakValueReference
1692 public int getWeight() { method in class:LocalCache.SoftValueReference
1741 public int getWeight() { method in class:LocalCache.StrongValueReference
1787 public int getWeight() { method in class:LocalCache.WeightedWeakValueReference
1811 public int getWeight() { method in class:LocalCache.WeightedSoftValueReference
1833 public int getWeight() { method in class:LocalCache.WeightedStrongValueReference
2673 totalWeight -= valueReference.getWeight();
2706 int weight = e.getValueReference().getWeight();
3522 public int getWeight() { method in class:LocalCache.LoadingValueReference
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3910 virtual double getWeight (void) const { return 0.0; } function in class:deqp::gls::BuiltinPrecisionTests::Sampling
3949 double getWeight (void) const { return 1.0; } function in class:deqp::gls::BuiltinPrecisionTests::DefaultSampling
3972 double getWeight (void) const { return 1.0; } function in class:deqp::gls::BuiltinPrecisionTests::DefaultSampling
4109 double getWeight (void) const function in class:deqp::gls::BuiltinPrecisionTests::DefaultSampling
4111 return dePow(instance<DefaultSampling<T> >().getWeight(), Size);
4155 double getWeight (void) const function in class:deqp::gls::BuiltinPrecisionTests::DefaultSampling
4157 return dePow(instance<DefaultSampling<T> >().getWeight(), Rows * Columns);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.sat4j.pb_2.2.0.v20100429.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 397 milliseconds