Home
last modified time | relevance | path

Searched refs:points (Results 1 – 25 of 66) sorted by relevance

123

/plan9/lib/
H A Dtel2 202:washington d c:all points
3 203:connecticut:all points
4 204:manitoba:all points
5 205:alabama:all points
7 207:maine:all points
8 208:idaho:all points
19 301:maryland:all points
20 302:delaware:all points
21 303:colorado:all points
22 304:west virginia:all points
[all …]
H A Dnamespace19 # mount points
/plan9/sys/src/libscribble/
H A Dli_recognizer.c312 pen_point **points, in li_recognizer_get_example() argument
334 *points = pl->pts; in li_recognizer_get_example()
980 static int lialg_preprocess_stroke(point_list *points) { in lialg_preprocess_stroke() argument
992 lialg_get_bounding_box(points, &minx, &miny, &maxx, &maxy); in lialg_preprocess_stroke()
999 if (lialg_translate_points(points, minx, miny, scale, scale) != 0) in lialg_preprocess_stroke()
1003 lialg_get_bounding_box(points, &minx, &miny, &maxx, &maxy); in lialg_preprocess_stroke()
1008 if (lialg_translate_points(points, xoff, yoff, 100, 100) != 0) return(-1); in lialg_preprocess_stroke()
1013 points->xrange = xrange; in lialg_preprocess_stroke()
1014 points->yrange = yrange; in lialg_preprocess_stroke()
1020 for (i = 0; i < points->npts; i++) in lialg_preprocess_stroke()
[all …]
H A Dsyms1122 complex pen_point li_recognizer_get_example:points;
1167 complex PointList lialg_preprocess_stroke:points;
1168 complex PointList lialg_compute_dominant_points:points;
1174 complex PointList lialg_interpolate_points:points;
1222 complex PointList lialg_canonicalize_example_stroke:points;
1223 complex PointList lialg_compute_equipoints:points;
1225 complex PointList lialg_compute_pathlen:points;
1226 complex PointList lialg_compute_pathlen_subset:points;
1227 complex PointList lialg_filter_points:points;
1229 complex PointList lialg_translate_points:points;
[all …]
/plan9/sys/src/cmd/gs/src/
H A Dgdevvec.c677 gdev_vector_write_polygon(gx_device_vector * vdev, const gs_fixed_point * points, in gdev_vector_write_polygon() argument
687 double x = fixed2float(points[0].x) / vdev->scale.x, y = fixed2float(points[0].y) / vdev->scale.y; in gdev_vector_write_polygon()
698 (x = fixed2float(points[i].x) / vdev->scale.x), in gdev_vector_write_polygon()
699 (y = fixed2float(points[i].y) / vdev->scale.y), in gdev_vector_write_polygon()
716 gs_fixed_point points[4]; in gdev_vector_write_rectangle() local
718 points[0].x = x0, points[0].y = y0; in gdev_vector_write_rectangle()
719 points[2].x = x1, points[2].y = y1; in gdev_vector_write_rectangle()
721 points[1].x = x1, points[1].y = y0, in gdev_vector_write_rectangle()
722 points[3].x = x0, points[3].y = y1; in gdev_vector_write_rectangle()
724 points[1].x = x0, points[1].y = y1, in gdev_vector_write_rectangle()
[all …]
H A Dgxstroke.c978 gs_fixed_point points[6]; in stroke_fill() local
983 &plp->o, points); in stroke_fill()
985 code = cap_points(cap, &plp->e, points + npoints); in stroke_fill()
987 code = line_join_points(pgs_lp, plp, nplp, points + npoints, in stroke_fill()
995 if (SUB_OVERFLOWS(ax, points[0].x, points[1].x) || in stroke_fill()
996 SUB_OVERFLOWS(ay, points[0].y, points[1].y) || in stroke_fill()
997 SUB_OVERFLOWS(bx, points[2].x, points[1].x) || in stroke_fill()
998 SUB_OVERFLOWS(by, points[2].y, points[1].y) in stroke_fill()
1005 if (!(points[2].x == plp->e.co.x && in stroke_fill()
1006 points[2].y == plp->e.co.y && in stroke_fill()
[all …]
H A Dgxpflat.c140 print_points(const gs_fixed_point *points, int count) in print_points() argument
148 if_debug2('3', "[3]out x=%d y=%d\n", points[i].x, points[i].y); in print_points()
505 generate_segments(gx_path * ppath, const gs_fixed_point *points, in generate_segments() argument
511 print_points(points, count); in generate_segments()
512 return gx_path_add_lines_notes(ppath, points, count, notes); in generate_segments()
517 print_points(points, 1); in generate_segments()
518 code = gx_path_add_line_notes(ppath, points[0].x, points[0].y, notes); in generate_segments()
522 print_points(points + 1, count - 1); in generate_segments()
523 return gx_path_add_lines_notes(ppath, points + 1, count - 1, notes | sn_not_first); in generate_segments()
530 segment_notes notes, gs_fixed_point *points) in gx_subdivide_curve_rec() argument
[all …]
H A Dgdevpx.c74 } points; member
344 int count = xdev->points.count; in pclxl_flush_points()
349 int x = xdev->points.current.x, y = xdev->points.current.y; in pclxl_flush_points()
366 switch (xdev->points.type) { in pclxl_flush_points()
373 px_put_ssp(s, xdev->points.data[i].x, in pclxl_flush_points()
374 xdev->points.data[i].y); in pclxl_flush_points()
382 int dx = xdev->points.data[i].x - x; in pclxl_flush_points()
383 int dy = xdev->points.data[i].y - y; in pclxl_flush_points()
408 int dx1 = xdev->points.data[i].x - x; in pclxl_flush_points()
409 int dy1 = xdev->points.data[i].y - y; in pclxl_flush_points()
[all …]
H A Dgdevcgm.c295 #define cgm_set_rect(points, xo, yo, w, h)\ argument
296 points[1].integer.x = (points[0].integer.x = xo) + (w) - 1,\
297 points[1].integer.y = (points[0].integer.y = yo) + (h) - 1
390 cgm_point points[2]; in cgm_fill_rectangle() local
406 cgm_set_rect(points, x, y, w, h); in cgm_fill_rectangle()
407 result = cgm_RECTANGLE(cdev->st, &points[0], &points[1]); in cgm_fill_rectangle()
463 cgm_point points[2]; in cgm_copy_mono() local
466 cgm_set_rect(points, x, y, 1, 1); in cgm_copy_mono()
467 result = cgm_RECTANGLE(cdev->st, &points[0], &points[1]); in cgm_copy_mono()
H A Dfapiufst.c897 PINTRVECTOR points; in export_outline() local
908 points = (PINTRVECTOR)((LPSB8)(outchar->loop) + outchar->loop[i].coord_offset); in export_outline()
913 if ((code = p->moveto(p, points->x, points->y)) != 0) in export_outline()
915 points++; in export_outline()
917 if ((code = p->lineto(p, points->x, points->y)) != 0) in export_outline()
919 points++; in export_outline()
921 points+=2; in export_outline()
924 if ((code = p->curveto(p, points[0].x, points[0].y, in export_outline()
925 points[1].x, points[1].y, in export_outline()
926 points[2].x, points[2].y)) < 0) in export_outline()
[all …]
H A Dgsicc.c291 const gs_vector3 * pwhtpt = &picc_info->common.points.WhitePoint; in gx_concretize_CIEICC()
561 ppt = &picc_info->common.points.WhitePoint; in gx_load_icc_profile()
637 picc_info->common.points.WhitePoint.u = (float)0.9642; /* Profile illuminant - D50 */ in gs_cspace_build_CIEICC()
638 picc_info->common.points.WhitePoint.v = 1.0000; in gs_cspace_build_CIEICC()
639 picc_info->common.points.WhitePoint.w = (float)0.8249; in gs_cspace_build_CIEICC()
H A Dgscrdp.c168 (code = write_vector3(plist, "WhitePoint", &pcrd->points.WhitePoint, mem)) < 0 in param_put_cie_render1()
171 if (memcmp(&pcrd->points.BlackPoint, &BlackPoint_default, in param_put_cie_render1()
172 sizeof(pcrd->points.BlackPoint))) { in param_put_cie_render1()
173 if ((code = write_vector3(plist, "BlackPoint", &pcrd->points.BlackPoint, mem)) < 0) in param_put_cie_render1()
512 (code = read_vector3(plist, "WhitePoint", &pcrd->points.WhitePoint, in param_get_cie_render1()
514 (code = read_vector3(plist, "BlackPoint", &pcrd->points.BlackPoint, in param_get_cie_render1()
H A Dgscscie.c199 pcommon->points.WhitePoint = BlackPoint_default; in gx_set_common_cie_defaults()
200 pcommon->points.BlackPoint = BlackPoint_default; in gx_set_common_cie_defaults()
413 return sputs(s, (const byte *)&p->common.points, in gx_serialize_cie_common_elements()
414 sizeof(p->common.points), &n); in gx_serialize_cie_common_elements()
H A Dgscie.h375 gs_cie_wb points; member
547 gs_cie_wb points; member
755 ((pcspace)->params.a->common.points.WhitePoint)
757 ((pcspace)->params.a->common.points.BlackPoint)
H A Dgdevpdfc.c180 #define CC_WP(uvw) (pcie->common.points.WhitePoint.uvw) in cie_scalar_cache_is_lab_lmn()
292 &pciec->points.WhitePoint); in pdf_finish_cie_space()
296 if (pciec->points.BlackPoint.u != 0 || in pdf_finish_cie_space()
297 pciec->points.BlackPoint.v != 0 || in pdf_finish_cie_space()
298 pciec->points.BlackPoint.w != 0 in pdf_finish_cie_space()
301 &pciec->points.BlackPoint); in pdf_finish_cie_space()
H A Dgscrd.c301 pcrd->points.WhitePoint = *WhitePoint; in gs_cie_render1_init_from()
302 pcrd->points.BlackPoint = in gs_cie_render1_init_from()
H A Dgscie.c708 CRD_SAME(points.WhitePoint) && CRD_SAME(points.BlackPoint) && in gs_setcolorrendering()
869 cie_mult3(&pcrd->points.WhitePoint, &pcrd->MatrixPQR, &pcrd->wdpqr); in gs_cie_render_init()
870 cie_mult3(&pcrd->points.BlackPoint, &pcrd->MatrixPQR, &pcrd->bdpqr); in gs_cie_render_init()
1197 pwbsd->ws.xyz = pcie->points.WhitePoint; in gs_cie_compute_points_sd()
1199 pwbsd->bs.xyz = pcie->points.BlackPoint; in gs_cie_compute_points_sd()
1201 pwbsd->wd.xyz = pcrd->points.WhitePoint; in gs_cie_compute_points_sd()
1203 pwbsd->bd.xyz = pcrd->points.BlackPoint; in gs_cie_compute_points_sd()
H A Dgdevvec.h311 const gs_fixed_point * points, uint count,
/plan9/sys/src/cmd/fossil/
H A Dinvariants18 If $b# points at $bb#, then $bb.e <= b.e < bb.e sub 1#.
20 If $b# points at $bb#, then no other block $b'# with $b'.e = b.e# points at $bb#.
24 and points at $bb# such that $b.e = bb.e#, then no other block $b'# points at $bb#.
26 If $b# is in the active file system and points at $bb# then no other block $b'# in the
27 active file system points at $bb#.
45 Since $b# is open, all the blocks $bb# it points to are also
71 points at $bb#, so $bb# can be freed.
90 $"BlockSetLink" (b -> bb sub 0 , "blockAlloc" ())# allocates a new block and points $b# at it.
95 $"BlockSetLink" (b -> bb sub 0 , "blockCopy" (bb sub 0 ))# copies $bb sub 0# and points
/plan9/sys/src/cmd/postscript/posttek/
H A Dposttek.c134 int points = 0; /* points making up the current vector */ variable
712 if ( points > 100 ) { /* don't put too much on the stack */ in graph()
714 points = 1; in graph()
717 if ( points++ ) in graph()
790 points = 1; in incremental()
1100 if ( points > 1 ) /* it's a vector */ in draw()
1102 else if ( points == 1 && dispmode != GRAPH ) in draw()
1105 points = 0; in draw()
/plan9/sys/src/games/
H A Dxs.c46 long points; variable
309 points += p; in score()
310 snprint(buf, sizeof(buf), "%.6ld", points); in score()
654 dt = 16 * (points+nrand(10000)-5000) / 10000; in play()
881 points = 0; in threadmain()
887 points, getuser(), starttime, endtime-starttime); in threadmain()
/plan9/mail/lib/
H A Drewrite.direct4 # by default, the return address points to this system; if you have multiple systems
H A Drewrite.gateway5 # by default the return address points to this system; set $site
/plan9/sys/src/cmd/gs/lib/
H A Dghostpdf.ppd101 *ParamCustomPageSize Width: 1 points 1 5670
102 *ParamCustomPageSize Height: 2 points 1 5670
103 *ParamCustomPageSize WidthOffset/Width Margin: 3 points 0 5670
104 *ParamCustomPageSize HeightOffset/Height Margin: 4 points 0 5670
/plan9/sys/src/cmd/gs/zlib/
H A Dalgorithm.txt103 If the symbol is longer than nine bits, then that entry in the table points
112 So a table entry either points to another table (in which case nine bits in
158 many bits to gobble. Or the entry points to another table, with the number of

123