Searched refs:point (Results 1 - 25 of 490) sorted by relevance

1234567891011>>

/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
H A Dp2.cpp4 void point(int = 3, int = 4);
7 point(1,2);
8 point(1);
9 point();
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
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/clang/test/FixIt/
H A Dno-typo.c6 point p1; // expected-error{{unknown type name 'point'}}
/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...]
H A Dtest-dtoa.cc63 int point; local
66 DoubleToAscii(0.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
68 CHECK_EQ(1, point);
70 DoubleToAscii(0.0, DTOA_FIXED, 2, buffer, &sign, &length, &point);
73 CHECK_EQ(1, point);
75 DoubleToAscii(0.0, DTOA_PRECISION, 3, buffer, &sign, &length, &point);
78 CHECK_EQ(1, point);
80 DoubleToAscii(1.0, DTOA_SHORTEST, 0, buffer, &sign, &length, &point);
82 CHECK_EQ(1, point);
84 DoubleToAscii(1.0, DTOA_FIXED, 3, buffer, &sign, &length, &point);
272 int point; local
292 int point; local
315 int point; local
[all...]
H A Dtest-fast-dtoa.cc60 int point; local
65 buffer, &length, &point);
68 CHECK_EQ(-323, point);
72 buffer, &length, &point);
75 CHECK_EQ(309, point);
78 buffer, &length, &point);
81 CHECK_EQ(10, point);
84 buffer, &length, &point);
87 CHECK_EQ(299, point);
90 buffer, &length, &point);
130 int point; local
232 int point; local
261 int point; local
[all...]
/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/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/freetype/src/autofit/
H A Dafhints.c231 AF_Point point; local
242 for ( point = points; point < limit; point++ )
245 AF_INDEX_NUM( point, points ),
246 point->fx,
247 point->fy,
248 point->ox / 64.0,
249 point->oy / 64.0,
250 point
702 AF_Point point; local
999 AF_Point point = hints->points; local
1045 AF_Point point, first, last; local
1071 AF_Point point, first, last; local
1124 AF_Point point; local
1365 AF_Point point; local
1492 AF_Point point; local
[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/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);
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dresource.hpp42 typedef clover::point<size_t, 3> point; typedef in class:clover::resource
47 void copy(command_queue &q, const point &origin, const point &region,
48 resource &src_resource, const point &src_origin);
51 const point &origin, const point &region);
73 point offset;
98 sub_resource(clover::resource &r, point offset);
108 bool blocking, const resource::point
[all...]
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/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/stat/clustering/
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/freetype/src/pshinter/
H A Dpshalgo.c1034 /* we need at least 4 points to create an inflection point */
1173 /* load outline point coordinates into hinter glyph */
1179 PSH_Point point = glyph->points; local
1183 for ( ; count > 0; count--, point++, vec++ )
1185 point->flags2 = 0;
1186 point->hint = NULL;
1189 point->org_u = vec->x;
1190 point->org_v = vec->y;
1194 point->org_u = vec->y;
1195 point
1213 PSH_Point point = glyph->points; local
1280 PSH_Point point; local
1313 PSH_Point point = points; local
1392 PSH_Point point, before, after; local
1458 PSH_Point point, before, after; local
1506 psh_hint_table_find_strong_points( PSH_Hint_Table table, PSH_Point point, FT_UInt count, FT_Int threshold, FT_Int major_dir ) argument
1696 PSH_Point point = glyph->points + first; local
1712 PSH_Point point = glyph->points; local
1725 PSH_Point point = glyph->points; local
1745 PSH_Point point = glyph->points; local
1820 PSH_Point point = glyph->points; local
1881 PSH_Point point; local
2031 PSH_Point first, next, point; local
[all...]
/external/pdfium/third_party/freetype/src/pshinter/
H A Dpshalgo.c1043 /* we need at least 4 points to create an inflection point */
1182 /* load outline point coordinates into hinter glyph */
1188 PSH_Point point = glyph->points; local
1192 for ( ; count > 0; count--, point++, vec++ )
1194 point->flags2 = 0;
1195 point->hint = NULL;
1198 point->org_u = vec->x;
1199 point->org_v = vec->y;
1203 point->org_u = vec->y;
1204 point
1222 PSH_Point point = glyph->points; local
1289 PSH_Point point; local
1322 PSH_Point point = points; local
1401 PSH_Point point, before, after; local
1467 PSH_Point point, before, after; local
1515 psh_hint_table_find_strong_points( PSH_Hint_Table table, PSH_Point point, FT_UInt count, FT_Int threshold, FT_Int major_dir ) argument
1709 PSH_Point point = glyph->points + first; local
1725 PSH_Point point = glyph->points; local
1738 PSH_Point point = glyph->points; local
1758 PSH_Point point = glyph->points; local
1833 PSH_Point point = glyph->points; local
1894 PSH_Point point; local
2044 PSH_Point first, next, point; local
[all...]
/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/llvm/test/MC/AArch64/
H A Darm64-fp-encoding-error.s4 ; CHECK: error: expected compatible register or floating-point constant
7 ; CHECK: error: expected compatible register or floating-point constant

Completed in 1711 milliseconds

1234567891011>>