Home
last modified time | relevance | path

Searched refs:points (Results 151 - 175 of 422) sorted by relevance

12345678910>>...17

/third_party/skia/third_party/externals/imgui/
H A Dimstb_truetype.h170 // Most font APIs instead use "points", which are a common typographic
171 // measurement for describing font size, defined as 72 points per inch.
179 // an explicit scale factor to scale a given font's glyphs to points,
181 // for non-commercial fonts, thus making fonts scaled in points
187 // Select how high you want the font to be, in points or pixels.
1658 stbtt_uint8 *points; in stbtt__GetGlyphShapeTT() local
1661 points = data + g + 10 + numberOfContours * 2 + 2 + ins; in stbtt__GetGlyphShapeTT()
1683 flags = *points++; in stbtt__GetGlyphShapeTT()
1685 flagcount = *points++; in stbtt__GetGlyphShapeTT()
1696 stbtt_int16 dx = *points in stbtt__GetGlyphShapeTT()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/
H A Dintel_bw.c30 struct intel_qgv_point points[I915_NUM_QGV_POINTS]; member
103 struct intel_psf_gv_point *points) in adls_pcode_read_psf_gv_point_info()
115 points[i].clk = val & 0xff; in adls_pcode_read_psf_gv_point_info()
130 * it with failure if we try masking any unadvertised points. in icl_qgv_points_mask()
164 drm_err(&dev_priv->drm, "Failed to disable qgv points (%d) points: 0x%x\n", ret, points_mask); in icl_pcode_restrict_qgv_points()
285 qi->num_points > ARRAY_SIZE(qi->points))) in icl_get_qgv_points()
286 qi->num_points = ARRAY_SIZE(qi->points); in icl_get_qgv_points()
289 struct intel_qgv_point *sp = &qi->points[i]; in icl_get_qgv_points()
304 drm_err(&dev_priv->drm, "Failed to read PSF point data; PSF points wil in icl_get_qgv_points()
102 adls_pcode_read_psf_gv_point_info(struct drm_i915_private *dev_priv, struct intel_psf_gv_point *points) adls_pcode_read_psf_gv_point_info() argument
[all...]
/third_party/libdrm/amdgpu/
H A Damdgpu.h1585 * \param points - \c [in] array of timeline points
1594 uint64_t *points,
1618 * Wait for one or all sync objects on their points to signal.
1622 * \param points - \c [in] array of sync points to wait
1634 uint32_t *handles, uint64_t *points,
1643 * \param points - \c [out] array of sync points returned, which presents
1653 uint32_t *handles, uint64_t *points,
[all...]
/third_party/libinput/tools/
H A Dlibinput-measure-touch-size.py106 self.points = []
122 self.points.append(touch)
148 if not self.points:
168 touch = self.points[-1]
/third_party/skia/samplecode/
H A DSampleSimpleStroker.cpp80 const std::vector<SkPoint>& points() const { return fPoints; } in points() function in __anon18654::PathRecorder
308 const std::vector<SkPoint>& points = path.points(); in appendPathReversed() local
316 result->lineTo(points[j - 1]); in appendPathReversed()
H A DSampleVariableWidthStroker.cpp853 std::vector<SkPoint> points;
855 points.resize(numPoints);
857 path.getPoints(points.data(), numPoints);
865 result->lineTo(points[j - 1]);
871 result->quadTo(points[j - 1], points[j - 2]);
1216 SkPoint points[4];
1219 while ((verb = it.next(&points[0])) != SkPath::kDone_Verb) {
1222 pointsVec.push_back(points[1]);
1225 ctrlPts.push_back(points[
[all...]
/kernel/linux/linux-5.10/arch/sh/lib/
H A Dmemcpy.S21 add r6,r0 ! From here, r0 points the end of copying point
/kernel/linux/linux-6.6/arch/sh/lib/
H A Dmemcpy.S21 add r6,r0 ! From here, r0 points the end of copying point
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/linux/
H A Dnet_dropmon.h34 struct net_dm_drop_point points[0]; member
/third_party/node/deps/openssl/openssl/crypto/ec/
H A Dec2_smpl.c575 * Indicates whether two points are equal.
682 EC_POINT *points[], BN_CTX *ctx) in ossl_ec_GF2m_simple_points_make_affine()
687 if (!group->meth->make_affine(group, points[i], ctx)) in ossl_ec_GF2m_simple_points_make_affine()
870 const EC_POINT *points[], in ec_GF2m_simple_points_mul()
881 * - r := scalars[0] * points[0] in ec_GF2m_simple_points_mul()
883 * - r := scalar * G + scalars[0] * points[0] in ec_GF2m_simple_points_mul()
892 return ossl_ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx); in ec_GF2m_simple_points_mul()
900 return ossl_ec_scalar_mul_ladder(group, r, scalars[0], points[0], ctx); in ec_GF2m_simple_points_mul()
904 * r := scalar * G + scalars[0] * points[0] in ec_GF2m_simple_points_mul()
913 || !ossl_ec_scalar_mul_ladder(group, r, scalars[0], points[ in ec_GF2m_simple_points_mul()
681 ossl_ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GF2m_simple_points_make_affine() argument
868 ec_GF2m_simple_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) ec_GF2m_simple_points_mul() argument
[all...]
H A Decp_smpl.c1131 ret = 1; /* points differ */ in ossl_ec_GFp_simple_cmp()
1154 ret = 1; /* points differ */ in ossl_ec_GFp_simple_cmp()
1158 /* points are equal */ in ossl_ec_GFp_simple_cmp()
1207 EC_POINT *points[], BN_CTX *ctx) in ossl_ec_GFp_simple_points_make_affine()
1240 * Set each prod_Z[i] to the product of points[0]->Z .. points[i]->Z, in ossl_ec_GFp_simple_points_make_affine()
1244 if (!BN_is_zero(points[0]->Z)) { in ossl_ec_GFp_simple_points_make_affine()
1245 if (!BN_copy(prod_Z[0], points[0]->Z)) in ossl_ec_GFp_simple_points_make_affine()
1258 if (!BN_is_zero(points[i]->Z)) { in ossl_ec_GFp_simple_points_make_affine()
1260 meth->field_mul(group, prod_Z[i], prod_Z[i - 1], points[ in ossl_ec_GFp_simple_points_make_affine()
1206 ossl_ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GFp_simple_points_make_affine() argument
[all...]
/third_party/openssl/crypto/ec/
H A Dec2_smpl.c575 * Indicates whether two points are equal.
682 EC_POINT *points[], BN_CTX *ctx) in ossl_ec_GF2m_simple_points_make_affine()
687 if (!group->meth->make_affine(group, points[i], ctx)) in ossl_ec_GF2m_simple_points_make_affine()
870 const EC_POINT *points[], in ec_GF2m_simple_points_mul()
881 * - r := scalars[0] * points[0] in ec_GF2m_simple_points_mul()
883 * - r := scalar * G + scalars[0] * points[0] in ec_GF2m_simple_points_mul()
892 return ossl_ec_wNAF_mul(group, r, scalar, num, points, scalars, ctx); in ec_GF2m_simple_points_mul()
900 return ossl_ec_scalar_mul_ladder(group, r, scalars[0], points[0], ctx); in ec_GF2m_simple_points_mul()
904 * r := scalar * G + scalars[0] * points[0] in ec_GF2m_simple_points_mul()
913 || !ossl_ec_scalar_mul_ladder(group, r, scalars[0], points[ in ec_GF2m_simple_points_mul()
681 ossl_ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GF2m_simple_points_make_affine() argument
868 ec_GF2m_simple_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) ec_GF2m_simple_points_mul() argument
[all...]
H A Decp_smpl.c1131 ret = 1; /* points differ */ in ossl_ec_GFp_simple_cmp()
1154 ret = 1; /* points differ */ in ossl_ec_GFp_simple_cmp()
1158 /* points are equal */ in ossl_ec_GFp_simple_cmp()
1207 EC_POINT *points[], BN_CTX *ctx) in ossl_ec_GFp_simple_points_make_affine()
1240 * Set each prod_Z[i] to the product of points[0]->Z .. points[i]->Z, in ossl_ec_GFp_simple_points_make_affine()
1244 if (!BN_is_zero(points[0]->Z)) { in ossl_ec_GFp_simple_points_make_affine()
1245 if (!BN_copy(prod_Z[0], points[0]->Z)) in ossl_ec_GFp_simple_points_make_affine()
1258 if (!BN_is_zero(points[i]->Z)) { in ossl_ec_GFp_simple_points_make_affine()
1260 meth->field_mul(group, prod_Z[i], prod_Z[i - 1], points[ in ossl_ec_GFp_simple_points_make_affine()
1206 ossl_ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) ossl_ec_GFp_simple_points_make_affine() argument
[all...]
/third_party/skia/gm/
H A Dcompositor_quads.cpp62 // of the below points are used to clip against the regular tile grid. The tile grid occupies
73 // that the output points stored in 'line' are outside the tile grid (thus effectively infinite).
77 // points outside of the tile grid, but small enough to preserve precision. in clipping_line_segment()
134 // Draw a line through the two points, outset by a fixed length in screen space
271 static constexpr int kTL = 0; // Top-left point index in points array in clipTile()
272 static constexpr int kTR = 1; // Top-right point index in points array in clipTile()
273 static constexpr int kBR = 2; // Bottom-right point index in points array in clipTile()
274 static constexpr int kBL = 3; // Bottom-left point index in points array in clipTile()
275 static constexpr int kS0 = 4; // First split point index in points array in clipTile()
276 static constexpr int kS1 = 5; // Second split point index in points arra in clipTile()
278 SkPoint points[6]; clipTile() local
[all...]
/third_party/skia/include/c/
H A Dsk_shader.h29 specified points.
31 @param points The start and end points for the gradient.
33 the two points
45 SK_API sk_shader_t* sk_shader_new_linear_gradient(const sk_point_t points[2],
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_unfilled.c30 * Convert triangles to points or lines as needed.
113 static void points(struct draw_stage *stage, in points() function
203 points( stage, header ); in unfilled_tri()
/third_party/skia/third_party/externals/freetype/src/autofit/
H A Dafhints.h75 * A segment is a series of at least two consecutive points that are
158 * Touched points
168 * Segments are `round' or `flat', depending on the series of points
171 * points) are both conic or cubic control points. Otherwise, a
177 * Experience has shown that points not part of an edge need to be
179 * are not part of the contour of those particular points. Typical
182 * - angle points (i.e., points where the `in' and `out' direction
185 * - inflection points (
352 AF_Point points; /* points array */ global() member
370 AF_PointRec points[AF_POINTS_EMBEDDED]; global() member
[all...]
H A Dafcjk.c310 /* extremum points (depending on the string properties) */ in af_cjk_metrics_init_blues()
359 FT_Pos best_pos; /* same as points.y or points.x, resp. */ in af_cjk_metrics_init_blues()
361 FT_Vector* points; in af_cjk_metrics_init_blues() local
414 points = outline.points; in af_cjk_metrics_init_blues()
432 /* In some fonts, they correspond to mark attachment points */ in af_cjk_metrics_init_blues()
442 if ( best_point < 0 || points[pp].x > best_pos ) in af_cjk_metrics_init_blues()
445 best_pos = points[pp].x; in af_cjk_metrics_init_blues()
451 if ( best_point < 0 || points[p in af_cjk_metrics_init_blues()
[all...]
/third_party/skia/include/core/
H A DSkTextBlob.h77 @param text character code points or glyphs drawn
98 @param string character code points or glyphs drawn
115 @param text character code points or glyphs drawn (based on encoding)
117 @param xpos array of x-positions, must contain values for all of the character points.
131 @param text character code points or glyphs drawn (based on encoding)
133 @param pos array of positions, must contain values for all of the character points.
146 /** Writes data to allow later reconstruction of SkTextBlob. memory points to storage
326 SkPoint* points() const { return reinterpret_cast<SkPoint*>(pos); } in points() function
401 // RunBuffer.pos points to SkRSXform array
480 // RunBuffer.pos points t
[all...]
/third_party/skia/third_party/externals/freetype/src/raster/
H A Dftraster.c1729 * there are simply no `on' points in the contour!
1753 FT_Vector* points; in Decompose_Curve() local
1761 points = ras.outline.points; in Decompose_Curve()
1762 limit = points + last; in Decompose_Curve()
1764 v_start.x = SCALED( points[first].x ); in Decompose_Curve()
1765 v_start.y = SCALED( points[first].y ); in Decompose_Curve()
1766 v_last.x = SCALED( points[last].x ); in Decompose_Curve()
1767 v_last.y = SCALED( points[last].y ); in Decompose_Curve()
1777 point = points in Decompose_Curve()
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/modules/color/
H A Dcolor_gamma.h119 struct dc_transfer_func_distributed_points *points);
/kernel/linux/linux-5.10/include/uapi/linux/
H A Dnet_dropmon.h37 struct net_dm_drop_point points[0]; member
/kernel/linux/linux-6.6/include/uapi/linux/
H A Dnet_dropmon.h37 struct net_dm_drop_point points[]; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/linux/
H A Dnet_dropmon.h43 struct net_dm_drop_point points[0]; member
/kernel/linux/patches/linux-6.6/prebuilts/usr/include/linux/
H A Dnet_dropmon.h43 struct net_dm_drop_point points[0]; member

Completed in 25 milliseconds

12345678910>>...17