Searched refs:vpos (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/wpa/src/eap_server/
H A Deap_server_peap.c782 const u8 *pos, *vpos; local
832 vpos = pos + 4;
833 mandatory = !!(vpos[0] & 0x80);
834 tlv_type = vpos[0] & 0x3f;
835 tlv_type = (tlv_type << 8) | vpos[1];
836 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
837 vpos += 4;
838 if (vpos + vtlv_len > pos + left) {
846 soh_tlv = vpos;
[all...]
/freebsd-13-stable/sys/dev/drm2/
H A Ddrm_irq.c554 int vpos, hpos, i; local
602 /* Get vertical and horizontal scanout pos. vpos, hpos. */
603 vbl_status = dev->driver->get_scanout_position(dev, crtc, &vpos, &hpos);
638 * vpos is >=0 in video scanout area, but negative
648 delta_ns = (s64) vpos * linedur_ns + (s64) hpos * pixeldur_ns;
650 /* Is vpos outside nominal vblank area, but less than
661 ((vdisplay - vpos) < vtotal / 100)) {
681 crtc, (int)vbl_status, hpos, vpos, (uintmax_t)raw_time.tv_sec,
H A DdrmP.h782 * \param *vpos Target location for current vertical scanout position.
785 * Returns vpos as a positive number while in active scanout area.
786 * Returns vpos as a negative number inside vblank, counting the number
800 int *vpos, int *hpos);

Completed in 47 milliseconds