Home
last modified time | relevance | path

Searched refs:wd (Results 1 – 25 of 50) sorted by relevance

12

/NextBSD/usr.sbin/config/
HDmkmakefile.c310 char *wd, *this, *compilewith, *depends, *clean, *warning; in read_file() local
328 wd = get_word(fp); in read_file()
329 if (wd == (char *)EOF) { in read_file()
333 if (wd == 0) in read_file()
335 if (wd[0] == '#') in read_file()
337 while (((wd = get_word(fp)) != (char *)EOF) && wd) in read_file()
341 if (eq(wd, "include")) { in read_file()
342 wd = get_quoted_word(fp); in read_file()
343 if (wd == (char *)EOF || wd == 0) in read_file()
345 (void) snprintf(ifname, sizeof(ifname), "../../%s", wd); in read_file()
[all …]
HDmkoptions.c365 char *wd, *this, *val; in read_option_file() local
371 while ((wd = get_word(fp)) != (char *)EOF) { in read_option_file()
372 if (wd == 0) in read_option_file()
374 if (wd[0] == '#') { in read_option_file()
375 while (((wd = get_word(fp)) != (char *)EOF) && wd) in read_option_file()
379 this = ns(wd); in read_option_file()
/NextBSD/contrib/llvm/lib/Target/Mips/
HDMipsMSAInstrFormats.td42 bits<5> wd;
49 let Inst{10-6} = wd;
55 bits<5> wd;
62 let Inst{10-6} = wd;
68 bits<5> wd;
75 let Inst{10-6} = wd;
81 bits<5> wd;
88 let Inst{10-6} = wd;
94 bits<5> wd;
99 let Inst{10-6} = wd;
[all …]
HDMipsMSAInstrInfo.td425 def fms : PatFrag<(ops node:$wd, node:$ws, node:$wt),
426 (fsub node:$wd, (fmul node:$ws, node:$wt))>;
428 def muladd : PatFrag<(ops node:$wd, node:$ws, node:$wt),
429 (add node:$wd, (mul node:$ws, node:$wt))>;
431 def mulsub : PatFrag<(ops node:$wd, node:$ws, node:$wt),
432 (sub node:$wd, (mul node:$ws, node:$wt))>;
1158 dag OutOperandList = (outs ROWD:$wd);
1160 string AsmString = !strconcat(instr_asm, "\t$wd, $ws, $m");
1161 list<dag> Pattern = [(set ROWD:$wd, (OpNode ROWS:$ws, Imm:$m))];
1169 dag OutOperandList = (outs ROWD:$wd);
[all …]
HDMSA.txt72 bmz.v wd, ws, wt/i8 -> (vselect wt/i8, wd, ws)
73 bmnz.v wd, ws, wt/i8 -> (vselect wt/i8, ws, wd)
74 bsel.v wd, ws, wt/i8 -> (vselect wd, wt/i8, ws)
/NextBSD/usr.bin/ruptime/
HDruptime.c176 struct whod *wd; in ruptime() local
203 wd = &hsp->hs_wd; in ruptime()
204 cc = read(fd, wd, sizeof(*wd)); in ruptime()
210 hostname = wd->wd_hostname; in ruptime()
214 if (LEFTEARTH(wd->wd_recvtime)) in ruptime()
218 if (wd->wd_loadav[i] > maxloadav) in ruptime()
219 maxloadav = wd->wd_loadav[i]; in ruptime()
221 for (hsp->hs_nusers = 0, we = &wd->wd_we[0]; in ruptime()
222 (char *)(we + 1) <= (char *)wd + cc; we++) in ruptime()
238 wd = &hsp->hs_wd; in ruptime()
[all …]
/NextBSD/contrib/amd/amq/
HDpawd.c228 char *wd = getcwd(path, MAXPATHLEN); in getawd() local
230 char *wd = getwd(path); in getawd()
233 if (wd == NULL) { in getawd()
236 xstrlcpy(path, transform_dir(wd), l); in getawd()
244 char tmp_buf[MAXPATHLEN], *wd; in main() local
247 wd = getawd(tmp_buf, sizeof(tmp_buf)); in main()
248 if (wd == NULL) { in main()
252 fprintf(stdout, "%s\n", wd); in main()
256 wd = transform_dir(*++argv); in main()
257 fprintf(stdout, "%s\n", wd); in main()
HDamq.c541 char *wd = getcwd(path, MAXPATHLEN+1); in main() local
547 if (!wd) { in main()
/NextBSD/usr.sbin/rwhod/
HDrwhod.c356 struct whod wd; in receiver_process() local
378 cc = recvfrom(s, &wd, sizeof(wd), 0, (struct sockaddr *)&from, in receiver_process()
395 if (wd.wd_vers != WHODVERSION) in receiver_process()
397 if (wd.wd_type != WHODTYPE_STATUS) in receiver_process()
399 if (!verify(wd.wd_hostname, sizeof(wd.wd_hostname))) { in receiver_process()
404 (void) snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname); in receiver_process()
426 wd.wd_sendtime = ntohl(wd.wd_sendtime); in receiver_process()
428 wd.wd_loadav[i] = ntohl(wd.wd_loadav[i]); in receiver_process()
429 wd.wd_boottime = ntohl(wd.wd_boottime); in receiver_process()
430 we = wd.wd_we; in receiver_process()
[all …]
/NextBSD/usr.bin/rwho/
HDrwho.c65 #define WHDRSIZE (ssize_t)(sizeof(wd) - sizeof(wd.wd_we))
72 static struct whod wd; variable
75 char myhost[sizeof(wd.wd_hostname)];
102 w = &wd; in main()
149 cc = read(f, (char *)&wd, sizeof(struct whod)); in main()
/NextBSD/release/picobsd/tinyware/msh/
HDsh4.c559 register char **wd; local
561 wd = wb->w_words;
563 if (anys(spcl, *wd++))
594 addword(wd, wb) in addword() argument
595 char *wd; in addword()
610 wb->w_words[wb->w_nword++] = wd;
618 register char **wd; local
627 wd = (char **) space(nb = sizeof(*wd) * wb->w_nword);
628 memcopy((char *)wd, (char *)wb->w_words, nb);
630 return(wd);
HDsh2.c547 register char **wd; in copyw() local
549 wd = getwords(wdlist); in copyw()
551 return(wd); in copyw()
/NextBSD/lib/libcalendar/
HDcalendar.c252 int nd, wd; in firstweek() local
265 if ((wd = weekday(nd)) > 3) in firstweek()
266 return (nd - wd + 7); in firstweek()
268 return (nd - wd); in firstweek()
/NextBSD/contrib/tcsh/nls/ukrainian/
HDset1713 10 \040(wd:
14 11 wd тепер:
/NextBSD/contrib/tcsh/nls/greek/
HDset1713 10 \040(wd:
14 11 τωρινο wd:
/NextBSD/contrib/tcsh/nls/russian/
HDset1713 10 \040(wd:
14 11 wd now:
/NextBSD/contrib/tcsh/nls/C/
HDset1713 10 \040(wd:
14 11 (wd now:
/NextBSD/contrib/tcsh/nls/french/
HDset1713 10 \040(wd:
14 11 wd maintenant:
/NextBSD/usr.sbin/notifyd/
HDtimer.c50 int32_t d, x, a, b, dd, wd; in timer_next() local
143 wd = t->day - 100; in timer_next()
157 if (tmp.tm_wday > (wd % 7)) x = (wd + 7) - tmp.tm_wday; in timer_next()
158 else x = wd - tmp.tm_wday; in timer_next()
/NextBSD/share/doc/psd/21.ipc/
HDspell.ok341 wd
342 wd.wd
/NextBSD/contrib/ntp/ntpd/
HDrefclock_nmea.c314 static int gpsfix_century (struct calendar * jd, const gps_weektm * wd,
1599 gps_weektm * wd, in parse_weekdata() argument
1610 fcnt = sscanf(field_parse(rd, weekidx), "%hu", &wd->wt_week); in parse_weekdata()
1612 fcnt += sscanf(field_parse(rd, leapidx), "%hd", &wd->wt_leap); in parse_weekdata()
1613 if (fcnt != 3 || wd->wt_week >= 1024 || secs >= 7*SECSPERDAY) { in parse_weekdata()
1617 wd->wt_time = (u_int32)secs; in parse_weekdata()
1730 const gps_weektm * wd, in gpsfix_century() argument
1743 doff = ntpcal_date_to_daysec(jd) + wd->wt_leap; in gpsfix_century()
1759 if (days >= 0 && wd->wt_week == week) in gpsfix_century()
/NextBSD/contrib/tcsh/nls/ja/
HDset1713 10 \040(wd:
/NextBSD/release/picobsd/floppy.tree/etc/
HDfstab5 /dev/ad0s1a /wd ufs rw,noauto 0 0
/NextBSD/release/picobsd/build/
HDmfs.mtree70 wd
/NextBSD/gnu/usr.bin/rcs/lib/
HDrcsfnms.c821 register char const *wd; in getfullRCSname() local
823 if (!(wd = wdptr)) { in getfullRCSname()
851 wdptr = wd = d; in getfullRCSname()
866 VOID memcpy(d, wd, dlen); in getfullRCSname()

12