HomeSort by: relevance | last modified time | path
    Searched refs:vpos (Results 1 - 25 of 37) sorted by relevancy

1 2

  /src/external/gpl2/groff/dist/src/devices/grolj4/
lj4.cpp 179 int moveto(int hpos, int vpos);
180 int moveto1(int hpos, int vpos);
196 int lj4_printer::moveto(int hpos, int vpos)
198 if (cur_hpos != hpos || cur_vpos != vpos || cur_hpos < 0)
199 return moveto1(hpos, vpos);
319 if (!moveto(env->hpos, env->vpos))
327 int lj4_printer::moveto1(int hpos, int vpos)
329 if (hpos < x_offset || vpos < 0)
333 printf("%dx%dY", hpos - x_offset, vpos);
337 hpos - cur_hpos, vpos == cur_vpos ? 'X' : 'x')
356 int vpos = env->vpos; local
    [all...]
  /src/external/gpl2/groff/dist/src/devices/grolbp/
lbp.cpp 79 void polygon( int hpos,int vpos,int np,int *p);
343 if ((env->hpos != cur_hpos) || (env->vpos != cur_vpos)) {
344 // lbpmoveabs(env->hpos - ((5 * 300) / 16), env->vpos);
345 lbpmoveabs(env->hpos - 64, env->vpos - 64);
346 cur_vpos = env->vpos;
402 inline void lbp_printer::polygon(int hpos, int vpos, int np, int *p)
407 points[1] = vpos;
440 vdmline(env->hpos, env->vpos, p[0], p[1]);
442 env->hpos - 64,env->vpos -64, env->hpos - 64 + p[0],
443 env->vpos -64 + p[1], env->size, line_thickness);*
    [all...]
  /src/usr.bin/sort/
init.c 288 char *vpos, *tpos, spec[20]; local
365 asprintf(&vpos, "-k%s", spec);
366 argv[i] = vpos;
373 asprintf(&vpos, "%s,%s", argv[i-1], spec);
375 argv[i-1] = vpos;
  /src/external/gpl2/groff/dist/src/devices/grotty/
tty.cpp 371 env->hpos, env->vpos,
391 int vpos; local
393 vpos = cached_vpos;
397 vpos = v / font::vert;
398 if (vpos > nlines) {
400 lines = new glyph *[vpos + 1];
402 for (int i = nlines; i <= vpos; i++)
405 nlines = vpos + 1;
409 if (vpos <= 0) {
414 cached_vpos = vpos;
    [all...]
  /src/external/gpl2/groff/dist/src/devices/grodvi/
dvi.cpp 383 if (env->vpos != cur_v) {
384 out_signed(down1, env->vpos - cur_v);
385 cur_v = env->vpos;
561 moveto(env->hpos, env->vpos);
601 y = env->vpos + p[1] + thickness/2;
607 y = env->vpos + thickness/2;
615 y = env->vpos + thickness/2;
621 y = env->vpos + thickness/2;
652 int ov = env->vpos;
720 moveto(env->hpos+p[0]/2, env->vpos);
    [all...]
  /src/external/gpl2/groff/dist/src/include/
printer.h 47 int vpos; member in struct:environment
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_display.c 88 int vpos, hpos; local
102 &vpos, &hpos, NULL, NULL,
786 * fudged earlier start of vblank in *vpos and the distance
789 * \param *vpos Location where vertical scanout position should be stored.
796 * Returns vpos as a positive number while in active scanout area.
797 * Returns vpos as a negative number inside vblank, counting the number
811 unsigned int pipe, unsigned int flags, int *vpos,
837 *vpos = position & 0x1fff;
856 *hpos = *vpos - vbl_start;
873 if ((*vpos < vbl_start) && (*vpos >= vbl_end)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
dvo_ns2501.c 224 u16 vpos; /* vertical position, 8e/8f */ member in struct:ns2501_configuration
251 .vpos = 16,
271 .vpos = 4,
290 .vpos = 7,
636 ns2501_writeb(dvo, NS2501_REG8E, conf->vpos & 0xff);
637 ns2501_writeb(dvo, NS2501_REG8F, conf->vpos >> 8);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_display.c 294 int vpos, hpos; local
326 * distance to start of "fudged earlier" vblank in vpos, distance to
327 * start of real vblank in hpos. vpos >= 0 && hpos < 0 means we are in
346 &vpos, &hpos, NULL, NULL,
348 ((vpos >= 0 && hpos < 0) || (hpos >= 0 && !ASIC_IS_AVIVO(rdev)))) {
424 int vpos, hpos; local
462 &vpos, &hpos, NULL, NULL,
1784 * fudged earlier start of vblank in *vpos and the distance
1787 * \param *vpos Location where vertical scanout position should be stored.
1794 * Returns vpos as a positive number while in active scanout area
    [all...]
radeon_drv.c 142 unsigned int flags, int *vpos, int *hpos,
592 bool in_vblank_irq, int *vpos, int *hpos,
596 return radeon_get_crtc_scanoutpos(dev, pipe, 0, vpos, hpos,
radeon_kms.c 763 int vpos, hpos, stat; local
776 * vblank in vpos. vpos therefore will be >= 0 between start of vblank
777 * and start of vsync, so vpos >= 0 means to bump the hw frame counter
786 /* Ask radeon_get_crtc_scanoutpos to return vpos as
792 &vpos, &hpos, NULL, NULL,
802 pipe, vpos);
805 * but before vsync where vpos would turn negative and
808 if (vpos >= 0)
  /src/external/gpl2/groff/dist/src/libs/libdriver/
input.cpp 495 e_copy->vpos = e->vpos;
1022 current_env->vpos += (*args)[i];
1590 current_env->vpos = -1;
1768 pr->end_page(current_env->vpos);
1771 current_env->vpos = 0;
1810 current_env->vpos += (EnvInt) get_integer_arg();
1813 current_env->vpos = (EnvInt) get_integer_arg();
1829 pr->end_page(current_env->vpos);
  /src/external/gpl2/groff/dist/src/devices/grops/
ps.cpp 707 && sbuf_vpos == env->vpos
757 sbuf_vpos = env->vpos;
1104 .put_fix_number(env->vpos)
1121 .put_fix_number(p[1] + env->vpos)
1123 .put_fix_number(env->vpos)
1137 .put_fix_number(env->vpos)
1160 .put_fix_number(env->vpos)
1186 .put_fix_number(env->vpos)
1222 .put_fix_number(env->vpos + int(c[1]))
1229 .put_fix_number(p[1] + p[3] + env->vpos)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i2c/
ch7006_mode.c 340 int flicker, contrast, hpos, vpos; local
363 vpos = max(0, norm->vdisplay - round_fixed(mode->vdisplay*scale)
366 setbitf(state, CH7006_POV, VPOS_8, vpos);
367 setbitf(state, CH7006_VPOS, 0, vpos);
369 ch7006_dbg(client, "hpos: %d, vpos: %d\n", hpos, vpos);
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_peap.c 831 const u8 *pos, *vpos; local
881 vpos = pos + 4;
882 mandatory = !!(vpos[0] & 0x80);
883 tlv_type = vpos[0] & 0x3f;
884 tlv_type = (tlv_type << 8) | vpos[1];
885 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
886 vpos += 4;
887 if (vpos + vtlv_len > pos + left) {
895 soh_tlv = vpos;
    [all...]
  /src/external/gpl2/texinfo/dist/info/
display.c 598 int vpos, hpos; local
600 vpos = window_line_of_point (window) - window->pagetop + window->first_row;
602 terminal_goto_xy (hpos, vpos);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/
amdgpu_dc_stream.c 243 unsigned int lines_to_vupdate, us_to_vupdate, vpos, nvpos; local
251 if (!dc_stream_get_crtc_position(dc, &stream, 1, &vpos, &nvpos))
254 if (vpos >= vupdate_line)
258 lines_to_vupdate = vupdate_line - vpos;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_display.c 111 nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos,
140 *vpos = calc(args.scan.vblanks, args.scan.vblanke,
150 bool in_vblank_irq, int *vpos, int *hpos,
158 return nouveau_display_scanoutpos_head(crtc, vpos, hpos,
  /src/external/gpl2/groff/dist/src/roff/troff/
column.cpp 421 vunits vpos(V0);
424 vpos += ln->distance();
425 ln->output(out, vpos);
426 vpos += ln->height();
node.cpp 752 units vpos; member in class:troff_output_file
807 int get_vpos() { return vpos; }
878 vpos = v.to_units();
939 vpos += n.to_units();
946 put(vpos);
965 if (vpos != output_vpos) {
966 units n = vpos - output_vpos;
967 if (n > 0 && n < vpos) {
973 put(vpos);
978 output_vpos = vpos;
4687 int vpos = out->get_vpos(); local
4735 int vpos = out->get_vpos(); local
4812 int vpos = out->get_vpos(); local
    [all...]
  /src/sys/dev/usb/
auvitek_video.c 282 uint16_t vpos = 0, hpos = 0; local
291 auvitek_write_1(sc, AU0828_REG_VPOS_LO, vpos & 0xff);
292 auvitek_write_1(sc, AU0828_REG_VPOS_HI, vpos >> 8);
  /src/external/bsd/nsd/dist/
server.c 3960 unsigned int vpos = 0; local
3966 while(vpos < vlen) {
3968 msgvec[vpos].msg_hdr.msg_iov->iov_base,
3969 msgvec[vpos].msg_hdr.msg_iov->iov_len,
3971 msgvec[vpos].msg_hdr.msg_name,
3972 &msgvec[vpos].msg_hdr.msg_namelen);
3977 msgvec[vpos].msg_len = (unsigned int)rcvd;
3978 vpos++;
3982 if(vpos) {
3984 return (int)vpos;
4002 unsigned int vpos = 0; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_irq.h 107 bool in_vblank_irq, int *vpos, int *hpos,
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_drv.h 345 * vpos:
358 * Returns vpos as a positive number while in active scanout area.
359 * Returns vpos as a negative number inside vblank, counting the number
375 bool in_vblank_irq, int *vpos, int *hpos,
  /src/sys/external/bsd/drm2/dist/drm/
drm_vblank.c 651 int vpos, hpos, i; local
694 * Get vertical and horizontal scanout position vpos, hpos,
699 &vpos, &hpos,
731 delta_ns = div_s64(1000000LL * (vpos * mode->crtc_htotal + hpos),
746 pipe, hpos, vpos,

Completed in 37 milliseconds

1 2