Home
last modified time | relevance | path

Searched refs:nextVector (Results 1 – 11 of 11) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
DRandomVectorGenerator.java33 double[] nextVector(); in nextVector() method
DUnitSphereRandomVectorGenerator.java61 public double[] nextVector() { in nextVector() method in UnitSphereRandomVectorGenerator
DUncorrelatedRandomVectorGenerator.java82 public double[] nextVector() { in nextVector() method in UncorrelatedRandomVectorGenerator
DCorrelatedRandomVectorGenerator.java284 public double[] nextVector() {
/external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
DFastFourierTransformer.java750 for (int[] nextVector: vectorList) { in clone()
751 System.arraycopy(vector, 0, nextVector, 0, in clone()
763 for (int[] nextVector: vectorList) { in clone()
764 mdcm.set(get(nextVector), nextVector); in clone() local
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
DMultiStartDifferentiableMultivariateRealOptimizer.java189 (i == 0) ? startPoint : generator.nextVector()); in optimize()
DMultiStartMultivariateRealOptimizer.java178 (i == 0) ? startPoint : generator.nextVector()); in optimize()
DMultiStartDifferentiableMultivariateVectorialOptimizer.java193 (i == 0) ? startPoint : generator.nextVector()); in optimize()
/external/antlr/antlr-3.4/runtime/C/src/
Dantlr3collections.c1517 factory->nextVector = 0; in newPool()
1550 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE); in closeVectorFactory()
1592 limit = (poolCount == factory->thisPool ? factory->nextVector : ANTLR3_FACTORY_VPOOL_SIZE); in closeVectorFactory()
1660 if (factory->nextVector >= ANTLR3_FACTORY_VPOOL_SIZE) in newVector()
1670 vector = factory->pools[factory->thisPool] + factory->nextVector; in newVector()
1671 factory->nextVector++; in newVector()
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
DMicrosphereInterpolatingFunction.java179 microsphere.add(new MicrosphereSurfaceElement(rand.nextVector())); in MicrosphereInterpolatingFunction()
/external/antlr/antlr-3.4/runtime/C/include/
Dantlr3collections.h297 ANTLR3_UINT32 nextVector; member