Home
last modified time | relevance | path

Searched refs:yp (Results 1 – 25 of 60) sorted by relevance

123

/openbsd/src/usr.sbin/ypserv/ypinit/
DMakefile3 MAN= Makefile.yp.8 ypinit.8
5 DISTFILES= Makefile.main Makefile.yp
15 ${.CURDIR}/${script} ${DESTDIR}/var/yp/${script}.dist
18 ${.CURDIR}/README ${DESTDIR}/var/yp/README
23 ${.CURDIR}/${script} ${DESTDIR}/var/yp/${script}
DREADME3 The files Makefile.yp.dist and Makefile.main.dist should NEVER be changed,
6 Local changes can be done in Makefile.yp and Makefile.main. They are replaced
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
Dptrmem.C76 ptrmemfunc *yp = (ptrmemfunc *) &y; in main() local
91 if (yp->ptr != 0) in main()
98 if (! CMP_PTRFN (yp->ptr, ADJUST_PTRFN (&_ZN1T1fEv, 0))) in main()
100 if (yp->adj != ADJUST_DELTA (0, 0)) in main()
112 if (yp->ptr != ADJUST_PTRFN (VPTE_SIZE, 1)) in main()
114 if (yp->adj != ADJUST_DELTA (0, 1)) in main()
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
Drtti2.C26 Y *yp = &z; variable
75 if (typeid(*yp) == typeid(Z)) error(2); in main()
76 if (typeid(*yp) == typeid(*zp)) error(3); in main()
77 if (typeid(xp) == typeid(yp)) error(4); in main()
80 if (typeid(*xp) == typeid(*yp)) error(5); in main()
Drtti4.C28 Y *yp = &z; variable
74 if (typeid(*yp) != typeid(Z)) error(2); in main()
75 if (typeid(*yp) != typeid(*zp)) error(3); in main()
76 if (typeid(xp) == typeid(yp)) error(4); in main()
79 if (typeid(*xp) == typeid(*yp)) error(5); in main()
Drtti3.C28 Y *yp = &z; variable
79 if (typeid(*yp) != typeid(Z)) error(2); in main()
80 if (typeid(*yp) != typeid(*zp)) error(3); in main()
81 if (typeid(xp) == typeid(yp)) error(4); in main()
84 if (typeid(*xp) == typeid(*yp)) error(5); in main()
Dcast3.C13 void fn (void *p, void const *cp, Y *yp, Y const *ycp, Z *zp, Z const *zcp) in fn() argument
33 static_cast <Z *> (yp); in fn()
34 static_cast <Z const *> (yp); in fn()
Drttid3.C29 Y *yp = &z; variable
93 vp = dynamic_cast<Z *> (yp); in main()
96 vp = dynamic_cast<X *> (yp); in main()
Drttid4.C29 Y *yp = &z; variable
89 vp = dynamic_cast<Z *> (yp); in main()
92 vp = dynamic_cast<X *> (yp); in main()
Ddelete5.C38 Y *yp = new Y; in main() local
40 return yp != 0; in main()
Drttid2.C27 Y *yp = &z; variable
90 vp = dynamic_cast<X *> (yp); in main()
/openbsd/src/usr.bin/tmux/
Dcmd-display-menu.c107 const char *xp, *yp; in cmd_display_menu_get_position() local
255 yp = args_get(args, 'y'); in cmd_display_menu_get_position()
256 if (yp == NULL || strcmp(yp, "C") == 0) in cmd_display_menu_get_position()
257 yp = "#{popup_centre_y}"; in cmd_display_menu_get_position()
258 else if (strcmp(yp, "P") == 0) in cmd_display_menu_get_position()
259 yp = "#{popup_pane_bottom}"; in cmd_display_menu_get_position()
260 else if (strcmp(yp, "M") == 0) in cmd_display_menu_get_position()
261 yp = "#{popup_mouse_top}"; in cmd_display_menu_get_position()
262 else if (strcmp(yp, "S") == 0) in cmd_display_menu_get_position()
263 yp = "#{popup_status_line_y}"; in cmd_display_menu_get_position()
[all …]
/openbsd/src/usr.sbin/ypldap/
Dyp.c116 struct yp_data *yp; in yp_init() local
119 if ((yp = calloc(1, sizeof(*yp))) == NULL) in yp_init()
121 TAILQ_INIT(&yp->yd_events); in yp_init()
124 env->sc_yp = yp; in yp_init()
138 if ((yp->yp_trans_udp = svcudp_create(s)) == NULL) in yp_init()
148 if ((yp->yp_trans_tcp = svctcp_create(s, 0, 0)) == NULL) in yp_init()
153 if (!svc_register(yp->yp_trans_udp, YPPROG, YPVERS, in yp_init()
157 if (!svc_register(yp->yp_trans_tcp, YPPROG, YPVERS, in yp_init()
170 if ((yp->yp_trans_udp = svcudp_create(RPC_ANYSOCK)) == NULL) in yp_init()
172 if ((yp->yp_trans_tcp = svctcp_create(RPC_ANYSOCK, 0, 0)) == in yp_init()
[all …]
DMakefile5 ldapclient.c entries.c yp.c \
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
Dp9206.C17 Yptr yp = reinterpret_cast<Yptr>(xp); in main() local
18 xp = reinterpret_cast<Xptr>(yp); in main()
/openbsd/src/usr.bin/vi/vi/
Dvs_line.c39 vs_line(SCR *sp, SMAP *smp, size_t *yp, size_t *xp) in vs_line() argument
72 if (yp == NULL && (is_cached || no_draw)) in vs_line()
153 if (yp != NULL && smp->lno == sp->lno) { in vs_line()
154 *yp = smp - HMAP; in vs_line()
319 if (yp == NULL || in vs_line()
379 *yp = smp - HMAP; in vs_line()
/openbsd/src/etc/rc.d/
Dyppasswdd12 [[ -n $(domainname) && -d /var/yp/$(domainname) ]] ||
16 if [[ $(grep '^lookup' /etc/resolv.conf | grep yp | wc -c) -ne 0 ]]; then
Dypserv10 [[ -n $(domainname) && -d /var/yp/$(domainname) ]]
/openbsd/src/games/hunt/hunt/
Ddisplay.c63 display_getyx(int *yp, int *xp) in display_getyx() argument
65 getyx(stdscr, *yp, *xp); in display_getyx()
/openbsd/src/lib/libc/yp/
DMakefile.inc4 .PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/yp ${LIBCSRCDIR}/yp
/openbsd/src/usr.bin/vi/cl/
Dcl_funcs.c241 cl_cursor(SCR *sp, size_t *yp, size_t *xp) in cl_cursor() argument
250 getyx(stdscr, *yp, *xp); in cl_cursor()
251 *yp -= sp->woff; in cl_cursor()
/openbsd/src/etc/
Dchangelist179 /var/yp/Makefile.main
180 /var/yp/Makefile.yp
/openbsd/src/lib/libc/hidden/rpcsvc/
Dyp.h21 #include_next <rpcsvc/yp.h>
/openbsd/src/regress/usr.bin/mandoc/mdoc/Bl/
Dmultitype.out_ascii4 BBll--mmuullttiittyyppee - list with multiple types
/openbsd/src/regress/lib/libcrypto/x509/bettertls/certificates/
D2629.crt19 xOJl3mPz+0t0gS5Af/g+AQg/mlcHIXxhwiMFAcEWhAPg/yp/R8onE7fidmdqDA5e

123