| /freebsd-12-stable/usr.sbin/config/ |
| D | mkmakefile.c | 397 char *wd, *this, *compilewith, *depends, *clean, *warning; in read_file() local 415 wd = get_word(fp); in read_file() 416 if (wd == (char *)EOF) { in read_file() 420 if (wd == NULL) in read_file() 422 if (wd[0] == '#') in read_file() 424 while (((wd = get_word(fp)) != (char *)EOF) && wd) in read_file() 428 if (eq(wd, "include")) { in read_file() 429 wd = get_quoted_word(fp); in read_file() 430 if (wd == (char *)EOF || wd == NULL) in read_file() 432 (void) snprintf(ifname, sizeof(ifname), "../../%s", wd); in read_file() [all …]
|
| D | mkoptions.c | 367 char *wd, *this, *val; in read_option_file() local 373 while ((wd = get_word(fp)) != (char *)EOF) { in read_option_file() 374 if (wd == NULL) in read_option_file() 376 if (wd[0] == '#') { in read_option_file() 377 while (((wd = get_word(fp)) != (char *)EOF) && wd) in read_option_file() 381 this = ns(wd); in read_option_file()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsMSAInstrFormats.td | 32 bits<5> wd; 39 let Inst{10-6} = wd; 45 bits<5> wd; 52 let Inst{10-6} = wd; 58 bits<5> wd; 65 let Inst{10-6} = wd; 71 bits<5> wd; 78 let Inst{10-6} = wd; 84 bits<5> wd; 89 let Inst{10-6} = wd; [all …]
|
| D | MipsMSAInstrInfo.td | 397 def muladd : PatFrag<(ops node:$wd, node:$ws, node:$wt), 398 (add node:$wd, (mul node:$ws, node:$wt))>; 400 def mulsub : PatFrag<(ops node:$wd, node:$ws, node:$wt), 401 (sub node:$wd, (mul node:$ws, node:$wt))>; 1122 dag OutOperandList = (outs ROWD:$wd); 1124 string AsmString = !strconcat(instr_asm, "\t$wd, $ws, $m"); 1125 list<dag> Pattern = [(set ROWD:$wd, (OpNode ROWS:$ws, Imm:$m))]; 1133 dag OutOperandList = (outs ROWD:$wd); 1135 string AsmString = !strconcat(instr_asm, "\t$wd, $ws, $m"); 1136 list<dag> Pattern = [(set ROWD:$wd, (OpNode ROWS:$ws, Imm:$m))]; [all …]
|
| D | MSA.txt | 72 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)
|
| D | MipsScheduleP5600.td | 398 // fexdo.[hw], fexupl.[wd], fexupr.[wd] 403 // fclass.[wd], fmax.[wd], fmax_a.[wd], fmin.[wd], fmin_a.[wd], flog2.[wd] 471 // frcp.[wd], frsqrt.[wd] 479 // fmadd.[wd], fmsubb.[wd], fdiv.[wd], fsqrt.[wd], fmul.[wd], fadd.[wd], 480 // fsub.[wd]
|
| /freebsd-12-stable/usr.bin/systat/ |
| D | sysput.c | 43 sysputspaces(WINDOW *wd, int row, int col, int width) in sysputspaces() argument 48 mvwaddstr(wd, row, col, str60 + sizeof(str60) - width - 1); in sysputspaces() 52 sysputstrs(WINDOW *wd, int row, int col, int width) in sysputstrs() argument 61 sysputXs(WINDOW *wd, int row, int col, int width) in sysputXs() argument 70 sysputuint64(WINDOW *wd, int row, int col, int width, uint64_t val, int flags) in sysputuint64() argument 90 mvwaddstr(wd, row, col, start); in sysputuint64() 94 sysputstrs(wd, row, col, width); in sysputuint64() 98 sysputwuint64(WINDOW *wd, int row, int col, int width, uint64_t val, int flags) in sysputwuint64() argument 101 sysputspaces(wd, row, col, width); in sysputwuint64() 103 sysputuint64(wd, row, col, width, val, flags); in sysputwuint64() [all …]
|
| /freebsd-12-stable/usr.bin/ruptime/ |
| D | ruptime.c | 194 struct whod *wd; in ruptime() local 224 wd = &hsp->hs_wd; in ruptime() 225 cc = read(fd, wd, sizeof(*wd)); in ruptime() 230 if (host != NULL && strcasecmp(wd->wd_hostname, host) != 0) in ruptime() 232 if (LEFTEARTH(wd->wd_recvtime)) in ruptime() 235 if (hostnamewidth < (int)strlen(wd->wd_hostname)) in ruptime() 236 hostnamewidth = (int)strlen(wd->wd_hostname); in ruptime() 240 w = iwidth(wd->wd_loadav[i] / 100) + 3; in ruptime() 244 for (hsp->hs_nusers = 0, we = &wd->wd_we[0]; in ruptime() 245 (char *)(we + 1) <= (char *)wd + cc; we++) in ruptime() [all …]
|
| /freebsd-12-stable/contrib/amd/amq/ |
| D | pawd.c | 224 char *wd = getcwd(path, MAXPATHLEN); in getawd() local 226 char *wd = getwd(path); in getawd() 229 if (wd == NULL) { in getawd() 232 xstrlcpy(path, transform_dir(wd), l); in getawd() 240 char tmp_buf[MAXPATHLEN], *wd; in main() local 243 wd = getawd(tmp_buf, sizeof(tmp_buf)); in main() 244 if (wd == NULL) { in main() 248 fprintf(stdout, "%s\n", wd); in main() 252 wd = transform_dir(*++argv); in main() 253 fprintf(stdout, "%s\n", wd); in main()
|
| /freebsd-12-stable/contrib/bearssl/T0/ |
| D | WordData.cs | 63 WordData wd = TC.Lookup(baseBlobName) as WordData; in Resolve() 64 if (wd == null) { in Resolve() 69 wd.Resolve(); in Resolve() 70 blob = wd.blob; in Resolve() 71 offset += wd.offset; in Resolve()
|
| /freebsd-12-stable/usr.sbin/rwhod/ |
| D | rwhod.c | 359 struct whod wd; in receiver_process() local 381 cc = recvfrom(s, &wd, sizeof(wd), 0, (struct sockaddr *)&from, in receiver_process() 398 if (wd.wd_vers != WHODVERSION) in receiver_process() 400 if (wd.wd_type != WHODTYPE_STATUS) in receiver_process() 402 if (!verify(wd.wd_hostname, sizeof(wd.wd_hostname))) { in receiver_process() 407 (void) snprintf(path, sizeof(path), "whod.%s", wd.wd_hostname); in receiver_process() 429 wd.wd_sendtime = ntohl(wd.wd_sendtime); in receiver_process() 431 wd.wd_loadav[i] = ntohl(wd.wd_loadav[i]); in receiver_process() 432 wd.wd_boottime = ntohl(wd.wd_boottime); in receiver_process() 433 we = wd.wd_we; in receiver_process() [all …]
|
| /freebsd-12-stable/usr.bin/rwho/ |
| D | rwho.c | 68 #define WHDRSIZE (ssize_t)(sizeof(wd) - sizeof(wd.wd_we)) 75 static struct whod wd; variable 78 char myhost[sizeof(wd.wd_hostname)]; 105 w = &wd; in main() 152 cc = read(f, (char *)&wd, sizeof(struct whod)); in main()
|
| /freebsd-12-stable/tests/sys/fs/fusefs/ |
| D | readlink.cc | 109 char buf[MAXPATHLEN], wd[MAXPATHLEN], want[MAXPATHLEN]; in TEST_F() local 118 ASSERT_NE(nullptr, getcwd(wd, sizeof(wd))) << strerror(errno); in TEST_F() 119 len = snprintf(want, sizeof(want), "%s/mountpoint%s", wd, dst); in TEST_F()
|
| /freebsd-12-stable/release/picobsd/tinyware/msh/ |
| D | sh4.c | 559 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);
|
| /freebsd-12-stable/lib/libcalendar/ |
| D | calendar.c | 254 int nd, wd; in firstweek() local 267 if ((wd = weekday(nd)) > 3) in firstweek() 268 return (nd - wd + 7); in firstweek() 270 return (nd - wd); in firstweek()
|
| /freebsd-12-stable/contrib/tcsh/nls/ukrainian/ |
| D | set17 | 12 10 \040(wd: 13 11 wd тепер:
|
| /freebsd-12-stable/contrib/tcsh/nls/greek/ |
| D | set17 | 12 10 \040(wd: 13 11 τωρινο wd:
|
| /freebsd-12-stable/contrib/tcsh/nls/russian/ |
| D | set17 | 12 10 \040(wd: 13 11 wd now:
|
| /freebsd-12-stable/contrib/tcsh/nls/C/ |
| D | set17 | 12 10 \040(wd: 13 11 (wd now:
|
| /freebsd-12-stable/contrib/tcsh/nls/french/ |
| D | set17 | 12 10 \040(wd: 13 11 wd maintenant:
|
| /freebsd-12-stable/contrib/bearssl/tools/ |
| D | brssl.c | 68 WSADATA wd; in main() local 71 r = WSAStartup(MAKEWORD(2, 2), &wd); in main()
|
| /freebsd-12-stable/contrib/tzdata/ |
| D | Makefile | 785 wd=`pwd` && \ 792 $(MAKE) wd="$$wd" TZS_CUTOFF_FLAG="$(TZS_CUTOFF_FLAG)" \ 1134 $(MAKE) TOPDIR="$$wd/$@.dir" \ 1137 D=$$wd/$@.dir \ 1142 $(MAKE) TOPDIR="$$wd/$@.dir" \ 1144 D=$$wd/$@.dir \
|
| /freebsd-12-stable/share/doc/psd/21.ipc/ |
| D | spell.ok | 341 wd 342 wd.wd
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | ox810se-wd-mbwe.dts | 3 * wd-mbwe.dtsi - Device tree file for Western Digital My Book World Edition 14 compatible = "wd,mbwe", "oxsemi,ox810se";
|
| /freebsd-12-stable/contrib/ntp/include/ |
| D | ntp_calgps.h | 133 gpsntp_from_gpscal(TcGpsDatum *wd) { in gpsntp_from_gpscal() argument 134 return gpsntp_from_gpscal_ex(wd, FALSE); in gpsntp_from_gpscal()
|