Home
last modified time | relevance | path

Searched refs:getN (Results 1 – 25 of 65) sorted by relevance

123

/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DGeometricMean.java109 if (sumOfLogs.getN() > 0) { in getResult()
110 return FastMath.exp(sumOfLogs.getResult() / sumOfLogs.getN()); in getResult()
150 public long getN() { in getN() method in GeometricMean
151 return sumOfLogs.getN(); in getN()
198 if (getN() > 0) { in checkEmpty()
201 getN()); in checkEmpty()
DSkewness.java111 double n0 = moment.getN(); in getResult()
120 public long getN() { in getN() method in Skewness
121 return moment.getN(); in getN()
DKurtosis.java110 if (moment.getN() > 3) { in getResult()
141 public long getN() { in getN() method in Kurtosis
142 return moment.getN(); in getN()
DVectorialMean.java77 public long getN() { in getN() method in VectorialMean
78 return (means.length == 0) ? 0 : means[0].getN(); in getN()
DStandardDeviation.java117 public long getN() { in getN() method in StandardDeviation
118 return variance.getN(); in getN()
DMean.java133 public long getN() { in getN() method in Mean
134 return moment.getN(); in getN()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
DTTestImpl.java215 sampleStats.getN()); in t()
335 sampleStats1.getN(), sampleStats2.getN()); in t()
380 sampleStats1.getN(), sampleStats2.getN()); in homoscedasticT()
489 sampleStats.getN()); in tTest()
779 sampleStats2.getVariance(), sampleStats1.getN(), in tTest()
780 sampleStats2.getN()); in tTest()
823 sampleStats2.getVariance(), sampleStats1.getN(), in homoscedasticTTest()
824 sampleStats2.getN()); in homoscedasticTTest()
1062 if ((stat == null) || (stat.getN() < 2)) { in checkSampleData()
1065 (stat == null) ? 0 : stat.getN()); in checkSampleData()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
DECUtil.java127 …amedDomainParameters(nameOid, nParams.getCurve(), nParams.getG(), nParams.getN(), nParams.getH(), … in getDomainParameters()
133 …domainParameters = new ECDomainParameters(iSpec.getCurve(), iSpec.getG(), iSpec.getN(), iSpec.getH… in getDomainParameters()
137 …domainParameters = new ECDomainParameters(params.getCurve(), params.getG(), params.getN(), params.… in getDomainParameters()
159 …meters = new ECNamedDomainParameters(oid, ecP.getCurve(), ecP.getG(), ecP.getN(), ecP.getH(), ecP.… in getDomainParameters()
165 …domainParameters = new ECDomainParameters(iSpec.getCurve(), iSpec.getG(), iSpec.getN(), iSpec.getH… in getDomainParameters()
171 …domainParameters = new ECDomainParameters(ecP.getCurve(), ecP.getG(), ecP.getN(), ecP.getH(), ecP.… in getDomainParameters()
188 … new ECDomainParameters(s.getCurve(), s.getG(), s.getN(), s.getH(), s.getSeed())); in generatePublicKeyParameter()
196 … new ECDomainParameters(s.getCurve(), s.getG(), s.getN(), s.getH(), s.getSeed())); in generatePublicKeyParameter()
242 … new ECDomainParameters(s.getCurve(), s.getG(), s.getN(), s.getH(), s.getSeed())); in generatePrivateKeyParameter()
250 … new ECDomainParameters(s.getCurve(), s.getG(), s.getN(), s.getH(), s.getSeed())); in generatePrivateKeyParameter()
[all …]
DEC5Util.java115 …domainParameters = new ECDomainParameters(iSpec.getCurve(), iSpec.getG(), iSpec.getN(), iSpec.getH… in getDomainParameters()
152 ecP.getN(), in convertToSpec()
172 ecP.getN(), in convertToSpec()
182 … ecP.getN(), 1); // TODO: not strictly correct... need to fix the test data... in convertToSpec()
197 domainParameters.getN(), in convertToSpec()
267 spec.getN(), in convertSpec()
277 spec.getN(), in convertSpec()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DStatisticalSummaryValues.java98 public long getN() { in getN() method in StatisticalSummaryValues
143 MathUtils.equalsIncludingNaN(stat.getN(), getN()) && in equals()
158 result = result * 31 + MathUtils.hash(getN()); in hashCode()
175 outBuffer.append("n: ").append(getN()).append(endl); in toString()
DAggregateSummaryStatistics.java168 public long getN() { in getN() method in AggregateSummaryStatistics
170 return statistics.getN(); in getN()
267 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary()
310 long n = current.getN(); in aggregate()
326 final double curN = current.getN(); in aggregate()
DAbstractStorelessUnivariateStatistic.java170 MathUtils.equalsIncludingNaN(stat.getN(), this.getN()); in equals()
180 return 31* (31 + MathUtils.hash(getResult())) + MathUtils.hash(getN()); in hashCode()
DMultivariateSummaryStatistics.java175 public long getN() { in getN() method in MultivariateSummaryStatistics
245 if (getN() < 1) { in getStandardDeviation()
247 } else if (getN() < 2) { in getStandardDeviation()
312 outBuffer.append("n: " + getN() + suffix); in toString()
380 MathUtils.equalsIncludingNaN(stat.getN(), getN()) && in equals()
399 result = result * 31 + MathUtils.hash(getN()); in hashCode()
DSummaryStatistics.java139 return new StatisticalSummaryValues(getMean(), getVariance(), getN(), in getSummary()
172 public long getN() { in getN() method in SummaryStatistics
219 if (getN() > 0) { in getStandardDeviation()
220 if (getN() > 1) { in getStandardDeviation()
315 outBuffer.append("n: ").append(getN()).append(endl); in toString()
369 MathUtils.equalsIncludingNaN(stat.getN(), getN()) && in equals()
386 result = result * 31 + MathUtils.hash(getN()); in hashCode()
DDescriptiveStatistics.java160 if (getN() == windowSize) { in addValue()
162 } else if (getN() < windowSize) { in addValue()
223 if (getN() > 0) { in getStandardDeviation()
224 if (getN() > 1) { in getStandardDeviation()
273 public long getN() { in getN() method in DescriptiveStatistics
429 outBuffer.append("n: ").append(getN()).append(endl); in toString()
DSynchronizedDescriptiveStatistics.java97 public synchronized long getN() { in getN() method in SynchronizedDescriptiveStatistics
98 return super.getN(); in getN()
DSynchronizedSummaryStatistics.java73 public synchronized long getN() { in getN() method in SynchronizedSummaryStatistics
74 return super.getN(); in getN()
DSynchronizedMultivariateSummaryStatistics.java72 public synchronized long getN() { in getN() method in SynchronizedMultivariateSummaryStatistics
73 return super.getN(); in getN()
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DEmpiricalDistributionImpl.java143 if (sampleStats.getN() == 0) { in load()
346 ((double) binStats.get(0).getN()) / (double) sampleStats.getN(); in fillBinStats()
349 ((double) binStats.get(i).getN()) / (double) sampleStats.getN(); in fillBinStats()
385 if (stats.getN() > 0) { in getNextValue()
/external/testng/src/test/java/test/factory/
DBaseFactory.java13 public int getN() { in getN() method in BaseFactory
27 return "[" + getClass().getName() + " " + getN() + "]"; in toString()
DFactoryDataProviderTest.java50 Assert.assertEquals(t1.getN(), n1); in runTest()
51 Assert.assertEquals(t2.getN(), n2); in runTest()
/external/testng/src/test/java/test/thread/
DParallelWithFactorySampleTest.java24 protected int getN() { in getN() method in ParallelWithFactorySampleTest
31 addId("f1 " + getN(), Thread.currentThread().getId()); in f1()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DJCEECPrivateKey.java132 dp.getN(), in JCEECPrivateKey()
163 dp.getN(), in JCEECPrivateKey()
175 spec.getN(), in JCEECPrivateKey()
234 ecP.getN(), in populateFromPrivKeyInfo()
252 ecP.getN(), in populateFromPrivKeyInfo()
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
DANTLRStringStream.h48 @property (getter=getN,setter=setN:) NSInteger n;
108 - (NSInteger) getN;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRStringStream.h48 @property (getter=getN,setter=setN:) NSInteger n;
108 - (NSInteger) getN;

123