crypto/heimdal/lib/hx509/sel-gram.y
59
%type <expr> word words
crypto/heimdal/lib/hx509/sel-gram.y
84
words : word { $$ = _hx509_make_expr(expr_WORDS, $1, NULL); }
crypto/heimdal/lib/hx509/sel-gram.y
85
| word ',' words { $$ = _hx509_make_expr(expr_WORDS, $1, $3); }
crypto/heimdal/lib/hx509/sel-gram.y
88
comp : word '=' '=' word { $$ = _hx509_make_expr(comp_EQ, $1, $4); }
crypto/heimdal/lib/hx509/sel-gram.y
89
| word '!' '=' word { $$ = _hx509_make_expr(comp_NE, $1, $4); }
crypto/heimdal/lib/hx509/sel-gram.y
90
| word kw_TAILMATCH word { $$ = _hx509_make_expr(comp_TAILEQ, $1, $3); }
crypto/heimdal/lib/hx509/sel-gram.y
91
| word kw_IN '(' words ')' { $$ = _hx509_make_expr(comp_IN, $1, $4); }
crypto/heimdal/lib/hx509/sel-gram.y
92
| word kw_IN variable { $$ = _hx509_make_expr(comp_IN, $1, $3); }
crypto/heimdal/lib/hx509/sel-gram.y
95
word : number { $$ = $1; }
crypto/heimdal/lib/hx509/sel.c
52
eval_word(hx509_context context, hx509_env env, struct hx_expr *word)
crypto/heimdal/lib/hx509/sel.c
54
switch (word->op) {
crypto/heimdal/lib/hx509/sel.c
56
return word->arg1;
crypto/heimdal/lib/hx509/sel.c
58
if (word->arg2 == NULL)
crypto/heimdal/lib/hx509/sel.c
59
return hx509_env_find(context, env, word->arg1);
crypto/heimdal/lib/hx509/sel.c
61
env = hx509_env_find_binding(context, env, word->arg1);
crypto/heimdal/lib/hx509/sel.c
65
return eval_word(context, env, word->arg2);
crypto/heimdal/lib/hx509/sel.c
72
find_variable(hx509_context context, hx509_env env, struct hx_expr *word)
crypto/heimdal/lib/hx509/sel.c
74
assert(word->op == expr_VAR);
crypto/heimdal/lib/hx509/sel.c
76
if (word->arg2 == NULL)
crypto/heimdal/lib/hx509/sel.c
77
return hx509_env_find_binding(context, env, word->arg1);
crypto/heimdal/lib/hx509/sel.c
79
env = hx509_env_find_binding(context, env, word->arg1);
crypto/heimdal/lib/hx509/sel.c
82
return find_variable(context, env, word->arg2);
crypto/krb5/src/plugins/hostrealm/test/main.c
59
char *word = NULL, **list = NULL, **newptr;
crypto/krb5/src/plugins/hostrealm/test/main.c
68
word = (q == NULL) ? strdup(p) : k5memdup0(p, q - p, &ret);
crypto/krb5/src/plugins/hostrealm/test/main.c
69
if (word == NULL)
crypto/krb5/src/plugins/hostrealm/test/main.c
75
list[count++] = word;
crypto/krb5/src/plugins/hostrealm/test/main.c
77
word = NULL;
crypto/krb5/src/plugins/hostrealm/test/main.c
87
free(word);
crypto/krb5/src/util/verto/ev_select.c
108
int word = fd / NFDBITS;
crypto/krb5/src/util/verto/ev_select.c
111
if (expect_false (vec_max <= word))
crypto/krb5/src/util/verto/ev_select.c
113
int new_max = word + 1;
crypto/krb5/src/util/verto/ev_select.c
128
((fd_mask *)vec_ri) [word] |= mask;
crypto/krb5/src/util/verto/ev_select.c
130
((fd_mask *)vec_ri) [word] &= ~mask;
crypto/krb5/src/util/verto/ev_select.c
132
((fd_mask *)vec_wi) [word] |= mask;
crypto/krb5/src/util/verto/ev_select.c
134
((fd_mask *)vec_wi) [word] &= ~mask;
crypto/krb5/src/util/verto/ev_select.c
247
int word, bit;
crypto/krb5/src/util/verto/ev_select.c
248
for (word = vec_max; word--; )
crypto/krb5/src/util/verto/ev_select.c
250
fd_mask word_r = ((fd_mask *)vec_ro) [word];
crypto/krb5/src/util/verto/ev_select.c
251
fd_mask word_w = ((fd_mask *)vec_wo) [word];
crypto/krb5/src/util/verto/ev_select.c
253
word_w |= ((fd_mask *)vec_eo) [word];
crypto/krb5/src/util/verto/ev_select.c
266
fd_event (EV_A_ word * NFDBITS + bit, events);
crypto/openssh/sftp.c
1872
complete_ambiguous(const char *word, char **list, size_t count)
crypto/openssh/sftp.c
1874
if (word == NULL)
crypto/openssh/sftp.c
1891
if (matchlen > strlen(word)) {
crypto/openssh/sftp.c
1899
return xstrdup(word);
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
76
#define mul_add(r, a, word, carry) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
81
: "a"(word), "m"(a) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
94
#define mul(r, a, word, carry) \
crypto/openssl/crypto/bn/asm/x86_64-gcc.c
99
: "a"(word), "g"(a) \
crypto/openssl/crypto/modes/siv128.c
326
if ((t.word[0] | t.word[1]) != 0) {
crypto/openssl/crypto/modes/siv128.c
47
return byteswap8(b->word[i]);
crypto/openssl/crypto/modes/siv128.c
48
return b->word[i];
crypto/openssl/crypto/modes/siv128.c
56
b->word[i] = byteswap8(x);
crypto/openssl/crypto/modes/siv128.c
58
b->word[i] = x;
crypto/openssl/crypto/modes/siv128.c
64
x->word[0] ^= y->word[0];
crypto/openssl/crypto/modes/siv128.c
65
x->word[1] ^= y->word[1];
crypto/openssl/include/crypto/modes.h
215
uint64_t word[SIV_LEN / sizeof(uint64_t)];
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
388
const char *word = NULL;
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
392
word = padding_item[i].ptr;
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
397
if (word != NULL) {
crypto/openssl/providers/implementations/asymciphers/rsa_enc.c
398
if (!OSSL_PARAM_set_utf8_string(p, word))
crypto/openssl/providers/implementations/signature/rsa_sig.c
1415
const char *word = NULL;
crypto/openssl/providers/implementations/signature/rsa_sig.c
1419
word = padding_item[i].ptr;
crypto/openssl/providers/implementations/signature/rsa_sig.c
1424
if (word != NULL) {
crypto/openssl/providers/implementations/signature/rsa_sig.c
1425
if (!OSSL_PARAM_set_utf8_string(p, word))
crypto/openssl/test/bntest.c
116
BN_ULONG word;
crypto/openssl/test/bntest.c
120
|| !TEST_ulong_le(word = BN_get_word(ret), INT_MAX))
crypto/openssl/test/bntest.c
123
*out = (int)word;
lib/libc/string/bcopy.c
103
TLOOP(*(word *)(void *)dst = *(const word *)(const void *)src;
lib/libc/string/bcopy.c
126
*(word *)(void *)dst = *(const word *)(const void *)src);
lib/libc/string/bcopy.c
39
#define wsize sizeof(word)
lib/libc/string/memchr.c
45
const word *w;
lib/libc/string/strchrnul.c
45
const word *w;
lib/libc/string/strtok.c
109
char *brkb, *brkt, *phrase, *sep, *word;
lib/libc/string/strtok.c
116
for (word = strtok(test, sep); word; word = strtok(NULL, sep))
lib/libc/string/strtok.c
117
printf("Next word is \"%s\".\n", word);
lib/libc/string/strtok.c
120
for (word = strtok_r(test, sep, &brkt); word;
lib/libc/string/strtok.c
121
word = strtok_r(NULL, sep, &brkt)) {
lib/libc/string/strtok.c
126
printf("So far we're at %s:%s\n", word, phrase);
lib/libfetch/common.c
1613
static char word[1024];
lib/libfetch/common.c
1615
if (fscanf(f, " %1023s ", word) != 1)
lib/libfetch/common.c
1617
return (word);
lib/libfetch/common.c
1659
const char *word;
lib/libfetch/common.c
1677
while ((word = fetch_read_word(f)) != NULL) {
lib/libfetch/common.c
1678
if (strcmp(word, "default") == 0) {
lib/libfetch/common.c
1682
if (strcmp(word, "machine") == 0 &&
lib/libfetch/common.c
1683
(word = fetch_read_word(f)) != NULL &&
lib/libfetch/common.c
1684
strcasecmp(word, url->host) == 0) {
lib/libfetch/common.c
1685
DEBUGF("using netrc settings for %s\n", word);
lib/libfetch/common.c
1689
if (word == NULL)
lib/libfetch/common.c
1691
while ((word = fetch_read_word(f)) != NULL) {
lib/libfetch/common.c
1692
if (strcmp(word, "login") == 0) {
lib/libfetch/common.c
1693
if ((word = fetch_read_word(f)) == NULL)
lib/libfetch/common.c
1696
"%s", word) > (int)sizeof(url->user)) {
lib/libfetch/common.c
1700
} else if (strcmp(word, "password") == 0) {
lib/libfetch/common.c
1701
if ((word = fetch_read_word(f)) == NULL)
lib/libfetch/common.c
1704
"%s", word) > (int)sizeof(url->pwd)) {
lib/libfetch/common.c
1708
} else if (strcmp(word, "account") == 0) {
lib/libfetch/common.c
1709
if ((word = fetch_read_word(f)) == NULL)
lib/librpcsec_gss/svc_rpcsec_gss.c
896
int word, bit;
lib/librpcsec_gss/svc_rpcsec_gss.c
909
word = offset / 32;
lib/librpcsec_gss/svc_rpcsec_gss.c
911
if (client->cl_seqmask[word] & (1 << bit))
lib/librpcsec_gss/svc_rpcsec_gss.c
921
int offset, i, word, bit;
lib/librpcsec_gss/svc_rpcsec_gss.c
955
word = offset / 32;
lib/librpcsec_gss/svc_rpcsec_gss.c
957
maskp[word] |= (1 << bit);
lib/libvgl/bitmap.c
49
unsigned int word = 0;
lib/libvgl/bitmap.c
69
word = 0;
lib/libvgl/bitmap.c
71
word = (word<<1) | color2bit[line[pos++]&0x0f];
lib/libvgl/bitmap.c
72
VGLPlane[0][planepos] = word;
lib/libvgl/bitmap.c
73
VGLPlane[1][planepos] = word>>8;
lib/libvgl/bitmap.c
74
VGLPlane[2][planepos] = word>>16;
lib/libvgl/bitmap.c
75
VGLPlane[3][planepos] = word>>24;
lib/libvgl/bitmap.c
81
word <<= (8 - end_offset);
lib/libvgl/bitmap.c
82
VGLPlane[0][planepos] = word;
lib/libvgl/bitmap.c
83
VGLPlane[1][planepos] = word>>8;
lib/libvgl/bitmap.c
84
VGLPlane[2][planepos] = word>>16;
lib/libvgl/bitmap.c
85
VGLPlane[3][planepos] = word>>24;
lib/msun/src/math_private.h
209
unsigned int word;
lib/msun/src/math_private.h
218
(i) = gf_u.word; \
lib/msun/src/math_private.h
226
sf_u.word = (i); \
sbin/bsdlabel/bsdlabel.c
1031
cp = tp, tp = word(cp);
sbin/bsdlabel/bsdlabel.c
777
tp = word(cp);
sbin/bsdlabel/bsdlabel.c
78
static char *word(char *);
sbin/bsdlabel/bsdlabel.c
797
tp = word(cp);
sbin/bsdlabel/bsdlabel.c
976
cp = tp, tp = word(cp); \
sbin/bsdlabel/bsdlabel.c
988
cp = tp, tp = word(cp); \
sbin/ggate/ggated/ggated.c
160
char *word, *brkf;
sbin/ggate/ggated/ggated.c
169
for (word = strtok_r(flagscpy, ",", &brkf);
sbin/ggate/ggated/ggated.c
170
word != NULL;
sbin/ggate/ggated/ggated.c
171
word = strtok_r(NULL, ",", &brkf)) {
sbin/ggate/ggated/ggated.c
172
if (strcasecmp("ro", word) == 0 ||
sbin/ggate/ggated/ggated.c
173
strcasecmp("rd", word) == 0) {
sbin/ggate/ggated/ggated.c
175
} else if (strcasecmp("wo", word) == 0) {
sbin/ggate/ggated/ggated.c
177
} else if (strcasecmp("rw", word) == 0) {
sbin/ggate/ggated/ggated.c
179
} else if (strcasecmp("direct", word) == 0) {
sbin/ggate/ggated/ggated.c
181
} else if (strcasecmp("nodirect", word) == 0) {
sbin/ggate/ggated/ggated.c
185
"line %u.", word, lineno);
sbin/ggate/ggated/ggated.c
200
char *word, *path, *sflags, *brkl;
sbin/ggate/ggated/ggated.c
209
for (i = 0, word = strtok_r(line, " \t", &brkl); word != NULL;
sbin/ggate/ggated/ggated.c
210
i++, word = strtok_r(NULL, " \t", &brkl)) {
sbin/ggate/ggated/ggated.c
213
ip = g_gate_str2ip(strsep(&word, "/"));
sbin/ggate/ggated/ggated.c
219
if (word == NULL)
sbin/ggate/ggated/ggated.c
223
vmask = strtoul(word, NULL, 10);
sbin/ggate/ggated/ggated.c
236
flags = parse_flags(word, lineno);
sbin/ggate/ggated/ggated.c
237
sflags = word;
sbin/ggate/ggated/ggated.c
240
if (strlen(word) >= MAXPATHLEN) {
sbin/ggate/ggated/ggated.c
244
path = word;
sys/amd64/amd64/copyout.c
103
int suword32_nosmap(volatile void *base, int32_t word);
sys/amd64/amd64/copyout.c
104
int suword32_smap(volatile void *base, int32_t word);
sys/amd64/amd64/copyout.c
112
int suword_nosmap(volatile void *base, long word);
sys/amd64/amd64/copyout.c
113
int suword_smap(volatile void *base, long word);
sys/amd64/amd64/copyout.c
94
int suword16_nosmap(volatile void *base, int word);
sys/amd64/amd64/copyout.c
95
int suword16_smap(volatile void *base, int word);
sys/amd64/include/xen/hypercall.h
251
unsigned long ma, unsigned long word)
sys/amd64/include/xen/hypercall.h
253
return _hypercall2(int, update_descriptor, ma, word);
sys/arm/freescale/imx/imx6_ipu.c
251
struct ipu_cpmem_word word[2];
sys/arm/freescale/imx/imx6_ipu.c
402
int word, unsigned int offset, int len, uint32_t value)
sys/arm/freescale/imx/imx6_ipu.c
413
data = param->word[word].data[datapos];
sys/arm/freescale/imx/imx6_ipu.c
416
param->word[word].data[datapos] = data;
sys/arm/freescale/imx/imx6_ipu.c
421
data2 = param->word[word].data[datapos + 1];
sys/arm/freescale/imx/imx6_ipu.c
424
param->word[word].data[datapos + 1] = data2;
sys/arm/freescale/imx/imx6_ipu.c
431
int word, unsigned int offset, int len)
sys/arm/freescale/imx/imx6_ipu.c
441
data = param->word[word].data[datapos];
sys/arm/freescale/imx/imx6_ipu.c
447
data2 = param->word[word].data[datapos + 1];
sys/arm/freescale/imx/imx6_ipu.c
461
param->word[0].data[0], param->word[0].data[1],
sys/arm/freescale/imx/imx6_ipu.c
462
param->word[0].data[2], param->word[0].data[3],
sys/arm/freescale/imx/imx6_ipu.c
463
param->word[0].data[4]);
sys/arm/freescale/imx/imx6_ipu.c
465
param->word[1].data[0], param->word[1].data[1],
sys/arm/freescale/imx/imx6_ipu.c
466
param->word[1].data[2], param->word[1].data[3],
sys/arm/freescale/imx/imx6_ipu.c
467
param->word[1].data[4]);
sys/arm/freescale/imx/imx6_ipu.c
596
int i, word;
sys/arm/freescale/imx/imx6_ipu.c
599
word = di ? 2 : 5;
sys/arm/freescale/imx/imx6_ipu.c
619
addr = DC_TEMPL_BASE + (word + i) * 2 * sizeof(uint32_t);
sys/arm/include/asm.h
128
gotsym: .word _C_LABEL(_GLOBAL_OFFSET_TABLE_) - (pclabel+4)
sys/arm/include/asm.h
132
gotsym: .word _C_LABEL(_GLOBAL_OFFSET_TABLE_) - (pclabel+8)
sys/arm/include/asm.h
186
#define MSR_ELR_HYP(regnum) .word (0xe12ef300 | regnum)
sys/arm/include/asm.h
187
#define ERET .word 0xe160006e
sys/compat/linuxkpi/common/include/linux/bitops.h
110
ror32(uint32_t word, unsigned int shift)
sys/compat/linuxkpi/common/include/linux/bitops.h
112
return ((word >> shift) | (word << (32 - shift)));
sys/compat/linuxkpi/common/include/linux/bitops.h
441
rol64(uint64_t word, unsigned int shift)
sys/compat/linuxkpi/common/include/linux/bitops.h
443
return ((word << (shift & 63)) | (word >> ((-shift) & 63)));
sys/compat/linuxkpi/common/include/linux/bitops.h
447
rol32(uint32_t word, unsigned int shift)
sys/compat/linuxkpi/common/include/linux/bitops.h
449
return ((word << (shift & 31)) | (word >> ((-shift) & 31)));
sys/compat/linuxkpi/common/include/linux/wait.h
299
#define wake_up_bit(word, bit) linux_wake_up_bit(word, bit)
sys/compat/linuxkpi/common/include/linux/wait.h
300
#define wait_on_bit(word, bit, state) \
sys/compat/linuxkpi/common/include/linux/wait.h
301
linux_wait_on_bit_timeout(word, bit, state, MAX_SCHEDULE_TIMEOUT)
sys/compat/linuxkpi/common/include/linux/wait.h
302
#define wait_on_bit_timeout(word, bit, state, timeout) \
sys/compat/linuxkpi/common/include/linux/wait.h
303
linux_wait_on_bit_timeout(word, bit, state, timeout)
sys/compat/linuxkpi/common/include/linux/wait_bit.h
45
clear_and_wake_up_bit(int bit, void *word)
sys/compat/linuxkpi/common/include/linux/wait_bit.h
47
clear_bit_unlock(bit, word);
sys/compat/linuxkpi/common/include/linux/wait_bit.h
48
wake_up_bit(word, bit);
sys/compat/linuxkpi/common/include/linux/wait_bit.h
52
bit_waitqueue(void *word, int bit)
sys/compat/linuxkpi/common/src/linux_schedule.c
400
#define bit_to_wchan(word, bit) ((void *)(((uintptr_t)(word) << 6) | (bit)))
sys/compat/linuxkpi/common/src/linux_schedule.c
403
linux_wake_up_bit(void *word, int bit)
sys/compat/linuxkpi/common/src/linux_schedule.c
406
wake_up_sleepers(bit_to_wchan(word, bit));
sys/compat/linuxkpi/common/src/linux_schedule.c
410
linux_wait_on_bit_timeout(unsigned long *word, int bit, unsigned int state,
sys/compat/linuxkpi/common/src/linux_schedule.c
418
wchan = bit_to_wchan(word, bit);
sys/compat/linuxkpi/common/src/linux_schedule.c
421
if ((*word & (1 << bit)) == 0) {
sys/dev/ae/if_ae.c
146
static int ae_vpd_read_word(ae_softc_t *sc, int reg, uint32_t *word);
sys/dev/ae/if_ae.c
923
ae_vpd_read_word(ae_softc_t *sc, int reg, uint32_t *word)
sys/dev/ae/if_ae.c
947
*word = AE_READ_4(sc, AE_VPD_DATA_REG);
sys/dev/ae/if_ae.c
954
uint32_t word, reg, val;
sys/dev/ae/if_ae.c
976
error = ae_vpd_read_word(sc, i, &word);
sys/dev/ae/if_ae.c
983
if ((word & AE_VPD_SIG_MASK) != AE_VPD_SIG)
sys/dev/ae/if_ae.c
985
reg = word >> AE_VPD_REG_SHIFT;
sys/dev/alpm/alpm.c
481
alpm_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/alpm/alpm.c
495
ALPM_SMBOUTB(sc, SMBHDATA, word & 0x00ff);
sys/dev/alpm/alpm.c
496
ALPM_SMBOUTB(sc, SMBHDATB, (word & 0xff00) >> 8);
sys/dev/alpm/alpm.c
502
ALPM_DEBUG(printf("alpm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
sys/dev/alpm/alpm.c
509
alpm_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/alpm/alpm.c
531
*word = ((high & 0xff) << 8) | (low & 0xff);
sys/dev/alpm/alpm.c
534
ALPM_DEBUG(printf("alpm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
sys/dev/amdpm/amdpm.c
488
amdpm_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/amdpm/amdpm.c
502
AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, word);
sys/dev/amdpm/amdpm.c
509
AMDPM_DEBUG(printf("amdpm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
sys/dev/amdpm/amdpm.c
516
amdpm_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/amdpm/amdpm.c
535
*word = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
sys/dev/amdpm/amdpm.c
537
AMDPM_DEBUG(printf("amdpm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
sys/dev/amdsmb/amdsmb.c
441
amdsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/amdsmb/amdsmb.c
448
amdsmb_ec_write(sc, SMB_DATA, word);
sys/dev/amdsmb/amdsmb.c
449
amdsmb_ec_write(sc, SMB_DATA + 1, word >> 8);
sys/dev/amdsmb/amdsmb.c
456
"error=0x%x\n", slave, cmd, word, error));
sys/dev/amdsmb/amdsmb.c
463
amdsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/amdsmb/amdsmb.c
477
*word = temp[0] | (temp[1] << 8);
sys/dev/amdsmb/amdsmb.c
481
"error=0x%x\n", slave, cmd, (unsigned short)*word, error));
sys/dev/ath/ath_hal/ah_eeprom_9287.c
157
uint16_t word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
161
word = __bswap16(ee->ee_base.baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
162
ee->ee_base.baseEepHeader.length = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
164
word = __bswap16(ee->ee_base.baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
165
ee->ee_base.baseEepHeader.checksum = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
167
word = __bswap16(ee->ee_base.baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
168
ee->ee_base.baseEepHeader.version = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
170
word = __bswap16(ee->ee_base.baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
171
ee->ee_base.baseEepHeader.regDmn[0] = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
173
word = __bswap16(ee->ee_base.baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
174
ee->ee_base.baseEepHeader.regDmn[1] = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
176
word = __bswap16(ee->ee_base.baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
177
ee->ee_base.baseEepHeader.rfSilent = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
179
word = __bswap16(ee->ee_base.baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
180
ee->ee_base.baseEepHeader.blueToothOptions = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
182
word = __bswap16(ee->ee_base.baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
183
ee->ee_base.baseEepHeader.deviceCap = word;
sys/dev/ath/ath_hal/ah_eeprom_9287.c
199
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_9287.c
200
pModal->spurChans[i].spurChan = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
195
uint16_t word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
199
word = __bswap16(ee->baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
200
ee->baseEepHeader.length = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
202
word = __bswap16(ee->baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
203
ee->baseEepHeader.checksum = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
205
word = __bswap16(ee->baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
206
ee->baseEepHeader.version = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
208
word = __bswap16(ee->baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
209
ee->baseEepHeader.regDmn[0] = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
211
word = __bswap16(ee->baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
212
ee->baseEepHeader.regDmn[1] = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
214
word = __bswap16(ee->baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
215
ee->baseEepHeader.rfSilent = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
217
word = __bswap16(ee->baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
218
ee->baseEepHeader.blueToothOptions = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
220
word = __bswap16(ee->baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
221
ee->baseEepHeader.deviceCap = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
236
word = __bswap16(pModal->xpaBiasLvlFreq[i]);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
237
pModal->xpaBiasLvlFreq[i] = word;
sys/dev/ath/ath_hal/ah_eeprom_v14.c
240
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_v14.c
241
pModal->spurChans[i].spurChan = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
151
uint16_t word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
155
word = __bswap16(ee->baseEepHeader.length);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
156
ee->baseEepHeader.length = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
158
word = __bswap16(ee->baseEepHeader.checksum);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
159
ee->baseEepHeader.checksum = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
161
word = __bswap16(ee->baseEepHeader.version);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
162
ee->baseEepHeader.version = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
164
word = __bswap16(ee->baseEepHeader.regDmn[0]);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
165
ee->baseEepHeader.regDmn[0] = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
167
word = __bswap16(ee->baseEepHeader.regDmn[1]);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
168
ee->baseEepHeader.regDmn[1] = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
170
word = __bswap16(ee->baseEepHeader.rfSilent);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
171
ee->baseEepHeader.rfSilent = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
173
word = __bswap16(ee->baseEepHeader.blueToothOptions);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
174
ee->baseEepHeader.blueToothOptions = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
176
word = __bswap16(ee->baseEepHeader.deviceCap);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
177
ee->baseEepHeader.deviceCap = word;
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
192
word = __bswap16(pModal->spurChans[i].spurChan);
sys/dev/ath/ath_hal/ah_eeprom_v4k.c
193
pModal->spurChans[i].spurChan = word;
sys/dev/cas/if_cas.c
1627
printf("word ## n: 0x%016llx%c", (long long)word ## n, delimiter)
sys/dev/cas/if_cas.c
1634
word ## n = le64toh(sc->sc_rxcomps[sc->sc_rxcptr].crc_word ## n)
sys/dev/cxgb/common/cxgb_t3_cpl.h
719
__be16 word;
sys/dev/cxgb/cxgb_main.c
3284
unsigned int word, u64 mask, u64 val)
sys/dev/cxgb/cxgb_main.c
3289
req->word = htons(word);
sys/dev/cxgb/cxgb_main.c
3296
unsigned int word, u64 mask, u64 val)
sys/dev/cxgb/cxgb_main.c
3302
mk_set_tcb_field(req, tid, word, mask, val);
sys/dev/cxgbe/common/common.h
1085
uint16_t word, uint64_t mask, uint64_t val, const int qid)
sys/dev/cxgbe/common/common.h
1107
req->word_cookie = htobe16(V_WORD(word) | V_COOKIE(0));
sys/dev/cxgbe/common/common.h
1116
req->word_cookie = htobe16(V_WORD(word) |
sys/dev/cxgbe/common/common.h
1136
mk_set_tcb_field_ulp(struct adapter *sc, void *cur, int tid, uint16_t word,
sys/dev/cxgbe/common/common.h
1139
return (mk_set_tcb_field_ulp_with_rpl(sc, cur, tid, word, mask, val, -1));
sys/dev/cxgbe/common/t4vf_hw.c
263
u32 word = be32_to_cpu(
sys/dev/cxgbe/common/t4vf_hw.c
267
((word & F_FW_RSS_GLB_CONFIG_CMD_SYNMAPEN) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
269
((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV6) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
271
((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV6) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
273
((word & F_FW_RSS_GLB_CONFIG_CMD_SYN4TUPENIPV4) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
275
((word & F_FW_RSS_GLB_CONFIG_CMD_SYN2TUPENIPV4) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
278
((word & F_FW_RSS_GLB_CONFIG_CMD_OFDMAPEN) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
281
((word & F_FW_RSS_GLB_CONFIG_CMD_TNLMAPEN) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
283
((word & F_FW_RSS_GLB_CONFIG_CMD_TNLALLLKP) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
286
((word & F_FW_RSS_GLB_CONFIG_CMD_HASHTOEPLITZ) != 0);
sys/dev/cxgbe/common/t4vf_hw.c
314
u32 word;
sys/dev/cxgbe/common/t4vf_hw.c
332
word = be32_to_cpu(rpl.niqflint_niq);
sys/dev/cxgbe/common/t4vf_hw.c
333
vfres->niqflint = G_FW_PFVF_CMD_NIQFLINT(word);
sys/dev/cxgbe/common/t4vf_hw.c
334
vfres->niq = G_FW_PFVF_CMD_NIQ(word);
sys/dev/cxgbe/common/t4vf_hw.c
336
word = be32_to_cpu(rpl.type_to_neq);
sys/dev/cxgbe/common/t4vf_hw.c
337
vfres->neq = G_FW_PFVF_CMD_NEQ(word);
sys/dev/cxgbe/common/t4vf_hw.c
338
vfres->pmask = G_FW_PFVF_CMD_PMASK(word);
sys/dev/cxgbe/common/t4vf_hw.c
340
word = be32_to_cpu(rpl.tc_to_nexactf);
sys/dev/cxgbe/common/t4vf_hw.c
341
vfres->tc = G_FW_PFVF_CMD_TC(word);
sys/dev/cxgbe/common/t4vf_hw.c
342
vfres->nvi = G_FW_PFVF_CMD_NVI(word);
sys/dev/cxgbe/common/t4vf_hw.c
343
vfres->nexactf = G_FW_PFVF_CMD_NEXACTF(word);
sys/dev/cxgbe/common/t4vf_hw.c
345
word = be32_to_cpu(rpl.r_caps_to_nethctrl);
sys/dev/cxgbe/common/t4vf_hw.c
346
vfres->r_caps = G_FW_PFVF_CMD_R_CAPS(word);
sys/dev/cxgbe/common/t4vf_hw.c
347
vfres->wx_caps = G_FW_PFVF_CMD_WX_CAPS(word);
sys/dev/cxgbe/common/t4vf_hw.c
348
vfres->nethctrl = G_FW_PFVF_CMD_NETHCTRL(word);
sys/dev/cxgbe/crypto/t6_kern_tls.c
277
uint16_t word, uint64_t mask, uint64_t val)
sys/dev/cxgbe/crypto/t6_kern_tls.c
300
cpl->word_cookie = htobe16(V_WORD(word));
sys/dev/cxgbe/nvmf/nvmf_che.c
2350
t4_nvme_set_tcb_field(struct toepcb *toep, uint16_t word, uint64_t mask,
sys/dev/cxgbe/nvmf/nvmf_che.c
2355
t4_set_tcb_field(sc, &toep->ofld_txq->wrq, toep, word, mask, val, 0, 0);
sys/dev/cxgbe/t4_filter.c
1389
set_tcb_field(struct adapter *sc, u_int tid, uint16_t word, uint64_t mask,
sys/dev/cxgbe/t4_filter.c
1413
req->word_cookie = htobe16(V_WORD(word) | V_COOKIE(CPL_COOKIE_HASHFILTER));
sys/dev/cxgbe/tom/t4_cpl_io.c
2285
uint16_t word, uint64_t mask, uint64_t val, int reply, int cookie)
sys/dev/cxgbe/tom/t4_cpl_io.c
2307
req->word_cookie = htobe16(V_WORD(word) | V_COOKIE(cookie));
sys/dev/cxgbe/tom/t4_cpl_io.c
2314
uint16_t word, uint64_t mask, uint64_t val, int reply, int cookie)
sys/dev/cxgbe/tom/t4_cpl_io.c
2325
write_set_tcb_field(sc, wrtod(wr), toep, word, mask, val, reply,
sys/dev/cxgbe/tom/t4_tls.c
63
t4_set_tls_tcb_field(struct toepcb *toep, uint16_t word, uint64_t mask,
sys/dev/cxgbe/tom/t4_tls.c
75
write_set_tcb_field(sc, mtod(m, void *), toep, word, mask, val, reply,
sys/dev/cxgbe/tom/t4_tom.c
449
get_tcb_field(const uint64_t *tcb, u_int word, uint32_t mask, u_int shift)
sys/dev/cxgbe/tom/t4_tom.c
456
MPASS(word <= LAST_WORD);
sys/dev/cxgbe/tom/t4_tom.c
459
flit_idx = (LAST_WORD - word) / 2;
sys/dev/cxgbe/tom/t4_tom.c
460
if (word & 0x1)
sys/dev/dc/if_dc.c
555
uint16_t word = 0;
sys/dev/dc/if_dc.c
582
word |= i;
sys/dev/dc/if_dc.c
591
*dest = word;
sys/dev/dc/if_dc.c
601
uint16_t word = 0, *ptr;
sys/dev/dc/if_dc.c
605
dc_eeprom_getword_pnic(sc, off + i, &word);
sys/dev/dc/if_dc.c
607
dc_eeprom_getword_xircom(sc, off + i, &word);
sys/dev/dc/if_dc.c
609
dc_eeprom_getword(sc, off + i, &word);
sys/dev/dc/if_dc.c
612
*ptr = be16toh(word);
sys/dev/dc/if_dc.c
614
*ptr = le16toh(word);
sys/dev/drm2/drm_os_freebsd.h
238
ror32(uint32_t word, unsigned int shift)
sys/dev/drm2/drm_os_freebsd.h
241
return (word >> shift) | (word << (32 - shift));
sys/dev/e1000/e1000_ich8lan.c
3634
u16 i, word;
sys/dev/e1000/e1000_ich8lan.c
3663
&word);
sys/dev/e1000/e1000_ich8lan.c
3666
data[i] = word;
sys/dev/e1000/e1000_ich8lan.c
3865
u16 word = 0;
sys/dev/e1000/e1000_ich8lan.c
3873
ret_val = e1000_read_flash_data_ich8lan(hw, offset, 1, &word);
sys/dev/e1000/e1000_ich8lan.c
3878
*data = (u8)word;
sys/dev/e1000/e1000_ich8lan.c
4400
u16 word;
sys/dev/e1000/e1000_ich8lan.c
4418
word = NVM_COMPAT;
sys/dev/e1000/e1000_ich8lan.c
4422
word = NVM_FUTURE_INIT_WORD1;
sys/dev/e1000/e1000_ich8lan.c
4427
ret_val = hw->nvm.ops.read(hw, word, 1, &data);
sys/dev/e1000/e1000_ich8lan.c
4433
ret_val = hw->nvm.ops.write(hw, word, 1, &data);
sys/dev/e1000/e1000_ich8lan.c
4642
u16 word = (u16)data;
sys/dev/e1000/e1000_ich8lan.c
4646
return e1000_write_flash_data_ich8lan(hw, offset, 1, word);
sys/dev/e1000/e1000_nvm.c
1001
&pba->word[0]);
sys/dev/e1000/e1000_nvm.c
1006
pba->word[0] = eeprom_buf[NVM_PBA_OFFSET_0];
sys/dev/e1000/e1000_nvm.c
1007
pba->word[1] = eeprom_buf[NVM_PBA_OFFSET_1];
sys/dev/e1000/e1000_nvm.c
1013
if (pba->word[0] == NVM_PBA_PTR_GUARD) {
sys/dev/e1000/e1000_nvm.c
1027
ret_val = e1000_read_nvm(hw, pba->word[1],
sys/dev/e1000/e1000_nvm.c
1033
if (eeprom_buf_size > (u32)(pba->word[1] +
sys/dev/e1000/e1000_nvm.c
1036
&eeprom_buf[pba->word[1]],
sys/dev/e1000/e1000_nvm.c
1068
&pba->word[0]);
sys/dev/e1000/e1000_nvm.c
1073
eeprom_buf[NVM_PBA_OFFSET_0] = pba->word[0];
sys/dev/e1000/e1000_nvm.c
1074
eeprom_buf[NVM_PBA_OFFSET_1] = pba->word[1];
sys/dev/e1000/e1000_nvm.c
1080
if (pba->word[0] == NVM_PBA_PTR_GUARD) {
sys/dev/e1000/e1000_nvm.c
1085
ret_val = e1000_write_nvm(hw, pba->word[1],
sys/dev/e1000/e1000_nvm.c
1091
if (eeprom_buf_size > (u32)(pba->word[1] +
sys/dev/e1000/e1000_nvm.c
1093
memcpy(&eeprom_buf[pba->word[1]],
sys/dev/e1000/e1000_nvm.h
39
u16 word[2];
sys/dev/ice/ice_protocol_type.h
179
#define ICE_TUN_FLAG_MDID_OFF(word) \
sys/dev/ice/ice_protocol_type.h
180
(ICE_MDID_SIZE * (ICE_TUN_FLAG_MDID + (word)))
sys/dev/ichsmb/ichsmb.c
262
ichsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/ichsmb/ichsmb.c
268
slave, (u_char)cmd, (u_int16_t)word);
sys/dev/ichsmb/ichsmb.c
276
bus_write_1(sc->io_res, ICH_D0, word & 0xff);
sys/dev/ichsmb/ichsmb.c
277
bus_write_1(sc->io_res, ICH_D1, word >> 8);
sys/dev/ichsmb/ichsmb.c
310
ichsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/ichsmb/ichsmb.c
326
*word = (bus_read_1(sc->io_res,
sys/dev/ichsmb/ichsmb.c
332
DBG("smb_error=%d word=0x%04x\n", smb_error, (u_int16_t)*word);
sys/dev/iicbus/iicsmb.c
365
iicsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/iicbus/iicsmb.c
367
uint8_t bytes[] = { cmd, word & 0xff, word >> 8 };
sys/dev/iicbus/iicsmb.c
391
iicsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/iicbus/iicsmb.c
402
*word = ((uint16_t)buf[1] << 8) | buf[0];
sys/dev/iicbus/iicsmb.c
94
static int iicsmb_writew(device_t dev, u_char slave, char cmd, short word);
sys/dev/iicbus/iicsmb.c
96
static int iicsmb_readw(device_t dev, u_char slave, char cmd, short *word);
sys/dev/imcsmb/imcsmb.c
215
imcsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/imcsmb/imcsmb.c
218
return (imcsmb_transfer(dev, slave, cmd, word, TRUE, FALSE));
sys/dev/imcsmb/imcsmb.c
263
imcsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/imcsmb/imcsmb.c
266
return (imcsmb_transfer(dev, slave, cmd, &word, TRUE, TRUE));
sys/dev/imcsmb/imcsmb.c
305
uint16_t *word;
sys/dev/imcsmb/imcsmb.c
312
word = data;
sys/dev/imcsmb/imcsmb.c
314
lword = *word;
sys/dev/imcsmb/imcsmb.c
479
*word = lword;
sys/dev/imcsmb/imcsmb.c
61
static int imcsmb_readw(device_t dev, u_char slave, char cmd, short *word);
sys/dev/imcsmb/imcsmb.c
63
static int imcsmb_writew(device_t dev, u_char slave, char cmd, short word);
sys/dev/intpm/intpm.c
752
intsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/intpm/intpm.c
765
bus_write_1(sc->io_res, PIIX4_SMBHSTDAT0, word & 0xff);
sys/dev/intpm/intpm.c
766
bus_write_1(sc->io_res, PIIX4_SMBHSTDAT1, (word >> 8) & 0xff);
sys/dev/intpm/intpm.c
77
static int intsmb_writew(device_t dev, u_char slave, char cmd, short word);
sys/dev/intpm/intpm.c
79
static int intsmb_readw(device_t dev, u_char slave, char cmd, short *word);
sys/dev/intpm/intpm.c
796
intsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/intpm/intpm.c
812
*word = bus_read_1(sc->io_res, PIIX4_SMBHSTDAT0);
sys/dev/intpm/intpm.c
813
*word |= bus_read_1(sc->io_res, PIIX4_SMBHSTDAT1) << 8;
sys/dev/ismt/ismt.c
378
ismt_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/ismt/ismt.c
389
sc->dma_buffer[1] = word & 0xFF;
sys/dev/ismt/ismt.c
390
sc->dma_buffer[2] = word >> 8;
sys/dev/ismt/ismt.c
421
ismt_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/ismt/ismt.c
440
*word = sc->dma_buffer[0] | (sc->dma_buffer[1] << 8);
sys/dev/ixgbe/ixgbe_common.c
1375
u16 word;
sys/dev/ixgbe/ixgbe_common.c
1421
word = data[i];
sys/dev/ixgbe/ixgbe_common.c
1422
word = (word >> 8) | (word << 8);
sys/dev/ixgbe/ixgbe_common.c
1423
ixgbe_shift_out_eeprom_bits(hw, word, 16);
sys/dev/ixgbe/ixgbe_common.c
2227
u16 word = 0;
sys/dev/ixgbe/ixgbe_common.c
2233
if (hw->eeprom.ops.read(hw, i, &word)) {
sys/dev/ixgbe/ixgbe_common.c
2237
checksum += word;
sys/dev/ixgbe/ixgbe_common.c
2260
if (hw->eeprom.ops.read(hw, j, &word)) {
sys/dev/ixgbe/ixgbe_common.c
2264
checksum += word;
sys/dev/ixgbe/ixgbe_common.c
5476
u16 word, phy_ver;
sys/dev/ixgbe/ixgbe_common.c
5486
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_82598, &word))
sys/dev/ixgbe/ixgbe_common.c
5487
word = NVM_VER_INVALID;
sys/dev/ixgbe/ixgbe_common.c
5488
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5490
nvm_ver->nvm_minor = ((word & NVM_EEP_MINOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5492
nvm_ver->nvm_id = (word & NVM_EEP_ID_MASK);
sys/dev/ixgbe/ixgbe_common.c
5496
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_X540, &word))
sys/dev/ixgbe/ixgbe_common.c
5497
word = NVM_VER_INVALID;
sys/dev/ixgbe/ixgbe_common.c
5498
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5500
nvm_ver->nvm_minor = ((word & NVM_EEP_MINOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5502
nvm_ver->nvm_id = (word & NVM_EEP_ID_MASK);
sys/dev/ixgbe/ixgbe_common.c
5510
if (ixgbe_read_eeprom(hw, NVM_EEP_OFFSET_X540, &word))
sys/dev/ixgbe/ixgbe_common.c
5511
word = NVM_VER_INVALID;
sys/dev/ixgbe/ixgbe_common.c
5512
nvm_ver->nvm_major = ((word & NVM_EEP_MAJOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5514
nvm_ver->nvm_minor = (word & NVM_EEP_X550_MINOR_MASK);
sys/dev/ixgbe/ixgbe_common.c
5529
if (ixgbe_read_eeprom(hw, NVM_EEP_PHY_OFF_X540, &word))
sys/dev/ixgbe/ixgbe_common.c
5530
word = NVM_VER_INVALID;
sys/dev/ixgbe/ixgbe_common.c
5531
nvm_ver->phy_fw_maj = ((word & NVM_PHY_MAJOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5533
nvm_ver->phy_fw_min = ((word & NVM_PHY_MINOR_MASK)
sys/dev/ixgbe/ixgbe_common.c
5535
nvm_ver->phy_fw_id = (word & NVM_PHY_ID_MASK);
sys/dev/ixgbe/ixgbe_common.c
5544
if (ixgbe_read_eeprom(hw, NVM_DS_OFFSET, &word))
sys/dev/ixgbe/ixgbe_common.c
5545
word = NVM_VER_INVALID;
sys/dev/ixgbe/ixgbe_common.c
5546
nvm_ver->devstart_major = ((word & NVM_DS_MAJOR_MASK) >> NVM_DS_SHIFT);
sys/dev/ixgbe/ixgbe_common.c
5547
nvm_ver->devstart_minor = (word & NVM_DS_MINOR_MASK);
sys/dev/ixgbe/ixgbe_common.c
808
&pba->word[0]);
sys/dev/ixgbe/ixgbe_common.c
813
pba->word[0] = eeprom_buf[IXGBE_PBANUM0_PTR];
sys/dev/ixgbe/ixgbe_common.c
814
pba->word[1] = eeprom_buf[IXGBE_PBANUM1_PTR];
sys/dev/ixgbe/ixgbe_common.c
820
if (pba->word[0] == IXGBE_PBANUM_PTR_GUARD) {
sys/dev/ixgbe/ixgbe_common.c
834
ret_val = hw->eeprom.ops.read_buffer(hw, pba->word[1],
sys/dev/ixgbe/ixgbe_common.c
840
if (eeprom_buf_size > (u32)(pba->word[1] +
sys/dev/ixgbe/ixgbe_common.c
843
&eeprom_buf[pba->word[1]],
sys/dev/ixgbe/ixgbe_common.c
875
&pba->word[0]);
sys/dev/ixgbe/ixgbe_common.c
880
eeprom_buf[IXGBE_PBANUM0_PTR] = pba->word[0];
sys/dev/ixgbe/ixgbe_common.c
881
eeprom_buf[IXGBE_PBANUM1_PTR] = pba->word[1];
sys/dev/ixgbe/ixgbe_common.c
887
if (pba->word[0] == IXGBE_PBANUM_PTR_GUARD) {
sys/dev/ixgbe/ixgbe_common.c
892
ret_val = hw->eeprom.ops.write_buffer(hw, pba->word[1],
sys/dev/ixgbe/ixgbe_common.c
898
if (eeprom_buf_size > (u32)(pba->word[1] +
sys/dev/ixgbe/ixgbe_common.c
900
memcpy(&eeprom_buf[pba->word[1]],
sys/dev/ixgbe/ixgbe_common.h
46
u16 word[2];
sys/dev/ixgbe/ixgbe_x540.c
508
u16 word = 0;
sys/dev/ixgbe/ixgbe_x540.c
522
if (ixgbe_read_eerd_generic(hw, i, &word)) {
sys/dev/ixgbe/ixgbe_x540.c
526
checksum += word;
sys/dev/ixgbe/ixgbe_x540.c
557
if (ixgbe_read_eerd_generic(hw, j, &word)) {
sys/dev/ixgbe/ixgbe_x540.c
561
checksum += word;
sys/dev/ixgbe/ixgbe_x550.c
3825
u16 word = hw->eeprom.ctrl_word_3;
sys/dev/ixgbe/ixgbe_x550.c
3843
if ((hw->bus.lan_id && (word & NVM_INIT_CTRL_3_D10GMP_PORT1)) ||
sys/dev/ixgbe/ixgbe_x550.c
3844
(word & NVM_INIT_CTRL_3_D10GMP_PORT0))
sys/dev/ixl/i40e_nvm.c
456
u16 index, word;
sys/dev/ixl/i40e_nvm.c
461
for (word = 0; word < *words; word++) {
sys/dev/ixl/i40e_nvm.c
462
index = offset + word;
sys/dev/ixl/i40e_nvm.c
463
ret_code = i40e_read_nvm_word_srctl(hw, index, &data[word]);
sys/dev/ixl/i40e_nvm.c
469
*words = word;
sys/dev/lge/if_lge.c
246
u_int16_t word = 0, *ptr;
sys/dev/lge/if_lge.c
249
lge_eeprom_getword(sc, off + i, &word);
sys/dev/lge/if_lge.c
252
*ptr = ntohs(word);
sys/dev/lge/if_lge.c
254
*ptr = word;
sys/dev/mfi/mfi.c
1106
error = mfi_aen_register(sc, seq, class_locale.word);
sys/dev/mfi/mfi.c
1675
current_aen.word = locale;
sys/dev/mfi/mfi.c
1677
prior_aen.word =
sys/dev/mfi/mfi.c
1801
((uint32_t *)&dcmd->mbox)[1] = class_locale.word;
sys/dev/mfi/mfi_tbolt.c
682
val.word = ((union mfi_mpi2_reply_descriptor *)desc)->words;
sys/dev/mfi/mfi_tbolt.c
739
val.word = ((union mfi_mpi2_reply_descriptor*)desc)->words;
sys/dev/mfi/mfireg.h
918
uint32_t word;
sys/dev/mfi/mfivar.h
376
uint64_t word;
sys/dev/mpr/mpr.c
131
u64 word;
sys/dev/mpr/mpr_sas_lsi.c
1103
hash_address.word.low = 0;
sys/dev/mpr/mpr_sas_lsi.c
1104
hash_address.word.high = 0;
sys/dev/mpr/mpr_sas_lsi.c
1106
hash_address.word.low += *bufferptr;
sys/dev/mpr/mpr_sas_lsi.c
1108
hash_address.word.high += *bufferptr;
sys/dev/mpr/mpr_sas_lsi.c
1112
hash_address.word.low += *bufferptr;
sys/dev/mpr/mpr_sas_lsi.c
1116
if ((hash_address.word.high & 0x000000F0) == (0x00000050))
sys/dev/mpr/mpr_sas_lsi.c
1117
hash_address.word.high |= 0x00000080;
sys/dev/mpr/mpr_sas_lsi.c
98
} word;
sys/dev/mps/mps.c
1108
rd.word = htole64(rd.word);
sys/dev/mps/mps.c
127
u64 word;
sys/dev/mps/mps_sas_lsi.c
878
hash_address.word.low = 0;
sys/dev/mps/mps_sas_lsi.c
879
hash_address.word.high = 0;
sys/dev/mps/mps_sas_lsi.c
881
hash_address.word.low += *bufferptr;
sys/dev/mps/mps_sas_lsi.c
883
hash_address.word.high += *bufferptr;
sys/dev/mps/mps_sas_lsi.c
887
hash_address.word.low += *bufferptr;
sys/dev/mps/mps_sas_lsi.c
891
if ((hash_address.word.high & 0x000000F0) == (0x00000050))
sys/dev/mps/mps_sas_lsi.c
892
hash_address.word.high |= 0x00000080;
sys/dev/mps/mps_sas_lsi.c
98
} word;
sys/dev/mrsas/mrsas.c
1673
desc_val.word = desc->Words;
sys/dev/mrsas/mrsas.c
1780
desc_val.word = desc->Words;
sys/dev/mrsas/mrsas.c
3414
class_locale.word)) {
sys/dev/mrsas/mrsas.c
4995
class_locale.word);
sys/dev/mrsas/mrsas.c
642
curr_aen.word = class_locale_word;
sys/dev/mrsas/mrsas.c
645
prev_aen.word = le32toh(sc->aen_cmd->frame->dcmd.mbox.w[1]);
sys/dev/mrsas/mrsas.c
703
dcmd->mbox.w[1] = htole32(curr_aen.word);
sys/dev/mrsas/mrsas.c
751
class_locale.word);
sys/dev/mrsas/mrsas.h
1247
u_int64_t word;
sys/dev/mrsas/mrsas.h
2803
u_int32_t word;
sys/dev/mxge/if_mxge.c
340
uint16_t vendor_id, device_id, word;
sys/dev/mxge/if_mxge.c
369
word = pci_read_config(mcp55, 0x90, 2);
sys/dev/mxge/if_mxge.c
370
base = ((unsigned long)word & 0x7ffeU) << 25;
sys/dev/nfsmb/nfsmb.c
489
nfsmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/nfsmb/nfsmb.c
496
NFSMB_SMBOUTB(sc, SMB_DATA, word);
sys/dev/nfsmb/nfsmb.c
497
NFSMB_SMBOUTB(sc, SMB_DATA + 1, word >> 8);
sys/dev/nfsmb/nfsmb.c
503
NFSMB_DEBUG(printf("nfsmb: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
sys/dev/nfsmb/nfsmb.c
510
nfsmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/nfsmb/nfsmb.c
521
*word = NFSMB_SMBINB(sc, SMB_DATA) |
sys/dev/nfsmb/nfsmb.c
524
NFSMB_DEBUG(printf("nfsmb: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, (unsigned short)*word, error));
sys/dev/nge/if_nge.c
325
uint16_t word = 0;
sys/dev/nge/if_nge.c
349
word |= i;
sys/dev/nge/if_nge.c
358
*dest = word;
sys/dev/nge/if_nge.c
368
uint16_t word = 0, *ptr;
sys/dev/nge/if_nge.c
371
nge_eeprom_getword(sc, off + i, &word);
sys/dev/nge/if_nge.c
373
*ptr = word;
sys/dev/ocs_fc/ocs_ddump.c
333
ftr.word = q_hist->q_hist[x];
sys/dev/ocs_fc/ocs_utils.c
1050
ftr.word = 0;
sys/dev/ocs_fc/ocs_utils.c
1068
q_hist->q_hist[q_hist->q_hist_index] = ftr.word;
sys/dev/ocs_fc/ocs_utils.c
1098
ftr.word = 0;
sys/dev/ocs_fc/ocs_utils.c
1114
q_hist->q_hist[q_hist->q_hist_index] = ftr.word;
sys/dev/ocs_fc/ocs_utils.c
1149
ftr.word = 0;
sys/dev/ocs_fc/ocs_utils.c
1175
q_hist->q_hist[q_hist->q_hist_index] = ftr.word;
sys/dev/ocs_fc/ocs_utils.h
160
uint32_t word;
sys/dev/pms/RefTisa/sat/src/smdefs.h
173
bit16 word[256];
sys/dev/pms/RefTisa/sat/src/smsat.c
2603
pInquiry[16] = (bit8)((pSimpleData->word[27]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2604
pInquiry[17] = (bit8)((pSimpleData->word[27]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2605
pInquiry[18] = (bit8)((pSimpleData->word[28]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2606
pInquiry[19] = (bit8)((pSimpleData->word[28]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2607
pInquiry[20] = (bit8)((pSimpleData->word[29]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2608
pInquiry[21] = (bit8)((pSimpleData->word[29]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2609
pInquiry[22] = (bit8)((pSimpleData->word[30]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2610
pInquiry[23] = (bit8)((pSimpleData->word[30]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2611
pInquiry[24] = (bit8)((pSimpleData->word[31]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2612
pInquiry[25] = (bit8)((pSimpleData->word[31]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2613
pInquiry[26] = (bit8)((pSimpleData->word[32]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2614
pInquiry[27] = (bit8)((pSimpleData->word[32]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2615
pInquiry[28] = (bit8)((pSimpleData->word[33]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2616
pInquiry[29] = (bit8)((pSimpleData->word[33]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2617
pInquiry[30] = (bit8)((pSimpleData->word[34]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2618
pInquiry[31] = (bit8)((pSimpleData->word[34]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2619
pInquiry[32] = (bit8)((pSimpleData->word[35]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2620
pInquiry[33] = (bit8)((pSimpleData->word[35]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2621
pInquiry[34] = (bit8)((pSimpleData->word[36]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2622
pInquiry[35] = (bit8)((pSimpleData->word[36]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2623
pInquiry[36] = (bit8)((pSimpleData->word[37]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2624
pInquiry[37] = (bit8)((pSimpleData->word[37]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2625
pInquiry[38] = (bit8)((pSimpleData->word[38]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2626
pInquiry[39] = (bit8)((pSimpleData->word[38]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2627
pInquiry[40] = (bit8)((pSimpleData->word[39]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2628
pInquiry[41] = (bit8)((pSimpleData->word[39]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2629
pInquiry[42] = (bit8)((pSimpleData->word[40]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2630
pInquiry[43] = (bit8)((pSimpleData->word[40]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2631
pInquiry[44] = (bit8)((pSimpleData->word[41]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2632
pInquiry[45] = (bit8)((pSimpleData->word[41]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2633
pInquiry[46] = (bit8)((pSimpleData->word[42]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2634
pInquiry[47] = (bit8)((pSimpleData->word[42]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2635
pInquiry[48] = (bit8)((pSimpleData->word[43]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2636
pInquiry[49] = (bit8)((pSimpleData->word[43]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2637
pInquiry[50] = (bit8)((pSimpleData->word[44]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2638
pInquiry[51] = (bit8)((pSimpleData->word[44]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2639
pInquiry[52] = (bit8)((pSimpleData->word[45]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2640
pInquiry[53] = (bit8)((pSimpleData->word[45]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2641
pInquiry[54] = (bit8)((pSimpleData->word[46]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2642
pInquiry[55] = (bit8)((pSimpleData->word[46]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2644
pInquiry[56] = (bit8)((pSimpleData->word[10]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2645
pInquiry[57] = (bit8)((pSimpleData->word[10]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2646
pInquiry[58] = (bit8)((pSimpleData->word[11]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2647
pInquiry[59] = (bit8)((pSimpleData->word[11]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2648
pInquiry[60] = (bit8)((pSimpleData->word[12]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2649
pInquiry[61] = (bit8)((pSimpleData->word[12]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2650
pInquiry[62] = (bit8)((pSimpleData->word[13]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2651
pInquiry[63] = (bit8)((pSimpleData->word[13]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2652
pInquiry[64] = (bit8)((pSimpleData->word[14]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2653
pInquiry[65] = (bit8)((pSimpleData->word[14]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2654
pInquiry[66] = (bit8)((pSimpleData->word[15]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2655
pInquiry[67] = (bit8)((pSimpleData->word[15]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2656
pInquiry[68] = (bit8)((pSimpleData->word[16]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2657
pInquiry[69] = (bit8)((pSimpleData->word[16]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2658
pInquiry[70] = (bit8)((pSimpleData->word[17]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2659
pInquiry[71] = (bit8)((pSimpleData->word[17]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2660
pInquiry[72] = (bit8)((pSimpleData->word[18]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2661
pInquiry[73] = (bit8)((pSimpleData->word[18]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2662
pInquiry[74] = (bit8)((pSimpleData->word[19]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2663
pInquiry[75] = (bit8)((pSimpleData->word[19]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2687
pInquiry[16] = (bit8)((pSimpleData->word[27]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2688
pInquiry[17] = (bit8)((pSimpleData->word[27]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2689
pInquiry[18] = (bit8)((pSimpleData->word[28]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2690
pInquiry[19] = (bit8)((pSimpleData->word[28]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2691
pInquiry[20] = (bit8)((pSimpleData->word[29]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2692
pInquiry[21] = (bit8)((pSimpleData->word[29]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2693
pInquiry[22] = (bit8)((pSimpleData->word[30]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2694
pInquiry[23] = (bit8)((pSimpleData->word[30]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2695
pInquiry[24] = (bit8)((pSimpleData->word[31]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2696
pInquiry[25] = (bit8)((pSimpleData->word[31]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2697
pInquiry[26] = (bit8)((pSimpleData->word[32]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2698
pInquiry[27] = (bit8)((pSimpleData->word[32]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2699
pInquiry[28] = (bit8)((pSimpleData->word[33]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2700
pInquiry[29] = (bit8)((pSimpleData->word[33]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2701
pInquiry[30] = (bit8)((pSimpleData->word[34]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2702
pInquiry[31] = (bit8)((pSimpleData->word[34]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2703
pInquiry[32] = (bit8)((pSimpleData->word[35]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2704
pInquiry[33] = (bit8)((pSimpleData->word[35]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2705
pInquiry[34] = (bit8)((pSimpleData->word[36]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2706
pInquiry[35] = (bit8)((pSimpleData->word[36]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2707
pInquiry[36] = (bit8)((pSimpleData->word[37]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2708
pInquiry[37] = (bit8)((pSimpleData->word[37]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2709
pInquiry[38] = (bit8)((pSimpleData->word[38]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2710
pInquiry[39] = (bit8)((pSimpleData->word[38]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2711
pInquiry[40] = (bit8)((pSimpleData->word[39]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2712
pInquiry[41] = (bit8)((pSimpleData->word[39]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2713
pInquiry[42] = (bit8)((pSimpleData->word[40]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2714
pInquiry[43] = (bit8)((pSimpleData->word[40]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2715
pInquiry[44] = (bit8)((pSimpleData->word[41]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2716
pInquiry[45] = (bit8)((pSimpleData->word[41]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2717
pInquiry[46] = (bit8)((pSimpleData->word[42]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2718
pInquiry[47] = (bit8)((pSimpleData->word[42]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2719
pInquiry[48] = (bit8)((pSimpleData->word[43]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2720
pInquiry[49] = (bit8)((pSimpleData->word[43]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2721
pInquiry[50] = (bit8)((pSimpleData->word[44]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2722
pInquiry[51] = (bit8)((pSimpleData->word[44]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2723
pInquiry[52] = (bit8)((pSimpleData->word[45]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2724
pInquiry[53] = (bit8)((pSimpleData->word[45]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2725
pInquiry[54] = (bit8)((pSimpleData->word[46]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2726
pInquiry[55] = (bit8)((pSimpleData->word[46]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2728
pInquiry[56] = (bit8)((pSimpleData->word[10]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2729
pInquiry[57] = (bit8)((pSimpleData->word[10]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2730
pInquiry[58] = (bit8)((pSimpleData->word[11]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2731
pInquiry[59] = (bit8)((pSimpleData->word[11]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2732
pInquiry[60] = (bit8)((pSimpleData->word[12]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2733
pInquiry[61] = (bit8)((pSimpleData->word[12]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2734
pInquiry[62] = (bit8)((pSimpleData->word[13]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2735
pInquiry[63] = (bit8)((pSimpleData->word[13]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2736
pInquiry[64] = (bit8)((pSimpleData->word[14]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2737
pInquiry[65] = (bit8)((pSimpleData->word[14]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2738
pInquiry[66] = (bit8)((pSimpleData->word[15]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2739
pInquiry[67] = (bit8)((pSimpleData->word[15]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2740
pInquiry[68] = (bit8)((pSimpleData->word[16]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2741
pInquiry[69] = (bit8)((pSimpleData->word[16]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2742
pInquiry[70] = (bit8)((pSimpleData->word[17]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2743
pInquiry[71] = (bit8)((pSimpleData->word[17]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2744
pInquiry[72] = (bit8)((pSimpleData->word[18]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2745
pInquiry[73] = (bit8)((pSimpleData->word[18]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2746
pInquiry[74] = (bit8)((pSimpleData->word[19]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2747
pInquiry[75] = (bit8)((pSimpleData->word[19]) & 0x00ff);
sys/dev/pms/RefTisa/sat/src/smsat.c
2962
pInquiry[4] = (bit8) ((pSimpleData->word[217]) >> 8);
sys/dev/pms/RefTisa/sat/src/smsat.c
2963
pInquiry[5] = (bit8) ((pSimpleData->word[217]) & 0xFF);
sys/dev/pms/RefTisa/sat/src/smsat.c
2969
pInquiry[7] = (bit8) ((pSimpleData->word[168]) & 0xF);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18442
pInquiry[16] = (bit8)((pSimpleData->word[27]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18443
pInquiry[17] = (bit8)((pSimpleData->word[27]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18444
pInquiry[18] = (bit8)((pSimpleData->word[28]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18445
pInquiry[19] = (bit8)((pSimpleData->word[28]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18446
pInquiry[20] = (bit8)((pSimpleData->word[29]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18447
pInquiry[21] = (bit8)((pSimpleData->word[29]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18448
pInquiry[22] = (bit8)((pSimpleData->word[30]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18449
pInquiry[23] = (bit8)((pSimpleData->word[30]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18450
pInquiry[24] = (bit8)((pSimpleData->word[31]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18451
pInquiry[25] = (bit8)((pSimpleData->word[31]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18452
pInquiry[26] = (bit8)((pSimpleData->word[32]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18453
pInquiry[27] = (bit8)((pSimpleData->word[32]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18454
pInquiry[28] = (bit8)((pSimpleData->word[33]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18455
pInquiry[29] = (bit8)((pSimpleData->word[33]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18456
pInquiry[30] = (bit8)((pSimpleData->word[34]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18457
pInquiry[31] = (bit8)((pSimpleData->word[34]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18458
pInquiry[32] = (bit8)((pSimpleData->word[35]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18459
pInquiry[33] = (bit8)((pSimpleData->word[35]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18460
pInquiry[34] = (bit8)((pSimpleData->word[36]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18461
pInquiry[35] = (bit8)((pSimpleData->word[36]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18462
pInquiry[36] = (bit8)((pSimpleData->word[37]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18463
pInquiry[37] = (bit8)((pSimpleData->word[37]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18464
pInquiry[38] = (bit8)((pSimpleData->word[38]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18465
pInquiry[39] = (bit8)((pSimpleData->word[38]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18466
pInquiry[40] = (bit8)((pSimpleData->word[39]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18467
pInquiry[41] = (bit8)((pSimpleData->word[39]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18468
pInquiry[42] = (bit8)((pSimpleData->word[40]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18469
pInquiry[43] = (bit8)((pSimpleData->word[40]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18470
pInquiry[44] = (bit8)((pSimpleData->word[41]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18471
pInquiry[45] = (bit8)((pSimpleData->word[41]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18472
pInquiry[46] = (bit8)((pSimpleData->word[42]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18473
pInquiry[47] = (bit8)((pSimpleData->word[42]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18474
pInquiry[48] = (bit8)((pSimpleData->word[43]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18475
pInquiry[49] = (bit8)((pSimpleData->word[43]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18476
pInquiry[50] = (bit8)((pSimpleData->word[44]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18477
pInquiry[51] = (bit8)((pSimpleData->word[44]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18478
pInquiry[52] = (bit8)((pSimpleData->word[45]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18479
pInquiry[53] = (bit8)((pSimpleData->word[45]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18480
pInquiry[54] = (bit8)((pSimpleData->word[46]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18481
pInquiry[55] = (bit8)((pSimpleData->word[46]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18483
pInquiry[56] = (bit8)((pSimpleData->word[10]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18484
pInquiry[57] = (bit8)((pSimpleData->word[10]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18485
pInquiry[58] = (bit8)((pSimpleData->word[11]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18486
pInquiry[59] = (bit8)((pSimpleData->word[11]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18487
pInquiry[60] = (bit8)((pSimpleData->word[12]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18488
pInquiry[61] = (bit8)((pSimpleData->word[12]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18489
pInquiry[62] = (bit8)((pSimpleData->word[13]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18490
pInquiry[63] = (bit8)((pSimpleData->word[13]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18491
pInquiry[64] = (bit8)((pSimpleData->word[14]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18492
pInquiry[65] = (bit8)((pSimpleData->word[14]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18493
pInquiry[66] = (bit8)((pSimpleData->word[15]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18494
pInquiry[67] = (bit8)((pSimpleData->word[15]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18495
pInquiry[68] = (bit8)((pSimpleData->word[16]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18496
pInquiry[69] = (bit8)((pSimpleData->word[16]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18497
pInquiry[70] = (bit8)((pSimpleData->word[17]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18498
pInquiry[71] = (bit8)((pSimpleData->word[17]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18499
pInquiry[72] = (bit8)((pSimpleData->word[18]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18500
pInquiry[73] = (bit8)((pSimpleData->word[18]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18501
pInquiry[74] = (bit8)((pSimpleData->word[19]) >> 8);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.c
18502
pInquiry[75] = (bit8)((pSimpleData->word[19]) & 0x00ff);
sys/dev/pms/RefTisa/tisa/sassata/sata/host/sat.h
140
bit16 word[256];
sys/dev/qat/qat_common/adf_freebsd_transport_debug.c
26
int error, word;
sys/dev/qat/qat_common/adf_freebsd_transport_debug.c
69
for (word = 0; word < 32 / 4; word++, wp++)
sys/dev/qat/qat_common/qat_hal.c
743
qat_hal_parity_64bit(uint64_t word)
sys/dev/qat/qat_common/qat_hal.c
745
word ^= word >> 1;
sys/dev/qat/qat_common/qat_hal.c
746
word ^= word >> 2;
sys/dev/qat/qat_common/qat_hal.c
747
word ^= word >> 4;
sys/dev/qat/qat_common/qat_hal.c
748
word ^= word >> 8;
sys/dev/qat/qat_common/qat_hal.c
749
word ^= word >> 16;
sys/dev/qat/qat_common/qat_hal.c
750
word ^= word >> 32;
sys/dev/qat/qat_common/qat_hal.c
751
return word & 1;
sys/dev/re/if_re.c
402
u_int16_t word = 0;
sys/dev/re/if_re.c
416
word |= i;
sys/dev/re/if_re.c
421
*dest = word;
sys/dev/re/if_re.c
431
u_int16_t word = 0, *ptr;
sys/dev/re/if_re.c
439
re_eeprom_getword(sc, off + i, &word);
sys/dev/re/if_re.c
442
*ptr = word;
sys/dev/rl/if_rl.c
305
uint16_t word = 0;
sys/dev/rl/if_rl.c
324
word |= i;
sys/dev/rl/if_rl.c
332
*dest = word;
sys/dev/rl/if_rl.c
342
uint16_t word = 0, *ptr;
sys/dev/rl/if_rl.c
345
rl_eeprom_getword(sc, off + i, &word);
sys/dev/rl/if_rl.c
348
*ptr = ntohs(word);
sys/dev/rl/if_rl.c
350
*ptr = word;
sys/dev/sfxge/common/efx_vpd.c
358
efx_word_t word;
sys/dev/sfxge/common/efx_vpd.c
389
EFX_POPULATE_WORD_2(word,
sys/dev/sfxge/common/efx_vpd.c
392
length = EFX_WORD_FIELD(word, EFX_WORD_0);
sys/dev/sfxge/common/efx_vpd.c
800
efx_word_t word;
sys/dev/sfxge/common/efx_vpd.c
930
EFX_POPULATE_WORD_1(word, EFX_WORD_0,
sys/dev/sfxge/common/efx_vpd.c
933
EFX_WORD_FIELD(word, EFX_BYTE_0);
sys/dev/sfxge/common/efx_vpd.c
935
EFX_WORD_FIELD(word, EFX_BYTE_1);
sys/dev/sfxge/common/efx_vpd.c
941
EFX_POPULATE_WORD_1(word, EFX_WORD_0, taglen);
sys/dev/sfxge/common/efx_vpd.c
942
data[offset - 2] = EFX_WORD_FIELD(word, EFX_BYTE_0);
sys/dev/sfxge/common/efx_vpd.c
943
data[offset - 1] = EFX_WORD_FIELD(word, EFX_BYTE_1);
sys/dev/sfxge/common/siena_phy.c
688
uint16_t word;
sys/dev/sfxge/common/siena_phy.c
724
word = MCDI_OUT_WORD(req,
sys/dev/sfxge/common/siena_phy.c
727
siena_phy_sft9001_bist_status(word);
sys/dev/sfxge/common/siena_phy.c
734
word = MCDI_OUT_WORD(req,
sys/dev/sfxge/common/siena_phy.c
737
siena_phy_sft9001_bist_status(word);
sys/dev/sfxge/common/siena_phy.c
744
word = MCDI_OUT_WORD(req,
sys/dev/sfxge/common/siena_phy.c
747
siena_phy_sft9001_bist_status(word);
sys/dev/sfxge/common/siena_phy.c
754
word = MCDI_OUT_WORD(req,
sys/dev/sfxge/common/siena_phy.c
757
siena_phy_sft9001_bist_status(word);
sys/dev/sis/if_sis.c
290
uint16_t word = 0;
sys/dev/sis/if_sis.c
314
word |= i;
sys/dev/sis/if_sis.c
323
*dest = word;
sys/dev/sis/if_sis.c
333
uint16_t word = 0, *ptr;
sys/dev/sis/if_sis.c
336
sis_eeprom_getword(sc, off + i, &word);
sys/dev/sis/if_sis.c
339
*ptr = ntohs(word);
sys/dev/sis/if_sis.c
341
*ptr = word;
sys/dev/smbus/smb.c
180
CP(*uaddr, *kaddr, wdata.word);
sys/dev/smbus/smb.c
290
s->cmd, s->wdata.word));
sys/dev/smbus/smb.c
318
&s->rdata.word));
sys/dev/smbus/smb.c
322
buf[0] = (u_char)s->rdata.word;
sys/dev/smbus/smb.c
323
buf[1] = (u_char)(s->rdata.word >> 8);
sys/dev/smbus/smb.c
337
s->wdata.word, &s->rdata.word));
sys/dev/smbus/smb.c
341
buf[0] = (u_char)s->rdata.word;
sys/dev/smbus/smb.c
342
buf[1] = (u_char)(s->rdata.word >> 8);
sys/dev/smbus/smb.c
401
CP(*s, *s32, rdata.word);
sys/dev/smbus/smb.c
405
CP(*s, *s32, rdata.word);
sys/dev/smbus/smb.c
54
short word;
sys/dev/smbus/smb.c
59
short word;
sys/dev/smbus/smb.h
41
short word;
sys/dev/smbus/smb.h
46
short word;
sys/dev/smbus/smbconf.h
105
#define smbus_writew(bus,slave,cmd,word) \
sys/dev/smbus/smbconf.h
106
(SMBUS_WRITEW(device_get_parent(bus), slave, cmd, word))
sys/dev/smbus/smbconf.h
109
#define smbus_readw(bus,slave,cmd,word) \
sys/dev/smbus/smbconf.h
110
(SMBUS_READW(device_get_parent(bus), slave, cmd, word))
sys/dev/usb/net/if_aue.c
409
uint16_t word;
sys/dev/usb/net/if_aue.c
412
word = aue_eeprom_getword(sc, offset + i);
sys/dev/usb/net/if_aue.c
413
eaddr[i * 2] = (uint8_t)word;
sys/dev/usb/net/if_aue.c
414
eaddr[i * 2 + 1] = (uint8_t)(word >> 8);
sys/dev/usb/net/if_kue.c
249
kue_setword(struct kue_softc *sc, uint8_t breq, uint16_t word)
sys/dev/usb/net/if_kue.c
255
USETW(req.wValue, word);
sys/dev/vge/if_vge.c
240
uint16_t word = 0;
sys/dev/vge/if_vge.c
269
word = CSR_READ_2(sc, VGE_EERDDAT);
sys/dev/vge/if_vge.c
275
*dest = word;
sys/dev/vge/if_vge.c
287
uint16_t word = 0, *ptr;
sys/dev/vge/if_vge.c
290
vge_eeprom_getword(sc, off + i, &word);
sys/dev/vge/if_vge.c
293
*ptr = ntohs(word);
sys/dev/vge/if_vge.c
295
*ptr = word;
sys/dev/viapm/viapm.c
788
viasmb_writew(device_t dev, u_char slave, char cmd, short word)
sys/dev/viapm/viapm.c
802
VIAPM_OUTB(SMBHDATA0, word & 0x00ff);
sys/dev/viapm/viapm.c
803
VIAPM_OUTB(SMBHDATA1, (word & 0xff00) >> 8);
sys/dev/viapm/viapm.c
809
VIAPM_DEBUG(printf("viapm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
sys/dev/viapm/viapm.c
816
viasmb_readw(device_t dev, u_char slave, char cmd, short *word)
sys/dev/viapm/viapm.c
838
*word = ((high & 0xff) << 8) | (low & 0xff);
sys/dev/viapm/viapm.c
841
VIAPM_DEBUG(printf("viapm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
sys/dev/wg/wg_crypto.c
42
static inline uint32_t ror32(uint32_t word, unsigned int shift)
sys/dev/wg/wg_crypto.c
44
return (word >> (shift & 31)) | (word << ((-shift) & 31));
sys/dev/xl/if_xl.c
552
u_int16_t word = 0, *ptr;
sys/dev/xl/if_xl.c
579
word = CSR_READ_2(sc, XL_W0_EE_DATA);
sys/dev/xl/if_xl.c
582
*ptr = ntohs(word);
sys/dev/xl/if_xl.c
584
*ptr = word;
sys/geom/union/g_union.c
1117
uint64_t *leaf, word;
sys/geom/union/g_union.c
1152
word = leaf[(start % sc->sc_bits_per_leaf) / BITS_PER_ENTRY];
sys/geom/union/g_union.c
1154
if (bitloc == 0 && (word == 0 || word == ~0)) {
sys/geom/union/g_union.c
1156
if (word == 0)
sys/geom/union/g_union.c
1162
if ((word == 0 && maptype) ||
sys/geom/union/g_union.c
1163
(word == ~0 && !maptype))
sys/geom/union/g_union.c
1170
retval = (word & (1ULL << bitloc)) != 0;
sys/i386/i386/copyout.c
384
suword16(volatile void *base, int word)
sys/i386/i386/copyout.c
390
if (fast_copyout && suword16_fast_tramp(base, word, pmap_get_kcr3())
sys/i386/i386/copyout.c
394
suword16_slow0, &word) != 0 ? -1 : 0);
sys/i386/i386/copyout.c
405
suword(volatile void *base, long word)
sys/i386/i386/copyout.c
408
if ((uintptr_t)base + sizeof(word) < (uintptr_t)base ||
sys/i386/i386/copyout.c
409
(uintptr_t)base + sizeof(word) > VM_MAXUSER_ADDRESS)
sys/i386/i386/copyout.c
411
if (fast_copyout && suword_fast_tramp(base, word, pmap_get_kcr3()) == 0)
sys/i386/i386/copyout.c
414
suword_slow0, &word) != 0 ? -1 : 0);
sys/i386/i386/copyout.c
418
suword32(volatile void *base, int32_t word)
sys/i386/i386/copyout.c
421
return (suword(base, word));
sys/i386/i386/vm86.c
79
vm86_suword16(volatile void *base, int word)
sys/i386/i386/vm86.c
83
*(volatile uint16_t *)base = word;
sys/i386/i386/vm86.c
86
return (suword16(base, word));
sys/i386/i386/vm86.c
90
vm86_suword(volatile void *base, long word)
sys/i386/i386/vm86.c
94
*(volatile long *)base = word;
sys/i386/i386/vm86.c
97
return (suword(base, word));
sys/kern/subr_asan.c
589
kasan_suword(volatile void *base, long word)
sys/kern/subr_asan.c
591
return (suword(base, word));
sys/kern/subr_asan.c
595
kasan_suword16(volatile void *base, int word)
sys/kern/subr_asan.c
597
return (suword16(base, word));
sys/kern/subr_asan.c
601
kasan_suword32(volatile void *base, int32_t word)
sys/kern/subr_asan.c
603
return (suword32(base, word));
sys/kern/subr_asan.c
607
kasan_suword64(volatile void *base, int64_t word)
sys/kern/subr_asan.c
609
return (suword64(base, word));
sys/kern/subr_msan.c
1007
kmsan_suword(volatile void *base, long word)
sys/kern/subr_msan.c
1011
kmsan_check_arg(sizeof(base) + sizeof(word), "suword():args");
sys/kern/subr_msan.c
1012
ret = suword(base, word);
sys/kern/subr_msan.c
1018
kmsan_suword16(volatile void *base, int word)
sys/kern/subr_msan.c
1022
kmsan_check_arg(sizeof(base) + sizeof(word), "suword16():args");
sys/kern/subr_msan.c
1023
ret = suword16(base, word);
sys/kern/subr_msan.c
1029
kmsan_suword32(volatile void *base, int32_t word)
sys/kern/subr_msan.c
1033
kmsan_check_arg(sizeof(base) + sizeof(word), "suword32():args");
sys/kern/subr_msan.c
1034
ret = suword32(base, word);
sys/kern/subr_msan.c
1040
kmsan_suword64(volatile void *base, int64_t word)
sys/kern/subr_msan.c
1044
kmsan_check_arg(sizeof(base) + sizeof(word), "suword64():args");
sys/kern/subr_msan.c
1045
ret = suword64(base, word);
sys/libkern/bcopy.c
103
TLOOP(*(word *)dst = *(const word *)src; src += wsize;
sys/libkern/bcopy.c
129
*(word *)dst = *(const word *)src);
sys/libkern/bcopy.c
51
#define wsize sizeof(word)
sys/libkern/memcchr.c
62
unsigned long word;
sys/libkern/memcchr.c
65
word = (unsigned char)c;
sys/libkern/memcchr.c
66
word |= word << 8;
sys/libkern/memcchr.c
67
word |= word << 16;
sys/libkern/memcchr.c
69
word |= word << 32;
sys/libkern/memcchr.c
83
if (*lp++ != word)
sys/libkern/memcchr.c
89
if (*lp != word) {
sys/netpfil/ipfw/dn_sched_qfq.c
87
static inline unsigned long __fls(unsigned long word)
sys/netpfil/ipfw/dn_sched_qfq.c
89
return fls(word) - 1;
sys/opencrypto/gfmult.c
135
gfmultword(uint64_t word, struct gf128 x, struct gf128table *tbl)
sys/opencrypto/gfmult.c
143
bits = word % 16;
sys/opencrypto/gfmult.c
154
word >>= 4;
sys/powerpc/amigaone/cpld_a1222.c
311
uint16_t *word;
sys/powerpc/amigaone/cpld_a1222.c
320
for (i = 0, word = d->words; i < d->len; i++, word++) {
sys/powerpc/amigaone/cpld_a1222.c
322
cpld_write(sc, CPLD_REG_RAM + d->offset, *word);
sys/powerpc/amigaone/cpld_a1222.c
324
bus_write_4(sc->sc_mem, CPLD_MEM_DATA, *word);
sys/powerpc/amigaone/cpld_a1222.c
337
uint16_t *word;
sys/powerpc/amigaone/cpld_a1222.c
345
for (i = 0, word = d->words; i < d->len; i++, word++) {
sys/powerpc/amigaone/cpld_a1222.c
347
*word = cpld_read(sc, CPLD_REG_RAM + d->offset);
sys/powerpc/amigaone/cpld_a1222.c
349
*word = bus_read_4(sc->sc_mem, CPLD_MEM_DATA);
sys/powerpc/amigaone/cpld_x5000.c
249
uint16_t *word;
sys/powerpc/amigaone/cpld_x5000.c
258
for (i = 0, word = d->words; i < d->len; i++, word++) {
sys/powerpc/amigaone/cpld_x5000.c
260
cpld_write(sc, CPLD_REG_RAM, *word);
sys/powerpc/amigaone/cpld_x5000.c
262
bus_write_4(sc->sc_mem, CPLD_MEM_DATA, *word);
sys/powerpc/amigaone/cpld_x5000.c
275
uint16_t *word;
sys/powerpc/amigaone/cpld_x5000.c
283
for (i = 0, word = d->words; i < d->len; i++, word++) {
sys/powerpc/amigaone/cpld_x5000.c
285
*word = cpld_read(sc, CPLD_REG_RAM);
sys/powerpc/amigaone/cpld_x5000.c
287
*word = bus_read_4(sc->sc_mem, CPLD_MEM_DATA);
sys/powerpc/include/cpufunc.h
205
cntlzd(uint64_t word)
sys/powerpc/include/cpufunc.h
210
"=r"(result) : "r"(word));
sys/powerpc/include/cpufunc.h
216
cnttzd(uint64_t word)
sys/powerpc/include/cpufunc.h
221
"=r"(result) : "r"(word));
sys/powerpc/powernv/opal_pci.c
506
uint32_t word;
sys/powerpc/powernv/opal_pci.c
518
word = byte;
sys/powerpc/powernv/opal_pci.c
523
word = be16toh(half);
sys/powerpc/powernv/opal_pci.c
527
config_addr, reg, vtophys(&word));
sys/powerpc/powernv/opal_pci.c
528
word = be32toh(word);
sys/powerpc/powernv/opal_pci.c
532
word = 0xffffffff;
sys/powerpc/powernv/opal_pci.c
542
(word == ((1UL << (8 * width)) - 1))) {
sys/powerpc/powernv/opal_pci.c
554
word = 0xffffffff;
sys/powerpc/powernv/opal_pci.c
557
return (word);
sys/powerpc/powerpc/copyinout.c
100
int suword16_direct(volatile void *addr, int word);
sys/powerpc/powerpc/copyinout.c
101
int suword32_remap(volatile void *addr, int word);
sys/powerpc/powerpc/copyinout.c
102
int suword32_direct(volatile void *addr, int word);
sys/powerpc/powerpc/copyinout.c
103
int suword_remap(volatile void *addr, long word);
sys/powerpc/powerpc/copyinout.c
104
int suword_direct(volatile void *addr, long word);
sys/powerpc/powerpc/copyinout.c
105
int suword64_remap(volatile void *addr, int64_t word);
sys/powerpc/powerpc/copyinout.c
106
int suword64_direct(volatile void *addr, int64_t word);
sys/powerpc/powerpc/copyinout.c
318
REMAP(suword16)(volatile void *addr, int word)
sys/powerpc/powerpc/copyinout.c
339
*p = (int16_t)word;
sys/powerpc/powerpc/copyinout.c
347
REMAP(suword32)(volatile void *addr, int word)
sys/powerpc/powerpc/copyinout.c
368
*p = word;
sys/powerpc/powerpc/copyinout.c
375
REMAP(suword32)(volatile void *addr, int32_t word)
sys/powerpc/powerpc/copyinout.c
377
REMAP( return (suword)(addr, (long)word));
sys/powerpc/powerpc/copyinout.c
382
REMAP(suword)(volatile void *addr, long word)
sys/powerpc/powerpc/copyinout.c
403
*p = word;
sys/powerpc/powerpc/copyinout.c
411
REMAP(suword64)(volatile void *addr, int64_t word)
sys/powerpc/powerpc/copyinout.c
413
return (REMAP(suword)(addr, (long)word));
sys/powerpc/powerpc/copyinout.c
99
int suword16_remap(volatile void *addr, int word);
sys/riscv/vmm/vmm_aplic.c
168
aplic_set_enabled_word(struct aplic *aplic, bool write, uint32_t word,
sys/riscv/vmm/vmm_aplic.c
185
v = word * 32 + i;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1323
int word, bit;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1340
word = offset / 32;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1342
if (client->cl_seqmask[word] & (1 << bit)) {
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1357
int offset, i, word, bit;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1389
word = offset / 32;
sys/rpc/rpcsec_gss/svc_rpcsec_gss.c
1391
client->cl_seqmask[word] |= (1 << bit);
sys/sys/runq.h
70
#define RQSW_BSF(word) __extension__ ({ \
sys/sys/runq.h
71
int _res = ffsl((long)(word)); /* Assumes two-complement. */ \
sys/sys/runq.h
77
#define RQSW_FIRST_QUEUE_IDX(word_idx, word) \
sys/sys/runq.h
78
RQSW_TO_QUEUE_IDX(word_idx, RQSW_BSF(word))
sys/sys/systm.h
336
__nodiscard int suword(volatile void *base, long word);
sys/sys/systm.h
337
__nodiscard int suword16(volatile void *base, int word);
sys/sys/systm.h
338
__nodiscard int suword32(volatile void *base, int32_t word);
sys/sys/systm.h
339
__nodiscard int suword64(volatile void *base, int64_t word);
sys/sys/systm.h
354
int SAN_INTERCEPTOR(suword)(volatile void *base, long word);
sys/sys/systm.h
355
int SAN_INTERCEPTOR(suword16)(volatile void *base, int word);
sys/sys/systm.h
356
int SAN_INTERCEPTOR(suword32)(volatile void *base, int32_t word);
sys/sys/systm.h
357
int SAN_INTERCEPTOR(suword64)(volatile void *base, int64_t word);
usr.bin/fmt/fmt.c
600
output_word(size_t indent0, size_t indent1, const wchar_t *word, size_t length, size_t spaces)
usr.bin/fmt/fmt.c
608
for (p = word, width = 0; p < &word[length]; p++)
usr.bin/fmt/fmt.c
620
spaces = wcschr(sentence_enders, word[length - 1]) ? 2 : 1;
usr.bin/fmt/fmt.c
633
wmemcpy(output_buffer + output_buffer_length, word, length);
usr.bin/fmt/fmt.c
664
wprintf(L"%.*ls", (int)length, word);
usr.bin/fmt/fmt.c
670
wmemcpy(output_buffer, word, length);
usr.bin/getent/getent.c
136
parsenum(const char *word, unsigned long *result)
usr.bin/getent/getent.c
141
assert(word != NULL);
usr.bin/getent/getent.c
144
if (!isdigit((unsigned char)word[0]))
usr.bin/getent/getent.c
147
num = strtoul(word, &ep, 10);
usr.bin/locate/locate/util.c
191
tolower_word(u_char *word)
usr.bin/locate/locate/util.c
195
for(p = word; *p != '\0'; p++)
usr.bin/locate/locate/util.c
198
return (word);
usr.bin/locate/locate/util.c
251
int word, hword;
usr.bin/locate/locate/util.c
255
word = getw(fp);
usr.bin/locate/locate/util.c
257
if (word >= i_max || word <= i_min) {
usr.bin/locate/locate/util.c
258
hword = ntohl(word);
usr.bin/locate/locate/util.c
261
i_min, abs(word) < abs(hword) ? word : hword, i_max);
usr.bin/locate/locate/util.c
264
return (word);
usr.bin/mail/head.c
100
cp = nextword(cp, word);
usr.bin/mail/head.c
108
cp = nextword(cp, word);
usr.bin/mail/head.c
109
if (strlen(word) > 0)
usr.bin/mail/head.c
110
hl->l_from = copyin(word, &sp);
usr.bin/mail/head.c
112
cp = nextword(cp, word);
usr.bin/mail/head.c
113
hl->l_tty = copyin(word, &sp);
usr.bin/mail/head.c
90
char word[LINESIZE];
usr.bin/mail/lex.c
272
char word[LINESIZE];
usr.bin/mail/lex.c
298
cp2 = word;
usr.bin/mail/lex.c
311
if (sourcing && *word == '\0')
usr.bin/mail/lex.c
313
com = lex(word);
usr.bin/mail/lex.c
315
printf("Unknown command: \"%s\"\n", word);
usr.bin/mail/lex.c
479
lex(char word[])
usr.bin/mail/lex.c
490
if (*word == '#')
usr.bin/mail/lex.c
491
*(word+1) = '\0';
usr.bin/mail/lex.c
495
if (isprefix(word, cp->c_name))
usr.bin/rpcgen/rpc_main.c
266
char *dupvar, *t, *word;
usr.bin/rpcgen/rpc_main.c
279
word = NULL;
usr.bin/rpcgen/rpc_main.c
288
if (word != NULL) {
usr.bin/rpcgen/rpc_main.c
290
insarg(idx++, word);
usr.bin/rpcgen/rpc_main.c
291
word = NULL;
usr.bin/rpcgen/rpc_main.c
295
if (word == NULL)
usr.bin/rpcgen/rpc_main.c
296
word = t;
usr.bin/rpcgen/rpc_main.c
300
if (word == NULL)
usr.bin/rpcgen/rpc_main.c
301
word = t;
usr.bin/rpcgen/rpc_main.c
317
if (word == NULL)
usr.bin/rpcgen/rpc_main.c
318
word = t;
usr.bin/rpcgen/rpc_main.c
369
if (word != NULL) {
usr.bin/rpcgen/rpc_main.c
371
insarg(idx++, word);
usr.bin/wc/wc.c
225
goto word;
usr.bin/wc/wc.c
286
word: gotsp = true;
usr.sbin/config/config.h
51
configword(std::string &&word) : cw_word(word), cw_eof(false), cw_eol(false) {}
usr.sbin/kldxref/kldxref.c
374
char *word, *ctx, newtype;
usr.sbin/kldxref/kldxref.c
376
for (word = strtok_r(key, "/", &ctx);
usr.sbin/kldxref/kldxref.c
377
word; word = strtok_r(NULL, "/", &ctx)) {
usr.sbin/kldxref/kldxref.c
379
fprintf(fp, "%c:%s;", newtype, word);
usr.sbin/mfiutil/mfi_evt.c
60
mbox[1] = filter.word;
usr.sbin/moused/moused/util.c
117
const char *word;
usr.sbin/moused/moused/util.c
119
while ((word = next_word(&s, &l, separators)) != NULL) {
usr.sbin/moused/moused/util.c
120
char *copy = strndup(word, l);
usr.sbin/ppp/chap_ms.c
82
register unsigned int word;
usr.sbin/ppp/chap_ms.c
84
word = (unsigned)input[startBit / 8] << 8;
usr.sbin/ppp/chap_ms.c
85
word |= (unsigned)input[startBit / 8 + 1];
usr.sbin/ppp/chap_ms.c
87
word >>= 15 - (startBit % 8 + 7);
usr.sbin/ppp/chap_ms.c
89
return word & 0xFE;
usr.sbin/ppp/command.c
441
char *word, *ntgt;
usr.sbin/ppp/command.c
444
if ((word = strstrword(tgt, oldstr)) == NULL)
usr.sbin/ppp/command.c
451
pos = word - tgt;
usr.sbin/ppp/command.c
453
bcopy(word + loldstr, word + lnewstr, ltgt - pos - loldstr);
usr.sbin/ppp/command.c
458
word = ntgt + pos;
usr.sbin/ppp/command.c
462
bcopy(word + loldstr, word + lnewstr, ltgt - pos - lnewstr);
usr.sbin/ppp/command.c
463
bcopy(newstr, word, lnewstr);
usr.sbin/ppp/command.c
464
} while ((word = strstrword(word, oldstr)));
usr.sbin/ppp/netgraph.c
428
getsegment(const char *what, char *word, size_t sz, const char *from,
usr.sbin/ppp/netgraph.c
443
strncpy(word, from, len);
usr.sbin/ppp/netgraph.c
444
word[len] = '\0';
usr.sbin/pw/pw.c
107
static int getindex(const char *words[], const char *word);
usr.sbin/pw/pw.c
228
getindex(const char *words[], const char *word)
usr.sbin/pw/pw.c
233
if (strcmp(words[i], word) == 0)
usr.sbin/smbmsg/smbmsg.c
181
printf(fmt, (unsigned short)c.rdata.word);
usr.sbin/smbmsg/smbmsg.c
186
c.wdata.word = oword;
usr.sbin/smbmsg/smbmsg.c
193
c.wdata.word = oword;
usr.sbin/smbmsg/smbmsg.c
196
printf(fmt, (unsigned short)c.rdata.word);
usr.sbin/vidcontrol/vidcontrol.c
614
char *dupparam, *word;
usr.sbin/vidcontrol/vidcontrol.c
619
while ((word = strsep(¶m, ",")) != NULL) {
usr.sbin/vidcontrol/vidcontrol.c
620
if (strcmp(word, "normal") == 0)
usr.sbin/vidcontrol/vidcontrol.c
622
else if (strcmp(word, "destructive") == 0)
usr.sbin/vidcontrol/vidcontrol.c
624
else if (strcmp(word, "blink") == 0)
usr.sbin/vidcontrol/vidcontrol.c
626
else if (strcmp(word, "noblink") == 0)
usr.sbin/vidcontrol/vidcontrol.c
628
else if (strcmp(word, "block") == 0)
usr.sbin/vidcontrol/vidcontrol.c
630
else if (strcmp(word, "noblock") == 0)
usr.sbin/vidcontrol/vidcontrol.c
632
else if (strcmp(word, "hidden") == 0)
usr.sbin/vidcontrol/vidcontrol.c
634
else if (strcmp(word, "nohidden") == 0)
usr.sbin/vidcontrol/vidcontrol.c
636
else if (strncmp(word, "base=", 5) == 0)
usr.sbin/vidcontrol/vidcontrol.c
637
shape->shape[1] = strtol(word + 5, NULL, 0);
usr.sbin/vidcontrol/vidcontrol.c
638
else if (strncmp(word, "height=", 7) == 0)
usr.sbin/vidcontrol/vidcontrol.c
639
shape->shape[2] = strtol(word + 7, NULL, 0);
usr.sbin/vidcontrol/vidcontrol.c
640
else if (strcmp(word, "charcolors") == 0)
usr.sbin/vidcontrol/vidcontrol.c
642
else if (strcmp(word, "mousecolors") == 0)
usr.sbin/vidcontrol/vidcontrol.c
644
else if (strcmp(word, "default") == 0)
usr.sbin/vidcontrol/vidcontrol.c
646
else if (strcmp(word, "shapeonly") == 0)
usr.sbin/vidcontrol/vidcontrol.c
648
else if (strcmp(word, "local") == 0)
usr.sbin/vidcontrol/vidcontrol.c
650
else if (strcmp(word, "reset") == 0)
usr.sbin/vidcontrol/vidcontrol.c
652
else if (strcmp(word, "show") == 0)
usr.sbin/vidcontrol/vidcontrol.c
659
word, param != NULL ? "," : "",
usr.sbin/virtual_oss/virtual_oss/main.c
2516
char *word;
usr.sbin/virtual_oss/virtual_oss/main.c
2522
for (word = strtok_r(str, sep, &brkt); word != NULL;
usr.sbin/virtual_oss/virtual_oss/main.c
2523
word = strtok_r(NULL, sep, &brkt)) {
usr.sbin/virtual_oss/virtual_oss/main.c
2528
parg[narg++] = word;