Searched defs:point (Results 51 - 75 of 224) sorted by relevance

123456789

/external/libxml2/
H A DgenUnicode.py112 point = string.strip(fields[0]) variable
114 while point != '':
116 if point[0] >= '0' and point[0] <= '9':
117 value = value + ord(point[0]) - ord('0')
118 elif point[0] >= 'A' and point[0] <= 'F':
119 value = value + 10 + ord(point[0]) - ord('A')
120 elif point[0] >= 'a' and point[
122 point = point[1:] variable
[all...]
/external/mesa3d/src/gallium/auxiliary/indices/
H A Du_indices_gen.py112 def point( intype, outtype, ptr, v0 ): function
125 point( intype, outtype, ptr, v0 )
/external/opencv/cvaux/src/
H A D_cvvectrack.h109 CvPoint point; local
110 point.x = p.x * decr;
111 point.y = p.y * decr;
112 return point;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_ListCtrl.cpp26 void CPWL_ListCtrl::SetScrollPos(const CPDF_Point& point) argument
28 m_ptScroll = point;
210 CPDF_Point CPWL_ListCtrl::InToOut(const CPDF_Point& point) const
214 return CPDF_Point(point.x + rcClient.left - m_ptScroll.x,
215 point.y + rcClient.top - m_ptScroll.y);
218 CPDF_Point CPWL_ListCtrl::OutToIn(const CPDF_Point& point) const
222 return CPDF_Point(point.x - rcClient.left + m_ptScroll.x,
223 point.y - rcClient.top + m_ptScroll.y);
/external/skia/gm/
H A Dconvexpolyeffect.cpp115 SkPoint point; variable
116 point.fY = SkScalarSinCos(angle, &point.fX);
117 point.scale(kRadius);
118 point = center + point;
120 ngon.moveTo(point);
122 ngon.lineTo(point);
/external/skia/tests/
H A DFontHostStreamTest.cpp86 SkPoint point = SkPoint::Make(24, 32); local
90 origCanvas.drawText("A", 1, point.fX, point.fY, paint);
109 streamCanvas.drawPosText("A", 1, &point, paint);
H A DPointTest.cpp28 SkPoint point; local
29 point.set(x, y);
30 SkScalar oldLength = point.length();
31 SkScalar returned = SkPoint::Normalize(&point);
32 SkScalar newLength = point.length();
41 SkPoint point; local
42 point.set(x, y);
43 SkScalar s1 = point.length();
54 // notices that I will generate an overflow... which is exactly the point
141 // Scale a (1,1) point t
[all...]
/external/zlib/src/examples/
H A Dzran.c19 An access point can be created at the start of any deflate block, by saving
23 point in the uncompressed stream. build_index() works by decompressing the
26 a new access point. If so, that point is saved in a data structure that
30 the latest accees point at or preceding that offset is located in the index.
50 more memory per access point, and also cannot be saved to file due to the
66 /* access point entry */
67 struct point { struct
74 /* access point list */
78 struct point *lis
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderView.java133 for (ResultPoint point : currentPossible) {
134 canvas.drawCircle(frameLeft + (int) (point.getX() * scaleX),
135 frameTop + (int) (point.getY() * scaleY),
144 for (ResultPoint point : currentLast) {
145 canvas.drawCircle(frameLeft + (int) (point.getX() * scaleX),
146 frameTop + (int) (point.getY() * scaleY),
181 public void addPossibleResultPoint(ResultPoint point) { argument
183 synchronized (point) {
184 points.add(point);
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DBarPlotExampleActivity.java310 private void onPlotClicked(PointF point) { argument
312 // make sure the point lies within the graph area. we use gridrect
314 if (plot.getGraphWidget().getGridRect().contains(point.x, point.y)) {
315 Number x = plot.getXVal(point);
316 Number y = plot.getYVal(point);
409 * @param index index of the point being rendered.
410 * @param series XYSeries to which the point being rendered belongs.
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DAbstractLeastSquaresOptimizer.java80 /** Current point. */
81 protected double[] point; field in class:AbstractLeastSquaresOptimizer
192 jacobian = jF.value(point);
194 throw new FunctionEvaluationException(point, LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE,
218 point);
220 objective = function.value(point);
222 throw new FunctionEvaluationException(point, LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE,
346 this.point = startPoint.clone();
351 cols = point.length;
364 * @return the point/valu
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
H A DAbstractUnivariateRealOptimizer.java183 * @param point point at which the objective function must be evaluated
184 * @return objective function value at specified point
192 final double point)
195 throw new FunctionEvaluationException(new MaxEvaluationsExceededException(maxEvaluations), point);
197 return f.value(point);
203 * @param point Point at which the objective function must be evaluated.
204 * @return the objective function value at specified point.
208 protected double computeObjectiveValue(double point) argument
212 throw new FunctionEvaluationException(new MaxEvaluationsExceededException(maxEvaluations), point);
191 computeObjectiveValue(final UnivariateRealFunction f, final double point) argument
[all...]
/external/boringssl/src/crypto/ec/
H A Dec_key.c300 EC_POINT *point = NULL; local
313 point = EC_POINT_new(eckey->group);
316 point == NULL) {
325 /* testing whether pub_key * order is the point at infinity */
333 if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
337 if (!EC_POINT_is_at_infinity(eckey->group, point)) {
349 if (!EC_POINT_mul(eckey->group, point, eckey->priv_key, NULL, NULL, ctx)) {
353 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key, ctx) != 0) {
362 EC_POINT_free(point);
370 EC_POINT *point local
[all...]
/external/boringssl/src/crypto/ecdsa/
H A Decdsa.c143 EC_POINT *point = NULL; local
207 point = EC_POINT_new(group);
208 if (point == NULL) {
212 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
216 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
230 EC_POINT_free(point);
/external/boringssl/src/crypto/x509v3/
H A Dv3_crld.c275 DIST_POINT *point = NULL; local
276 point = DIST_POINT_new();
277 if (!point)
283 ret = set_dist_point_name(&point->distpoint, ctx, cnf);
290 if (!set_reasons(&point->reasons, cnf->value))
295 point->CRLissuer =
297 if (!point->CRLissuer)
302 return point;
306 if (point)
307 DIST_POINT_free(point);
321 DIST_POINT *point; local
567 DIST_POINT *point; local
[all...]
/external/ceres-solver/examples/
H A Dbal_problem.cc56 void PerturbPoint3(const double sigma, double* point) { argument
58 point[i] += RandNormal() * sigma;
170 const double* point = points + i * point_block_size(); local
172 fprintf(fptr, "%.16g\n", point[j]);
228 VectorRef point(points + 3 * i, 3);
229 tmp[i] = (point - median).lpNorm<1>();
244 VectorRef point(points + 3 * i, 3);
245 point = scale * (point - median);
H A Dsimple_bundle_adjuster.cc120 // focal length and 2 for radial distortion. The principal point is not modeled
128 const T* const point,
132 ceres::AngleAxisRotatePoint(camera, point, p);
151 // Compute final projected point position.
194 // Each Residual block takes a point and a camera as input and outputs a 2
127 operator ()(const T* const camera, const T* const point, T* residuals) const argument
/external/clang/test/Analysis/
H A Darray-struct-region.c61 struct point { int x; int y; }; struct
62 struct circle { struct point o; int r; };
66 result.o = (struct point){0, 0};
79 struct circle_f { struct point o; float r; };
83 result.o = (struct point){0, 0};
258 struct point center;
261 extern int test13116945(struct point x);
262 static void radar13116945(struct point centerCoordinate) {
/external/clang/test/Sema/
H A Dflexible-array-init.c39 struct point { struct
45 struct point points[]; // expected-note{{initialized flexible array member 'points' is here}}
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java266 * The 1st point inside the sphere.
268 * The 2nd point inside the sphere.
270 * The 3rd point inside the sphere.
272 * The 4th point inside the sphere.
301 * The 1st point inside the sphere.
303 * The 2nd point inside the sphere.
305 * The 3rd point inside the sphere.
331 * The 1st point inside the sphere.
333 * The 2nd point inside the sphere.
760 Vector3f point
821 contains(Vector3f point) argument
826 intersects(Vector3f point) argument
830 distanceToEdge(Vector3f point) argument
[all...]
H A DBoundingVolume.java206 * point.
208 * @param point
209 * The point to get the distance to
212 public final float distanceTo(Vector3f point) { argument
213 return center.distance(point);
218 * given point.
220 * @param point
221 * The point to get the distance to
224 public final float distanceSquaredTo(Vector3f point) { argument
225 return center.distanceSquared(point);
236 distanceToEdge(Vector3f point) argument
298 contains(Vector3f point) argument
305 intersects(Vector3f point) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DSweepSphere.java109 private boolean isPointInTriangle(Vector3f point, AbstractTriangle tri) { argument
110 if (pointsOnSameSide(point, tri.get1(), tri.get2(), tri.get3())
111 && pointsOnSameSide(point, tri.get2(), tri.get1(), tri.get3())
112 && pointsOnSameSide(point, tri.get3(), tri.get1(), tri.get2()))
273 // scale collision point back into R3
388 // temp3 is contact point
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DTriangle.java67 * @param p1 the first point of the triangle.
68 * @param p2 the second point of the triangle.
69 * @param p3 the third point of the triangle.
79 * <code>get</code> retrieves a point on the triangle denoted by the index
81 * @param i the index of the point.
82 * @return the point.
113 * @param i the index to place the point.
114 * @param point the point to set.
116 public void set(int i, Vector3f point) { argument
[all...]
/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-event.h10 /* kprobe-tracer and uprobe-tracer tracing point */
32 /* kprobe-tracer and uprobe-tracer tracing event (point + arg) */
36 struct probe_trace_point point; /* Trace point */ member in struct:probe_trace_event
42 /* Perf probe probing point */
68 /* Perf probe probing event (point + arg) */
72 struct perf_probe_point point; /* Probe point */ member in struct:perf_probe_event
99 struct probe_trace_point point; /* Actual probepoint */ member in struct:variable_list
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_context.h30 * The setup code is concerned with point/line/triangle setup and
148 void (*point)( struct lp_setup_context *, member in struct:lp_setup_context

Completed in 981 milliseconds

123456789