Searched refs:vvp (Results 1 – 4 of 4) sorted by relevance
/openbsd/usr.bin/mg/ |
H A D | display.c | 646 ucopy(struct video *vvp, struct video *pvp) in ucopy() argument 650 pvp->v_hash = vvp->v_hash; in ucopy() 651 pvp->v_cost = vvp->v_cost; in ucopy() 652 pvp->v_color = vvp->v_color; in ucopy() 653 bcopy(vvp->v_text, pvp->v_text, ncol); in ucopy() 713 ttcolor(vvp->v_color); in uline() 724 cp1 = &vvp->v_text[0]; in uline() 725 cp2 = &vvp->v_text[ncol]; in uline() 760 ttmove(row, (int) (cp1 - &vvp->v_text[0])); in uline() 764 cp1 = &vvp->v_text[magic_cookie_glitch]; in uline() [all …]
|
/openbsd/sys/sys/ |
H A D | time.h | 93 #define timeradd(tvp, uvp, vvp) \ argument 95 (vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \ 96 (vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \ 97 if ((vvp)->tv_usec >= 1000000) { \ 98 (vvp)->tv_sec++; \ 99 (vvp)->tv_usec -= 1000000; \ 102 #define timersub(tvp, uvp, vvp) \ argument 104 (vvp)->tv_sec = (tvp)->tv_sec - (uvp)->tv_sec; \ 106 if ((vvp)->tv_usec < 0) { \ 107 (vvp)->tv_sec--; \ [all …]
|
/openbsd/lib/libevent/ |
H A D | evutil.h | 68 #define evutil_timeradd(tvp, uvp, vvp) timeradd((tvp), (uvp), (vvp)) argument 69 #define evutil_timersub(tvp, uvp, vvp) timersub((tvp), (uvp), (vvp)) argument
|
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
H A D | deref1.C | 7 void fn (void *vp, volatile void *vvp) in fn() argument 10 *vvp; // ERROR - not a pointer to object in fn() 12 &*vvp; // ERROR - not a pointer to object in fn()
|