Searched refs:point (Results 101 - 125 of 707) sorted by relevance

1234567891011>>

/external/freetype/src/base/
H A Dftoutln.c63 FT_Vector* point; local
70 FT_UInt first; /* index of first point in contour */
71 FT_Int tag; /* current point's state */
89 FT_Int last; /* index of last point in contour */
109 point = outline->points + first;
113 /* A contour cannot start with a cubic control point! */
117 /* check first point to determine origin */
120 /* first point is conic control. Yes, this happens. */
123 /* start at last point if it is on the curve */
137 point
[all...]
/external/pdfium/third_party/freetype/src/base/
H A Dftoutln.c63 FT_Vector* point; local
70 FT_UInt first; /* index of first point in contour */
71 FT_Int tag; /* current point's state */
89 FT_Int last; /* index of last point in contour */
109 point = outline->points + first;
113 /* A contour cannot start with a cubic control point! */
117 /* check first point to determine origin */
120 /* first point is conic control. Yes, this happens. */
123 /* start at last point if it is on the curve */
137 point
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_unfilled.c29 * \brief Drawing stage for handling glPolygonMode(line/point).
60 static void point( struct draw_stage *stage, function
65 stage->next->point( stage->next, &tmp );
86 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0->edgeflag) point( stage, v0 );
87 if ((header->flags & DRAW_PIPE_EDGE_FLAG_1) && v1->edgeflag) point( stage, v1 );
88 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) point( stage, v2 );
209 unfilled->stage.point = draw_pipe_passthrough_point;
/external/valgrind/none/tests/s390x/
H A Dfpext_warn.stderr.exp4 feature requires the floating point extension facility
10 feature requires the floating point extension facility
16 feature requires the floating point extension facility
/external/skia/src/gpu/text/
H A DGrAtlasTextBlob_regenInOp.cpp66 SkPoint* point = reinterpret_cast<SkPoint*>(vertex); local
67 point->fX += transX;
68 point->fY += transY;
85 SkPoint* point = reinterpret_cast<SkPoint*>(vertex); local
86 point->fX += transX;
87 point->fY += transY;
104 SkPoint* point = reinterpret_cast<SkPoint*>(vertex); local
105 point->fX += transX;
106 point->fY += transY;
123 SkPoint* point local
[all...]
/external/skia/tools/
H A DSkShaper_primitive.cpp36 SkPoint point) const {
48 builder->allocRunTextPosH(paint, glyphCount, point.y(), textBytes, SkString(), &bounds);
60 SkScalar x = point.x();
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h85 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters, not
92 * but if the encoding is UTF16, then the pointer is assumed to point to 8 bit characters that must
99 * but if the encoding is UTF16, then the pointer is assumed to point to UTF16 characters not
113 * must point to UTF16 characters.
115 pANTLR3_UINT8 (*insert) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
119 * then the pointer is assumed to point at 8 bit characteres that must be converted on the fly.
121 pANTLR3_UINT8 (*insert8) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, const char * newbit);
136 pANTLR3_UINT8 (*insertS) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, struct ANTLR3_STRING_struct * newbit);
141 pANTLR3_UINT8 (*inserti) (struct ANTLR3_STRING_struct * string, ANTLR3_UINT32 point, ANTLR3_INT32 i);
229 * to point t
[all...]
/external/clang/test/Sema/
H A Ddesignated-initializers.c25 struct point { struct
30 struct point p1 = {
33 .a = 4.0, // expected-error{{field designator 'a' does not refer to any field in type 'struct point'}}
36 struct point p2 = {
40 struct point array[10] = {
43 [2].z = 3.0, // expected-error{{field designator 'z' does not refer to any field in type 'struct point'}}
46 struct point array2[10] = {
52 struct point array3[10] = {
57 struct point top_left;
58 struct point bottom_righ
[all...]
H A Dflexible-array-init.c39 struct point { struct
45 struct point points[]; // expected-note{{initialized flexible array member 'points' is here}}
/external/ltp/testcases/kernel/fs/fs_bind/cloneNS/
H A D00_Descriptions.txt30 test06 - namespace with shared point bind mounted
62 namespace with shared point bind mounted
/external/ltp/testcases/kernel/fs/scsi/ltpfs/
H A Dltpfsio.sh33 - These operations are destructive so do NOT point the tests to partitions where the data shouldn't be overwritten.
34 Once these tests are started all data in the partitions you point to will be destroyed.
58 echo "Missing NFS partition. You must pass an NFS mount point for testing"
/external/pdfium/fpdfsdk/formfiller/
H A Dcffl_checkbox.h27 const CFX_PointF& point) override;
H A Dcffl_radiobutton.h27 const CFX_PointF& point) override;
/external/pdfium/fpdfsdk/pdfwindow/
H A DPWL_ListBox.h60 bool OnLButtonDown(const CFX_PointF& point, uint32_t nFlag) override;
61 bool OnLButtonUp(const CFX_PointF& point, uint32_t nFlag) override;
62 bool OnMouseMove(const CFX_PointF& point, uint32_t nFlag) override;
64 const CFX_PointF& point,
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffimageedit.h23 bool OnLButtonDown(uint32_t dwFlags, const CFX_PointF& point) override;
H A Dxfa_fftextedit.h22 bool OnLButtonDown(uint32_t dwFlags, const CFX_PointF& point) override;
23 bool OnRButtonDown(uint32_t dwFlags, const CFX_PointF& point) override;
24 bool OnRButtonUp(uint32_t dwFlags, const CFX_PointF& point) override;
98 bool PtInActiveRect(const CFX_PointF& point) override;
/external/skia/tests/
H A DCTest.cpp23 sk_point_t point = {0.0f, 0.0f}; local
32 &point, 1.0f, colors, nullptr, 2, tilemode, nullptr);
38 shader = sk_shader_new_sweep_gradient(&point, colors, nullptr, 2, nullptr);
45 &point, 10.0f, &point2, 50.0f, colors, nullptr, 2, tilemode, nullptr);
H A DFontHostStreamTest.cpp84 SkPoint point = SkPoint::Make(24, 32); local
88 origCanvas.drawText("A", 1, point.fX, point.fY, paint);
103 streamCanvas.drawPosText("A", 1, &point, paint);
/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/pdfium/xfa/fwl/
H A Dcfwl_widget.cpp154 FWL_WidgetHit CFWL_Widget::HitTest(const CFX_PointF& point) { argument
155 if (GetClientRect().Contains(point))
157 if (HasBorder() && GetRelativeRect().Contains(point))
163 const CFX_PointF& point) {
173 return point + CFX_PointF(szOffset.width, szOffset.height);
176 CFX_PointF ret = point;
410 CFX_PointF point = TransformTo(nullptr, CFX_PointF());
411 if (fRight + point.x > 0.0f || bLeft) {
418 rtPopup.Offset(point.x, point
162 TransformTo(CFWL_Widget* pWidget, const CFX_PointF& point) argument
423 CFX_PointF point = TransformTo(nullptr, point); local
447 CFX_PointF point = TransformTo(nullptr, CFX_PointF()); local
463 CFX_PointF point = TransformTo(nullptr, CFX_PointF()); local
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DDiagnosticsReporter.cpp357 FieldPoint* point = nullptr; local
359 if (!point) {
360 point = path;
363 << info->record() << point->field();
366 NotePartObjectContainsGCRoot(point);
367 point = path;
369 NoteFieldContainsGCRoot(point);
519 void DiagnosticsReporter::NotePartObjectContainsGCRoot(FieldPoint* point) { argument
520 FieldDecl* field = point->field();
526 void DiagnosticsReporter::NoteFieldContainsGCRoot(FieldPoint* point) { argument
544 NoteFieldRequiresFinalization(FieldPoint* point) argument
548 NoteField(FieldPoint* point, unsigned note) argument
[all...]
/external/freetype/src/autofit/
H A Daflatin2.c241 /* now compute min or max point indices and coordinates */
262 /* Avoid single-point contours since they are never rasterized. */
296 /* now check whether the point belongs to a straight or round */
750 /* set up (u,v) in each point */
753 AF_Point point = hints->points; local
754 AF_Point limit = point + hints->num_points;
757 for ( ; point < limit; point++ )
759 point->u = point
765 AF_Point point = hints->points; local
779 AF_Point point = contour[0]; local
[all...]
/external/ImageMagick/Magick++/demo/
H A Ddemos.tap25 for filter in bessel blackman box catrom cubic gaussian hamming hanning hermite lanczos mitchell point quadratic sample scale sinc triangle
/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/boringssl/src/crypto/ec/
H A Dec_montgomery.c200 const EC_POINT *point,
203 if (EC_POINT_is_at_infinity(group, point)) {
220 if (BN_cmp(&point->Z, &group->one) == 0) {
221 /* |point| is already affine. */
222 if (x != NULL && !BN_from_montgomery(x, &point->X, group->mont, ctx)) {
225 if (y != NULL && !BN_from_montgomery(y, &point->Y, group->mont, ctx)) {
252 if (!BN_from_montgomery(Z_1, &point->Z, group->mont, ctx) ||
271 if (!BN_mod_mul_montgomery(x, &point->X, Z_2, group->mont, ctx)) {
278 !BN_mod_mul_montgomery(y, &point->Y, Z_3, group->mont, ctx)) {
199 ec_GFp_mont_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument

Completed in 3769 milliseconds

1234567891011>>