Home
last modified time | relevance | path

Searched refs:points (Results 176 - 200 of 432) sorted by relevance

12345678910>>...18

/third_party/skia/src/utils/win/
H A DSkDWriteGeometrySink.h50 SK_STDMETHODIMP_(void) AddLines(const D2D1_POINT_2F *points, UINT pointsCount) override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/
H A DAnnotations.h19 /// Annotations lets you mark points and ranges inside source code, for tests:
24 /// $definition^class Foo{}; // points can be named: "definition"
29 /// std::vector<size_t> PP = Example.points(); // all unnamed points
36 /// Ranges may be nested (and points can be inside ranges), but there's no way
43 /// 2. making characters for marking points and ranges configurable,
64 /// All points and ranges are relative to this stripped text.
70 /// Returns the position of all points marked by ^ (or $name^) in the text.
71 std::vector<size_t> points(llvm::StringRef Name = "") const;
/third_party/node/deps/openssl/openssl/crypto/ec/
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 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/third_party/externals/freetype/src/autofit/
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/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...]
/third_party/ffmpeg/libavfilter/
H A Daf_compand.c53 char *attacks, *decays, *points; member
77 { "points", "set points of transfer function", OFFSET(points), AV_OPT_TYPE_STRING, { .str = "-70/-70|-60/-20|1/0" }, 0, 0, A },
314 count_items(s->points, &nb_points); in config_output()
385 p = s->points; in config_output()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ray_query/
H A DvktRayQueryMiscTests.cpp480 static auto createSurface (const Points points,
675 std::vector<Vec3> HelperInvocationsInstance::createSurface (const Points points, const deUint32 divX, const deUint32 divY, const HelperInvocationsParams::func2D_t& f2D, bool clockWise) in createSurface() argument
678 const float dx = (points == Points::Vertices ? 2.0f : 1.0f) / float(divX); in createSurface()
679 const float dy = (points == Points::Vertices ? 2.0f : 1.0f) / float(divY); in createSurface()
687 float y = (points == Points::Vertices) ? -1.0f : 0.0f; in createSurface()
691 float x = (points == Points::Vertices) ? -1.0f : 0.0f; in createSurface()
702 if (points == Points::Centers) in createSurface()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ray_query/
H A DvktRayQueryMiscTests.cpp480 static auto createSurface (const Points points,
675 std::vector<Vec3> HelperInvocationsInstance::createSurface (const Points points, const deUint32 divX, const deUint32 divY, const HelperInvocationsParams::func2D_t& f2D, bool clockWise) in createSurface() argument
678 const float dx = (points == Points::Vertices ? 2.0f : 1.0f) / float(divX); in createSurface()
679 const float dy = (points == Points::Vertices ? 2.0f : 1.0f) / float(divY); in createSurface()
687 float y = (points == Points::Vertices) ? -1.0f : 0.0f; in createSurface()
691 float x = (points == Points::Vertices) ? -1.0f : 0.0f; in createSurface()
702 if (points == Points::Centers) in createSurface()
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
H A Dx_unfl.S157 lea WBTEMP(%a6),%a0 |a0 now points to operand
175 lea FPTEMP(%a6),%a0 |a0 now points to operand
180 bsrl denorm |returns denorm, a0 points to it
202 | Input: a0 points to input operand
206 | Output: a0 points to rounded operand
H A Dsgetem.S40 | handler. It points a0 to the input operand.
66 | handler. It points a0 to the input operand.
/kernel/linux/linux-6.6/arch/m68k/fpsp040/
H A Dx_unfl.S157 lea WBTEMP(%a6),%a0 |a0 now points to operand
175 lea FPTEMP(%a6),%a0 |a0 now points to operand
180 bsrl denorm |returns denorm, a0 points to it
202 | Input: a0 points to input operand
206 | Output: a0 points to rounded operand
H A Dsgetem.S40 | handler. It points a0 to the input operand.
66 | handler. It points a0 to the input operand.
/third_party/skia/src/gpu/v1/
H A DSurfaceDrawContext_v1.h215 * - "top" = points [0] and [1]
216 * - "right" = points[1] and [2]
217 * - "bottom" = points[2] and [3]
218 * - "left" = points[3] and [0]
224 const SkMatrix& viewMatrix, const SkPoint points[4], in fillQuadWithEdgeAA()
226 const SkPoint* localPoints = optionalLocalPoints ? optionalLocalPoints : points; in fillQuadWithEdgeAA()
227 DrawQuad quad{GrQuad::MakeFromSkQuad(points, viewMatrix), in fillQuadWithEdgeAA()
223 fillQuadWithEdgeAA(const GrClip* clip, GrPaint&& paint, GrAA aa, GrQuadAAFlags edgeAA, const SkMatrix& viewMatrix, const SkPoint points[4], const SkPoint optionalLocalPoints[4]) fillQuadWithEdgeAA() argument
/third_party/skia/third_party/externals/dng_sdk/source/
H A Ddng_gain_map.cpp253 const dng_point &points, in dng_gain_map()
258 : fPoints (points) in dng_gain_map()
263 , fRowStep (SafeUint32Mult(planes, points.h)) in dng_gain_map()
252 dng_gain_map(dng_memory_allocator &allocator, const dng_point &points, const dng_point_real64 &spacing, const dng_point_real64 &origin, uint32 planes) dng_gain_map() argument
H A Ddng_gain_map.h54 /// samples (points), sample spacing, origin, and number of color planes.
57 const dng_point &points,
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fFlushFinishTests.cpp335 vector<Vec2> points(samples.size()); in getPointsFromSamples()
338 points[ndx] = Vec2(float(samples[ndx].numDrawCalls), float(samples[ndx].*field)); in getPointsFromSamples()
340 return points; in getPointsFromSamples()
/third_party/skia/gm/
H A Dpdf_never_embed.cpp31 font.getPos(rec.glyphs, count, rec.points()); in excercise_draw_pos_text()
/kernel/linux/linux-6.6/drivers/input/touchscreen/
H A Dhimax_hx83112b.c42 struct himax_event_point points[HIMAX_MAX_POINTS]; member
183 const struct himax_event_point *point = &event->points[point_index]; in himax_process_event_point()
/third_party/skia/samplecode/
H A DSampleFitCubicToCircle.cpp29 // This sample fits a cubic to the arc between two interactive points on a circle. It also finds the
44 // Coordinates of two points on the unit circle. These are the two endpoints of the arc we fit.
51 std::array<double, 4> fCubicX; // Screen space cubic control points.
174 SkPoint points[2] = {{(float)fCubicX[0], (float)fCubicY[0]}, in onDrawContent() local
176 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, points, endpointsPaint); in onDrawContent()
/third_party/skia/src/core/
H A DSkOverdrawCanvas.cpp138 void SkOverdrawCanvas::onDrawPoints(PointMode mode, size_t count, const SkPoint points[], in onDrawPoints() argument
140 fList[0]->onDrawPoints(mode, count, points, this->overdrawPaint(paint)); in onDrawPoints()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DPrimitiveTopologyTests.cpp178 constexpr LocationSpec TestPoints(TestLocation const (&points)[N], bool include) noexcept {
179 return {points, N, include};
239 // Check that the points are drawn in TEST_P()
/third_party/optimized-routines/string/arm/
H A Dmemchr.S108 @ r0 points to the start of the double word after the one that was tested
116 @ r0 currently points to the 3rd byte of the word containing the hit
/third_party/skia/tools/viewer/
H A DSkSLSlide.cpp53 SkPoint points[] = { { 0, 0 }, { 256, 0 } }; in load() local
60 shader = SkGradientShader::MakeLinear(points, colors, nullptr, 2, SkTileMode::kClamp); in load()
/third_party/skia/modules/skplaintexteditor/src/
H A Dshape.cpp118 fCurrentPoints = runBuffer.points(); in runBuffer()
128 runBuffer.points(), in runBuffer()

Completed in 22 milliseconds

12345678910>>...18