Searched refs:xpos (Results 1 - 15 of 15) sorted by relevance

/freebsd-10-stable/contrib/wpa/src/crypto/
H A Dfips_prf_internal.c22 u8 *xpos = x; local
53 os_memcpy(xpos, _t, 20);
58 carry += xkey[k] + xpos[k];
63 xpos += SHA1_MAC_LEN;
H A Dfips_prf_openssl.c31 u8 *xpos = x; local
62 os_memcpy(xpos, _t, 20);
67 carry += xkey[k] + xpos[k];
72 xpos += 20;
H A Daes-gcm.c106 const u8 *xpos = x; local
113 xor_block(y, xpos);
114 xpos += 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
126 os_memcpy(tmp, xpos, last);
147 const u8 *xpos = x; local
159 xor_block(ypos, xpos);
160 xpos += AES_BLOCK_SIZE;
165 last = x + xlen - xpos;
[all...]
/freebsd-10-stable/sys/pc98/cbus/
H A Dsctermvar.h98 if (n > scp->xsize - scp->xpos)
99 n = scp->xsize - scp->xpos;
100 count = scp->xsize - (scp->xpos + n);
114 if (n > scp->xsize - scp->xpos)
115 n = scp->xsize - scp->xpos;
116 count = scp->xsize - (scp->xpos + n);
136 sc_move_cursor(scp, scp->xpos, n - 1);
147 sc_move_cursor(scp, scp->xpos, scp->ypos - n);
160 sc_move_cursor(scp, scp->xpos, scp->ypos + n);
168 sc_move_cursor(scp, scp->xpos
[all...]
H A Dscterm-sck.c438 tcp->saved_xpos = scp->xpos;
610 if (n > scp->xsize - scp->xpos)
611 n = scp->xsize - scp->xpos;
713 tcp->saved_xpos = scp->xpos;
957 cnt = imin(len, scp->xsize - scp->xpos);
970 scp->xpos += cnt - i;
986 if (++scp->xpos >= scp->xsize) {
987 scp->xpos = 0;
1006 ++scp->xpos;
1012 cnt = imin(len, scp->xsize - scp->xpos);
[all...]
/freebsd-10-stable/sys/dev/syscons/logo/
H A Dlogo_saver.c93 static int xpos = 0, ypos = 0; local
97 if ((xpos + logo_w + xinc > scrw) || (xpos + xinc < 0))
101 xpos += xinc;
105 logo_blit(adp, xpos, ypos);
/freebsd-10-stable/sys/dev/syscons/daemon/
H A Ddaemon_saver.c125 clear_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
134 (ypos + y)*sc->cur_scp->xsize + xpos + xoff,
141 draw_daemon(sc_softc_t *sc, int xpos, int ypos, int dxdir, int xoff, int yoff, argument
167 + xpos + x,
173 + xpos + DAEMON_MAX_WIDTH
183 clear_string(sc_softc_t *sc, int xpos, int ypos, int xoff, char *s, int len) argument
188 ypos*sc->cur_scp->xsize + xpos + xoff, len - xoff,
193 draw_string(sc_softc_t *sc, int xpos, int ypos, int xoff, u_char *s, int len) argument
199 ypos*sc->cur_scp->xsize + xpos + x,
/freebsd-10-stable/sys/dev/syscons/
H A Dscterm.c55 scp->xpos = x;
57 scp->cursor_pos = scp->ypos*scp->xsize + scp->xpos;
H A Dsyscons.c446 scp->ypos * scp->xsize + scp->xpos);
457 scp->xpos = 0;
907 ptr->mv_col = scp->xpos;
2637 sc_move_cursor(sc->old_scp, sc->old_scp->xpos, sc->old_scp->ypos);
2657 sc_move_cursor(scp, scp->xpos, scp->ypos);
2936 scp->xpos = col;
3282 scp->xpos = scp->ypos = 0;
H A Dsyscons.h286 int xpos; /* current X position */ member in struct:scr_stat
/freebsd-10-stable/crypto/openssl/apps/
H A Dengine.c192 int xpos = 0; local
235 if (xpos == 0)
237 xpos = BIO_puts(bio_out, indent);
240 xpos += BIO_printf(bio_out, ", ");
245 if ((xpos > (int)strlen(indent)) &&
246 (xpos + (int)strlen(name) > line_wrap)) {
248 xpos = BIO_puts(bio_out, indent);
250 xpos += BIO_printf(bio_out, "%s", name);
258 xpos = 0;
270 if (xpos >
[all...]
/freebsd-10-stable/contrib/gdb/gdb/tui/
H A Dtui-source.c266 int xpos; local
273 xpos = 1;
275 xpos = (line_width - 1) / 2 - warning_length;
277 for (i = 0; i < xpos; i++)
282 for (i = xpos + warning_length; i < line_width; i++)
/freebsd-10-stable/sys/dev/syscons/snake/
H A Dsnake_saver.c89 dirx = (scp->xpos ? 1 : -1);
93 savs[f] = scp->xpos + scp->ypos*scp->xsize;
/freebsd-10-stable/tools/sched/
H A Dschedgraph.py669 def draw(self, canvas, xpos, ypos, item):
715 def draw(self, canvas, xpos, ypos):
717 l = canvas.create_oval(xpos - XY_POINT, ypos,
718 xpos + XY_POINT, ypos - (XY_POINT * 2),
721 Event.draw(self, canvas, xpos, ypos, l)
723 return xpos
730 def draw(self, canvas, xpos, ypos):
733 return (xpos)
743 l = canvas.create_rectangle(xpos, ypos,
744 xpos
[all...]
/freebsd-10-stable/sys/dev/drm2/i915/
H A Dintel_tv.c1039 int xpos = 0x0, ypos = 0x0; local
1062 xpos += intel_tv->margin[TV_MARGIN_LEFT];
1068 I915_WRITE(TV_WIN_POS, (xpos<<16)|ypos);

Completed in 301 milliseconds