Searched defs:point (Results 1 - 25 of 224) sorted by relevance

123456789

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DMultivariateMatrixFunction.java31 * Compute the value for the function at the given point.
32 * @param point point at which the function must be evaluated
33 * @return function value for the given point
37 double[][] value(double[] point) argument
H A DMultivariateRealFunction.java30 * Compute the value for the function at the given point.
31 * @param point point at which the function must be evaluated
32 * @return function value for the given point
36 double value(double[] point) argument
H A DMultivariateVectorialFunction.java30 * Compute the value for the function at the given point.
31 * @param point point at which the function must be evaluated
32 * @return function value for the given point
36 double[] value(double[] point) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DPreconditioner.java40 * means the current point is far from the optimum and preconditioning will
43 * @param point current point at which the search direction was computed
47 * @exception IllegalArgumentException if point dimension is wrong
49 double[] precondition(double[] point, double[] r) argument
/external/openssh/
H A Dbufec.c33 const EC_POINT *point)
37 if ((ret = sshbuf_put_ec(buffer, point, curve)) != 0) {
46 const EC_POINT *point)
48 if (buffer_put_ecpoint_ret(buffer, curve, point) == -1)
54 EC_POINT *point)
58 if ((ret = sshbuf_get_ec(buffer, point, curve)) != 0) {
67 EC_POINT *point)
69 if (buffer_get_ecpoint_ret(buffer, curve, point) == -1)
32 buffer_put_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
45 buffer_put_ecpoint(Buffer *buffer, const EC_GROUP *curve, const EC_POINT *point) argument
53 buffer_get_ecpoint_ret(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
66 buffer_get_ecpoint(Buffer *buffer, const EC_GROUP *curve, EC_POINT *point) argument
/external/v8/test/cctest/
H A Dtest-fixed-dtoa.cc46 int point; local
48 CHECK(FastFixedDtoa(1.0, 1, buffer, &length, &point));
50 CHECK_EQ(1, point);
52 CHECK(FastFixedDtoa(1.0, 15, buffer, &length, &point));
54 CHECK_EQ(1, point);
56 CHECK(FastFixedDtoa(1.0, 0, buffer, &length, &point));
58 CHECK_EQ(1, point);
60 CHECK(FastFixedDtoa(0xFFFFFFFF, 5, buffer, &length, &point));
62 CHECK_EQ(10, point);
64 CHECK(FastFixedDtoa(4294967296.0, 5, buffer, &length, &point));
497 int point; local
[all...]
H A Dtest-bignum-dtoa.cc63 int point; local
65 BignumDtoa(1.0, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
67 CHECK_EQ(1, point);
69 BignumDtoa(1.0, BIGNUM_DTOA_FIXED, 3, buffer, &length, &point);
70 CHECK_GE(3, length - point);
73 CHECK_EQ(1, point);
75 BignumDtoa(1.0, BIGNUM_DTOA_PRECISION, 3, buffer, &length, &point);
79 CHECK_EQ(1, point);
81 BignumDtoa(1.5, BIGNUM_DTOA_SHORTEST, 0, buffer, &length, &point);
83 CHECK_EQ(1, point);
261 int point; local
279 int point; local
300 int point; local
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderResultPointCallback.java30 public void foundPossibleResultPoint(ResultPoint point) { argument
31 viewfinderView.addPossibleResultPoint(point);
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DLeastSquaresConverter.java32 * a theoretical result computed from a point set applied to a model and
33 * the models point must be adjusted to fit the theoretical result to some
160 public double value(final double[] point) throws FunctionEvaluationException { argument
163 final double[] residuals = function.value(point);
165 throw new FunctionEvaluationException(point,LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE,
H A DRealPointValuePair.java24 * This class holds a point and the value of an objective function at this point.
36 private final double[] point; field in class:RealPointValuePair
38 /** Value of the objective function at the point. */
41 /** Build a point/objective function value pair.
42 * @param point point coordinates (the built instance will store
44 * @param value value of an objective function at the point
46 public RealPointValuePair(final double[] point, final double value) { argument
47 this.point
58 RealPointValuePair(final double[] point, final double value, final boolean copyArray) argument
[all...]
H A DVectorialPointValuePair.java23 * This class holds a point and the vectorial value of an objective function at this point.
36 private final double[] point; field in class:VectorialPointValuePair
38 /** Vectorial value of the objective function at the point. */
41 /** Build a point/objective function value pair.
42 * @param point point coordinates (the built instance will store
44 * @param value value of an objective function at the point
46 public VectorialPointValuePair(final double[] point, final double[] value) { argument
47 this.point
58 VectorialPointValuePair(final double[] point, final double[] value, final boolean copyArray) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DCluster.java42 * Build a cluster centered at a specified point.
43 * @param center the point which is to be the center of this cluster
51 * Add a point to this cluster.
52 * @param point point to add
54 public void addPoint(final T point) { argument
55 points.add(point);
67 * Get the point chosen to be the center of this cluster.
H A DEuclideanIntegerPoint.java36 private final int[] point; field in class:EuclideanIntegerPoint
41 * @param point the n-dimensional point in integer space
43 public EuclideanIntegerPoint(final int[] point) { argument
44 this.point = point;
48 * Get the n-dimensional point in integer space.
52 return point;
57 return MathUtils.distance(point, p.getPoint());
81 if (point
[all...]
/external/lldb/test/benchmarks/expression/
H A Dmain.cpp24 Point point; member in class:Data
27 point(0, 0)
36 ptr[i]->point.x = i;
37 ptr[i]->point.y = i+1;
44 // expr ptr[j]->point.x
45 // expr ptr[j]->point.y
47 printf("data[%d] = %d (%d, %d)\n", j, ptr[j]->id, ptr[j]->point.x, ptr[j]->point.y);
/external/lldb/test/functionalities/non-overlapping-index-variable-i/
H A Dmain.cpp24 Point point; member in class:Data
27 point(0, 0)
36 ptr[i]->point.x = i;
37 ptr[i]->point.y = i+1;
44 // expr ptr[i]->point.x
45 // expr ptr[i]->point.y
47 printf("data[%d] = %d (%d, %d)\n", i, ptr[i]->id, ptr[i]->point.x, ptr[i]->point.y);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dgeometry.hpp34 class point { class in namespace:clover
36 point() : a() { function in class:clover::point
39 point(std::initializer_list<T> v) { function in class:clover::point
44 point(const T *v) { function in class:clover::point
56 point operator+(const point &p) const {
57 point q;
63 T operator()(const point &p) const {
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_Button.cpp34 FX_BOOL CPWL_Button::OnLButtonDown(const CPDF_Point & point, FX_DWORD nFlag) argument
36 CPWL_Wnd::OnLButtonDown(point, nFlag);
44 FX_BOOL CPWL_Button::OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
46 CPWL_Wnd::OnLButtonUp(point, nFlag);
H A DPWL_SpecialButton.cpp58 FX_BOOL CPWL_CheckBox::OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
87 FX_BOOL CPWL_RadioButton::OnLButtonUp(const CPDF_Point & point, FX_DWORD nFlag) argument
/external/skia/gm/
H A Dinternal_links.cpp47 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50)); local
48 drawLabeledRect(canvas, "Target A", point.x(), point.y());
49 SkAnnotateNamedDestination(canvas, point, name.get());
/external/v8/src/
H A Ddtoa.cc34 Vector<char> buffer, int* sign, int* length, int* point) {
49 *point = 1;
62 fast_worked = FastDtoa(v, FAST_DTOA_SHORTEST, 0, buffer, length, point);
65 fast_worked = FastFixedDtoa(v, requested_digits, buffer, length, point);
69 buffer, length, point);
79 BignumDtoa(v, bignum_mode, requested_digits, buffer, length, point);
33 DoubleToAscii(double v, DtoaMode mode, int requested_digits, Vector<char> buffer, int* sign, int* length, int* point) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DEC5Util.java141 ECPoint point,
144 return convertPoint(convertCurve(ecSpec.getCurve()), point, withCompression);
149 ECPoint point,
152 return curve.createPoint(point.getAffineX(), point.getAffineY(), withCompression);
139 convertPoint( ECParameterSpec ecSpec, ECPoint point, boolean withCompression) argument
147 convertPoint( ECCurve curve, ECPoint point, boolean withCompression) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DWTauNafMultiplier.java22 protected ECPoint multiplyPositive(ECPoint point, BigInteger k) argument
24 if (!(point instanceof ECPoint.F2m))
30 ECPoint.F2m p = (ECPoint.F2m)point;
/external/icu/icu4c/source/layout/
H A DAnchorTables.cpp65 LEPoint point; local
67 if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
71 fontInstance->transformFunits(x, y, point);
75 fontInstance->pixelsToUnits(point, anchor);
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterPointShape.java42 private Vector3f point; field in class:EmitterPointShape
47 public EmitterPointShape(Vector3f point) { argument
48 this.point = point;
55 clone.point = point.clone();
64 store.set(point);
68 * This method fills the point with data.
70 * @param store the variable to store the point data
75 store.set(point);
82 setPoint(Vector3f point) argument
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_triemit.h127 static __inline void TAG(point)( CTX_ARG, function

Completed in 1330 milliseconds

123456789