Home
last modified time | relevance | path

Searched refs:points (Results 376 - 400 of 534) sorted by relevance

1...<<11121314151617181920>>...22

/third_party/skia/tests/
H A DGrTextBlobTest.cpp87 runBuffer.points()[i] = SkPoint::Make(SkIntToScalar(i*10) + delta.x(), 50 + delta.y()); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
H A DSVGDeviceTest.cpp545 SkPoint points[] = {{50, 15}, {100, 15}, {150, 15} }; in DEF_TEST() local
548 svgCanvas->drawPoints(SkCanvas::kLines_PointMode, 3, points, paint); in DEF_TEST()
H A DPathTest.cpp685 // moved control points after the chop. This test should be run in SK_DEBUG in test_clipped_cubic()
1094 // control points in test_direction()
1110 // control points in test_direction()
1776 path.lineTo(0, 0); // too many points/verbs in test_isLine()
2051 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points in test_isRect()
2374 SkPoint f1[] = {{0, 0}, {1, 0}, {1, 1}}; // too few points in test_isNestedFillRects()
3149 // Max of 10 segments, max 3 points per segment in test_range_iter()
3445 // Try different starting points for the contour. in test_circle_with_direction()
3673 // the path isn't "empty" in that it should have verbs and points. in test_rrect()
3709 // diagonal colinear points mak in test_arc()
4534 SkPoint points[] = test_skbug_6947() local
5243 SkPoint points[] = { {10, 10}, {75, 75}, {150, 75}, {150, 150}, {75, 150} }; DEF_TEST() local
[all...]
/third_party/skia/third_party/externals/freetype/src/base/
H A Dftbbox.c164 /* the bbox that contains all on-points. It finds a local extremum */ in BBox_Conic_Check()
310 /* at least one of its control off-points above 0. */ in cubic_peak()
368 /* the bbox that contains all on-points. So at least one of the */ in BBox_Cubic_Check()
489 /* all `on' points in the outline. Then, if the two boxes */ in FT_EXPORT_DEF()
492 vec = outline->points; in FT_EXPORT_DEF()
/kernel/linux/linux-6.6/drivers/hid/
H A Dhid-playstation.c217 struct dualsense_touch_point points[2]; member
413 struct dualshock4_touch_point points[2]; member
1427 for (i = 0; i < ARRAY_SIZE(ds_report->points); i++) { in dualsense_parse_report()
1428 struct dualsense_touch_point *point = &ds_report->points[i]; in dualsense_parse_report()
2285 for (j = 0; j < ARRAY_SIZE(touch_report->points); j++) { in dualshock4_parse_report()
2286 struct dualshock4_touch_point *point = &touch_report->points[j]; in dualshock4_parse_report()
/foundation/arkui/ace_engine/test/unittest/core/pattern/text/
H A Dtext_testfive_ng.cpp555 std::vector<PointF> points; in HWTEST_F() local
558 EXPECT_EQ(textSelectOverlay->IsPointsInRegion(points, regionRect), true); in HWTEST_F()
560 points.emplace_back(PointF(0, 0)); in HWTEST_F()
561 points.emplace_back(PointF(1, 1)); in HWTEST_F()
562 points.emplace_back(PointF(3, 3)); in HWTEST_F()
563 points.emplace_back(PointF(5, 5)); in HWTEST_F()
564 points.emplace_back(PointF(6, 6)); in HWTEST_F()
566 EXPECT_EQ(textSelectOverlay->IsPointsInRegion(points, regionRect), false); in HWTEST_F()
/third_party/libinput/src/
H A Dlibinput.c4182 func->points[0] = 0.0; /* default to a flat unaccelerated function */ in libinput_config_accel_custom_func_create()
4183 func->points[1] = 1.0; in libinput_config_accel_custom_func_create()
4252 double step, size_t npoints, double *points) in libinput_config_accel_set_points()
4273 if (points[idx] < LIBINPUT_ACCEL_POINT_MIN_VALUE || in libinput_config_accel_set_points()
4274 points[idx] > LIBINPUT_ACCEL_POINT_MAX_VALUE) in libinput_config_accel_set_points()
4282 memcpy(func->points, points, sizeof(*points) * npoints); in libinput_config_accel_set_points()
4250 libinput_config_accel_set_points(struct libinput_config_accel *config, enum libinput_config_accel_type accel_type, double step, size_t npoints, double *points) libinput_config_accel_set_points() argument
/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp1878 // In practice, if you frequently use a given type that is not covered by the normal API entry points, in ShowDemoWindowWidgets()
7231 // Quadratic Bezier Curve (3 control points)
7235 // Cubic Bezier Curve (4 control points)
7261 static ImVector<ImVec2> points; local
7305 points.push_back(mouse_pos_in_canvas);
7306 points.push_back(mouse_pos_in_canvas);
7311 points.back() = mouse_pos_in_canvas;
7332 points.resize(points.size() - 2);
7334 if (ImGui::MenuItem("Remove one", NULL, false, points
[all...]
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_canvas.cpp285 const Point* points = reinterpret_cast<const Point*>(pts); in OH_Drawing_CanvasDrawPoints() local
286 canvas->DrawPoints(static_cast<PointMode>(mode), count, points); in OH_Drawing_CanvasDrawPoints() local
/third_party/ffmpeg/libavfilter/
H A Daf_mcompand.c167 static int parse_points(char *points, int nb_points, double radius, in parse_points() argument
172 char *p = points; in parse_points()
396 av_log(ctx, AV_LOG_ERROR, "transfer points missing\n"); in config_output()
409 av_log(ctx, AV_LOG_ERROR, "transfer points parsing failed\n"); in config_output()
/foundation/window/window_manager/window_scene/test/unittest/
H A Dscene_session_manager_stub_test.cpp346 std::vector<int32_t> points{0, 0}; in HWTEST_F()
347 data.WriteInt32Vector(points); in HWTEST_F()
1331 std::vector<int32_t> points {0, 0}; in HWTEST_F()
1332 data.WriteInt32Vector(points); in HWTEST_F()
/third_party/mesa3d/src/gallium/frontends/wgl/
H A Dgldrv.h254 void (APIENTRY *glMap1d )( GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points );
255 void (APIENTRY *glMap1f )( GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points );
256 void (APIENTRY *glMap2d )( GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points );
257 void (APIENTRY *glMap2f )( GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points );
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Decp_nistp256.c1230 * This function includes a branch for checking whether the two input points
1345 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1441 * Each contain various points on the curve, where each point is three field
1470 * Tables for other points have table[i] = iG for i in 0 .. 16. */
1472 /* gmul is the table of precomputed base points */
1691 * other points multiples (every 5th round). in batch_mul()
1990 /* points below is of size |num|, and tmp_smallfelems is of size |num+1| */
1991 static void make_points_affine(size_t num, smallfelem points[][3], in make_points_affine() argument
1999 points, in make_points_affine()
2020 * Computes scalar*generator + \sum scalars[i]*points[
2023 ossl_ec_GFp_nistp256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp256_points_mul() argument
[all...]
H A Decp_nistp521.c1202 * This function includes a branch for checking whether the two input points
1300 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1400 * Each contain various points on the curve, where each point is three field
1427 * Tables for other points have table[i] = iG for i in 0 .. 16. */
1429 /* gmul is the table of precomputed base points */
1600 * points multiples (every 5th round). in batch_mul()
1882 /* points below is of size |num|, and tmp_felems is of size |num+1/ */
1883 static void make_points_affine(size_t num, felem points[][3], in make_points_affine() argument
1891 points, in make_points_affine()
1913 * Computes scalar*generator + \sum scalars[i]*points[
1916 ossl_ec_GFp_nistp521_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp521_points_mul() argument
[all...]
H A Decp_nistp224.c890 * Add two elliptic curve points:
903 * checking whether the two input points are equal, (while not equal to the
972 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1158 * other points multiples (every 5th round). in batch_mul()
1378 static void make_points_affine(size_t num, felem points[ /* num */ ][3], in make_points_affine()
1386 points, in make_points_affine()
1408 * Computes scalar*generator + \sum scalars[i]*points[i], ignoring NULL
1413 const EC_POINT *points[], in ossl_ec_GFp_nistp224_points_mul()
1479 * unless we precompute multiples for just one or two points, in ossl_ec_GFp_nistp224_points_mul()
1496 * we treat NULL scalars as 0, and NULL points a in ossl_ec_GFp_nistp224_points_mul()
1411 ossl_ec_GFp_nistp224_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp224_points_mul() argument
[all...]
H A Decp_nistz256.c367 * The formulae are incorrect if the points are equal so we check for in ecp_nistz256_point_add()
391 * When both points are inverse of each other, we know that the affine in ecp_nistz256_point_add()
629 P256_POINT *temp; /* place for 5 temporary points */ in ecp_nistz256_windowed_mul()
897 * make multiple points affine at the same time. in ecp_nistz256_mult_precompute()
951 /* r = scalar*G + sum(scalars[i]*points[i]) */
956 const EC_POINT *points[], in ecp_nistz256_points_mul()
1139 memcpy(new_points, points, num * sizeof(EC_POINT *)); in ecp_nistz256_points_mul()
1143 points = new_points; in ecp_nistz256_points_mul()
1152 if (!ecp_nistz256_windowed_mul(group, out, scalars, points, num, ctx)) in ecp_nistz256_points_mul()
952 ecp_nistz256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ecp_nistz256_points_mul() argument
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationGL1.cpp703 const GLdouble *points) in ValidateMap1d()
715 const GLfloat *points) in ValidateMap1f()
731 const GLdouble *points) in ValidateMap2d()
747 const GLfloat *points) in ValidateMap2f()
696 ValidateMap1d(const Context *, angle::EntryPoint entryPoint, GLenum target, GLdouble u1, GLdouble u2, GLint stride, GLint order, const GLdouble *points) ValidateMap1d() argument
708 ValidateMap1f(const Context *, angle::EntryPoint entryPoint, GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points) ValidateMap1f() argument
720 ValidateMap2d(const Context *, angle::EntryPoint entryPoint, GLenum target, GLdouble u1, GLdouble u2, GLint ustride, GLint uorder, GLdouble v1, GLdouble v2, GLint vstride, GLint vorder, const GLdouble *points) ValidateMap2d() argument
736 ValidateMap2f(const Context *, angle::EntryPoint entryPoint, GLenum target, GLfloat u1, GLfloat u2, GLint ustride, GLint uorder, GLfloat v1, GLfloat v2, GLint vstride, GLint vorder, const GLfloat *points) ValidateMap2f() argument
H A DvalidationGL1_autogen.h9 // Validation functions for the OpenGL Desktop GL 1.x entry points.
334 const GLdouble *points);
342 const GLfloat *points);
354 const GLdouble *points);
366 const GLfloat *points);
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_1_autogen.h9 // Defines the Desktop GL 1.x entry points.
201 const GLdouble *points);
203 GL_Map1f(GLenum target, GLfloat u1, GLfloat u2, GLint stride, GLint order, const GLfloat *points);
213 const GLdouble *points);
223 const GLfloat *points);
/third_party/openssl/crypto/ec/
H A Decp_nistp256.c1230 * This function includes a branch for checking whether the two input points
1345 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1441 * Each contain various points on the curve, where each point is three field
1470 * Tables for other points have table[i] = iG for i in 0 .. 16. */
1472 /* gmul is the table of precomputed base points */
1691 * other points multiples (every 5th round). in batch_mul()
1990 /* points below is of size |num|, and tmp_smallfelems is of size |num+1| */
1991 static void make_points_affine(size_t num, smallfelem points[][3], in make_points_affine() argument
1999 points, in make_points_affine()
2020 * Computes scalar*generator + \sum scalars[i]*points[
2023 ossl_ec_GFp_nistp256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp256_points_mul() argument
[all...]
H A Decp_nistp521.c1202 * This function includes a branch for checking whether the two input points
1300 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1400 * Each contain various points on the curve, where each point is three field
1427 * Tables for other points have table[i] = iG for i in 0 .. 16. */
1429 /* gmul is the table of precomputed base points */
1600 * points multiples (every 5th round). in batch_mul()
1882 /* points below is of size |num|, and tmp_felems is of size |num+1/ */
1883 static void make_points_affine(size_t num, felem points[][3], in make_points_affine() argument
1891 points, in make_points_affine()
1913 * Computes scalar*generator + \sum scalars[i]*points[
1916 ossl_ec_GFp_nistp521_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp521_points_mul() argument
[all...]
H A Decp_nistp224.c890 * Add two elliptic curve points:
903 * checking whether the two input points are equal, (while not equal to the
972 * The formulae are incorrect if the points are equal, in affine coordinates in point_add()
1158 * other points multiples (every 5th round). in batch_mul()
1378 static void make_points_affine(size_t num, felem points[ /* num */ ][3], in make_points_affine()
1386 points, in make_points_affine()
1408 * Computes scalar*generator + \sum scalars[i]*points[i], ignoring NULL
1413 const EC_POINT *points[], in ossl_ec_GFp_nistp224_points_mul()
1479 * unless we precompute multiples for just one or two points, in ossl_ec_GFp_nistp224_points_mul()
1496 * we treat NULL scalars as 0, and NULL points a in ossl_ec_GFp_nistp224_points_mul()
1411 ossl_ec_GFp_nistp224_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ossl_ec_GFp_nistp224_points_mul() argument
[all...]
H A Decp_nistz256.c367 * The formulae are incorrect if the points are equal so we check for in ecp_nistz256_point_add()
391 * When both points are inverse of each other, we know that the affine in ecp_nistz256_point_add()
629 P256_POINT *temp; /* place for 5 temporary points */ in ecp_nistz256_windowed_mul()
897 * make multiple points affine at the same time. in ecp_nistz256_mult_precompute()
951 /* r = scalar*G + sum(scalars[i]*points[i]) */
956 const EC_POINT *points[], in ecp_nistz256_points_mul()
1139 memcpy(new_points, points, num * sizeof(EC_POINT *)); in ecp_nistz256_points_mul()
1143 points = new_points; in ecp_nistz256_points_mul()
1152 if (!ecp_nistz256_windowed_mul(group, out, scalars, points, num, ctx)) in ecp_nistz256_points_mul()
952 ecp_nistz256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) ecp_nistz256_points_mul() argument
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/include/linux/mali/
H A Dmali_utgard_uk_types.h33 u32 points[MALI_UK_TIMELINE_MAX]; member
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/include/linux/mali/
H A Dmali_utgard_uk_types.h32 u32 points[MALI_UK_TIMELINE_MAX]; member

Completed in 74 milliseconds

1...<<11121314151617181920>>...22