bin/ksh/edit.c
1000
words[j] = words[i];
bin/ksh/edit.c
1002
memmove(words[j], words[j] + pathlen,
bin/ksh/edit.c
1003
strlen(words[j] + pathlen) + 1);
bin/ksh/edit.c
1006
afree(words[i], ATEMP);
bin/ksh/edit.c
1008
wp->cur = (void **) &words[j];
bin/ksh/edit.c
454
x_print_expansions(nwords, words, is_command)
bin/ksh/edit.c
456
char *const *words;
bin/ksh/edit.c
469
&& (prefix_len = x_longest_prefix(nwords, words)) > 0)
bin/ksh/edit.c
475
prefix_len = x_basename(words[0], (char *) 0);
bin/ksh/edit.c
478
if (x_basename(words[i] + prefix_len, (char *) 0)
bin/ksh/edit.c
484
&& !ISDIRSEP(words[0][prefix_len - 1]))
bin/ksh/edit.c
489
XPput(l, words[i] + prefix_len);
bin/ksh/edit.c
499
pr_list(use_copy ? (char **) XPptrv(l) : words);
bin/ksh/edit.c
520
char **words;
bin/ksh/edit.c
560
words = (char **) XPclose(w);
bin/ksh/edit.c
562
for (nwords = 0; words[nwords]; nwords++)
bin/ksh/edit.c
574
if ((strcmp(words[0], toglob) == 0
bin/ksh/edit.c
575
&& stat(words[0], &statb) < 0)
bin/ksh/edit.c
576
|| words[0][0] == '\0')
bin/ksh/edit.c
578
x_free_words(nwords, words);
bin/ksh/edit.c
579
words = NULL;
bin/ksh/edit.c
586
*wordsp = words;
bin/ksh/edit.c
587
} else if (words) {
bin/ksh/edit.c
588
x_free_words(nwords, words);
bin/ksh/edit.c
665
char **words = (char **) XPptrv(w);
bin/ksh/edit.c
672
info[i].word = words[i];
bin/ksh/edit.c
673
info[i].base = x_basename(words[i], (char *) 0);
bin/ksh/edit.c
675
|| FILENCMP(words[i],
bin/ksh/edit.c
686
words[i] = info[i].word;
bin/ksh/edit.c
690
char **words = (char **) XPptrv(w);
bin/ksh/edit.c
696
if (strcmp(words[i], words[i + 1]))
bin/ksh/edit.c
697
words[j++] = words[i];
bin/ksh/edit.c
699
afree(words[i], ATEMP);
bin/ksh/edit.c
701
words[j++] = words[i];
bin/ksh/edit.c
703
w.cur = (void **) &words[j];
bin/ksh/edit.c
785
char **words;
bin/ksh/edit.c
799
buf + *startp, len, &words);
bin/ksh/edit.c
807
*wordsp = words;
bin/ksh/edit.c
858
x_longest_prefix(nwords, words)
bin/ksh/edit.c
860
char *const *words;
bin/ksh/edit.c
869
prefix_len = strlen(words[0]);
bin/ksh/edit.c
871
for (j = 0, p = words[i]; j < prefix_len; j++)
bin/ksh/edit.c
873
!= FILECHCONV((unsigned char)words[0][j])) {
bin/ksh/edit.c
881
x_free_words(nwords, words)
bin/ksh/edit.c
883
char **words;
bin/ksh/edit.c
888
if (words[i])
bin/ksh/edit.c
889
afree(words[i], ATEMP);
bin/ksh/edit.c
890
afree(words, ATEMP);
bin/ksh/edit.c
960
char **words;
bin/ksh/edit.c
995
words = (char **) XPptrv(*wp);
bin/ksh/edit.c
998
if ((search_access(words[i], X_OK, &staterr) >= 0)
bin/ksh/edit.h
56
void x_print_expansions ARGS((int nwords, char *const *words, int is_command));
bin/ksh/edit.h
59
int x_longest_prefix ARGS((int nwords, char *const *words));
bin/ksh/edit.h
61
void x_free_words ARGS((int nwords, char **words));
bin/ksh/emacs.c
1735
char **words;
bin/ksh/emacs.c
1743
&start, &end, &words, &is_command);
bin/ksh/emacs.c
1753
if (x_escape(words[i], strlen(words[i]), x_emacs_putbuf) < 0 ||
bin/ksh/emacs.c
1771
char **words;
bin/ksh/emacs.c
1778
&start, &end, &words, &is_command);
bin/ksh/emacs.c
1786
x_print_expansions(nwords, words, is_command);
bin/ksh/emacs.c
1788
x_free_words(nwords, words);
bin/ksh/emacs.c
1793
nlen = x_longest_prefix(nwords, words);
bin/ksh/emacs.c
1798
x_escape(words[0], nlen, x_emacs_putbuf);
bin/ksh/emacs.c
1803
if ((nwords == 1) && (!ISDIRSEP(words[0][nlen - 1]))) {
bin/ksh/emacs.c
1809
x_print_expansions(nwords, words, is_command);
bin/ksh/emacs.c
1816
x_free_words(nwords, words);
bin/ksh/vi.c
1946
char **words;
bin/ksh/vi.c
1963
&start, &end, &words, (int *) 0);
bin/ksh/vi.c
1974
if (x_escape(words[i], strlen(words[i]), x_vi_putbuf) != 0) {
bin/ksh/vi.c
2002
char **words;
bin/ksh/vi.c
2030
&start, &end, &words, &is_command);
bin/ksh/vi.c
2041
x_print_expansions(nwords, words, is_command);
bin/ksh/vi.c
2042
x_free_words(nwords, words);
bin/ksh/vi.c
2050
match = words[count]
bin/ksh/vi.c
2051
+ x_basename(words[count], (char *) 0);
bin/ksh/vi.c
2055
FILECMP(words[i]
bin/ksh/vi.c
2056
+ x_basename(words[i], (char *) 0),
bin/ksh/vi.c
2059
match = words[count];
bin/ksh/vi.c
2063
match = words[count];
bin/ksh/vi.c
2068
match = words[0];
bin/ksh/vi.c
2069
match_len = x_longest_prefix(nwords, words);
bin/ksh/vi.c
2092
x_free_words(nwords, words);
bin/ksh/vi.c
2109
char **words;
bin/ksh/vi.c
2114
&start, &end, &words, &is_command);
bin/ksh/vi.c
2119
x_print_expansions(nwords, words, is_command);
bin/ksh/vi.c
2120
x_free_words(nwords, words);
common/dist/zlib/crc32.c
644
z_word_t const *words;
common/dist/zlib/crc32.c
657
words = (z_word_t const *)buf;
common/dist/zlib/crc32.c
714
word0 = crc0 ^ words[0];
common/dist/zlib/crc32.c
716
word1 = crc1 ^ words[1];
common/dist/zlib/crc32.c
718
word2 = crc2 ^ words[2];
common/dist/zlib/crc32.c
720
word3 = crc3 ^ words[3];
common/dist/zlib/crc32.c
722
word4 = crc4 ^ words[4];
common/dist/zlib/crc32.c
724
word5 = crc5 ^ words[5];
common/dist/zlib/crc32.c
730
words += N;
common/dist/zlib/crc32.c
774
crc = crc_word(crc0 ^ words[0]);
common/dist/zlib/crc32.c
776
crc = crc_word(crc1 ^ words[1] ^ crc);
common/dist/zlib/crc32.c
778
crc = crc_word(crc2 ^ words[2] ^ crc);
common/dist/zlib/crc32.c
780
crc = crc_word(crc3 ^ words[3] ^ crc);
common/dist/zlib/crc32.c
782
crc = crc_word(crc4 ^ words[4] ^ crc);
common/dist/zlib/crc32.c
784
crc = crc_word(crc5 ^ words[5] ^ crc);
common/dist/zlib/crc32.c
790
words += N;
common/dist/zlib/crc32.c
836
word0 = crc0 ^ words[0];
common/dist/zlib/crc32.c
838
word1 = crc1 ^ words[1];
common/dist/zlib/crc32.c
840
word2 = crc2 ^ words[2];
common/dist/zlib/crc32.c
842
word3 = crc3 ^ words[3];
common/dist/zlib/crc32.c
844
word4 = crc4 ^ words[4];
common/dist/zlib/crc32.c
846
word5 = crc5 ^ words[5];
common/dist/zlib/crc32.c
852
words += N;
common/dist/zlib/crc32.c
896
comb = crc_word_big(crc0 ^ words[0]);
common/dist/zlib/crc32.c
898
comb = crc_word_big(crc1 ^ words[1] ^ comb);
common/dist/zlib/crc32.c
900
comb = crc_word_big(crc2 ^ words[2] ^ comb);
common/dist/zlib/crc32.c
902
comb = crc_word_big(crc3 ^ words[3] ^ comb);
common/dist/zlib/crc32.c
904
comb = crc_word_big(crc4 ^ words[4] ^ comb);
common/dist/zlib/crc32.c
906
comb = crc_word_big(crc5 ^ words[5] ^ comb);
common/dist/zlib/crc32.c
912
words += N;
common/dist/zlib/crc32.c
919
buf = (unsigned char const *)words;
common/lib/libc/string/memset2.c
239
memword_t words[4];
games/battlestar/battlestar.c
92
next = getword(next, words[wordcount], -1);
games/battlestar/command7.c
67
next = getword(next, words[i], -1);
games/battlestar/cypher.c
58
(wordnumber == wordcount) ? words[0] :
games/battlestar/cypher.c
583
if (wordnumber < wordcount && *words[wordnumber++] == ',')
games/battlestar/cypher.c
59
words[wordnumber]);
games/battlestar/extern.h
279
extern char words[NWORD][WORDLEN];
games/battlestar/globals.c
261
char words[NWORD][WORDLEN];
games/battlestar/parse.c
108
if ((wp = lookup(words[n])) == NULL) {
games/battlestar/parse.c
123
strlcpy(words[i - 1], words[i], WORDLEN);
games/battlestar/parse.c
129
if (wordvalue[n] == AND && words[n][0] == ','
games/battlestar/parse.c
143
strlcpy(words[i - 1], words[i], WORDLEN);
games/battlestar/parse.c
166
strcpy(tmpword, words[n - 1]);
games/battlestar/parse.c
167
strlcpy(words[n - 1], words[n + 1], WORDLEN);
games/battlestar/parse.c
168
strcpy(words[n + 1], tmpword);
games/battlestar/parse.c
180
strlcpy(words[i - 1], words[i + 1], WORDLEN);
lib/libc/gen/wordexp.c
112
if (asprintf(&cmd, "wordexp%c%s\n", *ifs, words) < 0)
lib/libc/gen/wordexp.c
253
we_check(const char *words, int flags)
lib/libc/gen/wordexp.c
259
while ((c = *words++) != '\0') {
lib/libc/gen/wordexp.c
275
while ((c = *words++) != '\0' && c != '`')
lib/libc/gen/wordexp.c
276
if (c == '\\' && (c = *words++) == '\0')
lib/libc/gen/wordexp.c
287
if ((c = *words++) == '\0')
lib/libc/gen/wordexp.c
290
if (flags & WRDE_NOCMD && *words != '(')
lib/libc/gen/wordexp.c
293
while ((c = *words++) != '\0') {
lib/libc/gen/wordexp.c
295
if ((c = *words++) == '\0')
lib/libc/gen/wordexp.c
306
while ((c = *words++) != '\0') {
lib/libc/gen/wordexp.c
308
if ((c = *words++) == '\0')
lib/libc/gen/wordexp.c
318
c = *--words;
lib/libc/gen/wordexp.c
61
wordexp(const char * __restrict words, wordexp_t * __restrict we, int flags)
lib/libc/gen/wordexp.c
66
_DIAGASSERT(words != NULL);
lib/libc/gen/wordexp.c
75
if ((error = we_check(words, flags)) != 0) {
lib/libc/gen/wordexp.c
79
if ((error = we_askshell(words, we, flags)) != 0) {
lib/libc/gen/wordexp.c
93
we_askshell(const char *words, wordexp_t *we, int flags)
lib/libc/inet/inet_cidr_ntop.c
156
u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
lib/libc/inet/inet_cidr_ntop.c
170
memset(words, '\0', sizeof words);
lib/libc/inet/inet_cidr_ntop.c
172
words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
lib/libc/inet/inet_cidr_ntop.c
178
if (words[i] == 0) {
lib/libc/inet/inet_cidr_ntop.c
215
(best.len == 7 && words[7] != 0x0001) ||
lib/libc/inet/inet_cidr_ntop.c
216
(best.len == 5 && words[5] == 0xffff))) {
lib/libc/inet/inet_cidr_ntop.c
228
ADDS(snprintf(dst + t, size - t, "%x", words[i]));
lib/libc/inet/inet_net_ntop.c
158
size_t words;
lib/libc/inet/inet_net_ntop.c
184
words = (bits + 15) / 16;
lib/libc/inet/inet_net_ntop.c
185
if (words == 1)
lib/libc/inet/inet_net_ntop.c
186
words = 2;
lib/libc/inet/inet_net_ntop.c
190
for (i = 0; i < (words * 2); i += 2) {
lib/libc/inet/inet_net_ntop.c
209
if (zero_l != words && zero_s == 0 && ((zero_l == 6) ||
lib/libc/inet/inet_net_ntop.c
215
for (p = 0; p < words; p++) {
lib/libc/inet/inet_net_ntop.c
220
if (p == words - 1)
lib/libc/inet/inet_net_pton.c
280
int words;
lib/libc/inet/inet_net_pton.c
347
words = (bits + 15) / 16;
lib/libc/inet/inet_net_pton.c
348
if (words < 2)
lib/libc/inet/inet_net_pton.c
349
words = 2;
lib/libc/inet/inet_net_pton.c
351
words = 8;
lib/libc/inet/inet_net_pton.c
352
endp = tmp + 2 * words;
lib/libc/inet/inet_ntop.c
136
u_int words[NS_IN6ADDRSZ / NS_INT16SZ];
lib/libc/inet/inet_ntop.c
148
memset(words, '\0', sizeof words);
lib/libc/inet/inet_ntop.c
150
words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
lib/libc/inet/inet_ntop.c
156
if (words[i] == 0) {
lib/libc/inet/inet_ntop.c
198
(best.len == 7 && words[7] != 0x0001) ||
lib/libc/inet/inet_ntop.c
199
(best.len == 5 && words[5] == 0xffff))) {
lib/libc/inet/inet_ntop.c
205
advance = snprintf(tp, (size_t)(ep - tp), "%x", words[i]);
lib/libm/src/s_nan.c
65
_scan_nan(uint32_t *words, int num_words, const char *s)
lib/libm/src/s_nan.c
70
memset(words, 0, num_words * sizeof(*words));
lib/libm/src/s_nan.c
88
words[bitpos / 32] |= digittoint(s[si]) << (bitpos % 32);
sbin/cgdconfig/cgdconfig.c
1593
my_argv = words(line, &my_argc);
sbin/cgdconfig/utils.h
46
char **words(const char *, int *);
sbin/ping6/ping6.c
1742
u_int16_t words; /*32bit count*/
sbin/ping6/ping6.c
1775
if (sizeof(cbit) + ntohs(cbit.words) * sizeof(v) >
sbin/ping6/ping6.c
1779
clen = ntohs(cbit.words) * sizeof(v);
sys/arch/m68k/fpsp/fpsp.h
151
* words of a busy frame are the same as the unimplemented frame.
sys/arch/sgimips/hpc/haud.c
372
haud_wait_for_write(struct haud_softc *sc, haud_buffer_t *buf, int words)
sys/arch/sgimips/hpc/haud.c
375
for (int i = 0; haud_buffer_free_words(buf) < words; i++) {
sys/arch/sgimips/hpc/haud.c
382
hdr->watr = haud_buffer_word_capacity(buf) - words;
sys/arch/sgimips/hpc/haud.c
414
const int words = MIN(words_left, WORDS_PER_PAGE - page_offset);
sys/arch/sgimips/hpc/haud.c
419
haud_copy_audio_to_buffer(dst, src, words);
sys/arch/sgimips/hpc/haud.c
422
for (int i = 0; i < words; i++) {
sys/arch/sgimips/hpc/haud.c
427
tail += words;
sys/arch/sgimips/hpc/haud.c
431
words_left -= words;
sys/arch/sgimips/hpc/haud.c
434
page_offset * sizeof(u_int32_t), words * sizeof(u_int32_t),
sys/arch/sgimips/hpc/haud.c
443
haud_wait_for_read(struct haud_softc *sc, haud_buffer_t *buf, int words)
sys/arch/sgimips/hpc/haud.c
446
for (int i = 0; haud_buffer_occupied_words(buf) < words; i++) {
sys/arch/sgimips/hpc/haud.c
453
hdr->watr = haud_buffer_word_capacity(buf) - words;
sys/arch/sgimips/hpc/haud.c
487
const int words = MIN(words_left, WORDS_PER_PAGE - page_offset);
sys/arch/sgimips/hpc/haud.c
491
page_offset * sizeof(u_int32_t), words * sizeof(u_int32_t),
sys/arch/sgimips/hpc/haud.c
496
haud_copy_audio_from_buffer(dst, src, words);
sys/arch/sgimips/hpc/haud.c
499
for (int i = 0; i < words; i++) {
sys/arch/sgimips/hpc/haud.c
504
head += words;
sys/arch/sgimips/hpc/haud.c
508
words_left -= words;
sys/arch/sparc/dev/cgfourteen.c
1323
int line, cnt, pre, words;
sys/arch/sparc/dev/cgfourteen.c
1347
words = uimin(32, cnt >> 2);
sys/arch/sparc/dev/cgfourteen.c
1348
sxm(SX_STS, pptr, 8, words - 1);
sys/arch/sparc/dev/cgfourteen.c
1349
pptr += words << 2;
sys/arch/sparc/dev/cgfourteen.c
1350
cnt -= words << 2;
sys/arch/sparc/dev/cgfourteen.c
1386
int line, cnt, pre, words, pwrds = 0, post, reg;
sys/arch/sparc/dev/cgfourteen.c
1406
words = (wi + pre + 3) >> 2;
sys/arch/sparc/dev/cgfourteen.c
1407
cnt = words - pwrds;
sys/arch/sparc/dev/cgfourteen.c
1412
sxm(SX_LD, pptr, 8, words - 1);
sys/arch/sparc/dev/cgfourteen.c
1430
sxm(SX_ST, pptr, 40, words - 1);
sys/arch/sparc/dev/cgfourteen.c
1468
int num, words, skip;
sys/arch/sparc/dev/cgfourteen.c
1495
words = cnt >> 2;
sys/arch/sparc/dev/cgfourteen.c
1497
num = uimin(120, words);
sys/arch/vax/boot/boot/ctu.c
160
ctu_cksum(unsigned short *buf, int words)
sys/arch/vax/boot/boot/ctu.c
164
for (i = cksum = 0; i < words; i++)
sys/arch/vax/vax/ctu.c
477
ctu_cksum(unsigned short *buf, int words)
sys/arch/vax/vax/ctu.c
481
for (i = cksum = 0; i < words; i++)
sys/dev/dev_verbose.c
40
dev_untokenstring(const char *words, const uint32_t *token, char *buf,
sys/dev/dev_verbose.c
48
newlen = strlcat(buf, words + *token, len - 2);
sys/dev/dev_verbose.c
60
dev_findvendor(char *buf, size_t len, const char *words, size_t nwords,
sys/dev/dev_verbose.c
68
return dev_untokenstring(words, &vendors[n + 1],
sys/dev/dev_verbose.c
81
dev_findproduct(char *buf, size_t len, const char *words, size_t nwords,
sys/dev/dev_verbose.c
89
return dev_untokenstring(words, &products[n + 2],
sys/dev/ic/advlib.c
1043
u_int16_t s_addr, const u_int16_t *s_buffer, int words)
sys/dev/ic/advlib.c
1048
for (i = 0; i < words; i++, s_buffer++)
sys/dev/ic/advlib.c
1055
u_int16_t s_addr, u_int16_t *s_buffer, int words)
sys/dev/ic/advlib.c
1060
for (i = 0; i < words; i++, s_buffer++)
sys/dev/ic/advlib.c
1085
u_int16_t s_addr, int words)
sys/dev/ic/advlib.c
1091
for (i = 0; i < words; i++, s_addr += 2)
sys/dev/ic/i82557.c
697
fxp_read_eeprom(struct fxp_softc *sc, uint16_t *data, int offset, int words)
sys/dev/ic/i82557.c
702
for (i = 0; i < words; i++) {
sys/dev/ic/i82557.c
734
fxp_write_eeprom(struct fxp_softc *sc, uint16_t *data, int offset, int words)
sys/dev/ic/i82557.c
738
for (i = 0; i < words; i++) {
sys/dev/ic/mfi.c
2880
ccb->ccb_tb_request_desc.words & 0xFFFFFFFF);
sys/dev/ic/mfi.c
2882
ccb->ccb_tb_request_desc.words >> 32);
sys/dev/ic/mfi.c
3127
sc->sc_last_reply_idx, desc->words, ccb);
sys/dev/ic/mfi.c
3153
desc->words = ~0x0;
sys/dev/ic/mfi.c
341
ccb->ccb_tb_request_desc.words = 0;
sys/dev/ic/mfireg.h
1795
uint64_t words;
sys/dev/ic/mfireg.h
1871
uint64_t words;
sys/dev/marvell/mvxpsec.c
3558
uint32_t *words;
sys/dev/marvell/mvxpsec.c
3563
words = &mv_p->pkt_header.desc.acc_desc_dword0;
sys/dev/marvell/mvxpsec.c
3564
mvxpsec_dump_acc_config(name, words[0]);
sys/dev/marvell/mvxpsec.c
3565
mvxpsec_dump_acc_encdata(name, words[1], words[2]);
sys/dev/marvell/mvxpsec.c
3566
mvxpsec_dump_acc_enclen(name, words[2]);
sys/dev/marvell/mvxpsec.c
3567
mvxpsec_dump_acc_enckey(name, words[3]);
sys/dev/marvell/mvxpsec.c
3568
mvxpsec_dump_acc_enciv(name, words[4]);
sys/dev/marvell/mvxpsec.c
3569
mvxpsec_dump_acc_macsrc(name, words[5]);
sys/dev/marvell/mvxpsec.c
3570
mvxpsec_dump_acc_macdst(name, words[6]);
sys/dev/marvell/mvxpsec.c
3571
mvxpsec_dump_acc_maciv(name, words[7]);
sys/dev/pci/cs4281reg.h
274
Logical Size: 256 x 32 bits (1 kbytes stereo double words)
sys/dev/pci/if_wm.c
14885
wm_nvm_read_ich8(struct wm_softc *sc, int offset, int words, uint16_t *data)
sys/dev/pci/if_wm.c
14920
for (i = 0; i < words; i++) {
sys/dev/pci/if_wm.c
14946
wm_nvm_read_spt(struct wm_softc *sc, int offset, int words, uint16_t *data)
sys/dev/pci/if_wm.c
14981
for (i = 0; i < words; i++) {
sys/dev/pci/if_wm.c
15039
wm_nvm_read_invm(struct wm_softc *sc, int offset, int words, uint16_t *data)
sys/dev/pci/if_wm.c
15050
for (i = 0; i < words; i++) {
sys/dev/pci/igc/igc_i225.c
451
igc_read_nvm_srrd_i225(struct igc_hw *hw, uint16_t offset, uint16_t words,
sys/dev/pci/igc/igc_i225.c
463
for (i = 0; i < words; i += IGC_EERD_EEWR_MAX_COUNT) {
sys/dev/pci/igc/igc_i225.c
464
count = (words - i) / IGC_EERD_EEWR_MAX_COUNT > 0 ?
sys/dev/pci/igc/igc_i225.c
465
IGC_EERD_EEWR_MAX_COUNT : (words - i);
sys/dev/pci/igc/igc_i225.c
496
igc_write_nvm_srwr_i225(struct igc_hw *hw, uint16_t offset, uint16_t words,
sys/dev/pci/igc/igc_i225.c
508
for (i = 0; i < words; i += IGC_EERD_EEWR_MAX_COUNT) {
sys/dev/pci/igc/igc_i225.c
509
count = (words - i) / IGC_EERD_EEWR_MAX_COUNT > 0 ?
sys/dev/pci/igc/igc_i225.c
510
IGC_EERD_EEWR_MAX_COUNT : (words - i);
sys/dev/pci/igc/igc_i225.c
537
__igc_write_nvm_srwr(struct igc_hw *hw, uint16_t offset, uint16_t words,
sys/dev/pci/igc/igc_i225.c
550
if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
sys/dev/pci/igc/igc_i225.c
551
(words == 0)) {
sys/dev/pci/igc/igc_i225.c
557
for (i = 0; i < words; i++) {
sys/dev/pci/igc/igc_nvm.c
140
igc_read_nvm_eerd(struct igc_hw *hw, uint16_t offset, uint16_t words,
sys/dev/pci/igc/igc_nvm.c
152
if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) ||
sys/dev/pci/igc/igc_nvm.c
153
(words == 0)) {
sys/dev/pci/igc/igc_nvm.c
158
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_82599.c
2438
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_82599.c
2450
(offset + (words - 1) <= IXGBE_EERD_MAX_ADDR))
sys/dev/pci/ixgbe/ixgbe_82599.c
2451
ret_val = ixgbe_read_eerd_buffer_generic(hw, offset, words,
sys/dev/pci/ixgbe/ixgbe_82599.c
2455
words,
sys/dev/pci/ixgbe/ixgbe_82599.c
61
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_api.c
829
s32 ixgbe_write_eeprom_buffer(struct ixgbe_hw *hw, u16 offset, u16 words,
sys/dev/pci/ixgbe/ixgbe_api.c
833
(hw, offset, words, data),
sys/dev/pci/ixgbe/ixgbe_api.c
861
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_api.c
864
(hw, offset, words, data),
sys/dev/pci/ixgbe/ixgbe_api.h
105
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_api.h
108
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.c
1332
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1341
if (words == 0) {
sys/dev/pci/ixgbe/ixgbe_common.c
1346
if (offset + words > hw->eeprom.word_size) {
sys/dev/pci/ixgbe/ixgbe_common.c
1356
(words > IXGBE_EEPROM_PAGE_SIZE_MAX))
sys/dev/pci/ixgbe/ixgbe_common.c
1364
for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
sys/dev/pci/ixgbe/ixgbe_common.c
1365
count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
sys/dev/pci/ixgbe/ixgbe_common.c
1366
IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
sys/dev/pci/ixgbe/ixgbe_common.c
1389
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1410
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_common.c
1449
} while (++i < words);
sys/dev/pci/ixgbe/ixgbe_common.c
1499
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1508
if (words == 0) {
sys/dev/pci/ixgbe/ixgbe_common.c
1513
if (offset + words > hw->eeprom.word_size) {
sys/dev/pci/ixgbe/ixgbe_common.c
1523
for (i = 0; i < words; i += IXGBE_EEPROM_RD_BUFFER_MAX_COUNT) {
sys/dev/pci/ixgbe/ixgbe_common.c
1524
count = (words - i) / IXGBE_EEPROM_RD_BUFFER_MAX_COUNT > 0 ?
sys/dev/pci/ixgbe/ixgbe_common.c
1525
IXGBE_EEPROM_RD_BUFFER_MAX_COUNT : (words - i);
sys/dev/pci/ixgbe/ixgbe_common.c
1548
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1568
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_common.c
1634
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1644
if (words == 0) {
sys/dev/pci/ixgbe/ixgbe_common.c
1656
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_common.c
1742
u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_common.c
1752
if (words == 0) {
sys/dev/pci/ixgbe/ixgbe_common.c
1764
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_common.c
63
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.c
65
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.h
84
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.h
87
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.h
90
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_common.h
94
u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_x540.c
433
u16 offset, u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_x540.c
441
words, data);
sys/dev/pci/ixgbe/ixgbe_x540.c
484
u16 offset, u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_x540.c
492
words, data);
sys/dev/pci/ixgbe/ixgbe_x540.h
53
s32 ixgbe_read_eerd_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words,
sys/dev/pci/ixgbe/ixgbe_x540.h
56
s32 ixgbe_write_eewr_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words,
sys/dev/pci/ixgbe/ixgbe_x550.c
3350
u16 offset, u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_x550.c
3368
while (words) {
sys/dev/pci/ixgbe/ixgbe_x550.c
3369
if (words > FW_MAX_READ_BUFFER_SIZE / 2)
sys/dev/pci/ixgbe/ixgbe_x550.c
3372
words_to_read = words;
sys/dev/pci/ixgbe/ixgbe_x550.c
3408
words -= words_to_read;
sys/dev/pci/ixgbe/ixgbe_x550.c
3496
u16 offset, u16 words, u16 *data)
sys/dev/pci/ixgbe/ixgbe_x550.c
3510
for (i = 0; i < words; i++) {
sys/dev/pci/ixgbe/ixgbe_x550.h
53
u16 offset, u16 words, u16 *data);
sys/dev/pci/ixgbe/ixgbe_x550.h
57
u16 offset, u16 words, u16 *data);
sys/dev/pci/mpii.c
1190
u_int16_t *words = (u_int16_t *)dword;
sys/dev/pci/mpii.c
1196
words[i] = le16toh(mpii_read_db(sc) & MPII_DOORBELL_DATA_MASK);
sys/dev/usb/if_umb.c
2795
u_int words[IN6ADDRSZ / INT16SZ];
sys/dev/usb/if_umb.c
2804
memset(words, '\0', sizeof(words));
sys/dev/usb/if_umb.c
2806
words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
sys/dev/usb/if_umb.c
2812
if (words[i] == 0) {
sys/dev/usb/if_umb.c
2856
(best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
sys/dev/usb/if_umb.c
2862
advance = snprintf(tp, ep - tp, "%x", words[i]);
sys/fs/efs/efs_extent.h
42
uint32_t words[2];
sys/fs/efs/efs_extent.h
46
#define ex_words ex_muddle.words
sys/lib/libsa/byteorder.c
162
un.words[BE64_HI] = sa_htobe32(val >> 32);
sys/lib/libsa/byteorder.c
163
un.words[BE64_LO] = sa_htobe32(val & 0xffffffffU);
sys/lib/libsa/byteorder.c
173
un.words[LE64_HI] = sa_htole32(val >> 32);
sys/lib/libsa/byteorder.c
174
un.words[LE64_LO] = sa_htole32(val & 0xffffffffU);
sys/lib/libsa/byteorder.c
186
un.words[BE64_HI] = sa_be32toh(un.words[BE64_HI]);
sys/lib/libsa/byteorder.c
187
un.words[BE64_LO] = sa_be32toh(un.words[BE64_LO]);
sys/lib/libsa/byteorder.c
189
rv = (((uint64_t)un.words[BE64_HI]) << 32) |
sys/lib/libsa/byteorder.c
190
un.words[BE64_LO];
sys/lib/libsa/byteorder.c
202
un.words[LE64_HI] = sa_le32toh(un.words[LE64_HI]);
sys/lib/libsa/byteorder.c
203
un.words[LE64_LO] = sa_le32toh(un.words[LE64_LO]);
sys/lib/libsa/byteorder.c
205
rv = (((uint64_t)un.words[LE64_HI]) << 32) |
sys/lib/libsa/byteorder.c
206
un.words[LE64_LO];
sys/lib/libsa/byteorder.c
52
uint32_t words[2];
sys/net/if_media.c
380
ifmedia_getwords(struct ifmedia * const ifm, int *words, int maxwords)
sys/net/if_media.c
388
if (words != NULL && nwords < maxwords) {
sys/net/if_media.c
389
words[nwords] = ep->ifm_media;
sys/netinet6/in6_cksum.c
50
uint16_t words[16];
sys/netinet6/in6_cksum.c
98
w = u.words;
usr.bin/ftp/complete.c
102
lastmatch = words->sl_str[0];
usr.bin/ftp/complete.c
104
for (i = 1 ; i < words->sl_cur ; i++) {
usr.bin/ftp/complete.c
105
for (j = wordlen; j < strlen(words->sl_str[i]); j++)
usr.bin/ftp/complete.c
106
if (lastmatch[j] != words->sl_str[i][j])
usr.bin/ftp/complete.c
122
qsort(words->sl_str, words->sl_cur, sizeof(char *), comparstr);
usr.bin/ftp/complete.c
123
list_vertical(words);
usr.bin/ftp/complete.c
134
StringList *words;
usr.bin/ftp/complete.c
138
words = ftp_sl_init();
usr.bin/ftp/complete.c
145
ftp_sl_add(words, ftp_strdup(c->c_name));
usr.bin/ftp/complete.c
148
rv = complete_ambiguous(word, list, words);
usr.bin/ftp/complete.c
153
sl_free(words, 1);
usr.bin/ftp/complete.c
163
StringList *words;
usr.bin/ftp/complete.c
195
words = ftp_sl_init();
usr.bin/ftp/complete.c
213
ftp_sl_add(words, tcp);
usr.bin/ftp/complete.c
218
rv = complete_ambiguous(file, list, words);
usr.bin/ftp/complete.c
225
(void)strlcat(path, words->sl_str[0], sizeof(path));
usr.bin/ftp/complete.c
236
sl_free(words, 1);
usr.bin/ftp/complete.c
246
StringList *words;
usr.bin/ftp/complete.c
250
words = ftp_sl_init();
usr.bin/ftp/complete.c
257
ftp_sl_add(words, ftp_strdup(o->name));
usr.bin/ftp/complete.c
260
rv = complete_ambiguous(word, list, words);
usr.bin/ftp/complete.c
265
sl_free(words, 1);
usr.bin/ftp/complete.c
277
StringList *words;
usr.bin/ftp/complete.c
335
words = ftp_sl_init();
usr.bin/ftp/complete.c
341
ftp_sl_add(words, cp);
usr.bin/ftp/complete.c
343
rv = complete_ambiguous(file, list, words);
usr.bin/ftp/complete.c
344
sl_free(words, 0);
usr.bin/ftp/complete.c
79
complete_ambiguous(char *word, int list, StringList *words)
usr.bin/ftp/complete.c
87
if (words->sl_cur == 0)
usr.bin/ftp/complete.c
90
if (words->sl_cur == 1) { /* only once choice available */
usr.bin/ftp/complete.c
91
p = words->sl_str[0] + wordlen;
usr.bin/mail/complete.c
1029
StringList *words;
usr.bin/mail/complete.c
1049
words = mail_sl_init();
usr.bin/mail/complete.c
1061
mail_sl_add(words, cp);
usr.bin/mail/complete.c
1069
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
1071
sl_free(words, 1);
usr.bin/mail/complete.c
248
complete_ambiguous(EditLine *el, char *word, int dolist, StringList *words)
usr.bin/mail/complete.c
255
if (words->sl_cur == 0)
usr.bin/mail/complete.c
258
if (words->sl_cur == 1) { /* only once choice available */
usr.bin/mail/complete.c
259
p = words->sl_str[0] + wordlen;
usr.bin/mail/complete.c
271
lastmatch = words->sl_str[0];
usr.bin/mail/complete.c
273
for (i = 1; i < words->sl_cur; i++) {
usr.bin/mail/complete.c
274
for (j = wordlen; j < strlen(words->sl_str[i]); j++)
usr.bin/mail/complete.c
275
if (lastmatch[j] != words->sl_str[i][j])
usr.bin/mail/complete.c
291
qsort(words->sl_str, words->sl_cur, sizeof(char *), comparstr);
usr.bin/mail/complete.c
293
list_vertical(words);
usr.bin/mail/complete.c
304
StringList *words;
usr.bin/mail/complete.c
308
words = mail_sl_init();
usr.bin/mail/complete.c
315
mail_sl_add(words, __UNCONST(c->c_name));
usr.bin/mail/complete.c
318
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
323
sl_free(words, 0);
usr.bin/mail/complete.c
333
StringList *words;
usr.bin/mail/complete.c
379
words = mail_sl_init();
usr.bin/mail/complete.c
397
mail_sl_add(words, tcp);
usr.bin/mail/complete.c
402
rv = complete_ambiguous(el, fname, dolist, words);
usr.bin/mail/complete.c
409
(void)estrlcat(path, words->sl_str[0], sizeof(path));
usr.bin/mail/complete.c
420
sl_free(words, 1);
usr.bin/mail/complete.c
496
StringList *words;
usr.bin/mail/complete.c
518
words = sl_init();
usr.bin/mail/complete.c
527
error = find_execs(word, path, words);
usr.bin/mail/complete.c
530
error = find_execs(word, dir, words);
usr.bin/mail/complete.c
535
rv = complete_ambiguous(el, fname, dolist, words);
usr.bin/mail/complete.c
540
sl_free(words, 1);
usr.bin/mail/complete.c
555
StringList *words;
usr.bin/mail/complete.c
558
words = sl_init();
usr.bin/mail/complete.c
575
mail_sl_add(words, estrdup(*p));
usr.bin/mail/complete.c
577
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
579
sl_free(words, 1);
usr.bin/mail/complete.c
594
StringList *words;
usr.bin/mail/complete.c
597
words = sl_init();
usr.bin/mail/complete.c
617
mail_sl_add(words, estrdup(*p));
usr.bin/mail/complete.c
619
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
624
sl_free(words, 1);
usr.bin/mail/complete.c
640
StringList *words;
usr.bin/mail/complete.c
644
words = sl_init();
usr.bin/mail/complete.c
670
mail_sl_add(words, estrdup(*p));
usr.bin/mail/complete.c
683
mail_sl_add(words, estrdup(*p));
usr.bin/mail/complete.c
685
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
687
sl_free(words, 1);
usr.bin/mail/complete.c
701
StringList *words;
usr.bin/mail/complete.c
707
words = sl_init();
usr.bin/mail/complete.c
728
mail_sl_add(words, estrdup(*p));
usr.bin/mail/complete.c
730
rv = complete_ambiguous(el, word, dolist, words);
usr.bin/mail/complete.c
732
sl_free(words, 1);
usr.bin/make/compat.c
340
Words words = Str_Words(cmd, false);
usr.bin/make/compat.c
341
mav = words.words;
usr.bin/make/compat.c
342
bp = words.freeIt;
usr.bin/make/for.c
128
items = f->items.words + f->nextItem - n;
usr.bin/make/for.c
201
if (f->items.len == 1 && Substring_IsEmpty(f->items.words[0]))
usr.bin/make/for.c
392
AddEscaped(body, f->items.words[firstItem + i], endc);
usr.bin/make/for.c
430
AddEscaped(body, f->items.words[firstItem + i], '}');
usr.bin/make/job.c
2307
char **words;
usr.bin/make/job.c
2323
words = wordsList.words;
usr.bin/make/job.c
2326
if (words == NULL) {
usr.bin/make/job.c
2332
for (path = NULL, argv = words; argc != 0; argc--, argv++) {
usr.bin/make/job.c
2377
free(words);
usr.bin/make/job.c
2388
free(words);
usr.bin/make/job.c
2394
free(words);
usr.bin/make/job.c
2414
free(words);
usr.bin/make/job.c
2440
free(words);
usr.bin/make/main.c
689
Words words;
usr.bin/make/main.c
706
words = Str_Words(buf, true);
usr.bin/make/main.c
707
if (words.words == NULL) {
usr.bin/make/main.c
714
MainParseArgs((int)words.len, words.words);
usr.bin/make/main.c
717
Words_Free(words);
usr.bin/make/str.c
126
Substring *words;
usr.bin/make/str.c
141
words = bmake_malloc((words_cap + 1) * sizeof(words[0]));
usr.bin/make/str.c
200
words = bmake_realloc(words,
usr.bin/make/str.c
201
(words_cap + 1) * sizeof(words[0]));
usr.bin/make/str.c
203
words[words_len++] =
usr.bin/make/str.c
210
free(words);
usr.bin/make/str.c
213
res.words = NULL;
usr.bin/make/str.c
263
words[words_len] = Substring_Init(NULL, NULL); /* useful for argv */
usr.bin/make/str.c
268
result.words = words;
usr.bin/make/str.c
279
Words words;
usr.bin/make/str.c
283
if (swords.words == NULL) {
usr.bin/make/str.c
284
words.words = NULL;
usr.bin/make/str.c
285
words.len = 0;
usr.bin/make/str.c
286
words.freeIt = NULL;
usr.bin/make/str.c
287
return words;
usr.bin/make/str.c
290
words.words = bmake_malloc((swords.len + 1) * sizeof(words.words[0]));
usr.bin/make/str.c
291
words.len = swords.len;
usr.bin/make/str.c
292
words.freeIt = swords.freeIt;
usr.bin/make/str.c
294
words.words[i] = UNCONST(swords.words[i].start);
usr.bin/make/str.c
295
free(swords.words);
usr.bin/make/str.c
296
return words;
usr.bin/make/str.h
305
free(w.words);
usr.bin/make/str.h
315
w->words = NULL;
usr.bin/make/str.h
323
free(w.words);
usr.bin/make/str.h
59
char **words;
usr.bin/make/str.h
66
Substring *words;
usr.bin/make/var.c
1000
words = Substring_Words(varnames, false);
usr.bin/make/var.c
1001
for (i = 0; i < words.len; i++)
usr.bin/make/var.c
1002
UnexportVar(words.words[i], what);
usr.bin/make/var.c
1003
SubstringWords_Free(words);
usr.bin/make/var.c
1738
SubstringWords words;
usr.bin/make/var.c
1747
words.len = 1;
usr.bin/make/var.c
1748
words.words = bmake_malloc(sizeof(words.words[0]));
usr.bin/make/var.c
1749
words.freeIt = NULL;
usr.bin/make/var.c
1750
words.words[0] = Substring_InitStr(str); /* no need to copy */
usr.bin/make/var.c
1752
words = Substring_Words(str, false);
usr.bin/make/var.c
1756
len = (int)words.len;
usr.bin/make/var.c
1773
SepBuf_AddSubstring(&buf, words.words[i]);
usr.bin/make/var.c
1777
SubstringWords_Free(words);
usr.bin/make/var.c
1800
SubstringWords_JoinFree(SubstringWords words)
usr.bin/make/var.c
1807
for (i = 0; i < words.len; i++) {
usr.bin/make/var.c
1814
Buf_AddRange(&buf, words.words[i].start, words.words[i].end);
usr.bin/make/var.c
1817
SubstringWords_Free(words);
usr.bin/make/var.c
2366
SubstringWords words;
usr.bin/make/var.c
2381
words = Substring_Words(val, false);
usr.bin/make/var.c
2384
val, (unsigned)words.len, words.len != 1 ? "words" : "word");
usr.bin/make/var.c
2387
for (i = 0; i < words.len; i++) {
usr.bin/make/var.c
2388
modifyWord(words.words[i], &result, modifyWord_args);
usr.bin/make/var.c
2393
SubstringWords_Free(words);
usr.bin/make/var.c
2707
SubstringWords words = Expr_Words(ch->expr);
usr.bin/make/var.c
2708
n = words.len;
usr.bin/make/var.c
2709
SubstringWords_Free(words);
usr.bin/make/var.c
3313
SubstringWords words = Expr_Words(expr);
usr.bin/make/var.c
3314
size_t ac = words.len;
usr.bin/make/var.c
3315
SubstringWords_Free(words);
usr.bin/make/var.c
3465
SubstringWords words;
usr.bin/make/var.c
3494
words = Expr_Words(ch->expr);
usr.bin/make/var.c
3496
ShuffleSubstrings(words.words, words.len);
usr.bin/make/var.c
3498
assert(words.words[0].end[0] == '\0');
usr.bin/make/var.c
3499
qsort(words.words, words.len, sizeof(words.words[0]), cmp);
usr.bin/make/var.c
3501
Expr_SetValueOwn(ch->expr, SubstringWords_JoinFree(words));
usr.bin/make/var.c
3713
SubstringWords words;
usr.bin/make/var.c
3722
words = Expr_Words(ch->expr);
usr.bin/make/var.c
3724
if (words.len > 1) {
usr.bin/make/var.c
3726
for (di = 0, si = 1; si < words.len; si++)
usr.bin/make/var.c
3727
if (!Substring_Eq(words.words[di], words.words[si]))
usr.bin/make/var.c
3728
words.words[++di] = words.words[si];
usr.bin/make/var.c
3729
words.len = di + 1;
usr.bin/make/var.c
3732
Expr_SetValueOwn(ch->expr, SubstringWords_JoinFree(words));
usr.bin/make/var.c
667
if (varnames.len == 1 && varnames.words[0][0] == '\0')
usr.bin/make/var.c
671
const char *varname = varnames.words[i];
usr.bin/make/var.c
841
ExportVar(varnames.words[i], scope, VEM_ENV);
usr.bin/make/var.c
851
Words words = Str_Words(varnames, false);
usr.bin/make/var.c
854
if (words.len == 1 && words.words[0][0] == '\0')
usr.bin/make/var.c
855
words.len = 0;
usr.bin/make/var.c
857
for (i = 0; i < words.len; i++) {
usr.bin/make/var.c
858
const char *varname = words.words[i];
usr.bin/make/var.c
868
Words_Free(words);
usr.bin/make/var.c
995
SubstringWords words;
usr.bin/wc/wc.c
330
print_counts(wc_count_t lines, wc_count_t words, wc_count_t chars,
usr.bin/wc/wc.c
337
(void)printf(WCFMT, (WCCAST)words);
usr.sbin/gspa/gspa/gsp_pseu.c
47
u_int16_t words[2];
usr.sbin/gspa/gspa/gsp_pseu.c
92
words[0] = val;
usr.sbin/gspa/gspa/gsp_pseu.c
94
words[1] = val >> 16;
usr.sbin/gspa/gspa/gsp_pseu.c
95
putcode(words, 2);
usr.sbin/gspa/gspa/gsp_pseu.c
99
putcode(words, 1);
usr.sbin/npf/npfctl/npf_show.c
183
print_family(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
185
const int af = words[0];
usr.sbin/npf/npfctl/npf_show.c
199
print_address(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
201
const int af = *words++;
usr.sbin/npf/npfctl/npf_show.c
202
const unsigned mask = *words++;
usr.sbin/npf/npfctl/npf_show.c
216
addr = (const npf_addr_t *)words;
usr.sbin/npf/npfctl/npf_show.c
221
print_number(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
224
easprintf(&p, "%u", words[0]);
usr.sbin/npf/npfctl/npf_show.c
229
print_table(npf_conf_info_t *ctx, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
231
const unsigned tid = words[0];
usr.sbin/npf/npfctl/npf_show.c
242
print_proto(npf_conf_info_t *ctx, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
245
switch (words[0]) {
usr.sbin/npf/npfctl/npf_show.c
255
return print_number(ctx, words);
usr.sbin/npf/npfctl/npf_show.c
259
print_tcpflags(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
261
const unsigned tf = words[0], tf_mask = words[1];
usr.sbin/npf/npfctl/npf_show.c
282
print_portrange(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
284
unsigned fport = words[0], tport = words[1];
usr.sbin/npf/npfctl/npf_show.c
311
print_ether_type(npf_conf_info_t *ctx __unused, const uint32_t *words)
usr.sbin/npf/npfctl/npf_show.c
313
const uint8_t *type = (const uint8_t *)words;