usr/src/boot/libsa/string/bcopy.c
106
TLOOP(*(word *)dst = *(word *)src; src += wsize; dst += wsize);
usr/src/boot/libsa/string/bcopy.c
127
TLOOP(src -= wsize; dst -= wsize; *(word *)dst = *(word *)src);
usr/src/boot/libsa/string/bcopy.c
47
#define wsize sizeof(word)
usr/src/boot/libsa/string/strtok.c
113
char *brkb, *brkt, *phrase, *sep, *word;
usr/src/boot/libsa/string/strtok.c
120
for (word = strtok(test, sep); word; word = strtok(NULL, sep))
usr/src/boot/libsa/string/strtok.c
121
printf("Next word is \"%s\".\n", word);
usr/src/boot/libsa/string/strtok.c
124
for (word = strtok_r(test, sep, &brkt); word;
usr/src/boot/libsa/string/strtok.c
125
word = strtok_r(NULL, sep, &brkt)) {
usr/src/boot/libsa/string/strtok.c
130
printf("So far we're at %s:%s\n", word, phrase);
usr/src/cmd/awk/lex.c
166
int word(char *);
usr/src/cmd/awk/lex.c
195
return (word(buf));
usr/src/cmd/awk/lex.c
41
const char *word;
usr/src/cmd/awk/lex.c
494
if ((cond = strcmp(w, kp[mid].word)) < 0)
usr/src/cmd/backup/restore/interactive.c
966
char word[MAXCOMPLEXLEN];
usr/src/cmd/backup/restore/interactive.c
971
cp = copynext(cp, word, sizeof (word));
usr/src/cmd/backup/restore/interactive.c
973
fprintf(stderr, gettext("got word `%s'\n"), word);
usr/src/cmd/backup/restore/interactive.c
980
pager_vector[pager_len - 1] = strdup(word);
usr/src/cmd/backup/restore/interactive.c
985
length += strlen(word) + 1;
usr/src/cmd/bart/lutbl.c
56
attr_keylookup(char *word)
usr/src/cmd/bart/lutbl.c
63
if (strcasecmp(word, akp->ak_name) == 0)
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
100
#define ISWILD(word) (word[0] == '*' && word[1] == '\0')
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1706
ptr_word = ap->word;
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1781
warn("unknown host %s in auth. address list", ap->word);
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1882
if (addrs->word[0] == '-')
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1884
if (addrs->word[0] != '!')
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1940
char word[MAXWORDLEN];
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1952
if (!getword(f, word, &newline, filename)) {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1963
while (!newline && getword(f, word, &newline, filename))
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1973
if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1977
if (!ISWILD(word))
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1983
if (!getword(f, word, &newline, filename))
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1987
if (!ISWILD(word)) {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1988
if (server != NULL && strcmp(word, server) != 0) {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
1989
(void) strcpy(scan_server_match_failed, word);
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2005
if (!getword(f, word, &newline, filename))
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2017
if (word[0] == '@') {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2018
(void) strlcpy(atfile, word+1, sizeof(atfile));
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2029
if (!getword(sf, word, &xxx, atfile)) {
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2037
(void) strlcpy(lsecret, word, sizeof(lsecret));
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2044
if (!getword(f, word, &newline, filename) || newline)
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2049
ap->word = strdup(word);
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2050
if (ap->word == NULL)
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
2078
if (strcmp(ap->word, "--") == 0)
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
391
wp->word = (char *) (wp + 1);
usr/src/cmd/cmd-inet/usr.bin/pppd/auth.c
393
(void) strcpy(wp->word, addr);
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
204
register unsigned int word;
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
206
word = (unsigned)input[startBit / 8] << 8;
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
207
word |= (unsigned)input[startBit / 8 + 1];
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
209
word >>= 15 - (startBit % 8 + 7);
usr/src/cmd/cmd-inet/usr.bin/pppd/chap_ms.c
211
return word & 0xFE;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1147
getword(f, word, newlinep, filename)
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1149
char *word;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1312
word[len] = value;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1348
word[len] = c;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1378
filename, word);
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
1381
word[len] = '\0';
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
636
opt = find_option(w->word);
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
644
w0->word);
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
647
argv[i] = w->word;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
649
current_option = w0->word;
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
660
if ((i = setipaddr(w->word)) == 0) {
usr/src/cmd/cmd-inet/usr.bin/pppd/options.c
661
option_error("unrecognized option '%s'", w->word);
usr/src/cmd/cmd-inet/usr.bin/pppd/pppd.h
186
char *word;
usr/src/cmd/cmd-inet/usr.bin/pppd/pppd.h
664
extern int getword __P((FILE *f, char *word, int *newlinep, char *filename));
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
2662
} word; /* 16-bit, 8 bytes for 32-bit machines) */
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
3419
t = h->word.what.Bits;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
3619
#define exop word.what.Exop
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
3620
#define bits word.what.Bits
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
3844
q->word.Nalloc = z + 1;
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
4074
ZFREE(z, p, p->word.Nalloc * sizeof(inflate_huft));
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
4089
#define exop word.what.Exop
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
4090
#define bits word.what.Bits
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
4411
#define exop word.what.Exop
usr/src/cmd/cmd-inet/usr.bin/pppdump/zlib.c
4412
#define bits word.what.Bits
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
181
const char *word;
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
184
for (word = line + word_end; word > line && *(word - 1) != ' '; word--)
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
188
if (word == line) {
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
190
const char *cmd = strstr(cmds[i].name, word);
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
194
word_end, cmds[i].name + strlen(word),
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
204
mode = strstr(modes[i].m_name, word);
usr/src/cmd/cmd-inet/usr.bin/tftp/main.c
208
modes[i].m_name + strlen(word),
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_capture.c
741
int *word;
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_capture.c
799
word = (int *)cap_buffp;
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_capture.c
801
if (!((word[0] < 1600 && word[1] < 1600) &&
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_capture.c
802
(word[0] < word[1]) &&
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_capture.c
803
(word[2] > 610000000 && word[2] < 770000000)))
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
1960
char word[10];
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
1995
snprintf(word, sizeof (word), "%.4x ", get2(comdata));
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
1999
(void) strlcat(buff, word, sizeof (buff));
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
793
char word[10];
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
797
snprintf(word, sizeof (word), "%.2x ", data[i]);
usr/src/cmd/cmd-inet/usr.sbin/snoop/snoop_smb.c
798
(void) strlcat(buff, word, sizeof (buff));
usr/src/cmd/csh/sh.c
923
paraml.word = S_ /* "" */;
usr/src/cmd/csh/sh.exp.c
601
hp->word = S_ /* "" */;
usr/src/cmd/csh/sh.exp.c
609
wdp->word = savestr(*v++);
usr/src/cmd/csh/sh.file.c
523
search2(tchar *word, COMMAND command, int max_word_length)
usr/src/cmd/csh/sh.file.c
540
looking_for_lognames = (*word == '~') && (index_(word, '/') == NULL);
usr/src/cmd/csh/sh.file.c
543
copyn(name, &word[1], MAXNAMLEN); /* name sans ~ */
usr/src/cmd/csh/sh.file.c
545
extract_dir_and_name(word, dir, name);
usr/src/cmd/csh/sh.file.c
601
copyn(word, S_TIL /* "~" */, 1);
usr/src/cmd/csh/sh.file.c
604
copyn(word, dir, max_word_length);
usr/src/cmd/csh/sh.file.c
606
catn(word, extended_name, max_word_length);
usr/src/cmd/csh/sh.glob.c
701
tchar word[BUFSIZ];
usr/src/cmd/csh/sh.glob.c
712
pargcp = pargs = word;
usr/src/cmd/csh/sh.h
240
tchar *word;
usr/src/cmd/csh/sh.hist.c
41
if (sp->next->word[0] == '\n')
usr/src/cmd/csh/sh.lex.c
104
hp->word = S_ /* "" */;
usr/src/cmd/csh/sh.lex.c
1103
if (lp->word[0] == '\n')
usr/src/cmd/csh/sh.lex.c
1107
q = lp->word;
usr/src/cmd/csh/sh.lex.c
1115
for (dp = lp->word; *dp; dp++) {
usr/src/cmd/csh/sh.lex.c
1127
} while (lp->word[0] != '\n');
usr/src/cmd/csh/sh.lex.c
124
new->word = 0;
usr/src/cmd/csh/sh.lex.c
129
wdp->word = word();
usr/src/cmd/csh/sh.lex.c
130
} while (wdp->word[0] != '\n');
usr/src/cmd/csh/sh.lex.c
147
printf("%t", sp->word);
usr/src/cmd/csh/sh.lex.c
151
if (sp->word[0] != '\n')
usr/src/cmd/csh/sh.lex.c
173
wdp->word = savestr(fp->word);
usr/src/cmd/csh/sh.lex.c
175
} while (wdp->word[0] != '\n');
usr/src/cmd/csh/sh.lex.c
190
xfree(fp->word);
usr/src/cmd/csh/sh.lex.c
353
setexclp(exclnxt->word);
usr/src/cmd/csh/sh.lex.c
364
setexclp(exclnxt->word);
usr/src/cmd/csh/sh.lex.c
39
tchar *word(void);
usr/src/cmd/csh/sh.lex.c
749
wdp->word = global || didsub == 0 ?
usr/src/cmd/csh/sh.lex.c
750
subword(en->word, sc, &didsub) : savestr(en->word);
usr/src/cmd/csh/sh.parse.c
103
if (p->next != p2 && eq(p->next->word, S_AND /* "&"*/))
usr/src/cmd/csh/sh.parse.c
133
if (p1->word[0] == '(') {
usr/src/cmd/csh/sh.parse.c
134
for (p2 = p2->prev; p2->word[0] != ')'; p2 = p2->prev)
usr/src/cmd/csh/sh.parse.c
142
ap = adrof1(p1->word, &aliases);
usr/src/cmd/csh/sh.parse.c
155
if (p1->word[0] && eq(p1->word, alout.next->word)) {
usr/src/cmd/csh/sh.parse.c
156
tchar *cp = alout.next->word;
usr/src/cmd/csh/sh.parse.c
158
alout.next->word = strspl(S_TOPBIT /* "\200" */, cp);
usr/src/cmd/csh/sh.parse.c
167
xfree(alout.prev->word);
usr/src/cmd/csh/sh.parse.c
182
xfree(p1->word);
usr/src/cmd/csh/sh.parse.c
210
if (p1->word[0] == ';' ||
usr/src/cmd/csh/sh.parse.c
211
p1->word[0] == '&' ||
usr/src/cmd/csh/sh.parse.c
212
p1->word[0] == '\n')
usr/src/cmd/csh/sh.parse.c
236
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
249
if (p->word[1] == '|')
usr/src/cmd/csh/sh.parse.c
254
if (p->next != p2 && eq(p->next->word, S_AND /* "&" */))
usr/src/cmd/csh/sh.parse.c
261
if (p->word[1] == '&')
usr/src/cmd/csh/sh.parse.c
304
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
345
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
356
if (p->word[1] != '|')
usr/src/cmd/csh/sh.parse.c
388
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
399
if (p->word[1] == '&' && l == 0) {
usr/src/cmd/csh/sh.parse.c
430
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
446
if (pn != p2 && pn->word[0] == '&') {
usr/src/cmd/csh/sh.parse.c
452
if (pn != p2 && pn->word[0] == '&')
usr/src/cmd/csh/sh.parse.c
487
switch (srchx(p->word)) {
usr/src/cmd/csh/sh.parse.c
509
switch (p->word[0]) {
usr/src/cmd/csh/sh.parse.c
532
if (any(p->next->word[0], RELPAR))
usr/src/cmd/csh/sh.parse.c
549
if (p2->word[0] == ')')
usr/src/cmd/csh/sh.parse.c
555
c = p->word[0];
usr/src/cmd/csh/sh.parse.c
576
if (p->word[1] == '>')
usr/src/cmd/csh/sh.parse.c
578
if (p->next != p2 && eq(p->next->word, S_AND /* "&" */)) {
usr/src/cmd/csh/sh.parse.c
583
if (p->next != p2 && eq(p->next->word, S_EXAS /* "!" */))
usr/src/cmd/csh/sh.parse.c
591
if (any(p->word[0], RELPAR))
usr/src/cmd/csh/sh.parse.c
597
t->t_drit = savestr(p->word);
usr/src/cmd/csh/sh.parse.c
603
if (p->word[1] == '<')
usr/src/cmd/csh/sh.parse.c
608
if (any(p->word[0], RELPAR))
usr/src/cmd/csh/sh.parse.c
615
t->t_dlef = savestr(p->word);
usr/src/cmd/csh/sh.parse.c
625
av[n] = savestr(p->word);
usr/src/cmd/csh/sh.parse.c
70
if (p1->word[0] == ';' ||
usr/src/cmd/csh/sh.parse.c
71
p1->word[0] == '&' ||
usr/src/cmd/csh/sh.parse.c
72
p1->word[0] == '\n')
usr/src/cmd/csh/sh.parse.c
90
switch (p->word[0]) {
usr/src/cmd/demangle/demangle.c
107
custr_t *word = NULL;
usr/src/cmd/demangle/demangle.c
112
if (custr_alloc(&word) != 0)
usr/src/cmd/demangle/demangle.c
135
appendc(word, c);
usr/src/cmd/demangle/demangle.c
143
if (do_demangle(custr_cstr(word), lang, out) < 0)
usr/src/cmd/demangle/demangle.c
146
custr_reset(word);
usr/src/cmd/demangle/demangle.c
154
appendc(word, c);
usr/src/cmd/demangle/demangle.c
165
if (custr_len(word) > 0 && do_demangle(custr_cstr(word), lang, out) < 0)
usr/src/cmd/demangle/demangle.c
168
custr_free(word);
usr/src/cmd/find/find.c
1477
lookup(char *word)
usr/src/cmd/find/find.c
1481
if (word == 0 || *word == 0)
usr/src/cmd/find/find.c
1483
second = word[1];
usr/src/cmd/find/find.c
1485
if (second == argp->name[1] && strcmp(word, argp->name) == 0)
usr/src/cmd/fm/eversholt/common/esclex.c
102
const char *word;
usr/src/cmd/fm/eversholt/common/esclex.c
264
stable(Rwords[i].word), Rwords[i].val);
usr/src/cmd/fmt/fmt.c
390
wchar_t word[BUFSIZ];
usr/src/cmd/fmt/fmt.c
395
cp2 = word;
usr/src/cmd/fmt/fmt.c
421
pack(word);
usr/src/cmd/fmt/fmt.c
429
wchar_t word[BUFSIZ];
usr/src/cmd/fmt/fmt.c
434
cp2 = word;
usr/src/cmd/fmt/fmt.c
467
pack(word);
usr/src/cmd/fmt/fmt.c
490
pack(wchar_t word[])
usr/src/cmd/fmt/fmt.c
497
t = wscol(word);
usr/src/cmd/fmt/fmt.c
501
for (cp = word; *cp; *outp++ = *cp++) {
usr/src/cmd/fmt/fmt.c
509
for (cp = word; *cp; *outp++ = *cp++) {
usr/src/cmd/fs.d/autofs/ns_files.c
146
if ((getword(word, wordq, &lp, &lq, ' ', sizeof (word))
usr/src/cmd/fs.d/autofs/ns_files.c
147
== -1) || (word[0] == '\0'))
usr/src/cmd/fs.d/autofs/ns_files.c
149
if (strcmp(word, key) == 0)
usr/src/cmd/fs.d/autofs/ns_files.c
151
if (word[0] == '*' && word[1] == '\0') {
usr/src/cmd/fs.d/autofs/ns_files.c
156
if (word[0] == '+') {
usr/src/cmd/fs.d/autofs/ns_files.c
157
nserr = getmapent(key, word+1, ml, stack, stkptr,
usr/src/cmd/fs.d/autofs/ns_files.c
170
if (*word != '/') {
usr/src/cmd/fs.d/autofs/ns_files.c
173
"direct map %s\n", word, mapname);
usr/src/cmd/fs.d/autofs/ns_files.c
176
if (strchr(word, '/')) {
usr/src/cmd/fs.d/autofs/ns_files.c
179
"indirect map %s\n", word, mapname);
usr/src/cmd/fs.d/autofs/ns_files.c
203
char word[MAXPATHLEN+1], wordq[MAXPATHLEN+1];
usr/src/cmd/fs.d/autofs/ns_files.c
262
if ((getword(word, wordq, &lp, &lq, ' ', MAXFILENAMELEN)
usr/src/cmd/fs.d/autofs/ns_files.c
263
== -1) || (word[0] == '\0'))
usr/src/cmd/fs.d/autofs/ns_files.c
270
if (word[0] == '*' && word[1] == '\0')
usr/src/cmd/fs.d/autofs/ns_files.c
272
if (word[0] == '+') {
usr/src/cmd/fs.d/autofs/ns_files.c
276
getmapkeys(word+1, list, error, cache_time,
usr/src/cmd/fs.d/autofs/ns_files.c
286
if (add_dir_entry(word, list, &last) != 0) {
usr/src/cmd/fs.d/autofs/ns_files.c
76
char word[MAXPATHLEN+1], wordq[MAXPATHLEN+1];
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1203
uint32_t word;
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1209
word = (image[4 * i] << 24) |
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1215
word = MLXSWAPBITS32(word);
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1220
(word >> 31)) ^ poly) & 0xFFFF;
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1222
crc = ((crc << 1) | (word >> 31)) & 0xFFFF;
usr/src/cmd/fwflash/plugins/transport/common/hermon.c
1224
word = (word << 1) & 0xFFFFFFFF;
usr/src/cmd/fwflash/plugins/transport/common/tavor.c
1911
uint32_t word;
usr/src/cmd/fwflash/plugins/transport/common/tavor.c
1915
word = (image[4 * i] << 24) |
usr/src/cmd/fwflash/plugins/transport/common/tavor.c
1923
(word >> 31)) ^ poly) & 0xFFFF;
usr/src/cmd/fwflash/plugins/transport/common/tavor.c
1925
crc = ((crc << 1) | (word >> 31)) & 0xFFFF;
usr/src/cmd/fwflash/plugins/transport/common/tavor.c
1927
word = (word << 1) & 0xFFFFFFFF;
usr/src/cmd/init/init.c
2782
static char word[UT_USER_SZ + 1];
usr/src/cmd/init/init.c
2817
for (ptr2 = &word[0]; ptr2 < &word[UT_USER_SZ] &&
usr/src/cmd/init/init.c
2822
return (&word[0]);
usr/src/cmd/krb5/slave/kprop.c
161
register char *word, ch;
usr/src/cmd/krb5/slave/kpropd.c
1228
register char *word, ch;
usr/src/cmd/loadkeys/loadkeys.y
874
word_t word;
usr/src/cmd/loadkeys/loadkeys.y
882
word.w_string = tokbuf;
usr/src/cmd/loadkeys/loadkeys.y
883
wptr = (word_t *)bsearch((char *)&word,
usr/src/cmd/logadm/opts.c
469
opts_printword(const char *word, FILE *stream)
usr/src/cmd/logadm/opts.c
473
if (word != NULL) {
usr/src/cmd/logadm/opts.c
474
if (strchr(word, ' ') || strchr(word, '\t') ||
usr/src/cmd/logadm/opts.c
475
strchr(word, '$') || strchr(word, '[') ||
usr/src/cmd/logadm/opts.c
476
strchr(word, '?') || strchr(word, '{') ||
usr/src/cmd/logadm/opts.c
477
strchr(word, '`') || strchr(word, ';')) {
usr/src/cmd/logadm/opts.c
478
if (strchr(word, '\'') == NULL)
usr/src/cmd/logadm/opts.c
480
else if (strchr(word, '"') == NULL)
usr/src/cmd/logadm/opts.c
484
"Can't protect quotes in <%s>", word);
usr/src/cmd/logadm/opts.c
485
(void) fprintf(stream, "%s%s%s", q, word, q);
usr/src/cmd/logadm/opts.c
487
(void) fprintf(stream, "%s", word);
usr/src/cmd/logadm/opts.h
70
void opts_printword(const char *word, FILE *stream);
usr/src/cmd/look/look.c
116
canon(entry,word);
usr/src/cmd/look/look.c
117
switch(compare(key,word)) {
usr/src/cmd/look/look.c
131
canon(entry,word);
usr/src/cmd/look/look.c
132
switch(compare(key,word)) {
usr/src/cmd/look/look.c
27
char word[WORDSIZE];
usr/src/cmd/look/look.c
96
canon(entry,word);
usr/src/cmd/look/look.c
97
switch(compare(key,word)) {
usr/src/cmd/lp/filter/postscript/dpost/ps_include.c
42
#define has(word) (strncmp(buf, word, strlen(word)) == 0)
usr/src/cmd/mailx/fio.c
255
char word[LINESIZE];
usr/src/cmd/mailx/fio.c
259
cp2 = word;
usr/src/cmd/mailx/fio.c
263
if (icequal(word, "binary"))
usr/src/cmd/mailx/hdr/def.h
619
extern char *yankword(char *name, char *word, int sz, int comma);
usr/src/cmd/mailx/head.c
177
nextword(const char *input, custr_t *word, const char **nextword)
usr/src/cmd/mailx/head.c
211
if (word != NULL) {
usr/src/cmd/mailx/head.c
212
if (custr_appendc(word, *c) != 0) {
usr/src/cmd/mailx/lex.c
452
char word[LINESIZE];
usr/src/cmd/mailx/lex.c
471
cp2 = word;
usr/src/cmd/mailx/lex.c
487
if (sourcing && equal(word, ""))
usr/src/cmd/mailx/lex.c
489
com = lex(word);
usr/src/cmd/mailx/lex.c
491
fprintf(stderr, gettext("Unknown command: \"%s\"\n"), word);
usr/src/cmd/mailx/lex.c
55
static const struct cmd *lex(char word[]);
usr/src/cmd/mailx/lex.c
745
lex(char word[])
usr/src/cmd/mailx/lex.c
750
if (isprefix(word, cp->c_name))
usr/src/cmd/mailx/util.c
565
yankword(char *name, char *word, int sz, int comma)
usr/src/cmd/mailx/util.c
576
nstrcpy(word, sz, name);
usr/src/cmd/man/man.c
739
whatapro(struct man_node *manp, char *word)
usr/src/cmd/man/man.c
751
search_whatis(whatpath, word);
usr/src/cmd/man/man.c
757
search_whatis(whatpath, word);
usr/src/cmd/man/man.c
762
search_whatis(char *whatpath, char *word)
usr/src/cmd/man/man.c
782
word, (whatis) ? "\\>" : "") == -1)
usr/src/cmd/mandoc/html.c
902
print_text(struct html *h, const char *word)
usr/src/cmd/mandoc/html.c
904
print_tagged_text(h, word, NULL);
usr/src/cmd/mandoc/html.c
908
print_tagged_text(struct html *h, const char *word, struct roff_node *n)
usr/src/cmd/mandoc/html.c
947
if ( ! print_encode(h, word, NULL, 0)) {
usr/src/cmd/mandoc/roff.c
966
roff_word_alloc(struct roff_man *man, int line, int pos, const char *word)
usr/src/cmd/mandoc/roff.c
971
n->string = roff_strdup(man->roff, word);
usr/src/cmd/mandoc/roff.c
978
roff_word_append(struct roff_man *man, const char *word)
usr/src/cmd/mandoc/roff.c
984
addstr = roff_strdup(man->roff, word);
usr/src/cmd/mandoc/term.c
522
term_word(struct termp *p, const char *word)
usr/src/cmd/mandoc/term.c
550
while ('\0' != *word) {
usr/src/cmd/mandoc/term.c
551
if ('\\' != *word) {
usr/src/cmd/mandoc/term.c
553
if (' ' == *word) {
usr/src/cmd/mandoc/term.c
555
word++;
usr/src/cmd/mandoc/term.c
558
ssz = strcspn(word, "\\ ");
usr/src/cmd/mandoc/term.c
560
ssz = strcspn(word, "\\");
usr/src/cmd/mandoc/term.c
561
encode(p, word, ssz);
usr/src/cmd/mandoc/term.c
562
word += (int)ssz;
usr/src/cmd/mandoc/term.c
566
word++;
usr/src/cmd/mandoc/term.c
567
esc = mandoc_escape(&word, &seq, &sz);
usr/src/cmd/mandoc/term.c
616
else if (*word == '\0')
usr/src/cmd/mandoc/term.c
829
encode(struct termp *p, const char *word, size_t sz)
usr/src/cmd/mandoc/term.c
835
(*p->letter)(p, word[i]);
usr/src/cmd/mandoc/term.c
843
if (ASCII_HYPH == word[i] ||
usr/src/cmd/mandoc/term.c
844
isgraph((unsigned char)word[i]))
usr/src/cmd/mandoc/term.c
845
encode1(p, word[i]);
usr/src/cmd/mandoc/term.c
848
(word[i] != ' ' && word[i] != ASCII_NBRSP))
usr/src/cmd/mandoc/term.c
849
p->tcol->buf[p->col] = word[i];
usr/src/cmd/mandoc/term.c
857
if (word[i] == '\b' &&
usr/src/cmd/mdb/common/modules/zfs/zfs.c
188
uint64_t word = 0;
usr/src/cmd/mdb/common/modules/zfs/zfs.c
189
if (mdb_vread(&word, sizeof (word), addr) == -1) {
usr/src/cmd/mdb/common/modules/zfs/zfs.c
194
if (SM_PREFIX_DECODE(word) == SM_DEBUG_PREFIX) {
usr/src/cmd/mdb/common/modules/zfs/zfs.c
198
actions[SM_DEBUG_ACTION_DECODE(word)],
usr/src/cmd/mdb/common/modules/zfs/zfs.c
199
(u_longlong_t)SM_DEBUG_TXG_DECODE(word),
usr/src/cmd/mdb/common/modules/zfs/zfs.c
200
(u_longlong_t)SM_DEBUG_SYNCPASS_DECODE(word));
usr/src/cmd/mdb/common/modules/zfs/zfs.c
207
if (SM_PREFIX_DECODE(word) != SM2_PREFIX) {
usr/src/cmd/mdb/common/modules/zfs/zfs.c
208
entry_type = (SM_TYPE_DECODE(word) == SM_ALLOC) ?
usr/src/cmd/mdb/common/modules/zfs/zfs.c
210
raw_offset = SM_OFFSET_DECODE(word);
usr/src/cmd/mdb/common/modules/zfs/zfs.c
211
raw_run = SM_RUN_DECODE(word);
usr/src/cmd/mdb/common/modules/zfs/zfs.c
214
ASSERT3U(SM_PREFIX_DECODE(word), ==, SM2_PREFIX);
usr/src/cmd/mdb/common/modules/zfs/zfs.c
216
raw_run = SM2_RUN_DECODE(word);
usr/src/cmd/mdb/common/modules/zfs/zfs.c
217
vdev_id = SM2_VDEV_DECODE(word);
usr/src/cmd/mdb/common/modules/zfs/zfs.c
227
if (mdb_vread(&word, sizeof (word), addr) == -1) {
usr/src/cmd/mdb/common/modules/zfs/zfs.c
233
entry_type = (SM2_TYPE_DECODE(word) == SM_ALLOC) ?
usr/src/cmd/mdb/common/modules/zfs/zfs.c
235
raw_offset = SM2_OFFSET_DECODE(word);
usr/src/cmd/sendmail/include/sm/bitops.h
55
# define bitset(bit, word) (((word) & (bit)) != 0)
usr/src/cmd/sgs/demo_rdb/common/utils.c
106
unsigned long word;
usr/src/cmd/sgs/demo_rdb/common/utils.c
110
if (ps_pread(ph, address, (char *)&word,
usr/src/cmd/sgs/demo_rdb/common/utils.c
116
(void) printf(" 0x%08lx", word);
usr/src/cmd/sgs/elfdump/common/corenote.c
658
fdesc = layout->word;
usr/src/cmd/sgs/elfdump/common/corenote.c
858
fdesc = layout->word;
usr/src/cmd/sgs/elfdump/common/gen_struct_layout.c
436
ARRAY_FIELD(fltset_t, word, 0);
usr/src/cmd/sgs/elfdump/common/gen_struct_layout.c
540
ARRAY_FIELD(sysset_t, word, 0);
usr/src/cmd/sgs/elfdump/common/struct_layout.h
415
sl_field_t word;
usr/src/cmd/sgs/elfdump/common/struct_layout.h
486
sl_field_t word;
usr/src/cmd/sgs/tools/common/piglatin.c
110
word = ignore = 0;
usr/src/cmd/sgs/tools/common/piglatin.c
120
word = 1;
usr/src/cmd/sgs/tools/common/piglatin.c
45
int ic, ignore = 0, word = 0;
usr/src/cmd/sgs/tools/common/piglatin.c
70
if (word == 0) {
usr/src/cmd/sh/blok.c
101
p = (struct blk *)(Rcheat(p->word) & ~BUSY);
usr/src/cmd/sh/blok.c
129
blokstak->word = stakbsy;
usr/src/cmd/sh/blok.c
131
bloktop->word = (struct blk *)(Rcheat(rndstak) | BUSY);
usr/src/cmd/sh/blok.c
141
if ((unsigned char *)&bloktop->word >= brkend) {
usr/src/cmd/sh/blok.c
143
(&bloktop->word) - brkend + sizeof (struct blk))) ==
usr/src/cmd/sh/blok.c
147
bloktop = bloktop->word = (struct blk *)(Rcheat(bloktop) + reqd);
usr/src/cmd/sh/blok.c
148
if ((unsigned char *)&bloktop->word >= brkend) {
usr/src/cmd/sh/blok.c
150
(&bloktop->word) - brkend + sizeof (struct blk))) ==
usr/src/cmd/sh/blok.c
154
bloktop->word = (struct blk *)(brkbegin + 1);
usr/src/cmd/sh/blok.c
185
p->word = (struct blk *)(Rcheat(p->word) & ~BUSY);
usr/src/cmd/sh/blok.c
203
eui = (uint32_t *)(Rcheat(ptr->word) & ~BUSY);
usr/src/cmd/sh/blok.c
217
q = (struct blk *)(Rcheat(p->word) & ~BUSY);
usr/src/cmd/sh/blok.c
250
q = (struct blk *)(Rcheat(p->word) & ~BUSY);
usr/src/cmd/sh/blok.c
289
p = (struct blk *)(Rcheat(pp->word) & ~BUSY);
usr/src/cmd/sh/blok.c
43
#define busy(x) (Rcheat((x)->word) & BUSY)
usr/src/cmd/sh/blok.c
85
while (!busy(q = p->word))
usr/src/cmd/sh/blok.c
86
p->word = q->word;
usr/src/cmd/sh/blok.c
91
blokp->word = p->word;
usr/src/cmd/sh/blok.c
92
p->word = (struct blk *)
usr/src/cmd/sh/cmd.c
183
word();
usr/src/cmd/sh/cmd.c
228
if (wdval || (word() != ')' && wdval != '|'))
usr/src/cmd/sh/cmd.c
231
word();
usr/src/cmd/sh/cmd.c
452
word();
usr/src/cmd/sh/cmd.c
486
word();
usr/src/cmd/sh/cmd.c
499
while ((reserv++, word() == NL))
usr/src/cmd/sh/cmd.c
558
word();
usr/src/cmd/sh/cmd.c
566
if (word())
usr/src/cmd/sh/mode.h
77
struct blk *word;
usr/src/cmd/sh/stak.c
112
next = stakbsy->word;
usr/src/cmd/sh/word.c
194
word();
usr/src/cmd/spell/hashmake.c
42
char word[LINE_MAX];
usr/src/cmd/spell/hashmake.c
52
while (fgets(word, LINE_MAX, stdin)) {
usr/src/cmd/spell/hashmake.c
53
(void) printf("%.*lo\n", (HASHWIDTH+2)/3, hash(word));
usr/src/cmd/spell/spellprog.c
230
static char word[LINE_MAX];
usr/src/cmd/spell/spellprog.c
343
for (ep = word; (*ep = j = getchar()) != '\n'; ep++)
usr/src/cmd/spell/spellprog.c
354
if (!tryword(word, ep, 0))
usr/src/cmd/spell/spellprog.c
355
(void) fprintf(file, "%s\n", word);
usr/src/cmd/spell/spellprog.c
358
for (cp = word, dp = original; cp < ep; )
usr/src/cmd/spell/spellprog.c
362
for (cp = word; cp < ep; cp++)
usr/src/cmd/spell/spellprog.c
365
if (((ep - word) == 1) &&
usr/src/cmd/spell/spellprog.c
366
((word[0] == 'A') || (word[0] == 'I')))
usr/src/cmd/spell/spellprog.c
371
for (cp = original+1, dp = word+1; dp < ep; dp++, cp++)
usr/src/cmd/spell/spellprog.c
374
if (((ep - word) == 1) && (word[0] == 'a'))
usr/src/cmd/spell/spellprog.c
378
if (isupper(word[0])) {
usr/src/cmd/spell/spellprog.c
379
for (cp = original, dp = word; *dp = *cp++; dp++)
usr/src/cmd/spell/spellprog.c
381
word[0] = Tolower(word[0]);
usr/src/cmd/spell/spellprog.c
417
for (sp = cp; --sp >= word && !vowel(*sp); )
usr/src/cmd/spell/spellprog.c
419
if (sp < word)
usr/src/cmd/spell/spellprog.c
460
if (!isupper(*word)) /* must be proper name */
usr/src/cmd/spell/spellprog.c
531
if (skipv(skipv(ep-1)) < word)
usr/src/cmd/spell/spellprog.c
670
if (tryword(word, ep, lev))
usr/src/cmd/spell/spellprog.c
672
bp = word;
usr/src/cmd/spell/spellprog.c
739
if (s >= word&&vowel(*s))
usr/src/cmd/spell/spellprog.c
741
while (s >= word && !vowel(*s))
usr/src/cmd/troff/n7.c
1010
for (wp = word; *wp; wp++) {
usr/src/cmd/troff/n7.c
1020
wordp = word;
usr/src/cmd/troff/n7.c
1034
if (wordp >= &word[WDSIZE - 3]) {
usr/src/cmd/troff/n7.c
810
wordp = word;
usr/src/cmd/troff/n7.c
922
if (wordp > word + 1) {
usr/src/cmd/troff/n7.c
990
while (wp >= word) {
usr/src/cmd/truss/ramdata.h
52
uint32_t word[(NOFILES_MAX+31)/32];
usr/src/cmd/ttymon/tmparse.c
42
static char word[BUFSIZ];
usr/src/cmd/ttymon/tmparse.c
56
for (optr = word, *optr = '\0';
usr/src/cmd/ttymon/tmparse.c
71
if (optr < &word[BUFSIZ])
usr/src/cmd/ttymon/tmparse.c
83
return (word);
usr/src/cmd/unpack/unpack.c
493
short word;
usr/src/cmd/unpack/unpack.c
539
word = getwdsize();
usr/src/cmd/unpack/unpack.c
543
if (word == 0 && is_eof && origsize > 0) {
usr/src/cmd/unpack/unpack.c
551
tp += Tree[tp + (word < 0)];
usr/src/cmd/unpack/unpack.c
552
word <<= 1;
usr/src/cmd/vi/port/ex_vops3.c
99
while (cnt > 0 && word(f, cnt))
usr/src/cmd/zdb/zdb.c
820
uint64_t word, entry_id = 0;
usr/src/cmd/zdb/zdb.c
822
offset += sizeof (word)) {
usr/src/cmd/zdb/zdb.c
825
sizeof (word), &word, DMU_READ_PREFETCH));
usr/src/cmd/zdb/zdb.c
827
if (sm_entry_is_debug(word)) {
usr/src/cmd/zdb/zdb.c
830
ddata[SM_DEBUG_ACTION_DECODE(word)],
usr/src/cmd/zdb/zdb.c
831
(u_longlong_t)SM_DEBUG_TXG_DECODE(word),
usr/src/cmd/zdb/zdb.c
832
(u_longlong_t)SM_DEBUG_SYNCPASS_DECODE(word));
usr/src/cmd/zdb/zdb.c
841
if (sm_entry_is_single_word(word)) {
usr/src/cmd/zdb/zdb.c
842
entry_type = (SM_TYPE_DECODE(word) == SM_ALLOC) ?
usr/src/cmd/zdb/zdb.c
844
entry_off = (SM_OFFSET_DECODE(word) << mapshift) +
usr/src/cmd/zdb/zdb.c
846
entry_run = SM_RUN_DECODE(word) << mapshift;
usr/src/cmd/zdb/zdb.c
850
ASSERT(sm_entry_is_double_word(word));
usr/src/cmd/zdb/zdb.c
860
entry_run = SM2_RUN_DECODE(word) << mapshift;
usr/src/cmd/zdb/zdb.c
861
entry_vdev = SM2_VDEV_DECODE(word);
usr/src/cmd/zic/zic.c
3657
itsabbr(register const char *abbr, register const char *word)
usr/src/cmd/zic/zic.c
3659
if (lowerit(*abbr) != lowerit(*word))
usr/src/cmd/zic/zic.c
3661
++word;
usr/src/cmd/zic/zic.c
3664
if (*word == '\0')
usr/src/cmd/zic/zic.c
3666
} while (lowerit(*word++) != lowerit(*abbr));
usr/src/cmd/zic/zic.c
3673
ciprefix(char const *abbr, char const *word)
usr/src/cmd/zic/zic.c
3678
while (lowerit(*abbr++) == lowerit(*word++));
usr/src/cmd/zic/zic.c
3684
byword(const char *word, const struct lookup *table)
usr/src/cmd/zic/zic.c
3689
if (word == NULL || table == NULL)
usr/src/cmd/zic/zic.c
3695
if (table == lasts && ciprefix("last", word) && word[4]) {
usr/src/cmd/zic/zic.c
3696
if (word[4] == '-')
usr/src/cmd/zic/zic.c
3698
word, word + 5);
usr/src/cmd/zic/zic.c
3700
word += 4;
usr/src/cmd/zic/zic.c
3709
if (ciequal(word, lp->l_word))
usr/src/cmd/zic/zic.c
3716
if (ciprefix(word, lp->l_word)) {
usr/src/cmd/zic/zic.c
3726
if (itsabbr(word, lp->l_word)) {
usr/src/cmd/zic/zic.c
3728
warning(_("\"%s\" is ambiguous in pre-2017c zic"), word);
usr/src/common/bignum/bignumimpl.c
312
BIG_CHUNK_TYPE word;
usr/src/common/bignum/bignumimpl.c
326
word = knwordp[0];
usr/src/common/bignum/bignumimpl.c
328
word = (word << BITSINBYTE) + knwordp[j];
usr/src/common/bignum/bignumimpl.c
330
bn->value[i] = word;
usr/src/common/bignum/bignumimpl.c
333
word = kn[0];
usr/src/common/bignum/bignumimpl.c
334
for (i = 1; i < offs; i++) word = (word << BITSINBYTE) + kn[i];
usr/src/common/bignum/bignumimpl.c
335
bn->value[bn->len++] = word;
usr/src/common/bignum/bignumimpl.c
355
BIG_CHUNK_TYPE word;
usr/src/common/bignum/bignumimpl.c
359
word = bn->value[i];
usr/src/common/bignum/bignumimpl.c
362
word & 0xff;
usr/src/common/bignum/bignumimpl.c
363
word = word >> BITSINBYTE;
usr/src/common/bignum/bignumimpl.c
368
word = bn->value[slen / BIGNUM_WORDSIZE];
usr/src/common/bignum/bignumimpl.c
370
kn[i - 1] = word & 0xff;
usr/src/common/bignum/bignumimpl.c
371
word = word >> BITSINBYTE;
usr/src/common/bignum/bignumimpl.c
376
word = bn->value[i];
usr/src/common/bignum/bignumimpl.c
379
word & 0xff;
usr/src/common/bignum/bignumimpl.c
380
word = word >> BITSINBYTE;
usr/src/common/crypto/blowfish/blowfish_impl.c
357
#define F(word) \
usr/src/common/crypto/blowfish/blowfish_impl.c
358
(((S[(word >> 24) & 0xff] + S[256 + ((word >> 16) & 0xff)]) ^ \
usr/src/common/crypto/blowfish/blowfish_impl.c
359
S[512 + ((word >> 8) & 0xff)]) + S[768 + (word & 0xff)])
usr/src/common/ficl/dictionary.c
207
ficlWord *word = ficlDictionaryAppendWord(dictionary, name,
usr/src/common/ficl/dictionary.c
210
if (word != NULL)
usr/src/common/ficl/dictionary.c
212
return (word);
usr/src/common/ficl/dictionary.c
219
ficlWord *word = ficlDictionaryAppendWord(dictionary, name,
usr/src/common/ficl/dictionary.c
222
if (word != NULL) {
usr/src/common/ficl/dictionary.c
228
return (word);
usr/src/common/ficl/dictionary.c
255
ficlWord *word = ficlDictionaryLookup(dictionary, name);
usr/src/common/ficl/dictionary.c
258
if (word == NULL) {
usr/src/common/ficl/dictionary.c
259
word = ficlDictionaryAppendConstantInstruction(dictionary,
usr/src/common/ficl/dictionary.c
262
word->code = (ficlPrimitive)instruction;
usr/src/common/ficl/dictionary.c
264
word->param[0] = c;
usr/src/common/ficl/dictionary.c
266
return (word);
usr/src/common/ficl/dictionary.c
283
ficlWord *word;
usr/src/common/ficl/dictionary.c
284
word = ficlDictionaryLookup(dictionary, s);
usr/src/common/ficl/dictionary.c
291
if ((word != NULL) &&
usr/src/common/ficl/dictionary.c
292
((((ficlInstruction)word->code) == ficlInstruction2ConstantParen) ||
usr/src/common/ficl/dictionary.c
293
(((ficlInstruction)word->code) == ficlInstructionF2ConstantParen)))
usr/src/common/ficl/dictionary.c
295
if ((word != NULL) &&
usr/src/common/ficl/dictionary.c
296
((((ficlInstruction)word->code) == ficlInstruction2ConstantParen)))
usr/src/common/ficl/dictionary.c
299
word->code = (ficlPrimitive)instruction;
usr/src/common/ficl/dictionary.c
300
word->param[0].u = FICL_2UNSIGNED_GET_HIGH(value);
usr/src/common/ficl/dictionary.c
301
word->param[1].u = FICL_2UNSIGNED_GET_LOW(value);
usr/src/common/ficl/dictionary.c
303
word = ficlDictionaryAppend2ConstantInstruction(dictionary, s,
usr/src/common/ficl/dictionary.c
307
return (word);
usr/src/common/ficl/dictionary.c
346
ficlWord *word;
usr/src/common/ficl/dictionary.c
355
word = (ficlWord *)dictionary->here;
usr/src/common/ficl/dictionary.c
356
dictionary->smudge = word;
usr/src/common/ficl/dictionary.c
357
word->hash = ficlHashCode(name);
usr/src/common/ficl/dictionary.c
358
word->code = code;
usr/src/common/ficl/dictionary.c
359
word->semiParen = ficlInstructionSemiParen;
usr/src/common/ficl/dictionary.c
360
word->flags = (ficlUnsigned8)(flags | FICL_WORD_SMUDGED);
usr/src/common/ficl/dictionary.c
361
word->length = length;
usr/src/common/ficl/dictionary.c
362
word->name = nameCopy;
usr/src/common/ficl/dictionary.c
367
dictionary->here = word->param;
usr/src/common/ficl/dictionary.c
373
return (word);
usr/src/common/ficl/dictionary.c
396
ficlWord *word;
usr/src/common/ficl/dictionary.c
399
word = ficlDictionaryLookup(dictionary, s);
usr/src/common/ficl/dictionary.c
401
if (word == NULL) {
usr/src/common/ficl/dictionary.c
402
word = ficlDictionaryAppendPrimitive(dictionary, name,
usr/src/common/ficl/dictionary.c
405
word->code = (ficlPrimitive)code;
usr/src/common/ficl/dictionary.c
406
word->flags = flags;
usr/src/common/ficl/dictionary.c
408
return (word);
usr/src/common/ficl/dictionary.c
542
ficlDictionaryIsAWord(ficlDictionary *dictionary, ficlWord *word)
usr/src/common/ficl/dictionary.c
544
if ((((ficlInstruction)word) > ficlInstructionInvalid) &&
usr/src/common/ficl/dictionary.c
545
(((ficlInstruction)word) < ficlInstructionLast))
usr/src/common/ficl/dictionary.c
548
if (!ficlDictionaryIncludes(dictionary, word))
usr/src/common/ficl/dictionary.c
551
if (!ficlDictionaryIncludes(dictionary, word->name))
usr/src/common/ficl/dictionary.c
554
if ((word->link != NULL) &&
usr/src/common/ficl/dictionary.c
555
!ficlDictionaryIncludes(dictionary, word->link))
usr/src/common/ficl/dictionary.c
558
if ((word->length <= 0) || (word->name[word->length] != '\0'))
usr/src/common/ficl/dictionary.c
561
if (strlen(word->name) != word->length)
usr/src/common/ficl/dictionary.c
580
ficlWord *word;
usr/src/common/ficl/dictionary.c
587
word = (ficlWord *)
usr/src/common/ficl/dictionary.c
589
if (ficlDictionaryIsAWord(dictionary, word))
usr/src/common/ficl/dictionary.c
590
return (word);
usr/src/common/ficl/dictionary.c
617
ficlWord *word = NULL;
usr/src/common/ficl/dictionary.c
626
for (i = (int)dictionary->wordlistCount - 1; (i >= 0) && (!word); --i) {
usr/src/common/ficl/dictionary.c
628
word = ficlHashLookup(hash, name, hashCode);
usr/src/common/ficl/dictionary.c
632
return (word);
usr/src/common/ficl/dictionary.c
658
ficlDictionarySee(ficlDictionary *dictionary, ficlWord *word,
usr/src/common/ficl/dictionary.c
662
ficlCell *cell = word->param;
usr/src/common/ficl/dictionary.c
667
ficlWord *word = (ficlWord *)(cell->p);
usr/src/common/ficl/dictionary.c
676
if (ficlDictionaryIsAWord(dictionary, word)) {
usr/src/common/ficl/dictionary.c
677
ficlWordKind kind = ficlWordClassify(word);
usr/src/common/ficl/dictionary.c
683
ficlDictionaryInstructionNames[(long)word],
usr/src/common/ficl/dictionary.c
684
(long)word);
usr/src/common/ficl/dictionary.c
690
ficlDictionaryInstructionNames[(long)word],
usr/src/common/ficl/dictionary.c
691
(long)word, (long)c.i, (unsigned long)c.u);
usr/src/common/ficl/dictionary.c
696
word->name,
usr/src/common/ficl/dictionary.c
698
(long)word->code], (long)word->code);
usr/src/common/ficl/dictionary.c
704
ficlWord *word = (ficlWord *)c.p;
usr/src/common/ficl/dictionary.c
707
word->length, word->name,
usr/src/common/ficl/dictionary.c
77
ficlWord *word;
usr/src/common/ficl/dictionary.c
786
(void) sprintf(trace, "%.*s", word->length,
usr/src/common/ficl/dictionary.c
787
word->name);
usr/src/common/ficl/dictionary.c
79
word = dictionary->smudge;
usr/src/common/ficl/dictionary.c
81
if (word->flags & FICL_WORD_SMUDGED)
usr/src/common/ficl/dictionary.c
82
dictionary->here = (ficlCell *)word->name;
usr/src/common/ficl/dictionary.c
860
ficlWord *word = dictionary->smudge;
usr/src/common/ficl/dictionary.c
864
FICL_DICTIONARY_ASSERT(dictionary, word);
usr/src/common/ficl/dictionary.c
869
if (word->length > 0)
usr/src/common/ficl/dictionary.c
870
ficlHashInsertWord(hash, word);
usr/src/common/ficl/dictionary.c
871
word->flags &= ~(FICL_WORD_SMUDGED);
usr/src/common/ficl/extras.c
128
ficlWord *word;
usr/src/common/ficl/extras.c
145
word = hash->table[i];
usr/src/common/ficl/extras.c
146
while (word) {
usr/src/common/ficl/extras.c
148
word = word->link;
usr/src/common/ficl/extras.c
153
word = hash->table[i];
usr/src/common/ficl/extras.c
154
while (word) {
usr/src/common/ficl/extras.c
155
(void) fprintf(f, "\t%s", word->name);
usr/src/common/ficl/extras.c
156
word = word->link;
usr/src/common/ficl/ficl.h
1064
FICL_PLATFORM_EXTERN void ficlVmInnerLoop(ficlVm *vm, ficlWord *word);
usr/src/common/ficl/ficl.h
1278
FICL_PLATFORM_EXTERN int ficlWordIsImmediate(ficlWord *word);
usr/src/common/ficl/ficl.h
1279
FICL_PLATFORM_EXTERN int ficlWordIsCompileOnly(ficlWord *word);
usr/src/common/ficl/ficl.h
1331
FICL_PLATFORM_EXTERN void ficlHashInsertWord(ficlHash *hash, ficlWord *word);
usr/src/common/ficl/ficl.h
1498
ficlDictionaryIsAWord(ficlDictionary *dictionary, ficlWord *word);
usr/src/common/ficl/ficl.h
1500
ficlDictionarySee(ficlDictionary *dictionary, ficlWord *word,
usr/src/common/ficl/ficl.h
1728
ficlWord *word); /* ficl.c */
usr/src/common/ficl/ficl.h
1770
ficlWordKind ficlWordClassify(ficlWord *word);
usr/src/common/ficl/hash.c
100
ficlWord *word;
usr/src/common/ficl/hash.c
112
for (word = hash->table[hashIdx]; word; word = word->link) {
usr/src/common/ficl/hash.c
113
if ((word->length == name.length) &&
usr/src/common/ficl/hash.c
114
(!ficlStrincmp(name.text, word->name, nCmp)))
usr/src/common/ficl/hash.c
115
return (word);
usr/src/common/ficl/hash.c
117
FICL_ASSERT_PHASH(hash, word != word->link);
usr/src/common/ficl/hash.c
70
ficlHashInsertWord(ficlHash *hash, ficlWord *word)
usr/src/common/ficl/hash.c
75
FICL_ASSERT_PHASH(hash, word);
usr/src/common/ficl/hash.c
80
pList = hash->table + (word->hash % hash->size);
usr/src/common/ficl/hash.c
83
word->link = *pList;
usr/src/common/ficl/hash.c
84
*pList = word;
usr/src/common/ficl/prefix.c
106
ficlVmExecuteWord(vm, word);
usr/src/common/ficl/prefix.c
110
word = word->link;
usr/src/common/ficl/prefix.c
73
ficlWord *word = ficlSystemLookup(vm->callback.system, list_name);
usr/src/common/ficl/prefix.c
80
if (!word)
usr/src/common/ficl/prefix.c
83
hash = (ficlHash *)(word->param[0].p);
usr/src/common/ficl/prefix.c
89
word = hash->table[i];
usr/src/common/ficl/prefix.c
90
while (word != NULL) {
usr/src/common/ficl/prefix.c
92
n = word->length;
usr/src/common/ficl/prefix.c
99
word->name, (ficlUnsigned)n)) {
usr/src/common/ficl/primitives.c
1177
ficlWord *word = NULL;
usr/src/common/ficl/primitives.c
1182
word = ficlDictionaryLookup(ficlVmGetDictionary(vm), name);
usr/src/common/ficl/primitives.c
1183
if (!word)
usr/src/common/ficl/primitives.c
1187
ficlStackPushPointer(vm->dataStack, word);
usr/src/common/ficl/primitives.c
1207
ficlWord *word;
usr/src/common/ficl/primitives.c
1214
word = ficlStackGetTop(vm->dataStack).p;
usr/src/common/ficl/primitives.c
1215
if (ficlWordIsImmediate(word)) {
usr/src/common/ficl/primitives.c
1233
ficlWord *word;
usr/src/common/ficl/primitives.c
1237
word = ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/primitives.c
1238
ficlVmExecuteWord(vm, word);
usr/src/common/ficl/primitives.c
1272
ficlWord *word = (ficlWord *)ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/primitives.c
1274
flag = ((word != NULL) && (word->flags & FICL_WORD_OBJECT))?
usr/src/common/ficl/primitives.c
1449
ficlWord *word;
usr/src/common/ficl/primitives.c
1452
word = ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/primitives.c
1453
ficlStackPushPointer(vm->dataStack, word->param + 1);
usr/src/common/ficl/primitives.c
1478
ficlWord *word;
usr/src/common/ficl/primitives.c
1482
word = ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/primitives.c
1483
ficlStackPushPointer(vm->dataStack, word->name);
usr/src/common/ficl/primitives.c
1484
ficlStackPushUnsigned(vm->dataStack, word->length);
usr/src/common/ficl/primitives.c
1969
ficlWord *word;
usr/src/common/ficl/primitives.c
1978
word = ficlDictionaryLookup(environment, name);
usr/src/common/ficl/primitives.c
1980
if (word != NULL) {
usr/src/common/ficl/primitives.c
1981
ficlVmExecuteWord(vm, word);
usr/src/common/ficl/primitives.c
2181
ficlWord *word;
usr/src/common/ficl/primitives.c
2183
word = ficlDictionaryLookup(ficlVmGetDictionary(vm), name);
usr/src/common/ficl/primitives.c
2184
if (word) {
usr/src/common/ficl/primitives.c
2185
ficlStackPushPointer(vm->dataStack, word);
usr/src/common/ficl/primitives.c
2187
(ficlWordIsImmediate(word) ? 1 : -1));
usr/src/common/ficl/primitives.c
2296
ficlWord *word;
usr/src/common/ficl/primitives.c
2303
word = ficlDictionaryAppendWord(dictionary, name,
usr/src/common/ficl/primitives.c
2307
ficlStackPushPointer(vm->dataStack, word);
usr/src/common/ficl/primitives.c
2566
ficlWord *word;
usr/src/common/ficl/primitives.c
2582
word = ficlDictionaryLookup(locals, name);
usr/src/common/ficl/primitives.c
2583
if (!word)
usr/src/common/ficl/primitives.c
2586
if (word->code == ficlPrimitiveDoLocalIm) {
usr/src/common/ficl/primitives.c
2589
} else if (word->code == ficlPrimitiveDo2LocalIm) {
usr/src/common/ficl/primitives.c
2595
else if (word->code == ficlPrimitiveDoFLocalIm) {
usr/src/common/ficl/primitives.c
2599
} else if (word->code == ficlPrimitiveDoF2LocalIm) {
usr/src/common/ficl/primitives.c
2611
nLocal = word->param[0].i;
usr/src/common/ficl/primitives.c
2640
word = ficlDictionaryLookup(dictionary, name);
usr/src/common/ficl/primitives.c
2641
if (!word)
usr/src/common/ficl/primitives.c
2646
switch ((ficlInstruction)word->code) {
usr/src/common/ficl/primitives.c
2678
word->param[0] = ficlStackPop(stack);
usr/src/common/ficl/primitives.c
2680
word->param[1] = ficlStackPop(stack);
usr/src/common/ficl/primitives.c
2683
ficlStackPushPointer(vm->dataStack, &word->param[0]);
usr/src/common/ficl/primitives.c
2911
ficlWord *word;
usr/src/common/ficl/primitives.c
2925
word = ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/primitives.c
2962
ficlVmExecuteWord(vm, word);
usr/src/common/ficl/primitives.c
857
ficlWord *word = system->parseList[i];
usr/src/common/ficl/primitives.c
859
if (word == NULL)
usr/src/common/ficl/primitives.c
862
if (word->code == ficlPrimitiveParseStepParen) {
usr/src/common/ficl/primitives.c
864
pStep = (ficlParseStep)(word->param->fn);
usr/src/common/ficl/primitives.c
872
(void) ficlVmExecuteXT(vm, word);
usr/src/common/ficl/primitives.c
907
ficlWord *word = vm->runningWord;
usr/src/common/ficl/primitives.c
908
ficlParseStep pStep = (ficlParseStep)(word->param->fn);
usr/src/common/ficl/search.c
135
ficlWord *word;
usr/src/common/ficl/search.c
143
word = ficlHashLookup(hash, name, hashCode);
usr/src/common/ficl/search.c
146
if (word) {
usr/src/common/ficl/search.c
147
ficlStackPushPointer(vm->dataStack, word);
usr/src/common/ficl/search.c
149
(ficlWordIsImmediate(word) ? 1 : -1));
usr/src/common/ficl/system.c
292
ficlSystemAddParseStep(ficlSystem *system, ficlWord *word)
usr/src/common/ficl/system.c
297
system->parseList[i] = word;
usr/src/common/ficl/system.c
316
ficlWord *word;
usr/src/common/ficl/system.c
319
word = ficlDictionaryAppendPrimitive(dictionary, name,
usr/src/common/ficl/system.c
324
(void) ficlSystemAddParseStep(system, word);
usr/src/common/ficl/system.c
431
ficlWord *word = NULL;
usr/src/common/ficl/system.c
444
word = ficlHashLookup(hash, name, hashCode);
usr/src/common/ficl/system.c
450
for (i = (int)dictionary->wordlistCount - 1; (i >= 0) && (!word); --i) {
usr/src/common/ficl/system.c
452
word = ficlHashLookup(hash, name, hashCode);
usr/src/common/ficl/system.c
456
return (word);
usr/src/common/ficl/tools.c
117
isPrimitive(ficlWord *word)
usr/src/common/ficl/tools.c
119
ficlWordKind wk = ficlWordClassify(word);
usr/src/common/ficl/tools.c
144
ficlWord *word;
usr/src/common/ficl/tools.c
162
word = hash[i];
usr/src/common/ficl/tools.c
164
while (word) {
usr/src/common/ficl/tools.c
167
word = word->link;
usr/src/common/ficl/tools.c
207
ficlWord *word;
usr/src/common/ficl/tools.c
210
word = (ficlWord *)ficlStackPopPointer(vm->dataStack);
usr/src/common/ficl/tools.c
211
kind = ficlWordClassify(word);
usr/src/common/ficl/tools.c
215
(void) sprintf(vm->pad, ": %.*s\n", word->length, word->name);
usr/src/common/ficl/tools.c
217
ficlDictionarySee(ficlVmGetDictionary(vm), word,
usr/src/common/ficl/tools.c
223
(ficlWord *)word->param->p, &(vm->callback));
usr/src/common/ficl/tools.c
230
(long)word->param->i, (long unsigned)word->param->u);
usr/src/common/ficl/tools.c
236
(long)word->param->i, (long unsigned)word->param->u);
usr/src/common/ficl/tools.c
242
(long)word->param->i, (long unsigned)word->param->u);
usr/src/common/ficl/tools.c
247
(long)word->param[1].i, (long)word->param->i,
usr/src/common/ficl/tools.c
248
(long unsigned)word->param[1].u,
usr/src/common/ficl/tools.c
249
(long unsigned)word->param->u);
usr/src/common/ficl/tools.c
254
(void) sprintf(vm->pad, "%.*s is a primitive\n", word->length,
usr/src/common/ficl/tools.c
255
word->name);
usr/src/common/ficl/tools.c
260
if (word->flags & FICL_WORD_IMMEDIATE) {
usr/src/common/ficl/tools.c
264
if (word->flags & FICL_WORD_COMPILE_ONLY) {
usr/src/common/ficl/tools.c
339
ficlWord *word;
usr/src/common/ficl/tools.c
344
word = *vm->ip;
usr/src/common/ficl/tools.c
345
kind = ficlWordClassify(word);
usr/src/common/ficl/tools.c
387
ficlWord *word;
usr/src/common/ficl/tools.c
413
word = vm->callback.system->breakpoint.oldXT;
usr/src/common/ficl/tools.c
415
if ((((ficlInstruction)word) > ficlInstructionInvalid) &&
usr/src/common/ficl/tools.c
416
(((ficlInstruction)word) < ficlInstructionLast))
usr/src/common/ficl/tools.c
418
ficlDictionaryInstructionNames[(long)word],
usr/src/common/ficl/tools.c
419
(long)word);
usr/src/common/ficl/tools.c
421
(void) sprintf(vm->pad, "next: %s\n", word->name);
usr/src/common/ficl/tools.c
422
if (strcmp(word->name, "interpret") == 0)
usr/src/common/ficl/tools.c
649
ficlWord *word;
usr/src/common/ficl/tools.c
650
word = ficlDictionaryFindEnclosingWord(context->dictionary,
usr/src/common/ficl/tools.c
652
if (word) {
usr/src/common/ficl/tools.c
653
int offset = (ficlCell *)cell->p - &word->param[0];
usr/src/common/ficl/tools.c
655
word->name, offset);
usr/src/common/ficl/tools.c
845
ficlWord *word;
usr/src/common/ficl/tools.c
851
for (word = hash->table[i]; word != NULL;
usr/src/common/ficl/tools.c
852
word = word->link, counter++) {
usr/src/common/ficl/tools.c
853
(void) sprintf(vm->pad, "%s\n", word->name);
usr/src/common/ficl/word.c
16
ficlWordIsCompileOnly(ficlWord *word)
usr/src/common/ficl/word.c
18
return ((word != NULL) && (word->flags & FICL_WORD_COMPILE_ONLY));
usr/src/common/ficl/word.c
28
ficlWordClassify(ficlWord *word)
usr/src/common/ficl/word.c
34
if ((((ficlInstruction)word) > ficlInstructionInvalid) &&
usr/src/common/ficl/word.c
35
(((ficlInstruction)word) < ficlInstructionLast)) {
usr/src/common/ficl/word.c
36
i = (ficlInstruction)word;
usr/src/common/ficl/word.c
41
code = word->code;
usr/src/common/ficl/word.c
7
ficlWordIsImmediate(ficlWord *word)
usr/src/common/ficl/word.c
9
return ((word != NULL) && (word->flags & FICL_WORD_IMMEDIATE));
usr/src/grub/grub-0.97/stage2/disk_io.c
151
grub_log2 (unsigned long word)
usr/src/grub/grub-0.97/stage2/disk_io.c
154
: "=r" (word)
usr/src/grub/grub-0.97/stage2/disk_io.c
155
: "r" (word));
usr/src/grub/grub-0.97/stage2/disk_io.c
156
return word;
usr/src/grub/grub-0.97/stage2/fsys_ext2fs.c
291
ffz (unsigned long word)
usr/src/grub/grub-0.97/stage2/fsys_ext2fs.c
294
: "=r" (word)
usr/src/grub/grub-0.97/stage2/fsys_ext2fs.c
295
: "r" (~word));
usr/src/grub/grub-0.97/stage2/fsys_ext2fs.c
296
return word;
usr/src/grub/grub-0.97/stage2/fsys_fat.c
58
grub_log2 (unsigned long word)
usr/src/grub/grub-0.97/stage2/fsys_fat.c
61
: "=r" (word)
usr/src/grub/grub-0.97/stage2/fsys_fat.c
62
: "r" (word));
usr/src/grub/grub-0.97/stage2/fsys_fat.c
63
return word;
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
60
grub_log2 (unsigned long word)
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
63
: "=r" (word)
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
64
: "r" (word));
usr/src/grub/grub-0.97/stage2/fsys_iso9660.c
65
return word;
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
370
grub_log2 (unsigned long word)
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
373
: "=r" (word)
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
374
: "r" (word));
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
375
return word;
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
380
is_power_of_two (unsigned long word)
usr/src/grub/grub-0.97/stage2/fsys_reiserfs.c
382
return (word & -word) == word;
usr/src/lib/iconv_modules/ko/common/common_han.h
38
} word;
usr/src/lib/iconv_modules/ko/common/common_han.h
83
} word;
usr/src/lib/iconv_modules/ko/common/euc_to_utf_sub.c
76
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/ko/common/njh_to_utf_sub.c
77
node.code = njh_code.word.low;
usr/src/lib/iconv_modules/ko/common/uhang_to_utf_sub.c
81
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/ko/common/unihan_to_UCS_sub.c
73
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/ko/common/utf_to_euc_sub.c
72
wansung.word.low = node_ptr->code; /* Success */
usr/src/lib/iconv_modules/ko/common/utf_to_euc_sub.c
79
wansung.word.low = 0x3f3f;
usr/src/lib/iconv_modules/ko/common/utf_to_njh_sub.c
99
johap.word.low = node_ptr->code; /* Success */
usr/src/lib/iconv_modules/ko/common/utf_to_uhang_sub.c
96
uhang.word.low = node_ptr->code; /* Success */
usr/src/lib/iconv_modules/th_TH/common/838_to_874_sub.c
79
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/th_TH/common/874_to_838_sub.c
79
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/th_TH/common/common_thai.h
38
} word;
usr/src/lib/iconv_modules/th_TH/common/common_thai.h
76
} word;
usr/src/lib/iconv_modules/th_TH/common/euc_to_utf_sub.c
71
node.code = euc_code.word.low;
usr/src/lib/iconv_modules/th_TH/common/utf_to_euc_sub.c
72
eucTH.word.low = node_ptr->code; /* Success */
usr/src/lib/krb5/kadm5/server_internal.h
106
int find_word(const char *word);
usr/src/lib/krb5/kadm5/srv/server_dict.c
182
find_word(const char *word)
usr/src/lib/krb5/kadm5/srv/server_dict.c
188
if ((value = (char **) bsearch(&word, word_list, word_count, sizeof(char *),
usr/src/lib/libc/port/regex/wordexp.c
100
wordexp(const char *word, wordexp_t *wp, int flags)
usr/src/lib/libc/port/regex/wordexp.c
210
bufflen = 165 + strlen(word);
usr/src/lib/libc/port/regex/wordexp.c
246
"print -f '%%s\\000' -- %s", word);
usr/src/lib/libdtrace/common/dt_regset.c
108
ulong_t word = drp->dr_bitmap[wx];
usr/src/lib/libdtrace/common/dt_regset.c
113
if ((word & bit) == 0) {
usr/src/lib/libldap5/sources/ldap/common/getfilter.c
514
char *word, **words;
usr/src/lib/libldap5/sources/ldap/common/getfilter.c
524
word = ldap_utf8strtok_r( str, delims, &lasts );
usr/src/lib/libldap5/sources/ldap/common/getfilter.c
525
while ( word != NULL ) {
usr/src/lib/libldap5/sources/ldap/common/getfilter.c
531
words[ count ] = word;
usr/src/lib/libldap5/sources/ldap/common/getfilter.c
533
word = ldap_utf8strtok_r( NULL, delims, &lasts );
usr/src/stand/lib/fs/nfs/getdents4.c
150
bitmap1.word = 0;
usr/src/stand/lib/fs/nfs/getdents4.c
153
readdir_args.rd_attr_req.b_bitmap_val[0] = bitmap1.word;
usr/src/stand/lib/fs/nfs/nfs4_xdr.c
170
bitmap1.word = objp->gc_retattr.b_bitmap_val[0];
usr/src/stand/lib/fs/nfs/nfs4_xdr.c
171
bitmap2.word = objp->gc_retattr.b_bitmap_val[1];
usr/src/stand/lib/fs/nfs/nfs4_xdr.c
176
bitmap1.word, bitmap2.word);
usr/src/stand/lib/fs/nfs/nfs4_xdr.c
184
if (bitmap1.word > 0) {
usr/src/stand/lib/fs/nfs/nfs4_xdr.c
233
if (bitmap2.word > 0) {
usr/src/stand/lib/fs/nfs/nfs4ops.c
211
bitmap1.word = 0;
usr/src/stand/lib/fs/nfs/nfs4ops.c
215
bitmap2.word = 0;
usr/src/stand/lib/fs/nfs/nfs4ops.c
222
getattrargs.ga_attr_req.b_bitmap_val[0] = bitmap1.word;
usr/src/stand/lib/fs/nfs/nfs4ops.c
223
getattrargs.ga_attr_req.b_bitmap_val[1] = bitmap2.word;
usr/src/stand/lib/fs/nfs/nfs4ops.c
431
bitmap1.word = 0;
usr/src/stand/lib/fs/nfs/nfs4ops.c
435
lookupargs.la_attr_req.b_bitmap_val[0] = bitmap1.word;
usr/src/stand/lib/fs/nfs/nfs4ops.c
533
bitmap1.word = 0;
usr/src/stand/lib/fs/nfs/nfs4ops.c
539
lookuppargs.la_attr_req.b_bitmap_val[0] = bitmap1.word;
usr/src/stand/lib/fs/nfs/nfs_inet.h
166
uint_t word;
usr/src/stand/lib/fs/nfs/nfs_inet.h
200
uint_t word;
usr/src/tools/cscope-fast/cgrep.c
1307
return (word(e, buf, pat));
usr/src/tools/cscope-fast/cgrep.c
1318
if (!word(e->l, (uchar_t *)NULL, pat))
usr/src/tools/cscope-fast/cgrep.c
1320
if (!word(e->r, (uchar_t *)NULL, pat))
usr/src/tools/cscope-fast/cgrep.c
267
static BOOL altlist(), word();
usr/src/tools/ctf/stabs/common/forth.c
293
char *word, *name, *c;
usr/src/tools/ctf/stabs/common/forth.c
319
word = "model_start ";
usr/src/tools/ctf/stabs/common/forth.c
320
if (strncmp(line, word, strlen(word)) == 0) {
usr/src/tools/ctf/stabs/common/forth.c
321
for (c = line + strlen(word); isspace(*c); c++);
usr/src/tools/ctf/stabs/common/forth.c
363
for (n = 1, word = strtok(line, " \t"); word != NULL;
usr/src/tools/ctf/stabs/common/forth.c
364
word = strtok(NULL, " \t"), n++) {
usr/src/tools/ctf/stabs/common/forth.c
366
name = word;
usr/src/tools/ctf/stabs/common/forth.c
368
format = word;
usr/src/tools/ctf/stabs/common/genassym.c
100
word = strtok(NULL, " \t"), n++) {
usr/src/tools/ctf/stabs/common/genassym.c
104
*(wret[n - 1]) = word;
usr/src/tools/ctf/stabs/common/genassym.c
93
char *word;
usr/src/tools/ctf/stabs/common/genassym.c
99
for (n = 1, word = strtok(line, " \t"); word != NULL;
usr/src/uts/common/fs/zfs/zap_micro.c
101
zfs_crc64_table[(h ^ word) & 0xFF];
usr/src/uts/common/fs/zfs/zap_micro.c
102
word >>= NBBY;
usr/src/uts/common/fs/zfs/zap_micro.c
97
uint64_t word = *wp;
usr/src/uts/common/fs/zfs/zio_compress.c
95
for (uint64_t *word = (uint64_t *)data; word < end; word++)
usr/src/uts/common/fs/zfs/zio_compress.c
96
if (*word != 0)
usr/src/uts/common/inet/ip/inet_ntop.c
382
int word;
usr/src/uts/common/inet/ip/inet_ntop.c
394
word = 8 - rem;
usr/src/uts/common/inet/ip/inet_ntop.c
396
v6outp->v6words_u[word] = v6buf.v6words_u[next];
usr/src/uts/common/inet/ip/inet_ntop.c
397
word++;
usr/src/uts/common/io/afe/afe.c
1000
uint16_t word = 0;
usr/src/uts/common/io/afe/afe.c
1034
word <<= 1;
usr/src/uts/common/io/afe/afe.c
1036
word |= 1;
usr/src/uts/common/io/afe/afe.c
1049
ptr = (uchar_t *)&word;
usr/src/uts/common/io/afe/afe.c
1058
uint16_t word;
usr/src/uts/common/io/afe/afe.c
1061
word = afe_readsromword(afep, romaddr + i);
usr/src/uts/common/io/afe/afe.c
1062
*ptr = word;
usr/src/uts/common/io/arn/arn_eeprom.c
312
uint16_t word;
usr/src/uts/common/io/arn/arn_eeprom.c
317
word = swab16(eep->baseEepHeader.length);
usr/src/uts/common/io/arn/arn_eeprom.c
318
eep->baseEepHeader.length = word;
usr/src/uts/common/io/arn/arn_eeprom.c
320
word = swab16(eep->baseEepHeader.checksum);
usr/src/uts/common/io/arn/arn_eeprom.c
321
eep->baseEepHeader.checksum = word;
usr/src/uts/common/io/arn/arn_eeprom.c
323
word = swab16(eep->baseEepHeader.version);
usr/src/uts/common/io/arn/arn_eeprom.c
324
eep->baseEepHeader.version = word;
usr/src/uts/common/io/arn/arn_eeprom.c
326
word = swab16(eep->baseEepHeader.regDmn[0]);
usr/src/uts/common/io/arn/arn_eeprom.c
327
eep->baseEepHeader.regDmn[0] = word;
usr/src/uts/common/io/arn/arn_eeprom.c
329
word = swab16(eep->baseEepHeader.regDmn[1]);
usr/src/uts/common/io/arn/arn_eeprom.c
330
eep->baseEepHeader.regDmn[1] = word;
usr/src/uts/common/io/arn/arn_eeprom.c
332
word = swab16(eep->baseEepHeader.rfSilent);
usr/src/uts/common/io/arn/arn_eeprom.c
333
eep->baseEepHeader.rfSilent = word;
usr/src/uts/common/io/arn/arn_eeprom.c
335
word = swab16(eep->baseEepHeader.blueToothOptions);
usr/src/uts/common/io/arn/arn_eeprom.c
336
eep->baseEepHeader.blueToothOptions = word;
usr/src/uts/common/io/arn/arn_eeprom.c
338
word = swab16(eep->baseEepHeader.deviceCap);
usr/src/uts/common/io/arn/arn_eeprom.c
339
eep->baseEepHeader.deviceCap = word;
usr/src/uts/common/io/arn/arn_eeprom.c
353
word = swab16(pModal->spurChans[i].spurChan);
usr/src/uts/common/io/arn/arn_eeprom.c
354
pModal->spurChans[i].spurChan = word;
usr/src/uts/common/io/arn/arn_eeprom.c
442
uint16_t word;
usr/src/uts/common/io/arn/arn_eeprom.c
447
word = swab16(eep->baseEepHeader.length);
usr/src/uts/common/io/arn/arn_eeprom.c
448
eep->baseEepHeader.length = word;
usr/src/uts/common/io/arn/arn_eeprom.c
450
word = swab16(eep->baseEepHeader.checksum);
usr/src/uts/common/io/arn/arn_eeprom.c
451
eep->baseEepHeader.checksum = word;
usr/src/uts/common/io/arn/arn_eeprom.c
453
word = swab16(eep->baseEepHeader.version);
usr/src/uts/common/io/arn/arn_eeprom.c
454
eep->baseEepHeader.version = word;
usr/src/uts/common/io/arn/arn_eeprom.c
456
word = swab16(eep->baseEepHeader.regDmn[0]);
usr/src/uts/common/io/arn/arn_eeprom.c
457
eep->baseEepHeader.regDmn[0] = word;
usr/src/uts/common/io/arn/arn_eeprom.c
459
word = swab16(eep->baseEepHeader.regDmn[1]);
usr/src/uts/common/io/arn/arn_eeprom.c
460
eep->baseEepHeader.regDmn[1] = word;
usr/src/uts/common/io/arn/arn_eeprom.c
462
word = swab16(eep->baseEepHeader.rfSilent);
usr/src/uts/common/io/arn/arn_eeprom.c
463
eep->baseEepHeader.rfSilent = word;
usr/src/uts/common/io/arn/arn_eeprom.c
465
word = swab16(eep->baseEepHeader.blueToothOptions);
usr/src/uts/common/io/arn/arn_eeprom.c
466
eep->baseEepHeader.blueToothOptions = word;
usr/src/uts/common/io/arn/arn_eeprom.c
468
word = swab16(eep->baseEepHeader.deviceCap);
usr/src/uts/common/io/arn/arn_eeprom.c
469
eep->baseEepHeader.deviceCap = word;
usr/src/uts/common/io/arn/arn_eeprom.c
480
word = swab16(eep->modalHeader.spurChans[i].spurChan);
usr/src/uts/common/io/arn/arn_eeprom.c
481
eep->modalHeader.spurChans[i].spurChan = word;
usr/src/uts/common/io/bge/bge_main2.c
1294
uint32_t word;
usr/src/uts/common/io/bge/bge_main2.c
1306
word = index/32u;
usr/src/uts/common/io/bge/bge_main2.c
1311
hash, index, word, bit, *refp));
usr/src/uts/common/io/bge/bge_main2.c
1329
bgep->mcast_hash[word] |= bit;
usr/src/uts/common/io/bge/bge_main2.c
1347
bgep->mcast_hash[word] &= ~bit;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
1003
last.word = le32_to_cpu(
usr/src/uts/common/io/cxgbe/common/t4_hw.c
1009
last.word = *buf;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
1013
(__force u32)cpu_to_le32(last.word));
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3459
u32 word;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3479
word = be32_to_cpu(rpl.niqflint_niq);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3480
pfres->niqflint = G_FW_PFVF_CMD_NIQFLINT(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3482
word = be32_to_cpu(rpl.type_to_neq);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3483
pfres->neq = G_FW_PFVF_CMD_NEQ(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3484
pfres->pmask = G_FW_PFVF_CMD_PMASK(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3486
word = be32_to_cpu(rpl.tc_to_nexactf);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3487
pfres->tc = G_FW_PFVF_CMD_TC(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3488
pfres->nvi = G_FW_PFVF_CMD_NVI(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3489
pfres->nexactf = G_FW_PFVF_CMD_NEXACTF(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3491
word = be32_to_cpu(rpl.r_caps_to_nethctrl);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3492
pfres->r_caps = G_FW_PFVF_CMD_R_CAPS(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3493
pfres->wx_caps = G_FW_PFVF_CMD_WX_CAPS(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
3494
pfres->nethctrl = G_FW_PFVF_CMD_NETHCTRL(word);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
6528
int ret, word;
usr/src/uts/common/io/cxgbe/common/t4_hw.c
6536
for (word = 0; word < 32; word++)
usr/src/uts/common/io/cxgbe/common/t4_hw.c
6537
tcb[word] = be32_to_cpu(raw_tcb[word]);
usr/src/uts/common/io/cxgbe/common/t4_hw.c
996
u32 word;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3651
u16 i, word;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3680
&word);
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3683
data[i] = word;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3882
u16 word = 0;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3890
ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
3895
*data = (u8)word;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4423
u16 word;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4445
word = NVM_COMPAT;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4449
word = NVM_FUTURE_INIT_WORD1;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4454
ret_val = hw->nvm.ops.read(hw, word, 1, &data);
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4460
ret_val = hw->nvm.ops.write(hw, word, 1, &data);
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4669
u16 word = (u16)data;
usr/src/uts/common/io/e1000api/e1000_ich8lan.c
4673
return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
usr/src/uts/common/io/e1000api/e1000_nvm.c
1025
&pba->word[0]);
usr/src/uts/common/io/e1000api/e1000_nvm.c
1030
eeprom_buf[NVM_PBA_OFFSET_0] = pba->word[0];
usr/src/uts/common/io/e1000api/e1000_nvm.c
1031
eeprom_buf[NVM_PBA_OFFSET_1] = pba->word[1];
usr/src/uts/common/io/e1000api/e1000_nvm.c
1037
if (pba->word[0] == NVM_PBA_PTR_GUARD) {
usr/src/uts/common/io/e1000api/e1000_nvm.c
1042
ret_val = e1000_write_nvm(hw, pba->word[1],
usr/src/uts/common/io/e1000api/e1000_nvm.c
1048
if (eeprom_buf_size > (u32)(pba->word[1] +
usr/src/uts/common/io/e1000api/e1000_nvm.c
1050
memcpy(&eeprom_buf[pba->word[1]],
usr/src/uts/common/io/e1000api/e1000_nvm.c
958
&pba->word[0]);
usr/src/uts/common/io/e1000api/e1000_nvm.c
963
pba->word[0] = eeprom_buf[NVM_PBA_OFFSET_0];
usr/src/uts/common/io/e1000api/e1000_nvm.c
964
pba->word[1] = eeprom_buf[NVM_PBA_OFFSET_1];
usr/src/uts/common/io/e1000api/e1000_nvm.c
970
if (pba->word[0] == NVM_PBA_PTR_GUARD) {
usr/src/uts/common/io/e1000api/e1000_nvm.c
984
ret_val = e1000_read_nvm(hw, pba->word[1],
usr/src/uts/common/io/e1000api/e1000_nvm.c
990
if (eeprom_buf_size > (u32)(pba->word[1] +
usr/src/uts/common/io/e1000api/e1000_nvm.c
993
&eeprom_buf[pba->word[1]],
usr/src/uts/common/io/e1000api/e1000_nvm.h
39
u16 word[2];
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6848
uint32_t *word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6850
word = (uint32_t *)rsp_buf;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6851
word[0] = ELS_CMD_LS_RJT;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6853
word[1] = 0;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_dfc.c
6854
ls_rjt = (LS_RJT *)&word[1];
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_event.c
807
uint32_t *word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_event.c
903
word = (uint32_t *)entry->bp;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_event.c
906
word[0] & 0xFFFFFF;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_event.c
909
aid = (fc_affected_id_t *)&word[2];
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
390
mydid.un.word = port->did;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
395
ndid.un.word = did;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
396
odid.un.word = ndlp->nlp_DID;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
400
ndid.un.word = ndlp->nlp_DID;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
401
odid.un.word = did;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
408
ndid.un.word = ndlp->nlp_DID;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
411
odid.un.word = ndlp->nlp_DID;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_node.c
412
ndid.un.word = did;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5068
uint32_t *word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5074
word = (uint32_t *)iocb;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5119
emlxs_state_xlate(iocb->ULPSTATUS), word[4], word[5],
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5120
word[6], word[7]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5295
word[4], word[5], word[6], word[7]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli3.c
5322
word[4], word[5], word[6], word[7], hba->state, hba->flag);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2172
db.word = 0;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2214
hba->sli.sli4.CQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2220
hba->sli.sli4.CQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2225
hba->sli.sli4.EQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2236
db.word = 0;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2270
hba->sli.sli4.CQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2275
hba->sli.sli4.CQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2280
hba->sli.sli4.CQDB_reg_addr, db.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2291
rqdb.word = 0;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2298
hba->sli.sli4.RQDB_reg_addr, rqdb.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2303
hba->sli.sli4.RQDB_reg_addr, rqdb.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
2308
hba->sli.sli4.RQDB_reg_addr, rqdb.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
5246
eqe.word = *ptr;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
5247
eqe.word = BE_SWAP32(eqe.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
5249
if ((eqe.word & EQE_VALID) == eq->qe_valid) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7142
cq_entry.word[3] = BE_SWAP32(cqe->word[3]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7143
if (((cq_entry.word[3]>>31) & 0x01) != cq->qe_valid) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7151
cqe->word[0], cqe->word[1],
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7152
cqe->word[2], cqe->word[3],
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7159
cq_entry.word[2] = BE_SWAP32(cqe->word[2]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7160
cq_entry.word[1] = BE_SWAP32(cqe->word[1]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7161
cq_entry.word[0] = BE_SWAP32(cqe->word[0]);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7169
cqe->word[3] &= BE_SWAP32(CQE_VALID);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7171
cqe->word[3] = 0;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7224
cq_entry.cqCmplEntry.Code, cq_entry.word[0],
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7225
cq_entry.word[1], cq_entry.word[2],
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7226
cq_entry.word[3], cq->host_index,
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7279
eqe.word = *ptr;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7280
eqe.word = BE_SWAP32(eqe.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7282
if ((eqe.word & EQE_VALID) != eq->qe_valid) {
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7288
eqe.word, eq->qe_valid);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7296
"EQE00: %08x", eqe.word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7667
uint32_t word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7911
word = PADDR_HI(phys);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7912
rqe->AddrHi = BE_SWAP32(word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7914
word = PADDR_LO(phys);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c
7915
rqe->AddrLo = BE_SWAP32(word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12326
uint32_t word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12335
word = *wptr;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12336
*wptr++ = SWAP32(word);
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12347
uint32_t word;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12358
word = *sptr++;
usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_solaris.c
12359
*dptr++ = SWAP32(word);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
777
volatile uint16_t word;
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
784
for (word = 0; word < 8; word++) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
814
word = 0;
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
815
while ((word & NV_DATA_IN) == 0) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
817
word = RD16_IO_REG(ha, nvram);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
843
word = 0;
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
844
while ((word & NV_DATA_IN) == 0) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_ioctl.c
846
word = RD16_IO_REG(ha, nvram);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
770
uint64_t off8, off0[2], val, mem_crb, word[2] = {0, 0};
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
836
word[i] |= ((uint64_t)temp << (32 * (k & 1)));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
850
val = word[0];
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
852
val = ((word[0] >> (off0[0] * 8)) & (~(~0ULL << (sz[0] * 8)))) |
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
853
((word[1] & (~(~0ULL << (sz[1] * 8)))) << (sz[0] * 8));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
881
uint64_t off8, off0, mem_crb, tmpw, word[2] = {0, 0};
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
919
(i << shift_amount), &word[i * scale], 8)) {
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
944
word[startword] = tmpw;
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
946
word[startword] &= ~((~(~0ULL << (sz[0] * 8))) <<
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
948
word[startword] |= tmpw << (off0 * 8);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
951
word[startword + 1] &= ~(~0ULL << (sz[1] * 8));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
952
word[startword + 1] |= tmpw >> (sz[0] * 8);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
955
word[startword] &= ~((~(~0ULL << (sz[0] * 8))) << (off0 * 8));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
956
word[startword] |= tmpw << (off0 * 8);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
959
word[1] &= ~(~0ULL << (sz[1] * 8));
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
960
word[1] |= tmpw >> (sz[0] * 8);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
975
temp = (uint32_t)(word[i * scale] & 0xffffffff);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
977
temp = (uint32_t)((word[i * scale] >> 32) & 0xffffffff);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
980
temp = (uint32_t)(word[i * scale + 1] & 0xffffffff);
usr/src/uts/common/io/fibre-channel/fca/qlc/ql_nx.c
983
temp = (uint32_t)((word[i * scale + 1] >> 32) &
usr/src/uts/common/io/i40e/core/i40e_nvm.c
455
u16 index, word;
usr/src/uts/common/io/i40e/core/i40e_nvm.c
460
for (word = 0; word < *words; word++) {
usr/src/uts/common/io/i40e/core/i40e_nvm.c
461
index = offset + word;
usr/src/uts/common/io/i40e/core/i40e_nvm.c
462
ret_code = i40e_read_nvm_word_srctl(hw, index, &data[word]);
usr/src/uts/common/io/i40e/core/i40e_nvm.c
468
*words = word;
usr/src/uts/common/io/ib/adapters/hermon/hermon_event.c
621
uint32_t word;
usr/src/uts/common/io/ib/adapters/hermon/hermon_event.c
638
word = ddi_get32(cmdhdl, base_addr);
usr/src/uts/common/io/ib/adapters/hermon/hermon_event.c
644
err_type = (word & 0xFF000000) >> 24;
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
1453
uint32_t word;
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
1476
word = ddi_get32(cmdhdl, state->hs_cmd_regs.fw_err_buf);
usr/src/uts/common/io/ib/adapters/hermon/hermon_fm.c
1482
if (word != 0) {
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
2369
uint32_t word;
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
2390
word = hermon_flash_read_cfg(state, hdl, HERMON_HW_FLASH_WRCONF_SEMA);
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
2400
word = hermon_flash_read_cfg(state, hdl,
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
2402
if (word == 0) {
usr/src/uts/common/io/ib/adapters/hermon/hermon_ioctl.c
2416
cmn_err(CE_WARN, "GPIO_SEMA value: 0x%x\n", word);
usr/src/uts/common/io/ib/adapters/tavor/tavor_event.c
751
uint32_t word;
usr/src/uts/common/io/ib/adapters/tavor/tavor_event.c
763
word = ddi_get32(state->ts_reg_cmdhdl, base_addr);
usr/src/uts/common/io/ib/adapters/tavor/tavor_event.c
765
err_type = (word & 0xFF000000) >> 24;
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
1773
uint32_t word;
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
1790
word = tavor_flash_read_cfg(hdl, TAVOR_HW_FLASH_GPIO_SEMA);
usr/src/uts/common/io/ib/adapters/tavor/tavor_ioctl.c
1791
if (word == 0) {
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
1375
u16 word;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
1421
word = data[i];
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
1422
word = (word >> 8) | (word << 8);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
1423
ixgbe_shift_out_eeprom_bits(hw, word, 16);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
2227
u16 word = 0;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
2233
if (hw->eeprom.ops.read(hw, i, &word)) {
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
2237
checksum += word;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
2260
if (hw->eeprom.ops.read(hw, j, &word)) {
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
2264
checksum += word;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5476
u16 word, phy_ver;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5486
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_82598, &word))
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5487
word = NVM_VER_INVALID;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5488
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5490
nvm_ver->nvm_minor = ((word & NVM_EEP_MINOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5492
nvm_ver->nvm_id = (word & NVM_EEP_ID_MASK);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5496
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_X540, &word))
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5497
word = NVM_VER_INVALID;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5498
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5500
nvm_ver->nvm_minor = ((word & NVM_EEP_MINOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5502
nvm_ver->nvm_id = (word & NVM_EEP_ID_MASK);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5510
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_X540, &word))
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5511
word = NVM_VER_INVALID;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5512
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5514
nvm_ver->nvm_minor = (word & NVM_EEP_X550_MINOR_MASK);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5529
if (ixgbe_read_eeprom(hw, NVM_EEP_PHY_OFF_X540, &word))
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5530
word = NVM_VER_INVALID;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5531
nvm_ver->phy_fw_maj = ((word & NVM_PHY_MAJOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5533
nvm_ver->phy_fw_min = ((word & NVM_PHY_MINOR_MASK)
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5535
nvm_ver->phy_fw_id = (word & NVM_PHY_ID_MASK);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5544
if (ixgbe_read_eeprom(hw, NVM_DS_OFFSET, &word))
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5545
word = NVM_VER_INVALID;
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5546
nvm_ver->devstart_major = ((word & NVM_DS_MAJOR_MASK) >> NVM_DS_SHIFT);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
5547
nvm_ver->devstart_minor = (word & NVM_DS_MINOR_MASK);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
808
&pba->word[0]);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
813
pba->word[0] = eeprom_buf[IXGBE_PBANUM0_PTR];
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
814
pba->word[1] = eeprom_buf[IXGBE_PBANUM1_PTR];
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
820
if (pba->word[0] == IXGBE_PBANUM_PTR_GUARD) {
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
834
ret_val = hw->eeprom.ops.read_buffer(hw, pba->word[1],
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
840
if (eeprom_buf_size > (u32)(pba->word[1] +
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
843
&eeprom_buf[pba->word[1]],
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
875
&pba->word[0]);
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
880
eeprom_buf[IXGBE_PBANUM0_PTR] = pba->word[0];
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
881
eeprom_buf[IXGBE_PBANUM1_PTR] = pba->word[1];
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
887
if (pba->word[0] == IXGBE_PBANUM_PTR_GUARD) {
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
892
ret_val = hw->eeprom.ops.write_buffer(hw, pba->word[1],
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
898
if (eeprom_buf_size > (u32)(pba->word[1] +
usr/src/uts/common/io/ixgbe/core/ixgbe_common.c
900
memcpy(&eeprom_buf[pba->word[1]],
usr/src/uts/common/io/ixgbe/core/ixgbe_common.h
45
u16 word[2];
usr/src/uts/common/io/ixgbe/core/ixgbe_x540.c
508
u16 word = 0;
usr/src/uts/common/io/ixgbe/core/ixgbe_x540.c
522
if (ixgbe_read_eerd_generic(hw, i, &word)) {
usr/src/uts/common/io/ixgbe/core/ixgbe_x540.c
526
checksum += word;
usr/src/uts/common/io/ixgbe/core/ixgbe_x540.c
557
if (ixgbe_read_eerd_generic(hw, j, &word)) {
usr/src/uts/common/io/ixgbe/core/ixgbe_x540.c
561
checksum += word;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
3825
u16 word = hw->eeprom.ctrl_word_3;
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
3843
if ((hw->bus.lan_id && (word & NVM_INIT_CTRL_3_D10GMP_PORT1)) ||
usr/src/uts/common/io/ixgbe/core/ixgbe_x550.c
3844
(word & NVM_INIT_CTRL_3_D10GMP_PORT0))
usr/src/uts/common/io/mega_sas/megaraid_sas.c
2582
class_locale.word);
usr/src/uts/common/io/mega_sas/megaraid_sas.c
4389
curr_aen.word = class_locale_word;
usr/src/uts/common/io/mega_sas/megaraid_sas.c
4392
prev_aen.word = instance->aen_cmd->frame->dcmd.mbox.w[1];
usr/src/uts/common/io/mega_sas/megaraid_sas.c
4429
curr_aen.word = class_locale_word;
usr/src/uts/common/io/mega_sas/megaraid_sas.c
4454
dcmd->mbox.w[1] = curr_aen.word;
usr/src/uts/common/io/mega_sas/megaraid_sas.h
893
uint32_t word;
usr/src/uts/common/io/mr_sas/ld_pd_map.h
47
U64 word;
usr/src/uts/common/io/mr_sas/mr_sas.c
4066
class_locale.word = LE_32(class_locale.word);
usr/src/uts/common/io/mr_sas/mr_sas.c
4068
class_locale.word);
usr/src/uts/common/io/mr_sas/mr_sas.c
6348
curr_aen.word = LE_32(class_locale_word);
usr/src/uts/common/io/mr_sas/mr_sas.c
6352
prev_aen.word = ddi_get32(aen_cmd->frame_dma_obj.acc_handle,
usr/src/uts/common/io/mr_sas/mr_sas.c
6354
prev_aen.word = LE_32(prev_aen.word);
usr/src/uts/common/io/mr_sas/mr_sas.c
6391
curr_aen.word = LE_32(class_locale_word);
usr/src/uts/common/io/mr_sas/mr_sas.c
6433
curr_aen.word = LE_32(curr_aen.word);
usr/src/uts/common/io/mr_sas/mr_sas.c
6435
curr_aen.word);
usr/src/uts/common/io/mr_sas/mr_sas.h
1579
uint32_t word;
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
2637
d_val.word = desc->Words;
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
2703
d_val.word = desc->Words;
usr/src/uts/common/io/mr_sas/mr_sas_tbolt.c
2845
d_val.word = reply_desc->Words;
usr/src/uts/common/io/mxfe/mxfe.c
863
uint16_t word = 0;
usr/src/uts/common/io/mxfe/mxfe.c
896
word <<= 1;
usr/src/uts/common/io/mxfe/mxfe.c
898
word |= 1;
usr/src/uts/common/io/mxfe/mxfe.c
911
DBG(DSROM, "got value %d from SROM (before swap)", word);
usr/src/uts/common/io/mxfe/mxfe.c
912
ptr = (uchar_t *)&word;
usr/src/uts/common/io/mxfe/mxfe.c
922
uint16_t word;
usr/src/uts/common/io/mxfe/mxfe.c
925
word = mxfe_readsromword(mxfep, romaddr + i);
usr/src/uts/common/io/mxfe/mxfe.c
926
bcopy(&word, ptr, 2);
usr/src/uts/common/io/mxfe/mxfe.c
928
DBG(DSROM, "word at %d is 0x%x", romaddr + i, word);
usr/src/uts/common/io/mxfe/mxfe.c
935
uint16_t word;
usr/src/uts/common/io/mxfe/mxfe.c
939
word = mxfe_readsromword(mxfep, SROM_ENADDR / 2);
usr/src/uts/common/io/mxfe/mxfe.c
940
ptr = (uchar_t *)&word;
usr/src/uts/common/io/mxfe/mxfe.c
941
word = (ptr[1] << 8) | ptr[0];
usr/src/uts/common/io/mxfe/mxfe.c
944
mxfe_readsrom(mxfep, word / 2, ETHERADDRL / 2, eaddr);
usr/src/uts/common/io/ntxn/unm_inc.h
1168
unm_crbword_t word;
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1243
__uint64_t off8, mem_crb, tmpw, word[2] = {0, 0};
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1263
off8 + (i << 3), &word[i], 8))
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1283
word[0] &= ~((~(~0ULL << (sz[0] * 8))) << (off0 * 8));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1284
word[0] |= tmpw << (off0 * 8);
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1287
word[1] &= ~(~0ULL << (sz[1] * 8));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1288
word[1] |= tmpw >> (sz[0] * 8);
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1299
UNM_NIC_PCI_WRITE_32(word[i] & 0xffffffff,
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1301
UNM_NIC_PCI_WRITE_32((word[i] >> 32) & 0xffffffff,
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1336
__uint64_t off8, val, mem_crb, word[2] = {0, 0};
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1383
word[i] = 0;
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1385
word[i] |= ((__uint64_t)UNM_NIC_PCI_READ_32(
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1398
val = word[0];
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1400
val = ((word[0] >> (off0[0] * 8)) & (~(~0ULL << (sz[0] * 8)))) |
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1401
((word[1] & (~(~0ULL << (sz[1] * 8)))) << (sz[0] * 8));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1429
__uint64_t off8, mem_crb, tmpw, word[2] = {0, 0};
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1453
off8 + (i << 3), &word[i], 8))
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1474
word[0] &= ~((~(~0ULL << (sz[0] * 8))) << (off0 * 8));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1475
word[0] |= tmpw << (off0 * 8);
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1478
word[1] &= ~(~0ULL << (sz[1] * 8));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1479
word[1] |= tmpw >> (sz[0] * 8);
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1493
temp = word[i] & 0xffffffff;
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1496
temp = (word[i] >> 32) & 0xffffffff;
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1534
__uint64_t off8, val, mem_crb, word[2] = {0, 0};
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1594
word[i] |= ((__uint64_t)temp << (32 * k));
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1605
val = word[0];
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1607
val = ((word[0] >> (off0[0] * 8)) & (~(~0ULL << (sz[0] * 8)))) |
usr/src/uts/common/io/ntxn/unm_nic_hw.c
1608
((word[1] & (~(~0ULL << (sz[1] * 8)))) << (sz[0] * 8));
usr/src/uts/common/io/ppp/spppcomp/zlib.c
4058
} word; /* 16-bit, 8 bytes for 32-bit machines) */
usr/src/uts/common/io/ppp/spppcomp/zlib.c
4516
t = h->word.what.Bits;
usr/src/uts/common/io/ppp/spppcomp/zlib.c
4757
#define exop word.what.Exop
usr/src/uts/common/io/ppp/spppcomp/zlib.c
4758
#define bits word.what.Bits
usr/src/uts/common/io/ppp/spppcomp/zlib.c
5258
#define exop word.what.Exop
usr/src/uts/common/io/ppp/spppcomp/zlib.c
5259
#define bits word.what.Bits
usr/src/uts/common/io/ppp/spppcomp/zlib.c
5631
#define exop word.what.Exop
usr/src/uts/common/io/ppp/spppcomp/zlib.c
5632
#define bits word.what.Bits
usr/src/uts/common/io/qede/579xx/drivers/ecore/bcm_osal.h
214
static inline u32 osal_ffz(unsigned long word)
usr/src/uts/common/io/qede/579xx/drivers/ecore/bcm_osal.h
218
first_zero = osal_ffsl(~word);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
345
efx_word_t word;
usr/src/uts/common/io/sfxge/common/efx_vpd.c
376
EFX_POPULATE_WORD_2(word,
usr/src/uts/common/io/sfxge/common/efx_vpd.c
379
length = EFX_WORD_FIELD(word, EFX_WORD_0);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
788
efx_word_t word;
usr/src/uts/common/io/sfxge/common/efx_vpd.c
918
EFX_POPULATE_WORD_1(word, EFX_WORD_0,
usr/src/uts/common/io/sfxge/common/efx_vpd.c
921
EFX_WORD_FIELD(word, EFX_BYTE_0);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
923
EFX_WORD_FIELD(word, EFX_BYTE_1);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
929
EFX_POPULATE_WORD_1(word, EFX_WORD_0, taglen);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
930
data[offset - 2] = EFX_WORD_FIELD(word, EFX_BYTE_0);
usr/src/uts/common/io/sfxge/common/efx_vpd.c
931
data[offset - 1] = EFX_WORD_FIELD(word, EFX_BYTE_1);
usr/src/uts/common/io/sfxge/common/siena_phy.c
681
uint16_t word;
usr/src/uts/common/io/sfxge/common/siena_phy.c
717
word = MCDI_OUT_WORD(req,
usr/src/uts/common/io/sfxge/common/siena_phy.c
720
siena_phy_sft9001_bist_status(word);
usr/src/uts/common/io/sfxge/common/siena_phy.c
727
word = MCDI_OUT_WORD(req,
usr/src/uts/common/io/sfxge/common/siena_phy.c
730
siena_phy_sft9001_bist_status(word);
usr/src/uts/common/io/sfxge/common/siena_phy.c
737
word = MCDI_OUT_WORD(req,
usr/src/uts/common/io/sfxge/common/siena_phy.c
740
siena_phy_sft9001_bist_status(word);
usr/src/uts/common/io/sfxge/common/siena_phy.c
747
word = MCDI_OUT_WORD(req,
usr/src/uts/common/io/sfxge/common/siena_phy.c
750
siena_phy_sft9001_bist_status(word);
usr/src/uts/common/os/bitmap.c
104
return (wx << BT_ULSHIFT | (highbit(word) - 1));
usr/src/uts/common/os/bitmap.c
173
ulong_t word;
usr/src/uts/common/os/bitmap.c
189
word = map[counter];
usr/src/uts/common/os/bitmap.c
197
word = word & (BT_ULMAXMASK << partial_start);
usr/src/uts/common/os/bitmap.c
204
while ((word == 0) && (counter < limit)) {
usr/src/uts/common/os/bitmap.c
205
word = map[++counter];
usr/src/uts/common/os/bitmap.c
221
word = word & (~(BT_ULMAXMASK << partial_stop + 1));
usr/src/uts/common/os/bitmap.c
227
if (word == 0) {
usr/src/uts/common/os/bitmap.c
230
return ((counter << BT_ULSHIFT) | (lowbit(word) - 1));
usr/src/uts/common/os/bitmap.c
73
ulong_t word;
usr/src/uts/common/os/bitmap.c
77
word = bitmap[wx];
usr/src/uts/common/os/bitmap.c
80
if (!(word & bit)) {
usr/src/uts/common/os/bitmap.c
96
ulong_t word;
usr/src/uts/common/os/bitmap.c
98
while ((word = mapp[wx]) == 0) {
usr/src/uts/common/rpc/clnt_cots.c
265
} bit; unsigned int word;
usr/src/uts/common/rpc/clnt_cots.c
280
#define x_state_flags x_state.word
usr/src/uts/common/sys/fault.h
62
unsigned int word[4];
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_dfclib.h
1253
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_dfclib.h
1264
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_hw.h
1755
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_hw.h
183
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_hw.h
194
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_hw.h
2009
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_mbox.h
1373
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_mbox.h
1878
uint32_t word[2];
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_menlo.h
1139
uint32_t word[32];
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_menlo.h
332
uint32_t word[5];
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
1021
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
1071
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
1123
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
1150
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
517
uint32_t word[4];
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
57
uint32_t word;
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
800
uint32_t word[6]; /* Words 0-5: cmd specific */
usr/src/uts/common/sys/fibre-channel/fca/emlxs/emlxs_queue.h
994
uint32_t word;
usr/src/uts/common/sys/syscall.h
507
unsigned int word[16];
usr/src/uts/common/sys/user.h
193
uint_t word[9]; /* space for syscall numbers [1..288] */
usr/src/uts/i86pc/os/biosdisk.c
127
rp.eax.word.ax = 0x4100;
usr/src/uts/i86pc/os/biosdisk.c
128
rp.ebx.word.bx = 0x55AA;
usr/src/uts/i86pc/os/biosdisk.c
129
rp.edx.word.dx = drivenum;
usr/src/uts/i86pc/os/biosdisk.c
134
if (((rp.eflags & PS_C) != 0) || (rp.ebx.word.bx != 0xAA55)) {
usr/src/uts/i86pc/os/biosdisk.c
136
"failed %d bx = %x\n", rp.eflags, rp.ebx.word.bx));
usr/src/uts/i86pc/os/biosdisk.c
140
if ((rp.ecx.word.cx & 0x7) == 0) {
usr/src/uts/i86pc/os/biosdisk.c
142
"not supported cx = %x\n", rp.ecx.word.cx));
usr/src/uts/i86pc/os/biosdisk.c
171
rp.eax.word.ax = 0x4800;
usr/src/uts/i86pc/os/biosdisk.c
174
rp.esi.word.si = (uint16_t)FP_OFF((uint_t)(uintptr_t)bufp);
usr/src/uts/i86pc/os/biosdisk.c
262
rp.ebx.word.bx = (uint16_t)FP_OFF((uint_t)(uintptr_t)bufp);
usr/src/uts/i86pc/os/biosdisk.c
305
rp.eax.word.ax = 0x4b01;
usr/src/uts/i86pc/os/biosdisk.c
308
rp.esi.word.si = (uint16_t)FP_OFF((uint_t)(uintptr_t)bufp);
usr/src/uts/i86pc/os/fakebop.c
962
br.ax = rp->eax.word.ax;
usr/src/uts/i86pc/os/fakebop.c
963
br.bx = rp->ebx.word.bx;
usr/src/uts/i86pc/os/fakebop.c
964
br.cx = rp->ecx.word.cx;
usr/src/uts/i86pc/os/fakebop.c
965
br.dx = rp->edx.word.dx;
usr/src/uts/i86pc/os/fakebop.c
966
br.bp = rp->ebp.word.bp;
usr/src/uts/i86pc/os/fakebop.c
967
br.si = rp->esi.word.si;
usr/src/uts/i86pc/os/fakebop.c
968
br.di = rp->edi.word.di;
usr/src/uts/i86pc/os/fakebop.c
983
rp->eax.word.ax = br.ax;
usr/src/uts/i86pc/os/fakebop.c
984
rp->ebx.word.bx = br.bx;
usr/src/uts/i86pc/os/fakebop.c
985
rp->ecx.word.cx = br.cx;
usr/src/uts/i86pc/os/fakebop.c
986
rp->edx.word.dx = br.dx;
usr/src/uts/i86pc/os/fakebop.c
987
rp->ebp.word.bp = br.bp;
usr/src/uts/i86pc/os/fakebop.c
988
rp->esi.word.si = br.si;
usr/src/uts/i86pc/os/fakebop.c
989
rp->edi.word.di = br.di;
usr/src/uts/i86pc/os/mlsetup.c
98
rp.ebx.word.bx = 0x0;
usr/src/uts/i86pc/os/pci_bios.c
100
regs.eax.word.ax = (PCI_FUNCTION_ID << 8) | PCI_GET_IRQ_ROUTING;
usr/src/uts/i86pc/os/pci_bios.c
104
regs.edi.word.di = FP_OFF((uint_t)(uintptr_t)hdrp);
usr/src/uts/i86pc/os/pci_cfgspace.c
279
regs.eax.word.ax = (PCI_FUNCTION_ID << 8) | PCI_BIOS_PRESENT;
usr/src/uts/i86pc/os/pci_cfgspace.c
283
ax = regs.eax.word.ax;
usr/src/uts/i86pc/os/pci_cfgspace.c
284
dx = regs.edx.word.dx;
usr/src/uts/i86pc/os/pci_cfgspace.c
298
pci_bios_vers = regs.ebx.word.bx;
usr/src/uts/intel/io/dnet/dnet.c
2865
uint16_t word;
usr/src/uts/intel/io/dnet/dnet.c
2927
word = 0;
usr/src/uts/intel/io/dnet/dnet.c
2936
word |= j;
usr/src/uts/intel/io/dnet/dnet.c
2942
addr[i] = (word & 0x0000FF);
usr/src/uts/intel/io/dnet/dnet.c
2943
addr[i + 1] = (word >> 8);
usr/src/uts/intel/io/dnet/dnet.c
3060
int word, bit;
usr/src/uts/intel/io/dnet/dnet.c
3092
for (word = 0; word < 9; word++)
usr/src/uts/intel/io/dnet/dnet.c
3094
if (word == 8 && bit == 7)
usr/src/uts/intel/io/dnet/dnet.c
3097
((wvi[word] >> bit) & 1) ^ ((crc >> 7) & 1);
usr/src/uts/intel/io/vmxnet3s/vmxnet3_defs.h
282
uint16_t word[8];
usr/src/uts/intel/sys/bootregs.h
45
struct { uint16_t r ## x; } word; \
usr/src/uts/intel/sys/bootregs.h
51
struct { uint16_t r; } word; \
usr/src/uts/sun4/os/machdep.c
605
uint32_t word;
usr/src/uts/sun4/os/machdep.c
613
word = ldphys(addr & ~3);
usr/src/uts/sun4/os/machdep.c
615
*buf++ = ((uchar_t *)&word)[i];
usr/src/uts/sun4/os/machdep.c
620
word = ldphys(addr);
usr/src/uts/sun4/os/machdep.c
622
*buf++ = ((uchar_t *)&word)[i];
usr/src/uts/sun4/os/machdep.c
636
uint32_t word;
usr/src/uts/sun4/os/machdep.c
643
word = ldphys(addr & ~3);
usr/src/uts/sun4/os/machdep.c
645
((uchar_t *)&word)[i] = *buf++;
usr/src/uts/sun4/os/machdep.c
646
stphys(addr & ~3, word);
usr/src/uts/sun4/os/machdep.c
651
for (word = 0, i = 0; i < 4; i++, nbytes--, nwritten++)
usr/src/uts/sun4/os/machdep.c
652
((uchar_t *)&word)[i] = *buf++;
usr/src/uts/sun4/os/machdep.c
653
stphys(addr, word);
usr/src/uts/sun4/os/machdep.c
659
word = ldphys(addr);
usr/src/uts/sun4/os/machdep.c
661
((uchar_t *)&word)[i] = *buf++;
usr/src/uts/sun4/os/machdep.c
662
stphys(addr, word);
usr/src/uts/sun4u/cpu/us3_common.c
168
ch_dc_data_t *dest_dcp, ch_dc_data_t *src_dcp, int way, int word);
usr/src/uts/sun4u/cpu/us3_common.c
2092
int index, way, word;
usr/src/uts/sun4u/cpu/us3_common.c
2155
for (word = 0; word < 4; word++) {
usr/src/uts/sun4u/cpu/us3_common.c
2157
(6 - word * 2)) & 3;
usr/src/uts/sun4u/cpu/us3_common.c
2159
tmp_dcp.dc_data[word]) +
usr/src/uts/sun4u/cpu/us3_common.c
3996
int way, word, data_byte;
usr/src/uts/sun4u/cpu/us3_common.c
4043
for (word = 0; word < 4; word++) {
usr/src/uts/sun4u/cpu/us3_common.c
4044
data_word = tmp_dcp.dc_data[word];
usr/src/uts/sun4u/cpu/us3_common.c
4053
word);
usr/src/uts/sun4u/cpu/us3_common.c
4069
for (word = 0; word < 4; word++) {
usr/src/uts/sun4u/cpu/us3_common.c
4070
pbits = (parity_bits >> (6 - word * 2)) & 3;
usr/src/uts/sun4u/cpu/us3_common.c
4071
if ((popc64(tmp_dcp.dc_data[word]) +
usr/src/uts/sun4u/cpu/us3_common.c
4074
&tmp_dcp, way, word);
usr/src/uts/sun4u/cpu/us3_common.c
4083
ch_dc_data_t *dest_dcp, ch_dc_data_t *src_dcp, int way, int word)
usr/src/uts/sun4u/cpu/us3_common.c
4092
ch_flt->parity_data.dpe.cpl_off = word * 8;
usr/src/uts/sun4u/cpu/us3_common.c
4267
int way, word, pbit, parity_bits;
usr/src/uts/sun4u/cpu/us3_common.c
4295
for (word = 0; word < pc_data_words; word++) {
usr/src/uts/sun4u/cpu/us3_common.c
4296
pbit = (parity_bits >> (pc_data_words - word - 1)) & 1;
usr/src/uts/sun4u/cpu/us3_common.c
4297
if ((popc64(tmp_pcp.pc_data[word]) & 1) ^ pbit) {
usr/src/uts/sun4u/cpu/us3_common.c
4308
word * sizeof (uint64_t);
usr/src/uts/sun4u/opl/ml/drmach.il.cpp
193
.word 0x81b01060
usr/src/uts/sun4u/serengeti/ml/sbdp.il.cpp
181
! Load long word value at physical address
usr/src/uts/sun4u/serengeti/ml/sbdp.il.cpp
195
! Load long word value from designated asi.
usr/src/uts/sun4u/sys/us3_module.h
43
#define CHP_WORD_TO_OFF(word, off) (((word) * 8) == off)
usr/src/uts/sun4v/io/n2rng/n2rng.c
1096
rng->n_preferred_config.ctlwds[0].word = 0;
usr/src/uts/sun4v/io/n2rng/n2rng.c
1103
rng->n_preferred_config.ctlwds[1].word =
usr/src/uts/sun4v/io/n2rng/n2rng.c
1104
rng->n_preferred_config.ctlwds[0].word;
usr/src/uts/sun4v/io/n2rng/n2rng.c
1105
rng->n_preferred_config.ctlwds[2].word =
usr/src/uts/sun4v/io/n2rng/n2rng.c
1106
rng->n_preferred_config.ctlwds[0].word;
usr/src/uts/sun4v/io/n2rng/n2rng.c
1107
rng->n_preferred_config.ctlwds[3].word =
usr/src/uts/sun4v/io/n2rng/n2rng.c
1108
rng->n_preferred_config.ctlwds[0].word;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_algs.c
44
#define MSBSTEP(word, shift, counter) \
usr/src/uts/sun4v/io/n2rng/n2rng_entp_algs.c
45
if (word & (~0ULL << shift)) { \
usr/src/uts/sun4v/io/n2rng/n2rng_entp_algs.c
46
word >>= shift; \
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
157
logictest.ctlwds[0].word = 0;
usr/src/uts/sun4v/io/n2rng/n2rng_entp_setup.c
264
rngstate.ctlwds[0].word = 0;
usr/src/uts/sun4v/sys/n2rng.h
79
uint64_t word;