Searched refs:mon (Results 1 - 25 of 115) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/sys/arch/sun2/include/
H A Dmon.h3 #include <sun68k/mon.h>
H A Dpromlib.h40 #include <machine/mon.h>
/netbsd-6-1-5-RELEASE/sys/arch/mvmeppc/stand/libsa/
H A Dclock.c32 chiptotime(int sec, int min, int hour, int day, int mon, int year) argument
40 mon = FROMBCD(mon);
46 if (year < 70 || mon < 1 || mon > 12 || day < 1 || day > 31)
51 days += dayyr[mon - 1] + day - 1;
52 if (LEAPYEAR(yr) && mon > 2)
/netbsd-6-1-5-RELEASE/sys/arch/mvme68k/stand/libsa/
H A Dchiptotime.c31 chiptotime(int sec, int min, int hour, int day, int mon, int year) argument
39 mon = FROMBCD(mon);
45 if (year < 70 || mon < 1 || mon > 12 || day < 1 || day > 31)
50 days += dayyr[mon - 1] + day - 1;
51 if (LEAPYEAR(yr) && mon > 2)
H A Dclock.c31 chiptotime(int sec, int min, int hour, int day, int mon, int year) argument
39 mon = FROMBCD(mon);
45 if (year < 70 || mon < 1 || mon > 12 || day < 1 || day > 31)
50 days += dayyr[mon - 1] + day - 1;
51 if (LEAPYEAR(yr) && mon > 2)
/netbsd-6-1-5-RELEASE/sys/arch/mvme68k/stand/sboot/
H A Dclock.c105 int sec, min, hour, day, mon, year; local
112 mon = cl->cl_month;
115 return chiptotime(sec, min, hour, day, mon, year);
/netbsd-6-1-5-RELEASE/games/monop/
H A Dmonop.c136 static MON mon[N_MON] = { /* monopoly descriptions */ variable
151 {0, 0, 1, 0, &mon[0], { 2, 10, 30, 90, 160, 250} },
152 {0, 0, 3, 0, &mon[0], { 4, 20, 60, 180, 320, 450} },
153 {0, 0, 6, 0, &mon[1], { 6, 30, 90, 270, 400, 550} },
154 {0, 0, 7, 0, &mon[1], { 6, 30, 90, 270, 400, 550} },
155 {0, 0, 9, 0, &mon[1], { 8, 40,100, 300, 450, 600} },
156 {0, 0, 11, 0, &mon[2], {10, 50,150, 450, 625, 750} },
157 {0, 0, 13, 0, &mon[2], {10, 50,150, 450, 625, 750} },
158 {0, 0, 14, 0, &mon[2], {12, 60,180, 500, 700, 900} },
159 {0, 0, 16, 0, &mon[
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/sun68k/stand/libsa/
H A Dclock.c5 #include <machine/mon.h>
H A Ddevopen.c5 #include <machine/mon.h>
H A Dpromcons.c5 #include <machine/mon.h>
H A DSRT1.c35 #include <sun68k/mon.h>
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/ppc/
H A Dmon.h48 typedef struct _mon mon; typedef in typeref:struct:_mon
52 (mon *) mon_create
57 (mon *monitor,
62 (mon *monitor,
99 (mon *monitor,
105 mon *monitor,
/netbsd-6-1-5-RELEASE/sys/arch/x68k/stand/libsa/
H A Dclock.c49 int sec, min, hour, day, mon, year; local
55 mon = ((val & 0x0000ff00) >> 8);
64 if (mon < 1 || mon > 12 || day < 1 || day > 31)
72 days += yday[mon - 1] + day - 1;
73 if (LEAPYEAR(y) && mon > 2)
/netbsd-6-1-5-RELEASE/usr.sbin/rpc.statd/
H A Dtest.c33 struct mon *argp;
99 struct mon mon; local
110 mon.mon_id.mon_name = argv[1];
111 mon.mon_id.my_id.my_name = argv[1];
112 mon.mon_id.my_id.my_prog = SM_PROG;
113 mon.mon_id.my_id.my_vers = SM_VERS;
114 mon.mon_id.my_id.my_proc = 1; /* have it call sm_stat() !!! */
119 if (res = sm_mon_1(&mon, cli))
/netbsd-6-1-5-RELEASE/games/hack/
H A Dhack.fight.c181 struct monst *mon; local
182 for (mon = fmon; mon; mon = mon->nmon)
183 if (mon != mtmp) {
184 if (DIST(mon->mx, mon->my, mtmp->mx, mtmp->my) < 3)
186 return (hitmm(mtmp, mon));
216 /* return TRUE if mon stil
218 hmon(struct monst *mon, struct obj *obj, int thrown) argument
325 mon, exclam(tmp)); local
[all...]
H A Dhack.potion.c300 potionhit(struct monst *mon, struct obj *obj) argument
303 boolean uclose, isyou = (mon == &youmonst);
311 uclose = (dist(mon->mx, mon->my) < 3);
314 botlnam, monnam(mon));
315 if (rn2(5) && mon->mhp > 1)
316 mon->mhp--;
327 if (mon->mhp < mon->mhpmax) {
328 mon
[all...]
H A Dhack.do.c334 struct monst *mon; local
360 mon = u.ustuck;
361 bhitpos.x = mon->mx;
362 bhitpos.y = mon->my;
393 mon = boomhit(u.dx, u.dy);
394 if (mon == &youmonst) { /* the thing was caught */
402 mon = bhit(u.dx, u.dy, (obj->otyp == ICE_BOX) ? 1 :
408 if (mon) {
410 wakeup(mon);
413 tmp = -1 + u.ulevel + mon
[all...]
H A Dhack.pri.c655 pmon(struct monst *mon) argument
657 int show = (Blind && Telepat) || canseemon(mon);
658 if (mon->mdispl) {
659 if (mon->mdx != mon->mx || mon->mdy != mon->my || !show)
660 unpmon(mon);
662 if (show && !mon->mdispl) {
663 atl(mon
674 unpmon(struct monst *mon) argument
[all...]
H A Dhack.zap.c391 /* fns called when mon/obj hit */
503 struct monst *mon; local
560 if ((mon = m_at(sx, sy)) &&
561 (type != -1 || mon->data->mlet != 'D')) {
562 wakeup(mon);
563 if (rnd(20) < 18 + mon->data->ac) {
564 int tmp = zhit(mon, abstype);
565 if (mon->mhp < 1) {
567 if (cansee(mon->mx, mon
650 zhit(struct monst *mon, int type) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/sun68k/include/
H A DMakefile11 mon.h \
/netbsd-6-1-5-RELEASE/usr.bin/at/
H A Dparsetime.c134 {"mon", MON, false},
422 assign_date(struct tm *tm, int mday, int mon, int year) argument
436 if (tm->tm_mon > mon ||
437 (tm->tm_mon == mon && tm->tm_mday > mday))
444 tm->tm_mon = mon;
460 int mday, wday, mon; local
485 mon = sc_tokid - JAN;
492 assign_date(tm, mday, mon, year);
519 mon = atoi(sc_token);
539 mday = mon;
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/citrus/
H A Dcitrus_lc_time.c88 free(__UNCONST(data->mon[i]));
132 { _CITRUS_LC_TIME_SYM_MON_1, OFFSET(mon[MON_IDX(MON_1)] ) },
133 { _CITRUS_LC_TIME_SYM_MON_2, OFFSET(mon[MON_IDX(MON_2)] ) },
134 { _CITRUS_LC_TIME_SYM_MON_3, OFFSET(mon[MON_IDX(MON_3)] ) },
135 { _CITRUS_LC_TIME_SYM_MON_4, OFFSET(mon[MON_IDX(MON_4)] ) },
136 { _CITRUS_LC_TIME_SYM_MON_5, OFFSET(mon[MON_IDX(MON_5)] ) },
137 { _CITRUS_LC_TIME_SYM_MON_6, OFFSET(mon[MON_IDX(MON_6)] ) },
138 { _CITRUS_LC_TIME_SYM_MON_7, OFFSET(mon[MON_IDX(MON_7)] ) },
139 { _CITRUS_LC_TIME_SYM_MON_8, OFFSET(mon[MON_IDX(MON_8)] ) },
140 { _CITRUS_LC_TIME_SYM_MON_9, OFFSET(mon[MON_ID
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.server/
H A Dserver-mon.exp24 set binfile ${objdir}/${subdir}/server-mon
/netbsd-6-1-5-RELEASE/lib/librpcsvc/
H A Dsm_inter.x64 struct mon {
114 struct sm_stat_res SM_MON(struct mon) = 2;
/netbsd-6-1-5-RELEASE/sys/arch/next68k/next68k/
H A Dnextrom.h112 * The kernel file <mon/assym.h> should be copied from the "assym.h"
119 #import <mon/assym.h>
124 #import <mon/nvram.h>
125 #import <mon/region.h>
126 #import <mon/tftp.h>
127 #import <mon/sio.h>
128 #import <mon/animate.h>
129 #import <mon/kmreg.h>

Completed in 245 milliseconds

12345