Symbol: P
lib/libc/db/hash/hash_buf.c
81
#define BUF_INSERT(B, P) { \
lib/libc/db/hash/hash_buf.c
82
(B)->next = (P)->next; \
lib/libc/db/hash/hash_buf.c
83
(B)->prev = (P); \
lib/libc/db/hash/hash_buf.c
84
(P)->next = (B); \
lib/libc/db/hash/hash_page.c
84
#define PAGE_INIT(P) { \
lib/libc/db/hash/hash_page.c
85
((uint16_t *)(void *)(P))[0] = 0; \
lib/libc/db/hash/hash_page.c
88
((uint16_t *)(void *)(P))[1] = (uint16_t)(HASH_BSIZE(hashp) - temp); \
lib/libc/db/hash/hash_page.c
89
((uint16_t *)(void *)(P))[2] = HASH_BSIZE(hashp); \
lib/libc/db/hash/page.h
78
#define FREESPACE(P) ((P)[(P)[0]+1])
lib/libc/db/hash/page.h
79
#define OFFSET(P) ((P)[(P)[0]+2])
lib/libc/db/hash/page.h
80
#define PAIRFITS(P,K,D) \
lib/libc/db/hash/page.h
81
(((P)[2] >= REAL_KEY) && \
lib/libc/db/hash/page.h
82
(PAIRSIZE((K),(D)) + OVFLSIZE) <= FREESPACE((P)))
lib/libc/gdtoa/dtoa.c
253
i = bbits + be + (Bias + (P-1) - 1);
lib/libc/gdtoa/dtoa.c
258
i -= (Bias + (P-1) - 1) + 1;
lib/libc/gdtoa/dtoa.c
384
word0(&eps) -= (P-1)*Exp_msk1;
lib/libc/gdtoa/dtoa.c
508
denorm ? be + (Bias + (P-1) - 1 + 1) :
lib/libc/gdtoa/dtoa.c
511
1 + 4*P - 3 - bbits + ((bbits + be - 1) & 3);
lib/libc/gdtoa/dtoa.c
513
1 + P - bbits;
lib/libc/gdtoa/gdtoa.c
391
word0(&eps) -= (P-1)*Exp_msk1;
lib/libc/gdtoa/misc.c
845
*e = (de - Bias - (P-1) << 2) + k;
lib/libc/gdtoa/misc.c
846
*bits = 4*P + 8 - k - hi0bits(word0(&d) & Frac_mask);
lib/libc/gdtoa/misc.c
848
*e = de - Bias - (P-1) + k;
lib/libc/gdtoa/misc.c
849
*bits = P - k;
lib/libc/gdtoa/misc.c
854
*e = de - Bias - (P-1) + 1 + k;
lib/libc/gdtoa/strtod.c
1000
if ((word0(&rv) & Exp_mask) < P*Exp_msk1)
lib/libc/gdtoa/strtod.c
1002
if ((word0(&rv) & Exp_mask) <= P*Exp_msk1)
lib/libc/gdtoa/strtod.c
1013
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
1027
if (y <= (P-1)*Exp_msk1 && aadj > 1.) {
lib/libc/gdtoa/strtod.c
1079
word0(&rv0) = Exp_1 - 2*P*Exp_msk1;
lib/libc/gdtoa/strtod.c
397
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
400
> Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
lib/libc/gdtoa/strtod.c
402
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtod.c
498
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
501
> Exp_msk1*(DBL_MAX_EXP+Bias-P))
lib/libc/gdtoa/strtod.c
503
if (z > Exp_msk1*(DBL_MAX_EXP+Bias-1-P)) {
lib/libc/gdtoa/strtod.c
510
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtod.c
522
scale = 2*P;
lib/libc/gdtoa/strtod.c
526
if (scale && (j = 2*P + 1 - ((word0(&rv) & Exp_mask)
lib/libc/gdtoa/strtod.c
532
word0(&rv) = (P+2)*Exp_msk1;
lib/libc/gdtoa/strtod.c
612
j = P + 1 - bbbits;
lib/libc/gdtoa/strtod.c
624
j = 1 + 4*P - 3 - bbbits + ((bbe + bbbits - 1) & 3);
lib/libc/gdtoa/strtod.c
626
j = P + 1 - bbbits;
lib/libc/gdtoa/strtod.c
632
j += P - Emin;
lib/libc/gdtoa/strtod.c
634
j = P + 1 - bbbits;
lib/libc/gdtoa/strtod.c
709
if (!scale || y > 2*P*Exp_msk1)
lib/libc/gdtoa/strtod.c
724
<= 2*P*Exp_msk1)
lib/libc/gdtoa/strtod.c
725
word0(&adj) += (2*P+1)*Exp_msk1 - y;
lib/libc/gdtoa/strtod.c
729
P*Exp_msk1) {
lib/libc/gdtoa/strtod.c
730
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtod.c
732
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
754
if (scale && (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1)
lib/libc/gdtoa/strtod.c
755
word0(&adj) += (2*P+1)*Exp_msk1 - y;
lib/libc/gdtoa/strtod.c
758
if ((word0(&rv) & Exp_mask) <= P*Exp_msk1) {
lib/libc/gdtoa/strtod.c
759
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtod.c
765
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
789
|| (word0(&rv) & Exp_mask) <= (2*P+1)*Exp_msk1
lib/libc/gdtoa/strtod.c
821
(scale && (y = word0(&rv) & Exp_mask) <= 2*P*Exp_msk1)
lib/libc/gdtoa/strtod.c
822
? (0xffffffff & (0xffffffff << (2*P+1-(y>>Exp_shift)))) :
lib/libc/gdtoa/strtod.c
85
if (!scale || (i = 2*P + 1 - ((word0(x) & Exp_mask) >> Exp_shift)) <= 0)
lib/libc/gdtoa/strtod.c
850
if (L <= (scale ? (2*P+1)*Exp_msk1 : Exp_msk1))
lib/libc/gdtoa/strtod.c
861
if (L <= (2*P+1)*Exp_msk1) {
lib/libc/gdtoa/strtod.c
862
if (L > (P+2)*Exp_msk1)
lib/libc/gdtoa/strtod.c
965
word0(&rv) -= P*Exp_msk1;
lib/libc/gdtoa/strtod.c
969
Exp_msk1*(DBL_MAX_EXP+Bias-P)) {
lib/libc/gdtoa/strtod.c
977
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtod.c
981
if (scale && y <= 2*P*Exp_msk1) {
lib/libc/gdtoa/strtod.c
988
word0(&aadj1) += (2*P+1)*Exp_msk1 - y;
lib/libc/gdtoa/strtod.c
994
if ((word0(&rv) & Exp_mask) <= P*Exp_msk1) {
lib/libc/gdtoa/strtod.c
996
word0(&rv) += P*Exp_msk1;
lib/libc/gdtoa/strtodg.c
198
if (P == nb) {
lib/libc/gdtoa/strtodg.c
314
return P - lo0bits(&L);
lib/libc/gdtoa/strtodg.c
320
return P - 32 - lo0bits(&L);
lib/libc/gdtoa/strtodg.c
553
if (nbits <= P && nd <= DBL_DIG) {
lib/libc/gdtoa/strtodg.c
563
i = fivesbits[e] + mantbits(&rv) <= P;
lib/libc/gdtoa/strtodg.c
585
word0(&adj) -= P*Exp_msk1;
lib/libc/gdtoa/strtodg.c
588
> Exp_msk1*(DBL_MAX_EXP+Bias-1-P))
lib/libc/gdtoa/strtodg.c
590
word0(&adj) += P*Exp_msk1;
lib/libc/gdtoa/ulp.c
47
L = (word0(x) & Exp_mask) - (P-1)*Exp_msk1;
lib/libcrypt/blowfish.c
417
c->P[i] = c->P[i] ^ temp;
lib/libcrypt/blowfish.c
426
c->P[i] = datal;
lib/libcrypt/blowfish.c
427
c->P[i + 1] = datar;
lib/libcrypt/blowfish.c
456
c->P[i] = c->P[i] ^ temp;
lib/libcrypt/blowfish.c
467
c->P[i] = datal;
lib/libcrypt/blowfish.c
468
c->P[i + 1] = datar;
lib/libcrypt/blowfish.c
63
u_int32_t P[BLF_N + 2]; /* Subkeys */
lib/libcrypt/blowfish.c
82
u_int32_t *p = c->P;
lib/libm/ld128/s_erfl.c
193
long double ax,R,S,P,Q,s,y,z,r;
lib/libm/ld128/s_erfl.c
222
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*(pa6+s*(pa7+
lib/libm/ld128/s_erfl.c
226
if(x>=0) return (erx + P/Q); else return (-erx - P/Q);
lib/libm/ld128/s_erfl.c
255
long double ax,R,S,P,Q,s,y,z,r;
lib/libm/ld128/s_erfl.c
286
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*(pa6+s*(pa7+
lib/libm/ld128/s_erfl.c
291
z = one-erx; return z - P/Q;
lib/libm/ld128/s_erfl.c
293
z = erx+P/Q; return one+z;
lib/libm/ld80/e_powl.c
131
static long double P[] = {
lib/libm/ld80/e_powl.c
30
long double *P;
lib/libm/ld80/e_powl.c
32
P = PP;
lib/libm/ld80/e_powl.c
33
y = *P++;
lib/libm/ld80/e_powl.c
35
y = y * x + *P++;
lib/libm/ld80/e_powl.c
417
w = x * ( z * __polevll( x, P, 3 ) / __p1evll( x, Q, 3 ) );
lib/libm/ld80/e_powl.c
49
long double *P;
lib/libm/ld80/e_powl.c
51
P = PP;
lib/libm/ld80/e_powl.c
53
y = x + *P++;
lib/libm/ld80/e_powl.c
55
y = y * x + *P++;
lib/libm/ld80/s_erfl.c
216
long double ax,R,S,P,Q,s,y,z,r;
lib/libm/ld80/s_erfl.c
245
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*(pa6+s*pa7))))));
lib/libm/ld80/s_erfl.c
247
if(x>=0) RETURNI(erx + P/Q); else RETURNI(-erx - P/Q);
lib/libm/ld80/s_erfl.c
270
long double ax,R,S,P,Q,s,y,z,r;
lib/libm/ld80/s_erfl.c
301
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*(pa6+s*pa7))))));
lib/libm/ld80/s_erfl.c
304
z = one-erx; RETURNI(z - P/Q);
lib/libm/ld80/s_erfl.c
306
z = (erx+P/Q); RETURNI(one+z);
lib/libm/noieee_src/n_erf.c
268
double R,S,P,Q,ax,s,y,z,r;
lib/libm/noieee_src/n_erf.c
289
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/noieee_src/n_erf.c
292
return (c + P/Q);
lib/libm/noieee_src/n_erf.c
294
return (-c - P/Q);
lib/libm/noieee_src/n_erf.c
332
double R,S,P,Q,s,ax,y,z,r;
lib/libm/noieee_src/n_erf.c
359
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/noieee_src/n_erf.c
362
z = one-c; return z - P/Q;
lib/libm/noieee_src/n_erf.c
364
z = c+P/Q; return one+z;
lib/libm/src/e_acosl.c
80
p = P(z);
lib/libm/src/e_acosl.c
86
p = P(z);
lib/libm/src/e_acosl.c
99
p = P(z);
lib/libm/src/e_asinl.c
70
p = P(t);
lib/libm/src/e_asinl.c
78
p = P(t);
lib/libm/src/s_erf.c
195
double R,S,P,Q,s,y,z,r;
lib/libm/src/s_erf.c
217
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/src/s_erf.c
219
if(hx>=0) return erx + P/Q; else return -erx - P/Q;
lib/libm/src/s_erf.c
247
double R,S,P,Q,s,y,z,r;
lib/libm/src/s_erf.c
272
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/src/s_erf.c
275
z = one-erx; return z - P/Q;
lib/libm/src/s_erf.c
277
z = erx+P/Q; return one+z;
lib/libm/src/s_erff.c
103
float R,S,P,Q,s,y,z,r;
lib/libm/src/s_erff.c
126
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/src/s_erff.c
128
if(hx>=0) return erx + P/Q; else return -erx - P/Q;
lib/libm/src/s_erff.c
156
float R,S,P,Q,s,y,z,r;
lib/libm/src/s_erff.c
181
P = pa0+s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))));
lib/libm/src/s_erff.c
184
z = one-erx; return z - P/Q;
lib/libm/src/s_erff.c
186
z = erx+P/Q; return one+z;
lib/libradius/radlib.c
1202
u_char *P;
lib/libradius/radlib.c
1221
P = malloc(Clen); /* We derive our plaintext */
lib/libradius/radlib.c
1234
P[Ppos++] = C[i] ^ b[i];
lib/libradius/radlib.c
1250
*len = *P;
lib/libradius/radlib.c
1266
(void)memcpy(demangled, P + 1, *len);
lib/libradius/radlib.c
1268
free(P);
libexec/ftpd/extern.h
372
#define NEXTWORD(P, W) do { \
libexec/ftpd/extern.h
373
(W) = strsep(&(P), " \t"); \
libexec/ftpd/ftpcmd.y
1081
| P
libexec/ftpd/ftpcmd.y
135
L N P R S T
libexec/ftpd/ftpcmd.y
1693
return (P);
sbin/cgdconfig/pkcs5_pbkdf2.c
108
pkcs5_pbkdf2(u_int8_t **r, size_t dkLen, const u_int8_t *P, size_t Plen,
sbin/cgdconfig/pkcs5_pbkdf2.c
130
prf_iterate(*r + (PRF_BLOCKLEN * i), P, Plen, S, Slen, c,
sbin/cgdconfig/pkcs5_pbkdf2.c
171
u_int8_t P[CAL_PASSLEN];
sbin/cgdconfig/pkcs5_pbkdf2.c
176
ret = pkcs5_pbkdf2(&r, dkLen, P, sizeof(P), S, sizeof(S), c, 0);
sbin/cgdconfig/pkcs5_pbkdf2.c
72
prf_iterate(u_int8_t *r, const u_int8_t *P, size_t Plen,
sbin/cgdconfig/pkcs5_pbkdf2.c
88
tmplen = hmac("sha1", P, Plen, data, datalen, tmp, sizeof(tmp));
sbin/nvmectl/bignum.c
3248
basic_exponent_mod(mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode)
sbin/nvmectl/bignum.c
3280
if ((err = mp_reduce_setup(&mu, P)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3285
if ((err = mp_reduce_2k_setup_l(P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3299
if ((err = modulo(G, P, &M[1])) != MP_OKAY) {
sbin/nvmectl/bignum.c
3318
if ((err = redux(&M[1 << (winsize - 1)], P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3330
if ((err = redux(&M[x], P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3379
if ((err = redux(&res, P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3396
if ((err = redux(&res, P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3405
if ((err = redux(&res, P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3423
if ((err = redux(&res, P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
3433
if ((err = redux(&res, P, &mu)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4057
fast_exponent_modulo(mp_int * G, mp_int * X, mp_int * P, mp_int * Y, int redmode)
sbin/nvmectl/bignum.c
4091
if ((err = mp_montgomery_setup(P, &mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4096
if (can_use_fast_column_array(P->used + P->used + 1, P->used)) {
sbin/nvmectl/bignum.c
4104
diminished_radix_setup(P, &mp);
sbin/nvmectl/bignum.c
4108
if ((err = mp_reduce_2k_setup(P, &mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4128
if ((err = mp_montgomery_calc_normalization(&res, P)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4133
if ((err = multiply_modulo(&M[1], G, &res, P)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4138
if ((err = modulo(G, P, &M[1])) != MP_OKAY) {
sbin/nvmectl/bignum.c
4152
if ((err = (*redux)(&M[1 << (winsize - 1)], P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4162
if ((err = (*redux)(&M[x], P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4205
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4222
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4231
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4249
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4260
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4274
if ((err = (*redux)(&res, P, mp)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4302
exponent_modulo(mp_int * G, mp_int * X, mp_int * P, mp_int *Y)
sbin/nvmectl/bignum.c
4307
if (P->sign == MP_NEG) {
sbin/nvmectl/bignum.c
4320
if ((err = modular_inverse(&tmpG, G, P)) != MP_OKAY) {
sbin/nvmectl/bignum.c
4336
err = exponent_modulo(&tmpG, &tmpX, P, Y);
sbin/nvmectl/bignum.c
4342
if (mp_reduce_is_2k_l(P) == MP_YES) {
sbin/nvmectl/bignum.c
4343
return basic_exponent_mod(G, X, P, Y, 1);
sbin/nvmectl/bignum.c
4347
diminished_radix = is_diminished_radix_modulus(P);
sbin/nvmectl/bignum.c
4351
diminished_radix = mp_reduce_is_2k(P) << 1;
sbin/nvmectl/bignum.c
4355
if (BN_is_odd(P) == 1 || diminished_radix) {
sbin/nvmectl/bignum.c
4356
return fast_exponent_modulo(G, X, P, Y, diminished_radix);
sbin/nvmectl/bignum.c
4359
return basic_exponent_mod(G, X, P, Y, 0);
sbin/nvmectl/bignum.c
5500
BN_mod_exp(BIGNUM *Y, BIGNUM *G, BIGNUM *X, BIGNUM *P, BN_CTX *ctx)
sbin/nvmectl/bignum.c
5502
if (Y == NULL || G == NULL || X == NULL || P == NULL) {
sbin/nvmectl/bignum.c
5506
return exponent_modulo(G, X, P, Y) == MP_OKAY;
sys/arch/aarch64/include/netbsd32_machdep.h
123
#define PROC_MACHINE_ARCH32(P) ((P)->p_md.md_march32)
sys/arch/arm/include/netbsd32_machdep.h
53
#define PROC_MACHINE_ARCH32(P) ((P)->p_md.md_march)
sys/arch/arm/include/proc.h
63
#define PROC_MACHINE_ARCH(P) ((P)->p_md.md_march)
sys/arch/arm/samsung/exynos_reg.h
133
#define PLL_MPS2FREQ(F, M, P, S) \
sys/arch/arm/samsung/exynos_reg.h
134
((P) == 0 ? 0 : (((F) * (M)) / ((P) * (1 << (S)))))
sys/arch/arm/samsung/exynos_reg.h
141
#define PLL_MKPS2FREQ(F, M, K, P, S) \
sys/arch/arm/samsung/exynos_reg.h
142
((P) == 0 ? 0 : (((F) * (((M) << 16) + (K))) / ((P) * (1U << (S))) / (1U << 16) ))
sys/arch/arm/samsung/exynos_soc.c
320
int M, P, S;
sys/arch/arm/samsung/exynos_soc.c
324
P = freqreq->P;
sys/arch/arm/samsung/exynos_soc.c
328
__SHIFTIN(P, PLL35XX_CON0_P) |
sys/arch/arm/samsung/exynos_soc.c
73
int P;
sys/arch/mips/include/netbsd32_machdep.h
51
#define PROC_MACHINE_ARCH32(P) ((P)->p_md.md_abi == _MIPS_BSD_API_O32) ? \
sys/arch/mips/include/netbsd32_machdep.h
52
__UNCONST(machine_archo32) : ((P)->p_md.md_abi == _MIPS_BSD_API_N32) ? \
sys/arch/mips/include/netbsd32_machdep.h
55
#define PROC_MACHINE_ARCH32(P) ((P)->p_md.md_abi == _MIPS_BSD_API_O32) ? \
sys/arch/powerpc/powerpc/db_trace.c
72
#define R(P) \
sys/arch/powerpc/powerpc/db_trace.c
74
__typeof__(*(P)) __db_tmp; \
sys/arch/powerpc/powerpc/db_trace.c
75
db_read_bytes((db_addr_t)(P), sizeof(*(P)), (char *)&__db_tmp); \
sys/arch/sgimips/dev/crmfb.c
1702
int M, N, P;
sys/arch/sgimips/dev/crmfb.c
1709
for (P = 0; P < 4; P++) {
sys/arch/sgimips/dev/crmfb.c
1711
div = N * (1 << P);
sys/arch/sgimips/dev/crmfb.c
1720
PP = P;
sys/arch/sgimips/dev/crmfb.c
1728
PP = P;
sys/arch/sgimips/dev/crmfb.c
1737
ret = (MM - 1) | ((NN - 1) << 8) | (P << 14);
sys/arch/sparc/sparc/db_disasm.c
259
{(FORMAT2(0, 3) | A(1) | P(1) | RCOND2(2)), "brlex", "ap,1l"},
sys/arch/sparc/sparc/db_disasm.c
962
if (insn & P(1))
sys/arch/sparc64/sparc64/db_disasm.c
264
{(FORMAT2(0, 3) | A(1) | P(1) | RCOND2(2)), "brlex", "ap,1l"},
sys/arch/sparc64/sparc64/db_disasm.c
967
if (insn & P(1))
sys/compat/netbsd32/netbsd32_sysctl.c
113
#define PROC_MACHINE_ARCH32(P) __UNCONST(machine_arch32)
sys/crypto/adiantum/adiantum.c
1834
struct poly1305 P;
sys/crypto/adiantum/adiantum.c
1845
poly1305_init(&P, kt);
sys/crypto/adiantum/adiantum.c
1846
poly1305_update_blocks(&P, llenbuf, 16);
sys/crypto/adiantum/adiantum.c
1847
poly1305_update_blocks(&P, t, tlen);
sys/crypto/adiantum/adiantum.c
1848
poly1305_final(ht, &P);
sys/crypto/adiantum/adiantum.c
195
poly1305_init(struct poly1305 *P, const uint8_t key[static 16])
sys/crypto/adiantum/adiantum.c
199
P->r[0] = (le32dec(key + 0) >> 0) & 0x03ffffff;
sys/crypto/adiantum/adiantum.c
200
P->r[1] = (le32dec(key + 3) >> 2) & 0x03ffff03;
sys/crypto/adiantum/adiantum.c
201
P->r[2] = (le32dec(key + 6) >> 4) & 0x03ffc0ff;
sys/crypto/adiantum/adiantum.c
202
P->r[3] = (le32dec(key + 9) >> 6) & 0x03f03fff;
sys/crypto/adiantum/adiantum.c
203
P->r[4] = (le32dec(key + 12) >> 8) & 0x000fffff;
sys/crypto/adiantum/adiantum.c
206
P->h[0] = P->h[1] = P->h[2] = P->h[3] = P->h[4] = 0;
sys/crypto/adiantum/adiantum.c
210
poly1305_update_blocks(struct poly1305 *P, const uint8_t *m, size_t mlen)
sys/crypto/adiantum/adiantum.c
212
uint32_t r0 = P->r[0];
sys/crypto/adiantum/adiantum.c
213
uint32_t r1 = P->r[1];
sys/crypto/adiantum/adiantum.c
214
uint32_t r2 = P->r[2];
sys/crypto/adiantum/adiantum.c
215
uint32_t r3 = P->r[3];
sys/crypto/adiantum/adiantum.c
216
uint32_t r4 = P->r[4];
sys/crypto/adiantum/adiantum.c
217
uint32_t h0 = P->h[0];
sys/crypto/adiantum/adiantum.c
218
uint32_t h1 = P->h[1];
sys/crypto/adiantum/adiantum.c
219
uint32_t h2 = P->h[2];
sys/crypto/adiantum/adiantum.c
220
uint32_t h3 = P->h[3];
sys/crypto/adiantum/adiantum.c
221
uint32_t h4 = P->h[4];
sys/crypto/adiantum/adiantum.c
284
P->h[0] = h0;
sys/crypto/adiantum/adiantum.c
285
P->h[1] = h1;
sys/crypto/adiantum/adiantum.c
286
P->h[2] = h2;
sys/crypto/adiantum/adiantum.c
287
P->h[3] = h3;
sys/crypto/adiantum/adiantum.c
288
P->h[4] = h4;
sys/crypto/adiantum/adiantum.c
292
poly1305_final(uint8_t h[static 16], struct poly1305 *P)
sys/crypto/adiantum/adiantum.c
294
uint32_t h0 = P->h[0];
sys/crypto/adiantum/adiantum.c
295
uint32_t h1 = P->h[1];
sys/crypto/adiantum/adiantum.c
296
uint32_t h2 = P->h[2];
sys/crypto/adiantum/adiantum.c
297
uint32_t h3 = P->h[3];
sys/crypto/adiantum/adiantum.c
298
uint32_t h4 = P->h[4];
sys/crypto/adiantum/adiantum.c
343
struct poly1305 P;
sys/crypto/adiantum/adiantum.c
345
poly1305_init(&P, k);
sys/crypto/adiantum/adiantum.c
346
poly1305_update_blocks(&P, m, mlen);
sys/crypto/adiantum/adiantum.c
347
poly1305_final(h, &P);
sys/crypto/adiantum/adiantum.c
453
struct poly1305 P;
sys/crypto/adiantum/adiantum.c
462
poly1305_init(&P, pk);
sys/crypto/adiantum/adiantum.c
465
poly1305_update_blocks(&P, h0, 32);
sys/crypto/adiantum/adiantum.c
467
poly1305_final(h, &P);
sys/crypto/adiantum/adiantum.c
78
#define aes_enc(E, P, C, NR) AES_encrypt(P, C, &(E)->enckey)
sys/crypto/adiantum/adiantum.c
79
#define aes_dec(D, C, P, NR) AES_decrypt(C, P, &(D)->deckey)
sys/crypto/blowfish/bf_enc.c
126
p = key->P;
sys/crypto/blowfish/bf_enc.c
85
p = key->P;
sys/crypto/blowfish/bf_locl.h
183
#define BF_ENC(LL,R,S,P) \
sys/crypto/blowfish/bf_locl.h
197
LL^=P; \
sys/crypto/blowfish/bf_locl.h
206
#define BF_ENC(LL,R,S,P) \
sys/crypto/blowfish/bf_locl.h
207
LL^=P; \
sys/crypto/blowfish/bf_locl.h
218
#define BF_ENC(LL,R,S,P) \
sys/crypto/blowfish/bf_locl.h
219
LL^=P; \
sys/crypto/blowfish/bf_skey.c
84
p = key->P;
sys/crypto/blowfish/blowfish.h
79
BF_LONG P[BF_ROUNDS+2];
sys/dev/ic/arn5416reg.h
182
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn5416reg.h
183
P(0x0801c), P(0x08120), P(0x081d0), P(0x09804), P(0x09820),
sys/dev/ic/arn5416reg.h
184
P(0x09824), P(0x09828), P(0x09834), P(0x09838), P(0x09844),
sys/dev/ic/arn5416reg.h
185
P(0x09848), P(0x0a848), P(0x0b848), P(0x09850), P(0x09858),
sys/dev/ic/arn5416reg.h
186
P(0x0985c), P(0x09860), P(0x09864), P(0x09868), P(0x0986c),
sys/dev/ic/arn5416reg.h
187
P(0x09914), P(0x09918), P(0x09924), P(0x09944), P(0x09960),
sys/dev/ic/arn5416reg.h
188
P(0x0a960), P(0x0b960), P(0x09964), P(0x099bc), P(0x099c0),
sys/dev/ic/arn5416reg.h
189
P(0x099c4), P(0x099c8), P(0x099cc), P(0x099d0), P(0x099d4),
sys/dev/ic/arn5416reg.h
190
P(0x099d8), P(0x0a204), P(0x0a208), P(0x0a20c), P(0x0b20c),
sys/dev/ic/arn5416reg.h
191
P(0x0c20c), P(0x0a21c), P(0x0a230), P(0x0a274), P(0x0a300),
sys/dev/ic/arn5416reg.h
192
P(0x0a304), P(0x0a308), P(0x0a30c), P(0x0a310), P(0x0a314),
sys/dev/ic/arn5416reg.h
193
P(0x0a318), P(0x0a31c), P(0x0a320), P(0x0a324), P(0x0a328),
sys/dev/ic/arn5416reg.h
194
P(0x0a32c), P(0x0a330), P(0x0a334)
sys/dev/ic/arn5416reg.h
264
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn5416reg.h
265
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn5416reg.h
266
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn5416reg.h
267
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn5416reg.h
268
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn5416reg.h
269
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn5416reg.h
270
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn5416reg.h
271
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn5416reg.h
272
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn5416reg.h
273
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn5416reg.h
274
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn5416reg.h
275
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn5416reg.h
276
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn5416reg.h
277
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn5416reg.h
278
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn5416reg.h
279
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn5416reg.h
280
P(0x0147c), P(0x04030), P(0x0403c), P(0x07010), P(0x07038),
sys/dev/ic/arn5416reg.h
281
P(0x08004), P(0x08008), P(0x0800c), P(0x08018), P(0x08020),
sys/dev/ic/arn5416reg.h
282
P(0x08038), P(0x0803c), P(0x08048), P(0x08054), P(0x08058),
sys/dev/ic/arn5416reg.h
283
P(0x0805c), P(0x08060), P(0x08064), P(0x080c0), P(0x080c4),
sys/dev/ic/arn5416reg.h
284
P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4), P(0x080d8),
sys/dev/ic/arn5416reg.h
285
P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec), P(0x080f0),
sys/dev/ic/arn5416reg.h
286
P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100), P(0x08104),
sys/dev/ic/arn5416reg.h
287
P(0x08108), P(0x0810c), P(0x08110), P(0x08118), P(0x0811c),
sys/dev/ic/arn5416reg.h
288
P(0x08124), P(0x08128), P(0x0812c), P(0x08130), P(0x08134),
sys/dev/ic/arn5416reg.h
289
P(0x08138), P(0x0813c), P(0x08144), P(0x08168), P(0x0816c),
sys/dev/ic/arn5416reg.h
290
P(0x08170), P(0x08174), P(0x08178), P(0x0817c), P(0x081c4),
sys/dev/ic/arn5416reg.h
291
P(0x081ec), P(0x081f0), P(0x081f4), P(0x081f8), P(0x081fc),
sys/dev/ic/arn5416reg.h
292
P(0x08200), P(0x08204), P(0x08208), P(0x0820c), P(0x08210),
sys/dev/ic/arn5416reg.h
293
P(0x08214), P(0x08218), P(0x0821c), P(0x08220), P(0x08224),
sys/dev/ic/arn5416reg.h
294
P(0x08228), P(0x0822c), P(0x08230), P(0x08234), P(0x08238),
sys/dev/ic/arn5416reg.h
295
P(0x0823c), P(0x08240), P(0x08244), P(0x08248), P(0x0824c),
sys/dev/ic/arn5416reg.h
296
P(0x08250), P(0x08254), P(0x08258), P(0x0825c), P(0x08260),
sys/dev/ic/arn5416reg.h
297
P(0x08264), P(0x08270), P(0x08274), P(0x08278), P(0x0827c),
sys/dev/ic/arn5416reg.h
298
P(0x08284), P(0x08288), P(0x0828c), P(0x08294), P(0x08298),
sys/dev/ic/arn5416reg.h
299
P(0x08300), P(0x08304), P(0x08308), P(0x0830c), P(0x08310),
sys/dev/ic/arn5416reg.h
300
P(0x08314), P(0x08318), P(0x08328), P(0x0832c), P(0x08330),
sys/dev/ic/arn5416reg.h
301
P(0x08334), P(0x08338), P(0x0833c), P(0x08340), P(0x09808),
sys/dev/ic/arn5416reg.h
302
P(0x0980c), P(0x09810), P(0x09814), P(0x0981c), P(0x0982c),
sys/dev/ic/arn5416reg.h
303
P(0x09830), P(0x0983c), P(0x09840), P(0x0984c), P(0x09854),
sys/dev/ic/arn5416reg.h
304
P(0x09900), P(0x09904), P(0x09908), P(0x0990c), P(0x0991c),
sys/dev/ic/arn5416reg.h
305
P(0x09920), P(0x0a920), P(0x0b920), P(0x09928), P(0x0992c),
sys/dev/ic/arn5416reg.h
306
P(0x09934), P(0x09938), P(0x0993c), P(0x09948), P(0x0994c),
sys/dev/ic/arn5416reg.h
307
P(0x09954), P(0x09958), P(0x0c95c), P(0x0c968), P(0x09970),
sys/dev/ic/arn5416reg.h
308
P(0x09974), P(0x09978), P(0x0997c), P(0x09980), P(0x09984),
sys/dev/ic/arn5416reg.h
309
P(0x09988), P(0x0998c), P(0x09990), P(0x09994), P(0x09998),
sys/dev/ic/arn5416reg.h
310
P(0x0999c), P(0x099a0), P(0x099a4), P(0x099a8), P(0x099ac),
sys/dev/ic/arn5416reg.h
311
P(0x099b0), P(0x099dc), P(0x099e0), P(0x099e4), P(0x099e8),
sys/dev/ic/arn5416reg.h
312
P(0x099ec), P(0x099fc), P(0x09b00), P(0x09b04), P(0x09b08),
sys/dev/ic/arn5416reg.h
313
P(0x09b0c), P(0x09b10), P(0x09b14), P(0x09b18), P(0x09b1c),
sys/dev/ic/arn5416reg.h
314
P(0x09b20), P(0x09b24), P(0x09b28), P(0x09b2c), P(0x09b30),
sys/dev/ic/arn5416reg.h
315
P(0x09b34), P(0x09b38), P(0x09b3c), P(0x09b40), P(0x09b44),
sys/dev/ic/arn5416reg.h
316
P(0x09b48), P(0x09b4c), P(0x09b50), P(0x09b54), P(0x09b58),
sys/dev/ic/arn5416reg.h
317
P(0x09b5c), P(0x09b60), P(0x09b64), P(0x09b68), P(0x09b6c),
sys/dev/ic/arn5416reg.h
318
P(0x09b70), P(0x09b74), P(0x09b78), P(0x09b7c), P(0x09b80),
sys/dev/ic/arn5416reg.h
319
P(0x09b84), P(0x09b88), P(0x09b8c), P(0x09b90), P(0x09b94),
sys/dev/ic/arn5416reg.h
320
P(0x09b98), P(0x09b9c), P(0x09ba0), P(0x09ba4), P(0x09ba8),
sys/dev/ic/arn5416reg.h
321
P(0x09bac), P(0x09bb0), P(0x09bb4), P(0x09bb8), P(0x09bbc),
sys/dev/ic/arn5416reg.h
322
P(0x09bc0), P(0x09bc4), P(0x09bc8), P(0x09bcc), P(0x09bd0),
sys/dev/ic/arn5416reg.h
323
P(0x09bd4), P(0x09bd8), P(0x09bdc), P(0x09be0), P(0x09be4),
sys/dev/ic/arn5416reg.h
324
P(0x09be8), P(0x09bec), P(0x09bf0), P(0x09bf4), P(0x09bf8),
sys/dev/ic/arn5416reg.h
325
P(0x09bfc), P(0x0a210), P(0x0a214), P(0x0a218), P(0x0a220),
sys/dev/ic/arn5416reg.h
326
P(0x0a224), P(0x0a228), P(0x0a22c), P(0x0a234), P(0x0a238),
sys/dev/ic/arn5416reg.h
327
P(0x0a23c), P(0x0a240), P(0x0a244), P(0x0a248), P(0x0a24c),
sys/dev/ic/arn5416reg.h
328
P(0x0a250), P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260),
sys/dev/ic/arn5416reg.h
329
P(0x0a268), P(0x0a26c), P(0x0b26c), P(0x0c26c), P(0x0d270),
sys/dev/ic/arn5416reg.h
330
P(0x0a278), P(0x0a27c), P(0x0a338), P(0x0a33c), P(0x0a340),
sys/dev/ic/arn5416reg.h
331
P(0x0a344), P(0x0a348), P(0x0a34c), P(0x0a350), P(0x0a354),
sys/dev/ic/arn5416reg.h
332
P(0x0a358), P(0x0d35c), P(0x0d360), P(0x0d364), P(0x0d368),
sys/dev/ic/arn5416reg.h
333
P(0x0d36c), P(0x0d370), P(0x0d374), P(0x0d378), P(0x0d37c),
sys/dev/ic/arn5416reg.h
334
P(0x0d380), P(0x0d384), P(0x0a388), P(0x0a38c), P(0x0a390),
sys/dev/ic/arn5416reg.h
335
P(0x0a394), P(0x0a398), P(0x0a39c), P(0x0a3a0), P(0x0a3a4),
sys/dev/ic/arn5416reg.h
336
P(0x0a3a8), P(0x0a3ac), P(0x0a3b0), P(0x0a3b4), P(0x0a3b8),
sys/dev/ic/arn5416reg.h
337
P(0x0a3bc), P(0x0a3c0), P(0x0a3c4), P(0x0a3c8), P(0x0a3cc),
sys/dev/ic/arn5416reg.h
338
P(0x0a3d0), P(0x0a3d4), P(0x0a3dc), P(0x0a3e0)
sys/dev/ic/arn5416reg.h
437
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn5416reg.h
438
P(0x0801c), P(0x08120), P(0x081d0), P(0x09804), P(0x09820),
sys/dev/ic/arn5416reg.h
439
P(0x09824), P(0x09828), P(0x09834), P(0x09838), P(0x09844),
sys/dev/ic/arn5416reg.h
440
P(0x09848), P(0x0a848), P(0x0b848), P(0x09850), P(0x09858),
sys/dev/ic/arn5416reg.h
441
P(0x0985c), P(0x09860), P(0x09864), P(0x09868), P(0x0986c),
sys/dev/ic/arn5416reg.h
442
P(0x09914), P(0x09918), P(0x09924), P(0x09944), P(0x09960),
sys/dev/ic/arn5416reg.h
443
P(0x0a960), P(0x0b960), P(0x09964), P(0x0c968), P(0x099bc),
sys/dev/ic/arn5416reg.h
444
P(0x099c0), P(0x099c4), P(0x099c8), P(0x099cc), P(0x099d0),
sys/dev/ic/arn5416reg.h
445
P(0x099d4), P(0x099d8), P(0x0a204), P(0x0a208), P(0x0a20c),
sys/dev/ic/arn5416reg.h
446
P(0x0b20c), P(0x0c20c), P(0x0a21c), P(0x0a230), P(0x0a274),
sys/dev/ic/arn5416reg.h
447
P(0x0a300), P(0x0a304), P(0x0a308), P(0x0a30c), P(0x0a310),
sys/dev/ic/arn5416reg.h
448
P(0x0a314), P(0x0a318), P(0x0a31c), P(0x0a320), P(0x0a324),
sys/dev/ic/arn5416reg.h
449
P(0x0a328), P(0x0a32c), P(0x0a330), P(0x0a334)
sys/dev/ic/arn5416reg.h
519
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn5416reg.h
520
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn5416reg.h
521
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn5416reg.h
522
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn5416reg.h
523
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn5416reg.h
524
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn5416reg.h
525
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn5416reg.h
526
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn5416reg.h
527
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn5416reg.h
528
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn5416reg.h
529
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn5416reg.h
530
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn5416reg.h
531
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn5416reg.h
532
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn5416reg.h
533
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn5416reg.h
534
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn5416reg.h
535
P(0x0147c), P(0x04030), P(0x0403c), P(0x07010), P(0x07038),
sys/dev/ic/arn5416reg.h
536
P(0x08004), P(0x08008), P(0x0800c), P(0x08018), P(0x08020),
sys/dev/ic/arn5416reg.h
537
P(0x08038), P(0x0803c), P(0x08048), P(0x08054), P(0x08058),
sys/dev/ic/arn5416reg.h
538
P(0x0805c), P(0x08060), P(0x08064), P(0x080c0), P(0x080c4),
sys/dev/ic/arn5416reg.h
539
P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4), P(0x080d8),
sys/dev/ic/arn5416reg.h
540
P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec), P(0x080f0),
sys/dev/ic/arn5416reg.h
541
P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100), P(0x08104),
sys/dev/ic/arn5416reg.h
542
P(0x08108), P(0x0810c), P(0x08110), P(0x08118), P(0x0811c),
sys/dev/ic/arn5416reg.h
543
P(0x08124), P(0x08128), P(0x0812c), P(0x08130), P(0x08134),
sys/dev/ic/arn5416reg.h
544
P(0x08138), P(0x0813c), P(0x08144), P(0x08168), P(0x0816c),
sys/dev/ic/arn5416reg.h
545
P(0x08170), P(0x08174), P(0x08178), P(0x0817c), P(0x081c4),
sys/dev/ic/arn5416reg.h
546
P(0x081ec), P(0x081f0), P(0x081f4), P(0x081f8), P(0x081fc),
sys/dev/ic/arn5416reg.h
547
P(0x08200), P(0x08204), P(0x08208), P(0x0820c), P(0x08210),
sys/dev/ic/arn5416reg.h
548
P(0x08214), P(0x08218), P(0x0821c), P(0x08220), P(0x08224),
sys/dev/ic/arn5416reg.h
549
P(0x08228), P(0x0822c), P(0x08230), P(0x08234), P(0x08238),
sys/dev/ic/arn5416reg.h
550
P(0x0823c), P(0x08240), P(0x08244), P(0x08248), P(0x0824c),
sys/dev/ic/arn5416reg.h
551
P(0x08250), P(0x08254), P(0x08258), P(0x0825c), P(0x08260),
sys/dev/ic/arn5416reg.h
552
P(0x08264), P(0x08270), P(0x08274), P(0x08278), P(0x0827c),
sys/dev/ic/arn5416reg.h
553
P(0x08284), P(0x08288), P(0x0828c), P(0x08294), P(0x08298),
sys/dev/ic/arn5416reg.h
554
P(0x08300), P(0x08304), P(0x08308), P(0x0830c), P(0x08310),
sys/dev/ic/arn5416reg.h
555
P(0x08314), P(0x08318), P(0x08328), P(0x0832c), P(0x08330),
sys/dev/ic/arn5416reg.h
556
P(0x08334), P(0x08338), P(0x0833c), P(0x08340), P(0x09808),
sys/dev/ic/arn5416reg.h
557
P(0x0980c), P(0x09810), P(0x09814), P(0x0981c), P(0x0982c),
sys/dev/ic/arn5416reg.h
558
P(0x09830), P(0x0983c), P(0x09840), P(0x0984c), P(0x09854),
sys/dev/ic/arn5416reg.h
559
P(0x09900), P(0x09904), P(0x09908), P(0x0990c), P(0x0991c),
sys/dev/ic/arn5416reg.h
560
P(0x09920), P(0x0a920), P(0x0b920), P(0x09928), P(0x0992c),
sys/dev/ic/arn5416reg.h
561
P(0x09934), P(0x09938), P(0x0993c), P(0x09948), P(0x0994c),
sys/dev/ic/arn5416reg.h
562
P(0x09954), P(0x09958), P(0x09940), P(0x0c95c), P(0x09970),
sys/dev/ic/arn5416reg.h
563
P(0x09974), P(0x09978), P(0x0997c), P(0x09980), P(0x09984),
sys/dev/ic/arn5416reg.h
564
P(0x09988), P(0x0998c), P(0x09990), P(0x09994), P(0x09998),
sys/dev/ic/arn5416reg.h
565
P(0x0999c), P(0x099a0), P(0x099a4), P(0x099a8), P(0x099ac),
sys/dev/ic/arn5416reg.h
566
P(0x099b0), P(0x099dc), P(0x099e0), P(0x099e4), P(0x099e8),
sys/dev/ic/arn5416reg.h
567
P(0x099ec), P(0x099fc), P(0x09b00), P(0x09b04), P(0x09b08),
sys/dev/ic/arn5416reg.h
568
P(0x09b0c), P(0x09b10), P(0x09b14), P(0x09b18), P(0x09b1c),
sys/dev/ic/arn5416reg.h
569
P(0x09b20), P(0x09b24), P(0x09b28), P(0x09b2c), P(0x09b30),
sys/dev/ic/arn5416reg.h
570
P(0x09b34), P(0x09b38), P(0x09b3c), P(0x09b40), P(0x09b44),
sys/dev/ic/arn5416reg.h
571
P(0x09b48), P(0x09b4c), P(0x09b50), P(0x09b54), P(0x09b58),
sys/dev/ic/arn5416reg.h
572
P(0x09b5c), P(0x09b60), P(0x09b64), P(0x09b68), P(0x09b6c),
sys/dev/ic/arn5416reg.h
573
P(0x09b70), P(0x09b74), P(0x09b78), P(0x09b7c), P(0x09b80),
sys/dev/ic/arn5416reg.h
574
P(0x09b84), P(0x09b88), P(0x09b8c), P(0x09b90), P(0x09b94),
sys/dev/ic/arn5416reg.h
575
P(0x09b98), P(0x09b9c), P(0x09ba0), P(0x09ba4), P(0x09ba8),
sys/dev/ic/arn5416reg.h
576
P(0x09bac), P(0x09bb0), P(0x09bb4), P(0x09bb8), P(0x09bbc),
sys/dev/ic/arn5416reg.h
577
P(0x09bc0), P(0x09bc4), P(0x09bc8), P(0x09bcc), P(0x09bd0),
sys/dev/ic/arn5416reg.h
578
P(0x09bd4), P(0x09bd8), P(0x09bdc), P(0x09be0), P(0x09be4),
sys/dev/ic/arn5416reg.h
579
P(0x09be8), P(0x09bec), P(0x09bf0), P(0x09bf4), P(0x09bf8),
sys/dev/ic/arn5416reg.h
580
P(0x09bfc), P(0x0a210), P(0x0a214), P(0x0a218), P(0x0a220),
sys/dev/ic/arn5416reg.h
581
P(0x0a224), P(0x0a228), P(0x0a22c), P(0x0a234), P(0x0a238),
sys/dev/ic/arn5416reg.h
582
P(0x0a23c), P(0x0a240), P(0x0a244), P(0x0a248), P(0x0a24c),
sys/dev/ic/arn5416reg.h
583
P(0x0a250), P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260),
sys/dev/ic/arn5416reg.h
584
P(0x0a268), P(0x0a26c), P(0x0b26c), P(0x0c26c), P(0x0d270),
sys/dev/ic/arn5416reg.h
585
P(0x0a278), P(0x0a27c), P(0x0a338), P(0x0a33c), P(0x0a340),
sys/dev/ic/arn5416reg.h
586
P(0x0a344), P(0x0a348), P(0x0a34c), P(0x0a350), P(0x0a354),
sys/dev/ic/arn5416reg.h
587
P(0x0a358), P(0x0d35c), P(0x0d360), P(0x0d364), P(0x0d368),
sys/dev/ic/arn5416reg.h
588
P(0x0d36c), P(0x0d370), P(0x0d374), P(0x0d378), P(0x0d37c),
sys/dev/ic/arn5416reg.h
589
P(0x0d380), P(0x0d384), P(0x0a388), P(0x0a38c), P(0x0a390),
sys/dev/ic/arn5416reg.h
590
P(0x0a394), P(0x0a398), P(0x0a39c), P(0x0a3a0), P(0x0a3a4),
sys/dev/ic/arn5416reg.h
591
P(0x0a3a8), P(0x0a3ac), P(0x0a3b0), P(0x0a3b4), P(0x0a3b8),
sys/dev/ic/arn5416reg.h
592
P(0x0a3bc), P(0x0a3c0), P(0x0a3c4), P(0x0a3c8), P(0x0a3cc),
sys/dev/ic/arn5416reg.h
593
P(0x0a3d0), P(0x0a3d4), P(0x0a3dc), P(0x0a3e0)
sys/dev/ic/arn9280reg.h
115
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn9280reg.h
116
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn9280reg.h
117
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn9280reg.h
118
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn9280reg.h
119
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn9280reg.h
120
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn9280reg.h
121
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn9280reg.h
122
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn9280reg.h
123
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn9280reg.h
124
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn9280reg.h
125
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn9280reg.h
126
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn9280reg.h
127
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn9280reg.h
128
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn9280reg.h
129
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn9280reg.h
130
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn9280reg.h
131
P(0x0147c), P(0x04030), P(0x0403c), P(0x04024), P(0x04060),
sys/dev/ic/arn9280reg.h
132
P(0x04064), P(0x07010), P(0x07034), P(0x07038), P(0x08004),
sys/dev/ic/arn9280reg.h
133
P(0x08008), P(0x0800c), P(0x08018), P(0x08020), P(0x08038),
sys/dev/ic/arn9280reg.h
134
P(0x0803c), P(0x08048), P(0x08054), P(0x08058), P(0x0805c),
sys/dev/ic/arn9280reg.h
135
P(0x08060), P(0x08064), P(0x08070), P(0x080c0), P(0x080c4),
sys/dev/ic/arn9280reg.h
136
P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4), P(0x080d8),
sys/dev/ic/arn9280reg.h
137
P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec), P(0x080f0),
sys/dev/ic/arn9280reg.h
138
P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100), P(0x08104),
sys/dev/ic/arn9280reg.h
139
P(0x08108), P(0x0810c), P(0x08110), P(0x08118), P(0x0811c),
sys/dev/ic/arn9280reg.h
140
P(0x08124), P(0x08128), P(0x0812c), P(0x08130), P(0x08134),
sys/dev/ic/arn9280reg.h
141
P(0x08138), P(0x0813c), P(0x08144), P(0x08168), P(0x0816c),
sys/dev/ic/arn9280reg.h
142
P(0x08170), P(0x08174), P(0x08178), P(0x0817c), P(0x081c0),
sys/dev/ic/arn9280reg.h
143
P(0x081ec), P(0x081f0), P(0x081f4), P(0x081f8), P(0x081fc),
sys/dev/ic/arn9280reg.h
144
P(0x08200), P(0x08204), P(0x08208), P(0x0820c), P(0x08210),
sys/dev/ic/arn9280reg.h
145
P(0x08214), P(0x08218), P(0x0821c), P(0x08220), P(0x08224),
sys/dev/ic/arn9280reg.h
146
P(0x08228), P(0x0822c), P(0x08230), P(0x08234), P(0x08238),
sys/dev/ic/arn9280reg.h
147
P(0x0823c), P(0x08240), P(0x08244), P(0x08248), P(0x0824c),
sys/dev/ic/arn9280reg.h
148
P(0x08250), P(0x08254), P(0x08258), P(0x0825c), P(0x08260),
sys/dev/ic/arn9280reg.h
149
P(0x08264), P(0x08270), P(0x08274), P(0x08278), P(0x0827c),
sys/dev/ic/arn9280reg.h
150
P(0x08284), P(0x08288), P(0x0828c), P(0x08294), P(0x08298),
sys/dev/ic/arn9280reg.h
151
P(0x0829c), P(0x08300), P(0x08314), P(0x08328), P(0x0832c),
sys/dev/ic/arn9280reg.h
152
P(0x08330), P(0x08334), P(0x08338), P(0x0833c), P(0x08340),
sys/dev/ic/arn9280reg.h
153
P(0x08344), P(0x09808), P(0x0980c), P(0x09810), P(0x09814),
sys/dev/ic/arn9280reg.h
154
P(0x0981c), P(0x0982c), P(0x09830), P(0x0983c), P(0x0984c),
sys/dev/ic/arn9280reg.h
155
P(0x0a84c), P(0x09854), P(0x09900), P(0x09904), P(0x09908),
sys/dev/ic/arn9280reg.h
156
P(0x0990c), P(0x09910), P(0x0991c), P(0x09920), P(0x0a920),
sys/dev/ic/arn9280reg.h
157
P(0x09928), P(0x0992c), P(0x09934), P(0x09938), P(0x0993c),
sys/dev/ic/arn9280reg.h
158
P(0x09948), P(0x0994c), P(0x09954), P(0x09958), P(0x09940),
sys/dev/ic/arn9280reg.h
159
P(0x0c95c), P(0x09970), P(0x09974), P(0x09978), P(0x0997c),
sys/dev/ic/arn9280reg.h
160
P(0x09980), P(0x09984), P(0x09988), P(0x0998c), P(0x09990),
sys/dev/ic/arn9280reg.h
161
P(0x09994), P(0x09998), P(0x0999c), P(0x099a0), P(0x099a4),
sys/dev/ic/arn9280reg.h
162
P(0x099a8), P(0x099ac), P(0x099b0), P(0x099b4), P(0x099c4),
sys/dev/ic/arn9280reg.h
163
P(0x099c8), P(0x099cc), P(0x099d0), P(0x099d4), P(0x099d8),
sys/dev/ic/arn9280reg.h
164
P(0x099dc), P(0x099e0), P(0x099e4), P(0x099e8), P(0x099ec),
sys/dev/ic/arn9280reg.h
165
P(0x099f0), P(0x099fc), P(0x0a208), P(0x0a210), P(0x0a214),
sys/dev/ic/arn9280reg.h
166
P(0x0a218), P(0x0a220), P(0x0a224), P(0x0a228), P(0x0a22c),
sys/dev/ic/arn9280reg.h
167
P(0x0a234), P(0x0a238), P(0x0a240), P(0x0a244), P(0x0a248),
sys/dev/ic/arn9280reg.h
168
P(0x0a24c), P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260),
sys/dev/ic/arn9280reg.h
169
P(0x0a268), P(0x0a26c), P(0x0b26c), P(0x0d270), P(0x0a278),
sys/dev/ic/arn9280reg.h
170
P(0x0d35c), P(0x0d360), P(0x0d364), P(0x0d368), P(0x0d36c),
sys/dev/ic/arn9280reg.h
171
P(0x0d370), P(0x0d374), P(0x0d378), P(0x0d37c), P(0x0d380),
sys/dev/ic/arn9280reg.h
172
P(0x0d384), P(0x0a38c), P(0x0a390), P(0x0a394), P(0x0a398),
sys/dev/ic/arn9280reg.h
173
P(0x0a39c), P(0x0a3a0), P(0x0a3a4), P(0x0a3a8), P(0x0a3ac),
sys/dev/ic/arn9280reg.h
174
P(0x0a3b0), P(0x0a3b4), P(0x0a3b8), P(0x0a3bc), P(0x0a3c0),
sys/dev/ic/arn9280reg.h
175
P(0x0a3c4), P(0x0a3c8), P(0x0a3cc), P(0x0a3d0), P(0x0a3d4),
sys/dev/ic/arn9280reg.h
176
P(0x0a3dc), P(0x0a3e0), P(0x0a3e4), P(0x0a3e8), P(0x07800),
sys/dev/ic/arn9280reg.h
177
P(0x07804), P(0x07808), P(0x0780c), P(0x07810), P(0x07818),
sys/dev/ic/arn9280reg.h
178
P(0x07824), P(0x07828), P(0x0782c), P(0x07830), P(0x07834),
sys/dev/ic/arn9280reg.h
179
P(0x0783c), P(0x07848), P(0x0784c), P(0x07850), P(0x07854),
sys/dev/ic/arn9280reg.h
180
P(0x07858), P(0x07860), P(0x07864), P(0x07868), P(0x0786c),
sys/dev/ic/arn9280reg.h
181
P(0x07870), P(0x07874), P(0x07878), P(0x0787c), P(0x07880),
sys/dev/ic/arn9280reg.h
182
P(0x07884), P(0x07888), P(0x0788c), P(0x07890), P(0x07898)
sys/dev/ic/arn9280reg.h
257
P(0x01030), P(0x01070), P(0x010b0), P(0x08014), P(0x0801c),
sys/dev/ic/arn9280reg.h
258
P(0x08318), P(0x09820), P(0x09824), P(0x09828), P(0x09834),
sys/dev/ic/arn9280reg.h
259
P(0x09844), P(0x09914), P(0x09918)
sys/dev/ic/arn9280reg.h
300
P(0x0a274), P(0x0a27c), P(0x0a300), P(0x0a304), P(0x0a308),
sys/dev/ic/arn9280reg.h
301
P(0x0a30c), P(0x0a310), P(0x0a314), P(0x0a318), P(0x0a31c),
sys/dev/ic/arn9280reg.h
302
P(0x0a320), P(0x0a324), P(0x0a328), P(0x0a32c), P(0x0a330),
sys/dev/ic/arn9280reg.h
303
P(0x0a334), P(0x0a338), P(0x0a33c), P(0x0a340), P(0x0a344),
sys/dev/ic/arn9280reg.h
304
P(0x0a348), P(0x0a34c), P(0x0a350), P(0x0a354), P(0x0a3ec),
sys/dev/ic/arn9280reg.h
305
P(0x07814), P(0x07838), P(0x0781c), P(0x07840), P(0x07820),
sys/dev/ic/arn9280reg.h
306
P(0x07844)
sys/dev/ic/arn9280reg.h
367
P(0x09a00), P(0x09a04), P(0x09a08), P(0x09a0c), P(0x09a10),
sys/dev/ic/arn9280reg.h
368
P(0x09a14), P(0x09a18), P(0x09a1c), P(0x09a20), P(0x09a24),
sys/dev/ic/arn9280reg.h
369
P(0x09a28), P(0x09a2c), P(0x09a30), P(0x09a34), P(0x09a38),
sys/dev/ic/arn9280reg.h
370
P(0x09a3c), P(0x09a40), P(0x09a44), P(0x09a48), P(0x09a4c),
sys/dev/ic/arn9280reg.h
371
P(0x09a50), P(0x09a54), P(0x09a58), P(0x09a5c), P(0x09a60),
sys/dev/ic/arn9280reg.h
372
P(0x09a64), P(0x09a68), P(0x09a6c), P(0x09a70), P(0x09a74),
sys/dev/ic/arn9280reg.h
373
P(0x09a78), P(0x09a7c), P(0x09a80), P(0x09a84), P(0x09a88),
sys/dev/ic/arn9280reg.h
374
P(0x09a8c), P(0x09a90), P(0x09a94), P(0x09a98), P(0x09a9c),
sys/dev/ic/arn9280reg.h
375
P(0x09aa0), P(0x09aa4), P(0x09aa8), P(0x09aac), P(0x09ab0),
sys/dev/ic/arn9280reg.h
376
P(0x09ab4), P(0x09ab8), P(0x09abc), P(0x09ac0), P(0x09ac4),
sys/dev/ic/arn9280reg.h
377
P(0x09ac8), P(0x09acc), P(0x09ad0), P(0x09ad4), P(0x09ad8),
sys/dev/ic/arn9280reg.h
378
P(0x09adc), P(0x09ae0), P(0x09ae4), P(0x09ae8), P(0x09aec),
sys/dev/ic/arn9280reg.h
379
P(0x09af0), P(0x09af4), P(0x09af8), P(0x09afc), P(0x09b00),
sys/dev/ic/arn9280reg.h
380
P(0x09b04), P(0x09b08), P(0x09b0c), P(0x09b10), P(0x09b14),
sys/dev/ic/arn9280reg.h
381
P(0x09b18), P(0x09b1c), P(0x09b20), P(0x09b24), P(0x09b28),
sys/dev/ic/arn9280reg.h
382
P(0x09b2c), P(0x09b30), P(0x09b34), P(0x09b38), P(0x09b3c),
sys/dev/ic/arn9280reg.h
383
P(0x09b40), P(0x09b44), P(0x09b48), P(0x09b4c), P(0x09b50),
sys/dev/ic/arn9280reg.h
384
P(0x09b54), P(0x09b58), P(0x09b5c), P(0x09b60), P(0x09b64),
sys/dev/ic/arn9280reg.h
385
P(0x09b68), P(0x09b6c), P(0x09b70), P(0x09b74), P(0x09b78),
sys/dev/ic/arn9280reg.h
386
P(0x09b7c), P(0x09b80), P(0x09b84), P(0x09b88), P(0x09b8c),
sys/dev/ic/arn9280reg.h
387
P(0x09b90), P(0x09b94), P(0x09b98), P(0x09b9c), P(0x09ba0),
sys/dev/ic/arn9280reg.h
388
P(0x09ba4), P(0x09ba8), P(0x09bac), P(0x09bb0), P(0x09bb4),
sys/dev/ic/arn9280reg.h
389
P(0x09bb8), P(0x09bbc), P(0x09bc0), P(0x09bc4), P(0x09bc8),
sys/dev/ic/arn9280reg.h
390
P(0x09bcc), P(0x09bd0), P(0x09bd4), P(0x09bd8), P(0x09bdc),
sys/dev/ic/arn9280reg.h
391
P(0x09be0), P(0x09be4), P(0x09be8), P(0x09bec), P(0x09bf0),
sys/dev/ic/arn9280reg.h
392
P(0x09bf4), P(0x09bf8), P(0x09bfc), P(0x09848), P(0x0a848)
sys/dev/ic/arn9280reg.h
48
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn9280reg.h
49
P(0x0801c), P(0x08120), P(0x081d0), P(0x08318), P(0x09804),
sys/dev/ic/arn9280reg.h
50
P(0x09820), P(0x09824), P(0x09828), P(0x09834), P(0x09838),
sys/dev/ic/arn9280reg.h
51
P(0x09840), P(0x09844), P(0x09850), P(0x09858), P(0x0985c),
sys/dev/ic/arn9280reg.h
52
P(0x09860), P(0x09864), P(0x09868), P(0x0986c), P(0x09914),
sys/dev/ic/arn9280reg.h
53
P(0x09918), P(0x09924), P(0x09944), P(0x09960), P(0x0a960),
sys/dev/ic/arn9280reg.h
54
P(0x09964), P(0x0c968), P(0x099b8), P(0x099bc), P(0x099c0),
sys/dev/ic/arn9280reg.h
55
P(0x0a204), P(0x0a20c), P(0x0b20c), P(0x0a21c), P(0x0a230),
sys/dev/ic/arn9280reg.h
56
P(0x0a23c), P(0x0a250), P(0x0a358), P(0x0a388), P(0x0a3d8),
sys/dev/ic/arn9280reg.h
57
P(0x07894)
sys/dev/ic/arn9285reg.h
1049
P(0x0a300), P(0x0a304), P(0x0a308), P(0x0a30c), P(0x0a310),
sys/dev/ic/arn9285reg.h
1050
P(0x0a314), P(0x0a318), P(0x0a31c), P(0x0a320), P(0x0a324),
sys/dev/ic/arn9285reg.h
1051
P(0x0a328), P(0x0a32c), P(0x0a330), P(0x0a334), P(0x0a338),
sys/dev/ic/arn9285reg.h
1052
P(0x0a33c), P(0x0a340), P(0x0a344), P(0x0a348), P(0x0a34c),
sys/dev/ic/arn9285reg.h
1053
P(0x0a350), P(0x0a354), P(0x07838), P(0x07824), P(0x0786c),
sys/dev/ic/arn9285reg.h
1054
P(0x07820), P(0x0a274), P(0x0a278), P(0x0a27c), P(0x0a394),
sys/dev/ic/arn9285reg.h
1055
P(0x0a398), P(0x0a3dc), P(0x0a3e0)
sys/dev/ic/arn9285reg.h
265
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn9285reg.h
266
P(0x0801c), P(0x08318), P(0x09804), P(0x09820), P(0x09824),
sys/dev/ic/arn9285reg.h
267
P(0x09828), P(0x09834), P(0x09838), P(0x09840), P(0x09844),
sys/dev/ic/arn9285reg.h
268
P(0x09848), P(0x0a848), P(0x09850), P(0x09858), P(0x0985c),
sys/dev/ic/arn9285reg.h
269
P(0x09860), P(0x09864), P(0x09868), P(0x0986c), P(0x09914),
sys/dev/ic/arn9285reg.h
270
P(0x09918), P(0x09924), P(0x09944), P(0x09960), P(0x09964),
sys/dev/ic/arn9285reg.h
271
P(0x099b8), P(0x099bc), P(0x099c0), P(0x099c4), P(0x099c8),
sys/dev/ic/arn9285reg.h
272
P(0x099cc), P(0x099d0), P(0x099d4), P(0x099d8), P(0x09a00),
sys/dev/ic/arn9285reg.h
273
P(0x09a04), P(0x09a08), P(0x09a0c), P(0x09a10), P(0x09a14),
sys/dev/ic/arn9285reg.h
274
P(0x09a18), P(0x09a1c), P(0x09a20), P(0x09a24), P(0x09a28),
sys/dev/ic/arn9285reg.h
275
P(0x09a2c), P(0x09a30), P(0x09a34), P(0x09a38), P(0x09a3c),
sys/dev/ic/arn9285reg.h
276
P(0x09a40), P(0x09a44), P(0x09a48), P(0x09a4c), P(0x09a50),
sys/dev/ic/arn9285reg.h
277
P(0x09a54), P(0x09a58), P(0x09a5c), P(0x09a60), P(0x09a64),
sys/dev/ic/arn9285reg.h
278
P(0x09a68), P(0x09a6c), P(0x09a70), P(0x09a74), P(0x09a78),
sys/dev/ic/arn9285reg.h
279
P(0x09a7c), P(0x09a80), P(0x09a84), P(0x09a88), P(0x09a8c),
sys/dev/ic/arn9285reg.h
280
P(0x09a90), P(0x09a94), P(0x09a98), P(0x09a9c), P(0x09aa0),
sys/dev/ic/arn9285reg.h
281
P(0x09aa4), P(0x09aa8), P(0x09aac), P(0x09ab0), P(0x09ab4),
sys/dev/ic/arn9285reg.h
282
P(0x09ab8), P(0x09abc), P(0x09ac0), P(0x09ac4), P(0x09ac8),
sys/dev/ic/arn9285reg.h
283
P(0x09acc), P(0x09ad0), P(0x09ad4), P(0x09ad8), P(0x09adc),
sys/dev/ic/arn9285reg.h
284
P(0x09ae0), P(0x09ae4), P(0x09ae8), P(0x09aec), P(0x09af0),
sys/dev/ic/arn9285reg.h
285
P(0x09af4), P(0x09af8), P(0x09afc), P(0x09b00), P(0x09b04),
sys/dev/ic/arn9285reg.h
286
P(0x09b08), P(0x09b0c), P(0x09b10), P(0x09b14), P(0x09b18),
sys/dev/ic/arn9285reg.h
287
P(0x09b1c), P(0x09b20), P(0x09b24), P(0x09b28), P(0x09b2c),
sys/dev/ic/arn9285reg.h
288
P(0x09b30), P(0x09b34), P(0x09b38), P(0x09b3c), P(0x09b40),
sys/dev/ic/arn9285reg.h
289
P(0x09b44), P(0x09b48), P(0x09b4c), P(0x09b50), P(0x09b54),
sys/dev/ic/arn9285reg.h
290
P(0x09b58), P(0x09b5c), P(0x09b60), P(0x09b64), P(0x09b68),
sys/dev/ic/arn9285reg.h
291
P(0x09b6c), P(0x09b70), P(0x09b74), P(0x09b78), P(0x09b7c),
sys/dev/ic/arn9285reg.h
292
P(0x09b80), P(0x09b84), P(0x09b88), P(0x09b8c), P(0x09b90),
sys/dev/ic/arn9285reg.h
293
P(0x09b94), P(0x09b98), P(0x09b9c), P(0x09ba0), P(0x09ba4),
sys/dev/ic/arn9285reg.h
294
P(0x09ba8), P(0x09bac), P(0x09bb0), P(0x09bb4), P(0x09bb8),
sys/dev/ic/arn9285reg.h
295
P(0x09bbc), P(0x09bc0), P(0x09bc4), P(0x09bc8), P(0x09bcc),
sys/dev/ic/arn9285reg.h
296
P(0x09bd0), P(0x09bd4), P(0x09bd8), P(0x09bdc), P(0x09be0),
sys/dev/ic/arn9285reg.h
297
P(0x09be4), P(0x09be8), P(0x09bec), P(0x09bf0), P(0x09bf4),
sys/dev/ic/arn9285reg.h
298
P(0x09bf8), P(0x09bfc), P(0x0aa00), P(0x0aa04), P(0x0aa08),
sys/dev/ic/arn9285reg.h
299
P(0x0aa0c), P(0x0aa10), P(0x0aa14), P(0x0aa18), P(0x0aa1c),
sys/dev/ic/arn9285reg.h
300
P(0x0aa20), P(0x0aa24), P(0x0aa28), P(0x0aa2c), P(0x0aa30),
sys/dev/ic/arn9285reg.h
301
P(0x0aa34), P(0x0aa38), P(0x0aa3c), P(0x0aa40), P(0x0aa44),
sys/dev/ic/arn9285reg.h
302
P(0x0aa48), P(0x0aa4c), P(0x0aa50), P(0x0aa54), P(0x0aa58),
sys/dev/ic/arn9285reg.h
303
P(0x0aa5c), P(0x0aa60), P(0x0aa64), P(0x0aa68), P(0x0aa6c),
sys/dev/ic/arn9285reg.h
304
P(0x0aa70), P(0x0aa74), P(0x0aa78), P(0x0aa7c), P(0x0aa80),
sys/dev/ic/arn9285reg.h
305
P(0x0aa84), P(0x0aa88), P(0x0aa8c), P(0x0aa90), P(0x0aa94),
sys/dev/ic/arn9285reg.h
306
P(0x0aa98), P(0x0aa9c), P(0x0aaa0), P(0x0aaa4), P(0x0aaa8),
sys/dev/ic/arn9285reg.h
307
P(0x0aaac), P(0x0aab0), P(0x0aab4), P(0x0aab8), P(0x0aabc),
sys/dev/ic/arn9285reg.h
308
P(0x0aac0), P(0x0aac4), P(0x0aac8), P(0x0aacc), P(0x0aad0),
sys/dev/ic/arn9285reg.h
309
P(0x0aad4), P(0x0aad8), P(0x0aadc), P(0x0aae0), P(0x0aae4),
sys/dev/ic/arn9285reg.h
310
P(0x0aae8), P(0x0aaec), P(0x0aaf0), P(0x0aaf4), P(0x0aaf8),
sys/dev/ic/arn9285reg.h
311
P(0x0aafc), P(0x0ab00), P(0x0ab04), P(0x0ab08), P(0x0ab0c),
sys/dev/ic/arn9285reg.h
312
P(0x0ab10), P(0x0ab14), P(0x0ab18), P(0x0ab1c), P(0x0ab20),
sys/dev/ic/arn9285reg.h
313
P(0x0ab24), P(0x0ab28), P(0x0ab2c), P(0x0ab30), P(0x0ab34),
sys/dev/ic/arn9285reg.h
314
P(0x0ab38), P(0x0ab3c), P(0x0ab40), P(0x0ab44), P(0x0ab48),
sys/dev/ic/arn9285reg.h
315
P(0x0ab4c), P(0x0ab50), P(0x0ab54), P(0x0ab58), P(0x0ab5c),
sys/dev/ic/arn9285reg.h
316
P(0x0ab60), P(0x0ab64), P(0x0ab68), P(0x0ab6c), P(0x0ab70),
sys/dev/ic/arn9285reg.h
317
P(0x0ab74), P(0x0ab78), P(0x0ab7c), P(0x0ab80), P(0x0ab84),
sys/dev/ic/arn9285reg.h
318
P(0x0ab88), P(0x0ab8c), P(0x0ab90), P(0x0ab94), P(0x0ab98),
sys/dev/ic/arn9285reg.h
319
P(0x0ab9c), P(0x0aba0), P(0x0aba4), P(0x0aba8), P(0x0abac),
sys/dev/ic/arn9285reg.h
320
P(0x0abb0), P(0x0abb4), P(0x0abb8), P(0x0abbc), P(0x0abc0),
sys/dev/ic/arn9285reg.h
321
P(0x0abc4), P(0x0abc8), P(0x0abcc), P(0x0abd0), P(0x0abd4),
sys/dev/ic/arn9285reg.h
322
P(0x0abd8), P(0x0abdc), P(0x0abe0), P(0x0abe4), P(0x0abe8),
sys/dev/ic/arn9285reg.h
323
P(0x0abec), P(0x0abf0), P(0x0abf4), P(0x0abf8), P(0x0abfc),
sys/dev/ic/arn9285reg.h
324
P(0x0a204), P(0x0a20c), P(0x0b20c), P(0x0a21c), P(0x0a230),
sys/dev/ic/arn9285reg.h
325
P(0x0a250), P(0x0a358)
sys/dev/ic/arn9285reg.h
459
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn9285reg.h
460
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn9285reg.h
461
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn9285reg.h
462
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn9285reg.h
463
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn9285reg.h
464
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn9285reg.h
465
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn9285reg.h
466
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn9285reg.h
467
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn9285reg.h
468
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn9285reg.h
469
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn9285reg.h
470
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn9285reg.h
471
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn9285reg.h
472
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn9285reg.h
473
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn9285reg.h
474
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn9285reg.h
475
P(0x0147c), P(0x04030), P(0x0403c), P(0x04024), P(0x04060),
sys/dev/ic/arn9285reg.h
476
P(0x04064), P(0x07010), P(0x07034), P(0x07038), P(0x08004),
sys/dev/ic/arn9285reg.h
477
P(0x08008), P(0x0800c), P(0x08018), P(0x08020), P(0x08038),
sys/dev/ic/arn9285reg.h
478
P(0x0803c), P(0x08048), P(0x08054), P(0x08058), P(0x0805c),
sys/dev/ic/arn9285reg.h
479
P(0x08060), P(0x08064), P(0x08070), P(0x080c0), P(0x080c4),
sys/dev/ic/arn9285reg.h
480
P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4), P(0x080d8),
sys/dev/ic/arn9285reg.h
481
P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec), P(0x080f0),
sys/dev/ic/arn9285reg.h
482
P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100), P(0x08104),
sys/dev/ic/arn9285reg.h
483
P(0x08108), P(0x0810c), P(0x08110), P(0x08118), P(0x0811c),
sys/dev/ic/arn9285reg.h
484
P(0x08120), P(0x08124), P(0x08128), P(0x0812c), P(0x08130),
sys/dev/ic/arn9285reg.h
485
P(0x08134), P(0x08138), P(0x0813c), P(0x08144), P(0x08168),
sys/dev/ic/arn9285reg.h
486
P(0x0816c), P(0x08170), P(0x08174), P(0x08178), P(0x0817c),
sys/dev/ic/arn9285reg.h
487
P(0x081c0), P(0x081d0), P(0x081ec), P(0x081f0), P(0x081f4),
sys/dev/ic/arn9285reg.h
488
P(0x081f8), P(0x081fc), P(0x08200), P(0x08204), P(0x08208),
sys/dev/ic/arn9285reg.h
489
P(0x0820c), P(0x08210), P(0x08214), P(0x08218), P(0x0821c),
sys/dev/ic/arn9285reg.h
490
P(0x08220), P(0x08224), P(0x08228), P(0x0822c), P(0x08230),
sys/dev/ic/arn9285reg.h
491
P(0x08234), P(0x08238), P(0x0823c), P(0x08240), P(0x08244),
sys/dev/ic/arn9285reg.h
492
P(0x08248), P(0x0824c), P(0x08250), P(0x08254), P(0x08258),
sys/dev/ic/arn9285reg.h
493
P(0x0825c), P(0x08260), P(0x08264), P(0x08270), P(0x08274),
sys/dev/ic/arn9285reg.h
494
P(0x08278), P(0x0827c), P(0x08284), P(0x08288), P(0x0828c),
sys/dev/ic/arn9285reg.h
495
P(0x08294), P(0x08298), P(0x0829c), P(0x08300), P(0x08314),
sys/dev/ic/arn9285reg.h
496
P(0x08328), P(0x0832c), P(0x08330), P(0x08334), P(0x08338),
sys/dev/ic/arn9285reg.h
497
P(0x0833c), P(0x08340), P(0x08344), P(0x09808), P(0x0980c),
sys/dev/ic/arn9285reg.h
498
P(0x09810), P(0x09814), P(0x0981c), P(0x0982c), P(0x09830),
sys/dev/ic/arn9285reg.h
499
P(0x0983c), P(0x0984c), P(0x09854), P(0x09900), P(0x09904),
sys/dev/ic/arn9285reg.h
500
P(0x09908), P(0x0990c), P(0x09910), P(0x0991c), P(0x09920),
sys/dev/ic/arn9285reg.h
501
P(0x09928), P(0x0992c), P(0x09934), P(0x09938), P(0x0993c),
sys/dev/ic/arn9285reg.h
502
P(0x09940), P(0x09948), P(0x0994c), P(0x09954), P(0x09958),
sys/dev/ic/arn9285reg.h
503
P(0x09968), P(0x09970), P(0x09974), P(0x09978), P(0x0997c),
sys/dev/ic/arn9285reg.h
504
P(0x09980), P(0x09984), P(0x09988), P(0x0998c), P(0x09990),
sys/dev/ic/arn9285reg.h
505
P(0x09994), P(0x09998), P(0x0999c), P(0x099a0), P(0x099a4),
sys/dev/ic/arn9285reg.h
506
P(0x099a8), P(0x099ac), P(0x099b0), P(0x099b4), P(0x099dc),
sys/dev/ic/arn9285reg.h
507
P(0x099e0), P(0x099e4), P(0x099e8), P(0x099ec), P(0x099f0),
sys/dev/ic/arn9285reg.h
508
P(0x0a208), P(0x0a210), P(0x0a214), P(0x0a218), P(0x0a220),
sys/dev/ic/arn9285reg.h
509
P(0x0a224), P(0x0a228), P(0x0a22c), P(0x0a234), P(0x0a238),
sys/dev/ic/arn9285reg.h
510
P(0x0a244), P(0x0a248), P(0x0a24c), P(0x0a254), P(0x0a258),
sys/dev/ic/arn9285reg.h
511
P(0x0a25c), P(0x0a260), P(0x0a268), P(0x0a26c), P(0x0d270),
sys/dev/ic/arn9285reg.h
512
P(0x0d35c), P(0x0d360), P(0x0d364), P(0x0d368), P(0x0d36c),
sys/dev/ic/arn9285reg.h
513
P(0x0d370), P(0x0d374), P(0x0d378), P(0x0d37c), P(0x0d380),
sys/dev/ic/arn9285reg.h
514
P(0x0d384), P(0x0a388), P(0x0a38c), P(0x0a390), P(0x0a39c),
sys/dev/ic/arn9285reg.h
515
P(0x0a3a0), P(0x0a3a4), P(0x0a3a8), P(0x0a3ac), P(0x0a3b0),
sys/dev/ic/arn9285reg.h
516
P(0x0a3b4), P(0x0a3b8), P(0x0a3bc), P(0x0a3c0), P(0x0a3c4),
sys/dev/ic/arn9285reg.h
517
P(0x0a3cc), P(0x0a3d0), P(0x0a3d4), P(0x0a3e4), P(0x0a3e8),
sys/dev/ic/arn9285reg.h
518
P(0x0a3ec), P(0x07800), P(0x07804), P(0x07808), P(0x0780c),
sys/dev/ic/arn9285reg.h
519
P(0x07810), P(0x0781c), P(0x07824), P(0x0782c), P(0x07834),
sys/dev/ic/arn9285reg.h
520
P(0x07844), P(0x07848), P(0x0784c), P(0x07850), P(0x07854),
sys/dev/ic/arn9285reg.h
521
P(0x07858), P(0x0785c), P(0x07860), P(0x07864), P(0x07868),
sys/dev/ic/arn9285reg.h
522
P(0x07870)
sys/dev/ic/arn9285reg.h
611
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn9285reg.h
612
P(0x0801c), P(0x08318), P(0x09804), P(0x09820), P(0x09824),
sys/dev/ic/arn9285reg.h
613
P(0x09828), P(0x09834), P(0x09838), P(0x09840), P(0x09844),
sys/dev/ic/arn9285reg.h
614
P(0x09848), P(0x0a848), P(0x09850), P(0x09858), P(0x0985c),
sys/dev/ic/arn9285reg.h
615
P(0x09860), P(0x09864), P(0x09868), P(0x0986c), P(0x09910),
sys/dev/ic/arn9285reg.h
616
P(0x09914), P(0x09918), P(0x09924), P(0x09944), P(0x09960),
sys/dev/ic/arn9285reg.h
617
P(0x09964), P(0x099b8), P(0x099bc), P(0x099c0), P(0x099c4),
sys/dev/ic/arn9285reg.h
618
P(0x099c8), P(0x099cc), P(0x099d0), P(0x099d4), P(0x099d8),
sys/dev/ic/arn9285reg.h
619
P(0x09a00), P(0x09a04), P(0x09a08), P(0x09a0c), P(0x09a10),
sys/dev/ic/arn9285reg.h
620
P(0x09a14), P(0x09a18), P(0x09a1c), P(0x09a20), P(0x09a24),
sys/dev/ic/arn9285reg.h
621
P(0x09a28), P(0x09a2c), P(0x09a30), P(0x09a34), P(0x09a38),
sys/dev/ic/arn9285reg.h
622
P(0x09a3c), P(0x09a40), P(0x09a44), P(0x09a48), P(0x09a4c),
sys/dev/ic/arn9285reg.h
623
P(0x09a50), P(0x09a54), P(0x09a58), P(0x09a5c), P(0x09a60),
sys/dev/ic/arn9285reg.h
624
P(0x09a64), P(0x09a68), P(0x09a6c), P(0x09a70), P(0x09a74),
sys/dev/ic/arn9285reg.h
625
P(0x09a78), P(0x09a7c), P(0x09a80), P(0x09a84), P(0x09a88),
sys/dev/ic/arn9285reg.h
626
P(0x09a8c), P(0x09a90), P(0x09a94), P(0x09a98), P(0x09a9c),
sys/dev/ic/arn9285reg.h
627
P(0x09aa0), P(0x09aa4), P(0x09aa8), P(0x09aac), P(0x09ab0),
sys/dev/ic/arn9285reg.h
628
P(0x09ab4), P(0x09ab8), P(0x09abc), P(0x09ac0), P(0x09ac4),
sys/dev/ic/arn9285reg.h
629
P(0x09ac8), P(0x09acc), P(0x09ad0), P(0x09ad4), P(0x09ad8),
sys/dev/ic/arn9285reg.h
630
P(0x09adc), P(0x09ae0), P(0x09ae4), P(0x09ae8), P(0x09aec),
sys/dev/ic/arn9285reg.h
631
P(0x09af0), P(0x09af4), P(0x09af8), P(0x09afc), P(0x09b00),
sys/dev/ic/arn9285reg.h
632
P(0x09b04), P(0x09b08), P(0x09b0c), P(0x09b10), P(0x09b14),
sys/dev/ic/arn9285reg.h
633
P(0x09b18), P(0x09b1c), P(0x09b20), P(0x09b24), P(0x09b28),
sys/dev/ic/arn9285reg.h
634
P(0x09b2c), P(0x09b30), P(0x09b34), P(0x09b38), P(0x09b3c),
sys/dev/ic/arn9285reg.h
635
P(0x09b40), P(0x09b44), P(0x09b48), P(0x09b4c), P(0x09b50),
sys/dev/ic/arn9285reg.h
636
P(0x09b54), P(0x09b58), P(0x09b5c), P(0x09b60), P(0x09b64),
sys/dev/ic/arn9285reg.h
637
P(0x09b68), P(0x09b6c), P(0x09b70), P(0x09b74), P(0x09b78),
sys/dev/ic/arn9285reg.h
638
P(0x09b7c), P(0x09b80), P(0x09b84), P(0x09b88), P(0x09b8c),
sys/dev/ic/arn9285reg.h
639
P(0x09b90), P(0x09b94), P(0x09b98), P(0x09b9c), P(0x09ba0),
sys/dev/ic/arn9285reg.h
640
P(0x09ba4), P(0x09ba8), P(0x09bac), P(0x09bb0), P(0x09bb4),
sys/dev/ic/arn9285reg.h
641
P(0x09bb8), P(0x09bbc), P(0x09bc0), P(0x09bc4), P(0x09bc8),
sys/dev/ic/arn9285reg.h
642
P(0x09bcc), P(0x09bd0), P(0x09bd4), P(0x09bd8), P(0x09bdc),
sys/dev/ic/arn9285reg.h
643
P(0x09be0), P(0x09be4), P(0x09be8), P(0x09bec), P(0x09bf0),
sys/dev/ic/arn9285reg.h
644
P(0x09bf4), P(0x09bf8), P(0x09bfc), P(0x0aa00), P(0x0aa04),
sys/dev/ic/arn9285reg.h
645
P(0x0aa08), P(0x0aa0c), P(0x0aa10), P(0x0aa14), P(0x0aa18),
sys/dev/ic/arn9285reg.h
646
P(0x0aa1c), P(0x0aa20), P(0x0aa24), P(0x0aa28), P(0x0aa2c),
sys/dev/ic/arn9285reg.h
647
P(0x0aa30), P(0x0aa34), P(0x0aa38), P(0x0aa3c), P(0x0aa40),
sys/dev/ic/arn9285reg.h
648
P(0x0aa44), P(0x0aa48), P(0x0aa4c), P(0x0aa50), P(0x0aa54),
sys/dev/ic/arn9285reg.h
649
P(0x0aa58), P(0x0aa5c), P(0x0aa60), P(0x0aa64), P(0x0aa68),
sys/dev/ic/arn9285reg.h
650
P(0x0aa6c), P(0x0aa70), P(0x0aa74), P(0x0aa78), P(0x0aa7c),
sys/dev/ic/arn9285reg.h
651
P(0x0aa80), P(0x0aa84), P(0x0aa88), P(0x0aa8c), P(0x0aa90),
sys/dev/ic/arn9285reg.h
652
P(0x0aa94), P(0x0aa98), P(0x0aa9c), P(0x0aaa0), P(0x0aaa4),
sys/dev/ic/arn9285reg.h
653
P(0x0aaa8), P(0x0aaac), P(0x0aab0), P(0x0aab4), P(0x0aab8),
sys/dev/ic/arn9285reg.h
654
P(0x0aabc), P(0x0aac0), P(0x0aac4), P(0x0aac8), P(0x0aacc),
sys/dev/ic/arn9285reg.h
655
P(0x0aad0), P(0x0aad4), P(0x0aad8), P(0x0aadc), P(0x0aae0),
sys/dev/ic/arn9285reg.h
656
P(0x0aae4), P(0x0aae8), P(0x0aaec), P(0x0aaf0), P(0x0aaf4),
sys/dev/ic/arn9285reg.h
657
P(0x0aaf8), P(0x0aafc), P(0x0ab00), P(0x0ab04), P(0x0ab08),
sys/dev/ic/arn9285reg.h
658
P(0x0ab0c), P(0x0ab10), P(0x0ab14), P(0x0ab18), P(0x0ab1c),
sys/dev/ic/arn9285reg.h
659
P(0x0ab20), P(0x0ab24), P(0x0ab28), P(0x0ab2c), P(0x0ab30),
sys/dev/ic/arn9285reg.h
660
P(0x0ab34), P(0x0ab38), P(0x0ab3c), P(0x0ab40), P(0x0ab44),
sys/dev/ic/arn9285reg.h
661
P(0x0ab48), P(0x0ab4c), P(0x0ab50), P(0x0ab54), P(0x0ab58),
sys/dev/ic/arn9285reg.h
662
P(0x0ab5c), P(0x0ab60), P(0x0ab64), P(0x0ab68), P(0x0ab6c),
sys/dev/ic/arn9285reg.h
663
P(0x0ab70), P(0x0ab74), P(0x0ab78), P(0x0ab7c), P(0x0ab80),
sys/dev/ic/arn9285reg.h
664
P(0x0ab84), P(0x0ab88), P(0x0ab8c), P(0x0ab90), P(0x0ab94),
sys/dev/ic/arn9285reg.h
665
P(0x0ab98), P(0x0ab9c), P(0x0aba0), P(0x0aba4), P(0x0aba8),
sys/dev/ic/arn9285reg.h
666
P(0x0abac), P(0x0abb0), P(0x0abb4), P(0x0abb8), P(0x0abbc),
sys/dev/ic/arn9285reg.h
667
P(0x0abc0), P(0x0abc4), P(0x0abc8), P(0x0abcc), P(0x0abd0),
sys/dev/ic/arn9285reg.h
668
P(0x0abd4), P(0x0abd8), P(0x0abdc), P(0x0abe0), P(0x0abe4),
sys/dev/ic/arn9285reg.h
669
P(0x0abe8), P(0x0abec), P(0x0abf0), P(0x0abf4), P(0x0abf8),
sys/dev/ic/arn9285reg.h
670
P(0x0abfc), P(0x0a204), P(0x0a20c), P(0x0b20c), P(0x0a21c),
sys/dev/ic/arn9285reg.h
671
P(0x0a230), P(0x0a250), P(0x0a358)
sys/dev/ic/arn9285reg.h
805
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn9285reg.h
806
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn9285reg.h
807
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn9285reg.h
808
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn9285reg.h
809
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn9285reg.h
810
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn9285reg.h
811
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn9285reg.h
812
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn9285reg.h
813
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn9285reg.h
814
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn9285reg.h
815
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn9285reg.h
816
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn9285reg.h
817
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn9285reg.h
818
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn9285reg.h
819
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn9285reg.h
820
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn9285reg.h
821
P(0x0147c), P(0x04030), P(0x0403c), P(0x04024), P(0x04060),
sys/dev/ic/arn9285reg.h
822
P(0x04064), P(0x08004), P(0x08008), P(0x0800c), P(0x08018),
sys/dev/ic/arn9285reg.h
823
P(0x08020), P(0x08038), P(0x0803c), P(0x08048), P(0x08054),
sys/dev/ic/arn9285reg.h
824
P(0x08058), P(0x0805c), P(0x08060), P(0x08064), P(0x08070),
sys/dev/ic/arn9285reg.h
825
P(0x080b0), P(0x080b4), P(0x080b8), P(0x080bc), P(0x080c0),
sys/dev/ic/arn9285reg.h
826
P(0x080c4), P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4),
sys/dev/ic/arn9285reg.h
827
P(0x080d8), P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec),
sys/dev/ic/arn9285reg.h
828
P(0x080f0), P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100),
sys/dev/ic/arn9285reg.h
829
P(0x08104), P(0x08108), P(0x0810c), P(0x08110), P(0x08118),
sys/dev/ic/arn9285reg.h
830
P(0x0811c), P(0x08120), P(0x08124), P(0x08128), P(0x0812c),
sys/dev/ic/arn9285reg.h
831
P(0x08130), P(0x08134), P(0x08138), P(0x0813c), P(0x08144),
sys/dev/ic/arn9285reg.h
832
P(0x08168), P(0x0816c), P(0x08170), P(0x08174), P(0x08178),
sys/dev/ic/arn9285reg.h
833
P(0x0817c), P(0x081c0), P(0x081d0), P(0x081ec), P(0x081f0),
sys/dev/ic/arn9285reg.h
834
P(0x081f4), P(0x081f8), P(0x081fc), P(0x08200), P(0x08204),
sys/dev/ic/arn9285reg.h
835
P(0x08208), P(0x0820c), P(0x08210), P(0x08214), P(0x08218),
sys/dev/ic/arn9285reg.h
836
P(0x0821c), P(0x08220), P(0x08224), P(0x08228), P(0x0822c),
sys/dev/ic/arn9285reg.h
837
P(0x08230), P(0x08234), P(0x08238), P(0x0823c), P(0x08240),
sys/dev/ic/arn9285reg.h
838
P(0x08244), P(0x08248), P(0x0824c), P(0x08250), P(0x08254),
sys/dev/ic/arn9285reg.h
839
P(0x08258), P(0x0825c), P(0x08260), P(0x08264), P(0x08270),
sys/dev/ic/arn9285reg.h
840
P(0x08274), P(0x08278), P(0x0827c), P(0x08284), P(0x08288),
sys/dev/ic/arn9285reg.h
841
P(0x0828c), P(0x08294), P(0x08298), P(0x0829c), P(0x08300),
sys/dev/ic/arn9285reg.h
842
P(0x08314), P(0x08328), P(0x0832c), P(0x08330), P(0x08334),
sys/dev/ic/arn9285reg.h
843
P(0x08338), P(0x0833c), P(0x08340), P(0x08344), P(0x07010),
sys/dev/ic/arn9285reg.h
844
P(0x07034), P(0x07038), P(0x07800), P(0x07804), P(0x07808),
sys/dev/ic/arn9285reg.h
845
P(0x0780c), P(0x07810), P(0x07814), P(0x0781c), P(0x07828),
sys/dev/ic/arn9285reg.h
846
P(0x0782c), P(0x07830), P(0x07834), P(0x0783c), P(0x07840),
sys/dev/ic/arn9285reg.h
847
P(0x07844), P(0x07848), P(0x0784c), P(0x07850), P(0x07854),
sys/dev/ic/arn9285reg.h
848
P(0x07858), P(0x0785c), P(0x07860), P(0x07864), P(0x07868),
sys/dev/ic/arn9285reg.h
849
P(0x07870), P(0x09808), P(0x0980c), P(0x09810), P(0x09814),
sys/dev/ic/arn9285reg.h
850
P(0x0981c), P(0x0982c), P(0x09830), P(0x0983c), P(0x0984c),
sys/dev/ic/arn9285reg.h
851
P(0x09854), P(0x09900), P(0x09904), P(0x09908), P(0x0990c),
sys/dev/ic/arn9285reg.h
852
P(0x0991c), P(0x09920), P(0x09928), P(0x0992c), P(0x09934),
sys/dev/ic/arn9285reg.h
853
P(0x09938), P(0x0993c), P(0x09940), P(0x09948), P(0x0994c),
sys/dev/ic/arn9285reg.h
854
P(0x09954), P(0x09958), P(0x09968), P(0x09970), P(0x09974),
sys/dev/ic/arn9285reg.h
855
P(0x09978), P(0x0997c), P(0x09980), P(0x09984), P(0x09988),
sys/dev/ic/arn9285reg.h
856
P(0x0998c), P(0x09990), P(0x09994), P(0x09998), P(0x0999c),
sys/dev/ic/arn9285reg.h
857
P(0x099a0), P(0x099a4), P(0x099a8), P(0x099ac), P(0x099b0),
sys/dev/ic/arn9285reg.h
858
P(0x099b4), P(0x099dc), P(0x099e0), P(0x099e4), P(0x099e8),
sys/dev/ic/arn9285reg.h
859
P(0x099ec), P(0x099f0), P(0x0a208), P(0x0a210), P(0x0a214),
sys/dev/ic/arn9285reg.h
860
P(0x0a218), P(0x0a220), P(0x0a224), P(0x0a228), P(0x0a22c),
sys/dev/ic/arn9285reg.h
861
P(0x0a234), P(0x0a238), P(0x0a244), P(0x0a248), P(0x0a24c),
sys/dev/ic/arn9285reg.h
862
P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260), P(0x0a268),
sys/dev/ic/arn9285reg.h
863
P(0x0a26c), P(0x0a388), P(0x0a38c), P(0x0a390), P(0x0a39c),
sys/dev/ic/arn9285reg.h
864
P(0x0a3a0), P(0x0a3a4), P(0x0a3a8), P(0x0a3ac), P(0x0a3b0),
sys/dev/ic/arn9285reg.h
865
P(0x0a3b4), P(0x0a3b8), P(0x0a3bc), P(0x0a3c0), P(0x0a3c4),
sys/dev/ic/arn9285reg.h
866
P(0x0a3cc), P(0x0a3d0), P(0x0a3d4), P(0x0a3e4), P(0x0a3e8),
sys/dev/ic/arn9285reg.h
867
P(0x0a3ec), P(0x0a3f0), P(0x0a3f4), P(0x0d270), P(0x0d35c),
sys/dev/ic/arn9285reg.h
868
P(0x0d360), P(0x0d364), P(0x0d368), P(0x0d36c), P(0x0d370),
sys/dev/ic/arn9285reg.h
869
P(0x0d374), P(0x0d378), P(0x0d37c), P(0x0d380), P(0x0d384)
sys/dev/ic/arn9285reg.h
959
P(0x0a300), P(0x0a304), P(0x0a308), P(0x0a30c), P(0x0a310),
sys/dev/ic/arn9285reg.h
960
P(0x0a314), P(0x0a318), P(0x0a31c), P(0x0a320), P(0x0a324),
sys/dev/ic/arn9285reg.h
961
P(0x0a328), P(0x0a32c), P(0x0a330), P(0x0a334), P(0x0a338),
sys/dev/ic/arn9285reg.h
962
P(0x0a33c), P(0x0a340), P(0x0a344), P(0x0a348), P(0x0a34c),
sys/dev/ic/arn9285reg.h
963
P(0x0a350), P(0x0a354), P(0x07814), P(0x07828), P(0x07830),
sys/dev/ic/arn9285reg.h
964
P(0x07838), P(0x0783c), P(0x07840), P(0x0786c), P(0x07820),
sys/dev/ic/arn9285reg.h
965
P(0x0a274), P(0x0a278), P(0x0a27c), P(0x0a394), P(0x0a398),
sys/dev/ic/arn9285reg.h
966
P(0x0a3dc), P(0x0a3e0)
sys/dev/ic/arn9287reg.h
182
P(0x01030), P(0x01070), P(0x010b0), P(0x010f0), P(0x08014),
sys/dev/ic/arn9287reg.h
183
P(0x0801c), P(0x08120), P(0x081d0), P(0x08318), P(0x09804),
sys/dev/ic/arn9287reg.h
184
P(0x09820), P(0x09824), P(0x09828), P(0x09834), P(0x09838),
sys/dev/ic/arn9287reg.h
185
P(0x09840), P(0x09844), P(0x09850), P(0x09858), P(0x0985c),
sys/dev/ic/arn9287reg.h
186
P(0x09860), P(0x09864), P(0x09868), P(0x0986c), P(0x09914),
sys/dev/ic/arn9287reg.h
187
P(0x09918), P(0x09924), P(0x09944), P(0x09960), P(0x0a960),
sys/dev/ic/arn9287reg.h
188
P(0x09964), P(0x0c968), P(0x099b8), P(0x099bc), P(0x099c0),
sys/dev/ic/arn9287reg.h
189
P(0x0a204), P(0x0a20c), P(0x0b20c), P(0x0a21c), P(0x0a230),
sys/dev/ic/arn9287reg.h
190
P(0x0a250), P(0x0a358), P(0x0a3d8)
sys/dev/ic/arn9287reg.h
220
P(0x0000c), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn9287reg.h
221
P(0x00048), P(0x0004c), P(0x00050), P(0x00054), P(0x00800),
sys/dev/ic/arn9287reg.h
222
P(0x00804), P(0x00808), P(0x0080c), P(0x00810), P(0x00814),
sys/dev/ic/arn9287reg.h
223
P(0x00818), P(0x0081c), P(0x00820), P(0x00824), P(0x01040),
sys/dev/ic/arn9287reg.h
224
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn9287reg.h
225
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x01230),
sys/dev/ic/arn9287reg.h
226
P(0x01270), P(0x01038), P(0x01078), P(0x010b8), P(0x010f8),
sys/dev/ic/arn9287reg.h
227
P(0x01138), P(0x01178), P(0x011b8), P(0x011f8), P(0x01238),
sys/dev/ic/arn9287reg.h
228
P(0x01278), P(0x012b8), P(0x012f8), P(0x01338), P(0x01378),
sys/dev/ic/arn9287reg.h
229
P(0x013b8), P(0x013f8), P(0x01438), P(0x01478), P(0x014b8),
sys/dev/ic/arn9287reg.h
230
P(0x014f8), P(0x01538), P(0x01578), P(0x015b8), P(0x015f8),
sys/dev/ic/arn9287reg.h
231
P(0x01638), P(0x01678), P(0x016b8), P(0x016f8), P(0x01738),
sys/dev/ic/arn9287reg.h
232
P(0x01778), P(0x017b8), P(0x017f8), P(0x0103c), P(0x0107c),
sys/dev/ic/arn9287reg.h
233
P(0x010bc), P(0x010fc), P(0x0113c), P(0x0117c), P(0x011bc),
sys/dev/ic/arn9287reg.h
234
P(0x011fc), P(0x0123c), P(0x0127c), P(0x012bc), P(0x012fc),
sys/dev/ic/arn9287reg.h
235
P(0x0133c), P(0x0137c), P(0x013bc), P(0x013fc), P(0x0143c),
sys/dev/ic/arn9287reg.h
236
P(0x0147c), P(0x04030), P(0x0403c), P(0x04024), P(0x04060),
sys/dev/ic/arn9287reg.h
237
P(0x04064), P(0x07010), P(0x07020), P(0x07034), P(0x07038),
sys/dev/ic/arn9287reg.h
238
P(0x08004), P(0x08008), P(0x0800c), P(0x08018), P(0x08020),
sys/dev/ic/arn9287reg.h
239
P(0x08038), P(0x0803c), P(0x08048), P(0x08054), P(0x08058),
sys/dev/ic/arn9287reg.h
240
P(0x0805c), P(0x08060), P(0x08064), P(0x08070), P(0x080c0),
sys/dev/ic/arn9287reg.h
241
P(0x080c4), P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4),
sys/dev/ic/arn9287reg.h
242
P(0x080d8), P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec),
sys/dev/ic/arn9287reg.h
243
P(0x080f0), P(0x080f4), P(0x080f8), P(0x080fc), P(0x08100),
sys/dev/ic/arn9287reg.h
244
P(0x08104), P(0x08108), P(0x0810c), P(0x08110), P(0x08118),
sys/dev/ic/arn9287reg.h
245
P(0x0811c), P(0x08124), P(0x08128), P(0x0812c), P(0x08130),
sys/dev/ic/arn9287reg.h
246
P(0x08134), P(0x08138), P(0x0813c), P(0x08144), P(0x08168),
sys/dev/ic/arn9287reg.h
247
P(0x0816c), P(0x08170), P(0x08174), P(0x08178), P(0x0817c),
sys/dev/ic/arn9287reg.h
248
P(0x081c0), P(0x081c4), P(0x081d4), P(0x081ec), P(0x081f0),
sys/dev/ic/arn9287reg.h
249
P(0x081f4), P(0x081f8), P(0x081fc), P(0x08200), P(0x08204),
sys/dev/ic/arn9287reg.h
250
P(0x08208), P(0x0820c), P(0x08210), P(0x08214), P(0x08218),
sys/dev/ic/arn9287reg.h
251
P(0x0821c), P(0x08220), P(0x08224), P(0x08228), P(0x0822c),
sys/dev/ic/arn9287reg.h
252
P(0x08230), P(0x08234), P(0x08238), P(0x0823c), P(0x08240),
sys/dev/ic/arn9287reg.h
253
P(0x08244), P(0x08248), P(0x0824c), P(0x08250), P(0x08254),
sys/dev/ic/arn9287reg.h
254
P(0x08258), P(0x0825c), P(0x08260), P(0x08264), P(0x08270),
sys/dev/ic/arn9287reg.h
255
P(0x08274), P(0x08278), P(0x0827c), P(0x08284), P(0x08288),
sys/dev/ic/arn9287reg.h
256
P(0x0828c), P(0x08294), P(0x08298), P(0x0829c), P(0x08300),
sys/dev/ic/arn9287reg.h
257
P(0x08314), P(0x08328), P(0x0832c), P(0x08330), P(0x08334),
sys/dev/ic/arn9287reg.h
258
P(0x08338), P(0x0833c), P(0x08340), P(0x08344), P(0x08360),
sys/dev/ic/arn9287reg.h
259
P(0x08364), P(0x08368), P(0x08370), P(0x08374), P(0x08378),
sys/dev/ic/arn9287reg.h
260
P(0x0837c), P(0x08380), P(0x08384), P(0x08390), P(0x08394),
sys/dev/ic/arn9287reg.h
261
P(0x08398), P(0x0839c), P(0x083a0), P(0x09808), P(0x0980c),
sys/dev/ic/arn9287reg.h
262
P(0x09810), P(0x09814), P(0x0981c), P(0x0982c), P(0x09830),
sys/dev/ic/arn9287reg.h
263
P(0x0983c), P(0x0984c), P(0x0a84c), P(0x09854), P(0x09900),
sys/dev/ic/arn9287reg.h
264
P(0x09904), P(0x09908), P(0x0990c), P(0x09910), P(0x0991c),
sys/dev/ic/arn9287reg.h
265
P(0x09920), P(0x0a920), P(0x09928), P(0x0992c), P(0x09930),
sys/dev/ic/arn9287reg.h
266
P(0x0a930), P(0x09934), P(0x09938), P(0x0993c), P(0x09948),
sys/dev/ic/arn9287reg.h
267
P(0x0994c), P(0x09954), P(0x09958), P(0x09940), P(0x0c95c),
sys/dev/ic/arn9287reg.h
268
P(0x09970), P(0x09974), P(0x09978), P(0x0997c), P(0x099a0),
sys/dev/ic/arn9287reg.h
269
P(0x099a4), P(0x099a8), P(0x099ac), P(0x099b0), P(0x099b4),
sys/dev/ic/arn9287reg.h
270
P(0x099c4), P(0x099c8), P(0x099cc), P(0x099d0), P(0x099dc),
sys/dev/ic/arn9287reg.h
271
P(0x099e0), P(0x099e4), P(0x099e8), P(0x099ec), P(0x099f0),
sys/dev/ic/arn9287reg.h
272
P(0x099fc), P(0x0a208), P(0x0a210), P(0x0a214), P(0x0a218),
sys/dev/ic/arn9287reg.h
273
P(0x0a220), P(0x0a224), P(0x0a228), P(0x0a22c), P(0x0a234),
sys/dev/ic/arn9287reg.h
274
P(0x0a238), P(0x0a23c), P(0x0a240), P(0x0a244), P(0x0a248),
sys/dev/ic/arn9287reg.h
275
P(0x0a24c), P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260),
sys/dev/ic/arn9287reg.h
276
P(0x0a264), P(0x0b264), P(0x0a268), P(0x0a26c), P(0x0b26c),
sys/dev/ic/arn9287reg.h
277
P(0x0d270), P(0x0a278), P(0x0a27c), P(0x0d35c), P(0x0d360),
sys/dev/ic/arn9287reg.h
278
P(0x0d364), P(0x0d368), P(0x0d36c), P(0x0d370), P(0x0d374),
sys/dev/ic/arn9287reg.h
279
P(0x0d378), P(0x0d37c), P(0x0d380), P(0x0d384), P(0x0a388),
sys/dev/ic/arn9287reg.h
280
P(0x0a38c), P(0x0a390), P(0x0a394), P(0x0a398), P(0x0b398),
sys/dev/ic/arn9287reg.h
281
P(0x0a39c), P(0x0a3c8), P(0x0a3cc), P(0x0a3d0), P(0x0a3d4),
sys/dev/ic/arn9287reg.h
282
P(0x0a3dc), P(0x0a3e0), P(0x0a3e4), P(0x0a3e8), P(0x0a3ec),
sys/dev/ic/arn9287reg.h
283
P(0x0a3f0), P(0x0a3f4), P(0x0b3f4), P(0x0a7d8), P(0x07800),
sys/dev/ic/arn9287reg.h
284
P(0x07804), P(0x07808), P(0x0780c), P(0x07810), P(0x07814),
sys/dev/ic/arn9287reg.h
285
P(0x07818), P(0x0781c), P(0x07820), P(0x07824), P(0x07828),
sys/dev/ic/arn9287reg.h
286
P(0x0782c), P(0x07830), P(0x07834), P(0x07838), P(0x0783c),
sys/dev/ic/arn9287reg.h
287
P(0x07840), P(0x07844), P(0x07848), P(0x07850), P(0x07854),
sys/dev/ic/arn9287reg.h
288
P(0x07858), P(0x0785c), P(0x07860), P(0x07864), P(0x07868),
sys/dev/ic/arn9287reg.h
289
P(0x0786c), P(0x07870), P(0x07874), P(0x07878), P(0x0787c),
sys/dev/ic/arn9287reg.h
290
P(0x07880), P(0x07884), P(0x07888), P(0x0788c), P(0x07890),
sys/dev/ic/arn9287reg.h
291
P(0x07894), P(0x07898), P(0x0789c), P(0x078a0), P(0x078a4),
sys/dev/ic/arn9287reg.h
292
P(0x078a8), P(0x078ac), P(0x078b0), P(0x078b4), P(0x078b8)
sys/dev/ic/arn9287reg.h
389
P(0x0a300), P(0x0a304), P(0x0a308), P(0x0a30c), P(0x0a310),
sys/dev/ic/arn9287reg.h
390
P(0x0a314), P(0x0a318), P(0x0a31c), P(0x0a320), P(0x0a324),
sys/dev/ic/arn9287reg.h
391
P(0x0a328), P(0x0a32c), P(0x0a330), P(0x0a334), P(0x0a338),
sys/dev/ic/arn9287reg.h
392
P(0x0a33c), P(0x0a340), P(0x0a344), P(0x0a348), P(0x0a34c),
sys/dev/ic/arn9287reg.h
393
P(0x0a350), P(0x0a354), P(0x0a780), P(0x0a784), P(0x0a788),
sys/dev/ic/arn9287reg.h
394
P(0x0a78c), P(0x0a790), P(0x0a794), P(0x0a798), P(0x0a79c),
sys/dev/ic/arn9287reg.h
395
P(0x0a7a0), P(0x0a7a4), P(0x0a7a8), P(0x0a7ac), P(0x0a7b0),
sys/dev/ic/arn9287reg.h
396
P(0x0a7b4), P(0x0a7b8), P(0x0a7bc), P(0x0a7c0), P(0x0a7c4),
sys/dev/ic/arn9287reg.h
397
P(0x0a7c8), P(0x0a7cc), P(0x0a7d0), P(0x0a7d4), P(0x0a274)
sys/dev/ic/arn9287reg.h
423
P(0x09a00), P(0x09a04), P(0x09a08), P(0x09a0c), P(0x09a10),
sys/dev/ic/arn9287reg.h
424
P(0x09a14), P(0x09a18), P(0x09a1c), P(0x09a20), P(0x09a24),
sys/dev/ic/arn9287reg.h
425
P(0x09a28), P(0x09a2c), P(0x09a30), P(0x09a34), P(0x09a38),
sys/dev/ic/arn9287reg.h
426
P(0x09a3c), P(0x09a40), P(0x09a44), P(0x09a48), P(0x09a4c),
sys/dev/ic/arn9287reg.h
427
P(0x09a50), P(0x09a54), P(0x09a58), P(0x09a5c), P(0x09a60),
sys/dev/ic/arn9287reg.h
428
P(0x09a64), P(0x09a68), P(0x09a6c), P(0x09a70), P(0x09a74),
sys/dev/ic/arn9287reg.h
429
P(0x09a78), P(0x09a7c), P(0x09a80), P(0x09a84), P(0x09a88),
sys/dev/ic/arn9287reg.h
430
P(0x09a8c), P(0x09a90), P(0x09a94), P(0x09a98), P(0x09a9c),
sys/dev/ic/arn9287reg.h
431
P(0x09aa0), P(0x09aa4), P(0x09aa8), P(0x09aac), P(0x09ab0),
sys/dev/ic/arn9287reg.h
432
P(0x09ab4), P(0x09ab8), P(0x09abc), P(0x09ac0), P(0x09ac4),
sys/dev/ic/arn9287reg.h
433
P(0x09ac8), P(0x09acc), P(0x09ad0), P(0x09ad4), P(0x09ad8),
sys/dev/ic/arn9287reg.h
434
P(0x09adc), P(0x09ae0), P(0x09ae4), P(0x09ae8), P(0x09aec),
sys/dev/ic/arn9287reg.h
435
P(0x09af0), P(0x09af4), P(0x09af8), P(0x09afc), P(0x09b00),
sys/dev/ic/arn9287reg.h
436
P(0x09b04), P(0x09b08), P(0x09b0c), P(0x09b10), P(0x09b14),
sys/dev/ic/arn9287reg.h
437
P(0x09b18), P(0x09b1c), P(0x09b20), P(0x09b24), P(0x09b28),
sys/dev/ic/arn9287reg.h
438
P(0x09b2c), P(0x09b30), P(0x09b34), P(0x09b38), P(0x09b3c),
sys/dev/ic/arn9287reg.h
439
P(0x09b40), P(0x09b44), P(0x09b48), P(0x09b4c), P(0x09b50),
sys/dev/ic/arn9287reg.h
440
P(0x09b54), P(0x09b58), P(0x09b5c), P(0x09b60), P(0x09b64),
sys/dev/ic/arn9287reg.h
441
P(0x09b68), P(0x09b6c), P(0x09b70), P(0x09b74), P(0x09b78),
sys/dev/ic/arn9287reg.h
442
P(0x09b7c), P(0x09b80), P(0x09b84), P(0x09b88), P(0x09b8c),
sys/dev/ic/arn9287reg.h
443
P(0x09b90), P(0x09b94), P(0x09b98), P(0x09b9c), P(0x09ba0),
sys/dev/ic/arn9287reg.h
444
P(0x09ba4), P(0x09ba8), P(0x09bac), P(0x09bb0), P(0x09bb4),
sys/dev/ic/arn9287reg.h
445
P(0x09bb8), P(0x09bbc), P(0x09bc0), P(0x09bc4), P(0x09bc8),
sys/dev/ic/arn9287reg.h
446
P(0x09bcc), P(0x09bd0), P(0x09bd4), P(0x09bd8), P(0x09bdc),
sys/dev/ic/arn9287reg.h
447
P(0x09be0), P(0x09be4), P(0x09be8), P(0x09bec), P(0x09bf0),
sys/dev/ic/arn9287reg.h
448
P(0x09bf4), P(0x09bf8), P(0x09bfc), P(0x0aa00), P(0x0aa04),
sys/dev/ic/arn9287reg.h
449
P(0x0aa08), P(0x0aa0c), P(0x0aa10), P(0x0aa14), P(0x0aa18),
sys/dev/ic/arn9287reg.h
450
P(0x0aa1c), P(0x0aa20), P(0x0aa24), P(0x0aa28), P(0x0aa2c),
sys/dev/ic/arn9287reg.h
451
P(0x0aa30), P(0x0aa34), P(0x0aa38), P(0x0aa3c), P(0x0aa40),
sys/dev/ic/arn9287reg.h
452
P(0x0aa44), P(0x0aa48), P(0x0aa4c), P(0x0aa50), P(0x0aa54),
sys/dev/ic/arn9287reg.h
453
P(0x0aa58), P(0x0aa5c), P(0x0aa60), P(0x0aa64), P(0x0aa68),
sys/dev/ic/arn9287reg.h
454
P(0x0aa6c), P(0x0aa70), P(0x0aa74), P(0x0aa78), P(0x0aa7c),
sys/dev/ic/arn9287reg.h
455
P(0x0aa80), P(0x0aa84), P(0x0aa88), P(0x0aa8c), P(0x0aa90),
sys/dev/ic/arn9287reg.h
456
P(0x0aa94), P(0x0aa98), P(0x0aa9c), P(0x0aaa0), P(0x0aaa4),
sys/dev/ic/arn9287reg.h
457
P(0x0aaa8), P(0x0aaac), P(0x0aab0), P(0x0aab4), P(0x0aab8),
sys/dev/ic/arn9287reg.h
458
P(0x0aabc), P(0x0aac0), P(0x0aac4), P(0x0aac8), P(0x0aacc),
sys/dev/ic/arn9287reg.h
459
P(0x0aad0), P(0x0aad4), P(0x0aad8), P(0x0aadc), P(0x0aae0),
sys/dev/ic/arn9287reg.h
460
P(0x0aae4), P(0x0aae8), P(0x0aaec), P(0x0aaf0), P(0x0aaf4),
sys/dev/ic/arn9287reg.h
461
P(0x0aaf8), P(0x0aafc), P(0x0ab00), P(0x0ab04), P(0x0ab08),
sys/dev/ic/arn9287reg.h
462
P(0x0ab0c), P(0x0ab10), P(0x0ab14), P(0x0ab18), P(0x0ab1c),
sys/dev/ic/arn9287reg.h
463
P(0x0ab20), P(0x0ab24), P(0x0ab28), P(0x0ab2c), P(0x0ab30),
sys/dev/ic/arn9287reg.h
464
P(0x0ab34), P(0x0ab38), P(0x0ab3c), P(0x0ab40), P(0x0ab44),
sys/dev/ic/arn9287reg.h
465
P(0x0ab48), P(0x0ab4c), P(0x0ab50), P(0x0ab54), P(0x0ab58),
sys/dev/ic/arn9287reg.h
466
P(0x0ab5c), P(0x0ab60), P(0x0ab64), P(0x0ab68), P(0x0ab6c),
sys/dev/ic/arn9287reg.h
467
P(0x0ab70), P(0x0ab74), P(0x0ab78), P(0x0ab7c), P(0x0ab80),
sys/dev/ic/arn9287reg.h
468
P(0x0ab84), P(0x0ab88), P(0x0ab8c), P(0x0ab90), P(0x0ab94),
sys/dev/ic/arn9287reg.h
469
P(0x0ab98), P(0x0ab9c), P(0x0aba0), P(0x0aba4), P(0x0aba8),
sys/dev/ic/arn9287reg.h
470
P(0x0abac), P(0x0abb0), P(0x0abb4), P(0x0abb8), P(0x0abbc),
sys/dev/ic/arn9287reg.h
471
P(0x0abc0), P(0x0abc4), P(0x0abc8), P(0x0abcc), P(0x0abd0),
sys/dev/ic/arn9287reg.h
472
P(0x0abd4), P(0x0abd8), P(0x0abdc), P(0x0abe0), P(0x0abe4),
sys/dev/ic/arn9287reg.h
473
P(0x0abe8), P(0x0abec), P(0x0abf0), P(0x0abf4), P(0x0abf8),
sys/dev/ic/arn9287reg.h
474
P(0x0abfc), P(0x09848), P(0x0a848)
sys/dev/ic/arn9380reg.h
1079
P(0x01030), P(0x01070), P(0x010b0), P(0x08014), P(0x0801c),
sys/dev/ic/arn9380reg.h
1080
P(0x08318), P(0x09e00), P(0x0a230), P(0x0a254)
sys/dev/ic/arn9380reg.h
1120
P(0x01030), P(0x01070), P(0x010b0), P(0x08014), P(0x0801c),
sys/dev/ic/arn9380reg.h
1121
P(0x08120), P(0x081d0), P(0x08318), P(0x09810), P(0x09820),
sys/dev/ic/arn9380reg.h
1122
P(0x09824), P(0x09828), P(0x0982c), P(0x09830), P(0x09c00),
sys/dev/ic/arn9380reg.h
1123
P(0x09e00), P(0x09e04), P(0x09e0c), P(0x09e10), P(0x09e14),
sys/dev/ic/arn9380reg.h
1124
P(0x09e18), P(0x09e1c), P(0x09e20), P(0x09e2c), P(0x09e3c),
sys/dev/ic/arn9380reg.h
1125
P(0x09e44), P(0x09e48), P(0x09fc8), P(0x0a204), P(0x0a208),
sys/dev/ic/arn9380reg.h
1126
P(0x0a230), P(0x0a234), P(0x0a238), P(0x0a250), P(0x0a254),
sys/dev/ic/arn9380reg.h
1127
P(0x0a258), P(0x0a25c), P(0x0a260), P(0x0a264), P(0x0a280),
sys/dev/ic/arn9380reg.h
1128
P(0x0a284), P(0x0a288), P(0x0a28c), P(0x0a2c4), P(0x0a2d0),
sys/dev/ic/arn9380reg.h
1129
P(0x0a2d8), P(0x0a358), P(0x0be04), P(0x0be18), P(0x1609c),
sys/dev/ic/arn9380reg.h
1130
P(0x160ac), P(0x160b0), P(0x1610c), P(0x16140)
sys/dev/ic/arn9380reg.h
1162
P(0x00008), P(0x00030), P(0x00034), P(0x00040), P(0x00044),
sys/dev/ic/arn9380reg.h
1163
P(0x00048), P(0x0004c), P(0x00050), P(0x01040), P(0x01044),
sys/dev/ic/arn9380reg.h
1164
P(0x01048), P(0x0104c), P(0x01050), P(0x01054), P(0x01058),
sys/dev/ic/arn9380reg.h
1165
P(0x0105c), P(0x01060), P(0x01064), P(0x010f0), P(0x01270),
sys/dev/ic/arn9380reg.h
1166
P(0x012b0), P(0x012f0), P(0x0143c), P(0x0147c), P(0x08000),
sys/dev/ic/arn9380reg.h
1167
P(0x08004), P(0x08008), P(0x0800c), P(0x08018), P(0x08020),
sys/dev/ic/arn9380reg.h
1168
P(0x08038), P(0x0803c), P(0x08040), P(0x08044), P(0x08048),
sys/dev/ic/arn9380reg.h
1169
P(0x0804c), P(0x08054), P(0x08058), P(0x0805c), P(0x08060),
sys/dev/ic/arn9380reg.h
1170
P(0x08064), P(0x08070), P(0x08074), P(0x08078), P(0x0809c),
sys/dev/ic/arn9380reg.h
1171
P(0x080a0), P(0x080a4), P(0x080a8), P(0x080ac), P(0x080b0),
sys/dev/ic/arn9380reg.h
1172
P(0x080b4), P(0x080b8), P(0x080bc), P(0x080c0), P(0x080c4),
sys/dev/ic/arn9380reg.h
1173
P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4), P(0x080d8),
sys/dev/ic/arn9380reg.h
1174
P(0x080dc), P(0x080e0), P(0x080e4), P(0x080e8), P(0x080ec),
sys/dev/ic/arn9380reg.h
1175
P(0x080f0), P(0x080f4), P(0x080fc), P(0x08100), P(0x08108),
sys/dev/ic/arn9380reg.h
1176
P(0x0810c), P(0x08110), P(0x08114), P(0x08118), P(0x0811c),
sys/dev/ic/arn9380reg.h
1177
P(0x08124), P(0x08128), P(0x0812c), P(0x08130), P(0x08134),
sys/dev/ic/arn9380reg.h
1178
P(0x08138), P(0x0813c), P(0x08144), P(0x08168), P(0x0816c),
sys/dev/ic/arn9380reg.h
1179
P(0x08170), P(0x08174), P(0x08178), P(0x0817c), P(0x081c0),
sys/dev/ic/arn9380reg.h
1180
P(0x081c4), P(0x081d4), P(0x081ec), P(0x081f0), P(0x081f4),
sys/dev/ic/arn9380reg.h
1181
P(0x081f8), P(0x081fc), P(0x08240), P(0x08244), P(0x08248),
sys/dev/ic/arn9380reg.h
1182
P(0x0824c), P(0x08250), P(0x08254), P(0x08258), P(0x0825c),
sys/dev/ic/arn9380reg.h
1183
P(0x08260), P(0x08264), P(0x08268), P(0x0826c), P(0x08270),
sys/dev/ic/arn9380reg.h
1184
P(0x08274), P(0x08278), P(0x0827c), P(0x08284), P(0x08288),
sys/dev/ic/arn9380reg.h
1185
P(0x0828c), P(0x08294), P(0x08298), P(0x0829c), P(0x08300),
sys/dev/ic/arn9380reg.h
1186
P(0x08314), P(0x0831c), P(0x08328), P(0x0832c), P(0x08330),
sys/dev/ic/arn9380reg.h
1187
P(0x08334), P(0x08338), P(0x0833c), P(0x08340), P(0x08344),
sys/dev/ic/arn9380reg.h
1188
P(0x08348), P(0x0835c), P(0x08360), P(0x08364), P(0x08368),
sys/dev/ic/arn9380reg.h
1189
P(0x08370), P(0x08374), P(0x08378), P(0x0837c), P(0x08380),
sys/dev/ic/arn9380reg.h
1190
P(0x08384), P(0x08390), P(0x08394), P(0x08398), P(0x0839c),
sys/dev/ic/arn9380reg.h
1191
P(0x083a0), P(0x083a4), P(0x083a8), P(0x083ac), P(0x083b0),
sys/dev/ic/arn9380reg.h
1192
P(0x083b4), P(0x083b8), P(0x083bc), P(0x083c0), P(0x083c4),
sys/dev/ic/arn9380reg.h
1193
P(0x083c8), P(0x083cc), P(0x083d0), P(0x0a580), P(0x0a584),
sys/dev/ic/arn9380reg.h
1194
P(0x0a588), P(0x0a58c), P(0x0a590), P(0x0a594), P(0x0a598),
sys/dev/ic/arn9380reg.h
1195
P(0x0a59c), P(0x0a5a0), P(0x0a5a4), P(0x0a5a8), P(0x0a5ac),
sys/dev/ic/arn9380reg.h
1196
P(0x0a5b0), P(0x0a5b4), P(0x0a5b8), P(0x0a5bc), P(0x09800),
sys/dev/ic/arn9380reg.h
1197
P(0x09804), P(0x09808), P(0x0980c), P(0x09814), P(0x09818),
sys/dev/ic/arn9380reg.h
1198
P(0x0981c), P(0x09834), P(0x09838), P(0x0983c), P(0x09880),
sys/dev/ic/arn9380reg.h
1199
P(0x09884), P(0x098a4), P(0x098b0), P(0x098d0), P(0x098d4),
sys/dev/ic/arn9380reg.h
1200
P(0x098dc), P(0x098f0), P(0x098f4), P(0x09c04), P(0x09c08),
sys/dev/ic/arn9380reg.h
1201
P(0x09c0c), P(0x09c10), P(0x09c14), P(0x09c18), P(0x09c1c),
sys/dev/ic/arn9380reg.h
1202
P(0x09d00), P(0x09d04), P(0x09d08), P(0x09d0c), P(0x09d10),
sys/dev/ic/arn9380reg.h
1203
P(0x09d14), P(0x09d18), P(0x09d1c), P(0x09e08), P(0x09e24),
sys/dev/ic/arn9380reg.h
1204
P(0x09e28), P(0x09e30), P(0x09e34), P(0x09e38), P(0x09e40),
sys/dev/ic/arn9380reg.h
1205
P(0x09e4c), P(0x09e50), P(0x09fc0), P(0x09fc4), P(0x09fcc),
sys/dev/ic/arn9380reg.h
1206
P(0x0a20c), P(0x0a210), P(0x0a220), P(0x0a224), P(0x0a228),
sys/dev/ic/arn9380reg.h
1207
P(0x0a23c), P(0x0a244), P(0x0a2a0), P(0x0a2c0), P(0x0a2c8),
sys/dev/ic/arn9380reg.h
1208
P(0x0a2cc), P(0x0a2d4), P(0x0a2dc), P(0x0a2e0), P(0x0a2e4),
sys/dev/ic/arn9380reg.h
1209
P(0x0a2e8), P(0x0a2ec), P(0x0a2f0), P(0x0a2f4), P(0x0a2f8),
sys/dev/ic/arn9380reg.h
1210
P(0x0a344), P(0x0a34c), P(0x0a350), P(0x0a364), P(0x0a370),
sys/dev/ic/arn9380reg.h
1211
P(0x0a390), P(0x0a394), P(0x0a398), P(0x0a39c), P(0x0a3a0),
sys/dev/ic/arn9380reg.h
1212
P(0x0a3a4), P(0x0a3a8), P(0x0a3ac), P(0x0a3c0), P(0x0a3c4),
sys/dev/ic/arn9380reg.h
1213
P(0x0a3c8), P(0x0a3cc), P(0x0a3d0), P(0x0a3d4), P(0x0a3d8),
sys/dev/ic/arn9380reg.h
1214
P(0x0a3dc), P(0x0a3e0), P(0x0a3e4), P(0x0a3e8), P(0x0a3ec),
sys/dev/ic/arn9380reg.h
1215
P(0x0a3f0), P(0x0a3f4), P(0x0a3f8), P(0x0a3fc), P(0x0a400),
sys/dev/ic/arn9380reg.h
1216
P(0x0a404), P(0x0a408), P(0x0a40c), P(0x0a414), P(0x0a418),
sys/dev/ic/arn9380reg.h
1217
P(0x0a41c), P(0x0a420), P(0x0a424), P(0x0a428), P(0x0a42c),
sys/dev/ic/arn9380reg.h
1218
P(0x0a430), P(0x0a434), P(0x0a438), P(0x0a43c), P(0x0a440),
sys/dev/ic/arn9380reg.h
1219
P(0x0a444), P(0x0a448), P(0x0a44c), P(0x0a450), P(0x0a5c4),
sys/dev/ic/arn9380reg.h
1220
P(0x0a5c8), P(0x0a5cc), P(0x0a760), P(0x0a764), P(0x0a768),
sys/dev/ic/arn9380reg.h
1221
P(0x0a76c), P(0x0a770), P(0x0a774), P(0x0a778), P(0x0a780),
sys/dev/ic/arn9380reg.h
1222
P(0x0a7c0), P(0x0a7c4), P(0x0a7c8), P(0x0a7cc), P(0x0a7d0),
sys/dev/ic/arn9380reg.h
1223
P(0x0a7d4), P(0x0a7dc), P(0x16000), P(0x16004), P(0x16008),
sys/dev/ic/arn9380reg.h
1224
P(0x1600c), P(0x16040), P(0x1604c), P(0x16050), P(0x16054),
sys/dev/ic/arn9380reg.h
1225
P(0x16080), P(0x16084), P(0x16088), P(0x1608c), P(0x16090),
sys/dev/ic/arn9380reg.h
1226
P(0x16098), P(0x160a0), P(0x160a4), P(0x160a8), P(0x160b4),
sys/dev/ic/arn9380reg.h
1227
P(0x160c0), P(0x160c4), P(0x160c8), P(0x160cc), P(0x160d0),
sys/dev/ic/arn9380reg.h
1228
P(0x16100), P(0x16104), P(0x16108), P(0x16144), P(0x16148),
sys/dev/ic/arn9380reg.h
1229
P(0x16240), P(0x16244), P(0x16248), P(0x1624c), P(0x16280),
sys/dev/ic/arn9380reg.h
1230
P(0x16284), P(0x16288), P(0x1628c), P(0x16290), P(0x16380),
sys/dev/ic/arn9380reg.h
1231
P(0x16384), P(0x16388), P(0x1638c), P(0x16390), P(0x16394),
sys/dev/ic/arn9380reg.h
1232
P(0x16398), P(0x1639c), P(0x163a0), P(0x163a4), P(0x163a8),
sys/dev/ic/arn9380reg.h
1233
P(0x163ac), P(0x163b0), P(0x163b4), P(0x163b8), P(0x163bc),
sys/dev/ic/arn9380reg.h
1234
P(0x163c0), P(0x163c4), P(0x163c8), P(0x163cc), P(0x163d0),
sys/dev/ic/arn9380reg.h
1235
P(0x163d4), P(0x16c40), P(0x16c44), P(0x04014), P(0x04090),
sys/dev/ic/arn9380reg.h
1236
P(0x040a4), P(0x07010), P(0x07020), P(0x07034), P(0x07038),
sys/dev/ic/arn9380reg.h
1237
P(0x07048)
sys/dev/ic/arn9380reg.h
1337
P(0x0a2dc), P(0x0a2e0), P(0x0a2e4), P(0x0a2e8), P(0x0a410),
sys/dev/ic/arn9380reg.h
1338
P(0x0a500), P(0x0a504), P(0x0a508), P(0x0a50c), P(0x0a510),
sys/dev/ic/arn9380reg.h
1339
P(0x0a514), P(0x0a518), P(0x0a51c), P(0x0a520), P(0x0a524),
sys/dev/ic/arn9380reg.h
1340
P(0x0a528), P(0x0a52c), P(0x0a530), P(0x0a534), P(0x0a538),
sys/dev/ic/arn9380reg.h
1341
P(0x0a53c), P(0x0a540), P(0x0a544), P(0x0a548), P(0x0a54c),
sys/dev/ic/arn9380reg.h
1342
P(0x0a550), P(0x0a554), P(0x0a558), P(0x0a55c), P(0x0a560),
sys/dev/ic/arn9380reg.h
1343
P(0x0a564), P(0x0a568), P(0x0a56c), P(0x0a570), P(0x0a574),
sys/dev/ic/arn9380reg.h
1344
P(0x0a578), P(0x0a57c), P(0x0a580), P(0x0a584), P(0x0a588),
sys/dev/ic/arn9380reg.h
1345
P(0x0a58c), P(0x0a590), P(0x0a594), P(0x0a598), P(0x0a59c),
sys/dev/ic/arn9380reg.h
1346
P(0x0a5a0), P(0x0a5a4), P(0x0a5a8), P(0x0a5ac), P(0x0a5b0),
sys/dev/ic/arn9380reg.h
1347
P(0x0a5b4), P(0x0a5b8), P(0x0a5bc), P(0x0a5c0), P(0x0a5c4),
sys/dev/ic/arn9380reg.h
1348
P(0x0a5c8), P(0x0a5cc), P(0x0a5d0), P(0x0a5d4), P(0x0a5d8),
sys/dev/ic/arn9380reg.h
1349
P(0x0a5dc), P(0x0a5e0), P(0x0a5e4), P(0x0a5e8), P(0x0a5ec),
sys/dev/ic/arn9380reg.h
1350
P(0x0a5f0), P(0x0a5f4), P(0x0a5f8), P(0x0a5fc), P(0x0a600),
sys/dev/ic/arn9380reg.h
1351
P(0x0a604), P(0x0a608), P(0x0a60c), P(0x0a610), P(0x0a614),
sys/dev/ic/arn9380reg.h
1352
P(0x0a618), P(0x0a61c), P(0x0a620), P(0x0a624), P(0x0a628),
sys/dev/ic/arn9380reg.h
1353
P(0x0a62c), P(0x0a630), P(0x0a634), P(0x0a638), P(0x0a63c),
sys/dev/ic/arn9380reg.h
1354
P(0x0b2dc), P(0x0b2e0), P(0x0b2e4), P(0x0b2e8), P(0x0c2dc),
sys/dev/ic/arn9380reg.h
1355
P(0x0c2e0), P(0x0c2e4), P(0x0c2e8), P(0x16044), P(0x16048),
sys/dev/ic/arn9380reg.h
1356
P(0x16068), P(0x16444), P(0x16448), P(0x16468), P(0x16844),
sys/dev/ic/arn9380reg.h
1357
P(0x16848), P(0x16868)
sys/dev/ic/arn9380reg.h
1593
P(0x098bc), P(0x0a410), P(0x0a458), P(0x0a500), P(0x0a504),
sys/dev/ic/arn9380reg.h
1594
P(0x0a508), P(0x0a50c), P(0x0a510), P(0x0a514), P(0x0a518),
sys/dev/ic/arn9380reg.h
1595
P(0x0a51c), P(0x0a520), P(0x0a524), P(0x0a528), P(0x0a52c),
sys/dev/ic/arn9380reg.h
1596
P(0x0a530), P(0x0a534), P(0x0a538), P(0x0a53c), P(0x0a540),
sys/dev/ic/arn9380reg.h
1597
P(0x0a544), P(0x0a548), P(0x0a54c), P(0x0a550), P(0x0a554),
sys/dev/ic/arn9380reg.h
1598
P(0x0a558), P(0x0a55c), P(0x0a560), P(0x0a564), P(0x0a568),
sys/dev/ic/arn9380reg.h
1599
P(0x0a56c), P(0x0a570), P(0x0a574), P(0x0a578), P(0x0a57c),
sys/dev/ic/arn9380reg.h
1600
P(0x0b500), P(0x0b504), P(0x0b508), P(0x0b50c), P(0x0b510),
sys/dev/ic/arn9380reg.h
1601
P(0x0b514), P(0x0b518), P(0x0b51c), P(0x0b520), P(0x0b524),
sys/dev/ic/arn9380reg.h
1602
P(0x0b528), P(0x0b52c), P(0x0b530), P(0x0b534), P(0x0b538),
sys/dev/ic/arn9380reg.h
1603
P(0x0b53c), P(0x0b540), P(0x0b544), P(0x0b548), P(0x0b54c),
sys/dev/ic/arn9380reg.h
1604
P(0x0b550), P(0x0b554), P(0x0b558), P(0x0b55c), P(0x0b560),
sys/dev/ic/arn9380reg.h
1605
P(0x0b564), P(0x0b568), P(0x0b56c), P(0x0b570), P(0x0b574),
sys/dev/ic/arn9380reg.h
1606
P(0x0b578), P(0x0b57c), P(0x16044), P(0x16048),
sys/dev/ic/arn9380reg.h
1637
P(0x0a000), P(0x0a004), P(0x0a008), P(0x0a00c), P(0x0a010),
sys/dev/ic/arn9380reg.h
1638
P(0x0a014), P(0x0a018), P(0x0a01c), P(0x0a020), P(0x0a024),
sys/dev/ic/arn9380reg.h
1639
P(0x0a028), P(0x0a02c), P(0x0a030), P(0x0a034), P(0x0a038),
sys/dev/ic/arn9380reg.h
1640
P(0x0a03c), P(0x0a040), P(0x0a044), P(0x0a048), P(0x0a04c),
sys/dev/ic/arn9380reg.h
1641
P(0x0a050), P(0x0a054), P(0x0a058), P(0x0a05c), P(0x0a060),
sys/dev/ic/arn9380reg.h
1642
P(0x0a064), P(0x0a068), P(0x0a06c), P(0x0a070), P(0x0a074),
sys/dev/ic/arn9380reg.h
1643
P(0x0a078), P(0x0a07c), P(0x0a080), P(0x0a084), P(0x0a088),
sys/dev/ic/arn9380reg.h
1644
P(0x0a08c), P(0x0a090), P(0x0a094), P(0x0a098), P(0x0a09c),
sys/dev/ic/arn9380reg.h
1645
P(0x0a0a0), P(0x0a0a4), P(0x0a0a8), P(0x0a0ac), P(0x0a0b0),
sys/dev/ic/arn9380reg.h
1646
P(0x0a0b4), P(0x0a0b8), P(0x0a0bc), P(0x0a0c0), P(0x0a0c4),
sys/dev/ic/arn9380reg.h
1647
P(0x0a0c8), P(0x0a0cc), P(0x0a0d0), P(0x0a0d4), P(0x0a0d8),
sys/dev/ic/arn9380reg.h
1648
P(0x0a0dc), P(0x0a0e0), P(0x0a0e4), P(0x0a0e8), P(0x0a0ec),
sys/dev/ic/arn9380reg.h
1649
P(0x0a0f0), P(0x0a0f4), P(0x0a0f8), P(0x0a0fc), P(0x0a100),
sys/dev/ic/arn9380reg.h
1650
P(0x0a104), P(0x0a108), P(0x0a10c), P(0x0a110), P(0x0a114),
sys/dev/ic/arn9380reg.h
1651
P(0x0a118), P(0x0a11c), P(0x0a120), P(0x0a124), P(0x0a128),
sys/dev/ic/arn9380reg.h
1652
P(0x0a12c), P(0x0a130), P(0x0a134), P(0x0a138), P(0x0a13c),
sys/dev/ic/arn9380reg.h
1653
P(0x0a140), P(0x0a144), P(0x0a148), P(0x0a14c), P(0x0a150),
sys/dev/ic/arn9380reg.h
1654
P(0x0a154), P(0x0a158), P(0x0a15c), P(0x0a160), P(0x0a164),
sys/dev/ic/arn9380reg.h
1655
P(0x0a168), P(0x0a16c), P(0x0a170), P(0x0a174), P(0x0a178),
sys/dev/ic/arn9380reg.h
1656
P(0x0a17c), P(0x0a180), P(0x0a184), P(0x0a188), P(0x0a18c),
sys/dev/ic/arn9380reg.h
1657
P(0x0a190), P(0x0a194), P(0x0a198), P(0x0a19c), P(0x0a1a0),
sys/dev/ic/arn9380reg.h
1658
P(0x0a1a4), P(0x0a1a8), P(0x0a1ac), P(0x0a1b0), P(0x0a1b4),
sys/dev/ic/arn9380reg.h
1659
P(0x0a1b8), P(0x0a1bc), P(0x0a1c0), P(0x0a1c4), P(0x0a1c8),
sys/dev/ic/arn9380reg.h
1660
P(0x0a1cc), P(0x0a1d0), P(0x0a1d4), P(0x0a1d8), P(0x0a1dc),
sys/dev/ic/arn9380reg.h
1661
P(0x0a1e0), P(0x0a1e4), P(0x0a1e8), P(0x0a1ec), P(0x0a1f0),
sys/dev/ic/arn9380reg.h
1662
P(0x0a1f4), P(0x0a1f8), P(0x0a1fc), P(0x0b000), P(0x0b004),
sys/dev/ic/arn9380reg.h
1663
P(0x0b008), P(0x0b00c), P(0x0b010), P(0x0b014), P(0x0b018),
sys/dev/ic/arn9380reg.h
1664
P(0x0b01c), P(0x0b020), P(0x0b024), P(0x0b028), P(0x0b02c),
sys/dev/ic/arn9380reg.h
1665
P(0x0b030), P(0x0b034), P(0x0b038), P(0x0b03c), P(0x0b040),
sys/dev/ic/arn9380reg.h
1666
P(0x0b044), P(0x0b048), P(0x0b04c), P(0x0b050), P(0x0b054),
sys/dev/ic/arn9380reg.h
1667
P(0x0b058), P(0x0b05c), P(0x0b060), P(0x0b064), P(0x0b068),
sys/dev/ic/arn9380reg.h
1668
P(0x0b06c), P(0x0b070), P(0x0b074), P(0x0b078), P(0x0b07c),
sys/dev/ic/arn9380reg.h
1669
P(0x0b080), P(0x0b084), P(0x0b088), P(0x0b08c), P(0x0b090),
sys/dev/ic/arn9380reg.h
1670
P(0x0b094), P(0x0b098), P(0x0b09c), P(0x0b0a0), P(0x0b0a4),
sys/dev/ic/arn9380reg.h
1671
P(0x0b0a8), P(0x0b0ac), P(0x0b0b0), P(0x0b0b4), P(0x0b0b8),
sys/dev/ic/arn9380reg.h
1672
P(0x0b0bc), P(0x0b0c0), P(0x0b0c4), P(0x0b0c8), P(0x0b0cc),
sys/dev/ic/arn9380reg.h
1673
P(0x0b0d0), P(0x0b0d4), P(0x0b0d8), P(0x0b0dc), P(0x0b0e0),
sys/dev/ic/arn9380reg.h
1674
P(0x0b0e4), P(0x0b0e8), P(0x0b0ec), P(0x0b0f0), P(0x0b0f4),
sys/dev/ic/arn9380reg.h
1675
P(0x0b0f8), P(0x0b0fc), P(0x0b100), P(0x0b104), P(0x0b108),
sys/dev/ic/arn9380reg.h
1676
P(0x0b10c), P(0x0b110), P(0x0b114), P(0x0b118), P(0x0b11c),
sys/dev/ic/arn9380reg.h
1677
P(0x0b120), P(0x0b124), P(0x0b128), P(0x0b12c), P(0x0b130),
sys/dev/ic/arn9380reg.h
1678
P(0x0b134), P(0x0b138), P(0x0b13c), P(0x0b140), P(0x0b144),
sys/dev/ic/arn9380reg.h
1679
P(0x0b148), P(0x0b14c), P(0x0b150), P(0x0b154), P(0x0b158),
sys/dev/ic/arn9380reg.h
1680
P(0x0b15c), P(0x0b160), P(0x0b164), P(0x0b168), P(0x0b16c),
sys/dev/ic/arn9380reg.h
1681
P(0x0b170), P(0x0b174), P(0x0b178), P(0x0b17c), P(0x0b180),
sys/dev/ic/arn9380reg.h
1682
P(0x0b184), P(0x0b188), P(0x0b18c), P(0x0b190), P(0x0b194),
sys/dev/ic/arn9380reg.h
1683
P(0x0b198), P(0x0b19c), P(0x0b1a0), P(0x0b1a4), P(0x0b1a8),
sys/dev/ic/arn9380reg.h
1684
P(0x0b1ac), P(0x0b1b0), P(0x0b1b4), P(0x0b1b8), P(0x0b1bc),
sys/dev/ic/arn9380reg.h
1685
P(0x0b1c0), P(0x0b1c4), P(0x0b1c8), P(0x0b1cc), P(0x0b1d0),
sys/dev/ic/arn9380reg.h
1686
P(0x0b1d4), P(0x0b1d8), P(0x0b1dc), P(0x0b1e0), P(0x0b1e4),
sys/dev/ic/arn9380reg.h
1687
P(0x0b1e8), P(0x0b1ec), P(0x0b1f0), P(0x0b1f4), P(0x0b1f8),
sys/dev/ic/arn9380reg.h
1688
P(0x0b1fc)
sys/dev/ic/arn9380reg.h
1822
P(0x0a000), P(0x0a004), P(0x0a008), P(0x0a00c), P(0x0a010),
sys/dev/ic/arn9380reg.h
1823
P(0x0a014), P(0x0a018), P(0x0a01c), P(0x0a020), P(0x0a024),
sys/dev/ic/arn9380reg.h
1824
P(0x0a028), P(0x0a02c), P(0x0a030), P(0x0a034), P(0x0a038),
sys/dev/ic/arn9380reg.h
1825
P(0x0a03c), P(0x0a040), P(0x0a044), P(0x0a048), P(0x0a04c),
sys/dev/ic/arn9380reg.h
1826
P(0x0a050), P(0x0a054), P(0x0a058), P(0x0a05c), P(0x0a060),
sys/dev/ic/arn9380reg.h
1827
P(0x0a064), P(0x0a068), P(0x0a06c), P(0x0a070), P(0x0a074),
sys/dev/ic/arn9380reg.h
1828
P(0x0a078), P(0x0a07c), P(0x0a080), P(0x0a084), P(0x0a088),
sys/dev/ic/arn9380reg.h
1829
P(0x0a08c), P(0x0a090), P(0x0a094), P(0x0a098), P(0x0a09c),
sys/dev/ic/arn9380reg.h
1830
P(0x0a0a0), P(0x0a0a4), P(0x0a0a8), P(0x0a0ac), P(0x0a0b0),
sys/dev/ic/arn9380reg.h
1831
P(0x0a0b4), P(0x0a0b8), P(0x0a0bc), P(0x0a0c0), P(0x0a0c4),
sys/dev/ic/arn9380reg.h
1832
P(0x0a0c8), P(0x0a0cc), P(0x0a0d0), P(0x0a0d4), P(0x0a0d8),
sys/dev/ic/arn9380reg.h
1833
P(0x0a0dc), P(0x0a0e0), P(0x0a0e4), P(0x0a0e8), P(0x0a0ec),
sys/dev/ic/arn9380reg.h
1834
P(0x0a0f0), P(0x0a0f4), P(0x0a0f8), P(0x0a0fc), P(0x0a100),
sys/dev/ic/arn9380reg.h
1835
P(0x0a104), P(0x0a108), P(0x0a10c), P(0x0a110), P(0x0a114),
sys/dev/ic/arn9380reg.h
1836
P(0x0a118), P(0x0a11c), P(0x0a120), P(0x0a124), P(0x0a128),
sys/dev/ic/arn9380reg.h
1837
P(0x0a12c), P(0x0a130), P(0x0a134), P(0x0a138), P(0x0a13c),
sys/dev/ic/arn9380reg.h
1838
P(0x0a140), P(0x0a144), P(0x0a148), P(0x0a14c), P(0x0a150),
sys/dev/ic/arn9380reg.h
1839
P(0x0a154), P(0x0a158), P(0x0a15c), P(0x0a160), P(0x0a164),
sys/dev/ic/arn9380reg.h
1840
P(0x0a168), P(0x0a16c), P(0x0a170), P(0x0a174), P(0x0a178),
sys/dev/ic/arn9380reg.h
1841
P(0x0a17c), P(0x0a180), P(0x0a184), P(0x0a188), P(0x0a18c),
sys/dev/ic/arn9380reg.h
1842
P(0x0a190), P(0x0a194), P(0x0a198), P(0x0a19c), P(0x0a1a0),
sys/dev/ic/arn9380reg.h
1843
P(0x0a1a4), P(0x0a1a8), P(0x0a1ac), P(0x0a1b0), P(0x0a1b4),
sys/dev/ic/arn9380reg.h
1844
P(0x0a1b8), P(0x0a1bc), P(0x0a1c0), P(0x0a1c4), P(0x0a1c8),
sys/dev/ic/arn9380reg.h
1845
P(0x0a1cc), P(0x0a1d0), P(0x0a1d4), P(0x0a1d8), P(0x0a1dc),
sys/dev/ic/arn9380reg.h
1846
P(0x0a1e0), P(0x0a1e4), P(0x0a1e8), P(0x0a1ec), P(0x0a1f0),
sys/dev/ic/arn9380reg.h
1847
P(0x0a1f4), P(0x0a1f8), P(0x0a1fc)
sys/dev/ic/arn9380reg.h
802
P(0x07010), P(0x01030), P(0x01070), P(0x010b0), P(0x08014),
sys/dev/ic/arn9380reg.h
803
P(0x0801c), P(0x08120), P(0x081d0), P(0x08318), P(0x1609c),
sys/dev/ic/arn9380reg.h
804
P(0x160ac), P(0x160b0), P(0x1610c), P(0x16140), P(0x1650c),
sys/dev/ic/arn9380reg.h
805
P(0x16540), P(0x1690c), P(0x16940), P(0x09810), P(0x09820),
sys/dev/ic/arn9380reg.h
806
P(0x09824), P(0x09828), P(0x0982c), P(0x09830), P(0x09c00),
sys/dev/ic/arn9380reg.h
807
P(0x09e00), P(0x09e04), P(0x09e0c), P(0x09e10), P(0x09e14),
sys/dev/ic/arn9380reg.h
808
P(0x09e18), P(0x09e1c), P(0x09e20), P(0x09e2c), P(0x09e3c),
sys/dev/ic/arn9380reg.h
809
P(0x09e44), P(0x09e48), P(0x09fc8), P(0x0a204), P(0x0a208),
sys/dev/ic/arn9380reg.h
810
P(0x0a22c), P(0x0a230), P(0x0a234), P(0x0a238), P(0x0a250),
sys/dev/ic/arn9380reg.h
811
P(0x0a254), P(0x0a258), P(0x0a25c), P(0x0a260), P(0x0a264),
sys/dev/ic/arn9380reg.h
812
P(0x0a280), P(0x0a284), P(0x0a288), P(0x0a28c), P(0x0a2c4),
sys/dev/ic/arn9380reg.h
813
P(0x0a2d0), P(0x0a2d8), P(0x0a358), P(0x0a830), P(0x0ae04),
sys/dev/ic/arn9380reg.h
814
P(0x0ae18), P(0x0ae1c), P(0x0ae20), P(0x0b284), P(0x0b830),
sys/dev/ic/arn9380reg.h
815
P(0x0be04), P(0x0be18), P(0x0be1c), P(0x0be20), P(0x0c284)
sys/dev/ic/arn9380reg.h
889
P(0x040a4), P(0x07008), P(0x07020), P(0x07034), P(0x07038),
sys/dev/ic/arn9380reg.h
890
P(0x07048), P(0x00008), P(0x00030), P(0x00034), P(0x00040),
sys/dev/ic/arn9380reg.h
891
P(0x00044), P(0x00048), P(0x0004c), P(0x00050), P(0x01040),
sys/dev/ic/arn9380reg.h
892
P(0x01044), P(0x01048), P(0x0104c), P(0x01050), P(0x01054),
sys/dev/ic/arn9380reg.h
893
P(0x01058), P(0x0105c), P(0x01060), P(0x01064), P(0x010f0),
sys/dev/ic/arn9380reg.h
894
P(0x01270), P(0x012b0), P(0x012f0), P(0x0143c), P(0x0147c),
sys/dev/ic/arn9380reg.h
895
P(0x08000), P(0x08004), P(0x08008), P(0x0800c), P(0x08018),
sys/dev/ic/arn9380reg.h
896
P(0x08020), P(0x08038), P(0x0803c), P(0x08040), P(0x08044),
sys/dev/ic/arn9380reg.h
897
P(0x08048), P(0x0804c), P(0x08054), P(0x08058), P(0x0805c),
sys/dev/ic/arn9380reg.h
898
P(0x08060), P(0x08064), P(0x08070), P(0x08074), P(0x08078),
sys/dev/ic/arn9380reg.h
899
P(0x0809c), P(0x080a0), P(0x080a4), P(0x080a8), P(0x080ac),
sys/dev/ic/arn9380reg.h
900
P(0x080b0), P(0x080b4), P(0x080b8), P(0x080bc), P(0x080c0),
sys/dev/ic/arn9380reg.h
901
P(0x080c4), P(0x080c8), P(0x080cc), P(0x080d0), P(0x080d4),
sys/dev/ic/arn9380reg.h
902
P(0x080d8), P(0x080dc), P(0x080e0), P(0x080e4), P(0x080e8),
sys/dev/ic/arn9380reg.h
903
P(0x080ec), P(0x080f0), P(0x080f4), P(0x080fc), P(0x08100),
sys/dev/ic/arn9380reg.h
904
P(0x08108), P(0x0810c), P(0x08110), P(0x08114), P(0x08118),
sys/dev/ic/arn9380reg.h
905
P(0x0811c), P(0x08124), P(0x08128), P(0x0812c), P(0x08130),
sys/dev/ic/arn9380reg.h
906
P(0x08134), P(0x08138), P(0x0813c), P(0x08144), P(0x08168),
sys/dev/ic/arn9380reg.h
907
P(0x0816c), P(0x081c0), P(0x081c4), P(0x081c8), P(0x081cc),
sys/dev/ic/arn9380reg.h
908
P(0x081ec), P(0x081f0), P(0x081f4), P(0x081f8), P(0x081fc),
sys/dev/ic/arn9380reg.h
909
P(0x08240), P(0x08244), P(0x08248), P(0x0824c), P(0x08250),
sys/dev/ic/arn9380reg.h
910
P(0x08254), P(0x08258), P(0x0825c), P(0x08260), P(0x08264),
sys/dev/ic/arn9380reg.h
911
P(0x08268), P(0x0826c), P(0x08270), P(0x08274), P(0x08278),
sys/dev/ic/arn9380reg.h
912
P(0x0827c), P(0x08284), P(0x08288), P(0x0828c), P(0x08294),
sys/dev/ic/arn9380reg.h
913
P(0x08298), P(0x0829c), P(0x08300), P(0x08314), P(0x0831c),
sys/dev/ic/arn9380reg.h
914
P(0x08328), P(0x0832c), P(0x08330), P(0x08334), P(0x08338),
sys/dev/ic/arn9380reg.h
915
P(0x0833c), P(0x08340), P(0x08344), P(0x08348), P(0x0835c),
sys/dev/ic/arn9380reg.h
916
P(0x08360), P(0x08364), P(0x08368), P(0x08370), P(0x08374),
sys/dev/ic/arn9380reg.h
917
P(0x08378), P(0x0837c), P(0x08380), P(0x08384), P(0x08390),
sys/dev/ic/arn9380reg.h
918
P(0x08394), P(0x08398), P(0x0839c), P(0x083a0), P(0x083a4),
sys/dev/ic/arn9380reg.h
919
P(0x083a8), P(0x083ac), P(0x083b0), P(0x083b4), P(0x083b8),
sys/dev/ic/arn9380reg.h
920
P(0x083bc), P(0x083c0), P(0x083c4), P(0x083c8), P(0x083cc),
sys/dev/ic/arn9380reg.h
921
P(0x083d0), P(0x09800), P(0x09804), P(0x09808), P(0x0980c),
sys/dev/ic/arn9380reg.h
922
P(0x09814), P(0x09818), P(0x0981c), P(0x09834), P(0x09838),
sys/dev/ic/arn9380reg.h
923
P(0x0983c), P(0x09880), P(0x09884), P(0x098a4), P(0x098b0),
sys/dev/ic/arn9380reg.h
924
P(0x098d0), P(0x098d4), P(0x098dc), P(0x098f0), P(0x098f4),
sys/dev/ic/arn9380reg.h
925
P(0x09c04), P(0x09c08), P(0x09c0c), P(0x09c10), P(0x09c14),
sys/dev/ic/arn9380reg.h
926
P(0x09c18), P(0x09c1c), P(0x09d00), P(0x09d04), P(0x09d08),
sys/dev/ic/arn9380reg.h
927
P(0x09d0c), P(0x09d10), P(0x09d14), P(0x09d18), P(0x09e08),
sys/dev/ic/arn9380reg.h
928
P(0x09e24), P(0x09e28), P(0x09e30), P(0x09e34), P(0x09e38),
sys/dev/ic/arn9380reg.h
929
P(0x09e40), P(0x09e4c), P(0x09e50), P(0x09e54), P(0x09fc0),
sys/dev/ic/arn9380reg.h
930
P(0x09fc4), P(0x09fcc), P(0x09fd0), P(0x0a20c), P(0x0a220),
sys/dev/ic/arn9380reg.h
931
P(0x0a224), P(0x0a228), P(0x0a23c), P(0x0a244), P(0x0a2a0),
sys/dev/ic/arn9380reg.h
932
P(0x0a2c0), P(0x0a2c8), P(0x0a2cc), P(0x0a2d4), P(0x0a2ec),
sys/dev/ic/arn9380reg.h
933
P(0x0a2f0), P(0x0a2f4), P(0x0a2f8), P(0x0a344), P(0x0a34c),
sys/dev/ic/arn9380reg.h
934
P(0x0a350), P(0x0a364), P(0x0a370), P(0x0a390), P(0x0a394),
sys/dev/ic/arn9380reg.h
935
P(0x0a398), P(0x0a39c), P(0x0a3a0), P(0x0a3a4), P(0x0a3a8),
sys/dev/ic/arn9380reg.h
936
P(0x0a3ac), P(0x0a3c0), P(0x0a3c4), P(0x0a3c8), P(0x0a3cc),
sys/dev/ic/arn9380reg.h
937
P(0x0a3d0), P(0x0a3d4), P(0x0a3d8), P(0x0a3dc), P(0x0a3e0),
sys/dev/ic/arn9380reg.h
938
P(0x0a3e4), P(0x0a3e8), P(0x0a3ec), P(0x0a3f0), P(0x0a3f4),
sys/dev/ic/arn9380reg.h
939
P(0x0a3f8), P(0x0a3fc), P(0x0a400), P(0x0a404), P(0x0a408),
sys/dev/ic/arn9380reg.h
940
P(0x0a40c), P(0x0a414), P(0x0a418), P(0x0a41c), P(0x0a420),
sys/dev/ic/arn9380reg.h
941
P(0x0a424), P(0x0a428), P(0x0a42c), P(0x0a430), P(0x0a434),
sys/dev/ic/arn9380reg.h
942
P(0x0a438), P(0x0a43c), P(0x0a440), P(0x0a444), P(0x0a448),
sys/dev/ic/arn9380reg.h
943
P(0x0a44c), P(0x0a450), P(0x0a458), P(0x0a640), P(0x0a644),
sys/dev/ic/arn9380reg.h
944
P(0x0a648), P(0x0a64c), P(0x0a670), P(0x0a674), P(0x0a678),
sys/dev/ic/arn9380reg.h
945
P(0x0a67c), P(0x0a680), P(0x0a684), P(0x0a688), P(0x0a690),
sys/dev/ic/arn9380reg.h
946
P(0x0a7c0), P(0x0a7c4), P(0x0a7c8), P(0x0a7cc), P(0x0a7d0),
sys/dev/ic/arn9380reg.h
947
P(0x0a7d4), P(0x0a7dc), P(0x0a8d0), P(0x0a8d4), P(0x0a8dc),
sys/dev/ic/arn9380reg.h
948
P(0x0a8f0), P(0x0a8f4), P(0x0b2d0), P(0x0b2d4), P(0x0b2ec),
sys/dev/ic/arn9380reg.h
949
P(0x0b2f0), P(0x0b2f4), P(0x0b2f8), P(0x0b408), P(0x0b40c),
sys/dev/ic/arn9380reg.h
950
P(0x0b420), P(0x0b8d0), P(0x0b8d4), P(0x0b8dc), P(0x0b8f0),
sys/dev/ic/arn9380reg.h
951
P(0x0b8f4), P(0x0c2d0), P(0x0c2d4), P(0x0c2ec), P(0x0c2f0),
sys/dev/ic/arn9380reg.h
952
P(0x0c2f4), P(0x0c2f8), P(0x0c408), P(0x0c40c), P(0x0c420),
sys/dev/ic/arn9380reg.h
953
P(0x16000), P(0x16004), P(0x16008), P(0x1600c), P(0x16040),
sys/dev/ic/arn9380reg.h
954
P(0x1604c), P(0x16050), P(0x16054), P(0x16058), P(0x1605c),
sys/dev/ic/arn9380reg.h
955
P(0x16060), P(0x16064), P(0x1606c), P(0x16080), P(0x16084),
sys/dev/ic/arn9380reg.h
956
P(0x16088), P(0x1608c), P(0x16090), P(0x16098), P(0x160a0),
sys/dev/ic/arn9380reg.h
957
P(0x160a4), P(0x160a8), P(0x160b4), P(0x160c0), P(0x160c4),
sys/dev/ic/arn9380reg.h
958
P(0x160c8), P(0x160cc), P(0x16100), P(0x16104), P(0x16108),
sys/dev/ic/arn9380reg.h
959
P(0x16144), P(0x16148), P(0x16280), P(0x16284), P(0x16288),
sys/dev/ic/arn9380reg.h
960
P(0x1628c), P(0x16290), P(0x16294), P(0x16380), P(0x16384),
sys/dev/ic/arn9380reg.h
961
P(0x16388), P(0x1638c), P(0x16390), P(0x16394), P(0x16398),
sys/dev/ic/arn9380reg.h
962
P(0x1639c), P(0x163a0), P(0x163a4), P(0x163a8), P(0x163ac),
sys/dev/ic/arn9380reg.h
963
P(0x163b0), P(0x163b4), P(0x163b8), P(0x163bc), P(0x163c0),
sys/dev/ic/arn9380reg.h
964
P(0x163c4), P(0x163c8), P(0x163cc), P(0x163d0), P(0x163d4),
sys/dev/ic/arn9380reg.h
965
P(0x16400), P(0x16404), P(0x16408), P(0x1640c), P(0x16440),
sys/dev/ic/arn9380reg.h
966
P(0x1644c), P(0x16450), P(0x16454), P(0x16458), P(0x1645c),
sys/dev/ic/arn9380reg.h
967
P(0x16460), P(0x16464), P(0x1646c), P(0x16500), P(0x16504),
sys/dev/ic/arn9380reg.h
968
P(0x16508), P(0x16544), P(0x16548), P(0x16780), P(0x16784),
sys/dev/ic/arn9380reg.h
969
P(0x16788), P(0x1678c), P(0x16790), P(0x16794), P(0x16798),
sys/dev/ic/arn9380reg.h
970
P(0x1679c), P(0x167a0), P(0x167a4), P(0x167a8), P(0x167ac),
sys/dev/ic/arn9380reg.h
971
P(0x167b0), P(0x167b4), P(0x167b8), P(0x167bc), P(0x167c0),
sys/dev/ic/arn9380reg.h
972
P(0x167c4), P(0x167c8), P(0x167cc), P(0x167d0), P(0x167d4),
sys/dev/ic/arn9380reg.h
973
P(0x16800), P(0x16804), P(0x16808), P(0x1680c), P(0x16840),
sys/dev/ic/arn9380reg.h
974
P(0x1684c), P(0x16850), P(0x16854), P(0x16858), P(0x1685c),
sys/dev/ic/arn9380reg.h
975
P(0x16860), P(0x16864), P(0x1686c), P(0x16900), P(0x16904),
sys/dev/ic/arn9380reg.h
976
P(0x16908), P(0x16944), P(0x16948), P(0x16b80), P(0x16b84),
sys/dev/ic/arn9380reg.h
977
P(0x16b88), P(0x16b8c), P(0x16b90), P(0x16b94), P(0x16b98),
sys/dev/ic/arn9380reg.h
978
P(0x16b9c), P(0x16ba0), P(0x16ba4), P(0x16ba8), P(0x16bac),
sys/dev/ic/arn9380reg.h
979
P(0x16bb0), P(0x16bb4), P(0x16bb8), P(0x16bbc), P(0x16bc0),
sys/dev/ic/arn9380reg.h
980
P(0x16bc4), P(0x16bc8), P(0x16bcc), P(0x16bd0), P(0x16bd4)
sys/dev/ic/igsfb_subr.c
672
int M, N, P, bestM = 0, bestN = 0;
sys/dev/ic/igsfb_subr.c
679
for (P = 0; P <= maxP; P++)
sys/dev/ic/igsfb_subr.c
681
f_vco = target * IGS_SCALE(P);
sys/dev/ic/igsfb_subr.c
690
M = ((target * (N + 1) * IGS_SCALE(P) + (IGS_CLOCK_REF/2)) +
sys/dev/ic/igsfb_subr.c
694
f_out = IGS_CLOCK(M,N,P);
sys/dev/ic/igsfb_subr.c
708
*Pp = P;
sys/dev/pci/ixgbe/ixgbe_type.h
2949
#define IXGBE_PVFCTRL(P) (0x00300 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2950
#define IXGBE_PVFSTATUS(P) (0x00008 + (0 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2951
#define IXGBE_PVFLINKS(P) (0x042A4 + (0 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2952
#define IXGBE_PVFRTIMER(P) (0x00048 + (0 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2953
#define IXGBE_PVFMAILBOX(P) (0x04C00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2954
#define IXGBE_PVFRXMEMWRAP(P) (0x03190 + (0 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2955
#define IXGBE_PVTEICR(P) (0x00B00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2956
#define IXGBE_PVTEICS(P) (0x00C00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2957
#define IXGBE_PVTEIMS(P) (0x00D00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2958
#define IXGBE_PVTEIMC(P) (0x00E00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2959
#define IXGBE_PVTEIAC(P) (0x00F00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2960
#define IXGBE_PVTEIAM(P) (0x04D00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2961
#define IXGBE_PVTEITR(P) (((P) < 24) ? (0x00820 + ((P) * 4)) : \
sys/dev/pci/ixgbe/ixgbe_type.h
2962
(0x012300 + (((P) - 24) * 4)))
sys/dev/pci/ixgbe/ixgbe_type.h
2963
#define IXGBE_PVTIVAR(P) (0x12500 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2964
#define IXGBE_PVTIVAR_MISC(P) (0x04E00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2965
#define IXGBE_PVTRSCINT(P) (0x12000 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2966
#define IXGBE_VFPBACL(P) (0x110C8 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2967
#define IXGBE_PVFRDBAL(P) ((P < 64) ? (0x01000 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2968
: (0x0D000 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2969
#define IXGBE_PVFRDBAH(P) ((P < 64) ? (0x01004 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2970
: (0x0D004 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2971
#define IXGBE_PVFRDLEN(P) ((P < 64) ? (0x01008 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2972
: (0x0D008 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2973
#define IXGBE_PVFRDH(P) ((P < 64) ? (0x01010 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2974
: (0x0D010 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2975
#define IXGBE_PVFRDT(P) ((P < 64) ? (0x01018 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2976
: (0x0D018 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2977
#define IXGBE_PVFRXDCTL(P) ((P < 64) ? (0x01028 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2978
: (0x0D028 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2979
#define IXGBE_PVFSRRCTL(P) ((P < 64) ? (0x01014 + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2980
: (0x0D014 + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2981
#define IXGBE_PVFPSRTYPE(P) (0x0EA00 + (4 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2982
#define IXGBE_PVFTDBAL(P) (0x06000 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2983
#define IXGBE_PVFTDBAH(P) (0x06004 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2984
#define IXGBE_PVFTDLEN(P) (0x06008 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2985
#define IXGBE_PVFTDH(P) (0x06010 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2986
#define IXGBE_PVFTDT(P) (0x06018 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2987
#define IXGBE_PVFTXDCTL(P) (0x06028 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2988
#define IXGBE_PVFTDWBAL(P) (0x06038 + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2989
#define IXGBE_PVFTDWBAH(P) (0x0603C + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
2990
#define IXGBE_PVFDCA_RXCTRL(P) (((P) < 64) ? (0x0100C + (0x40 * (P))) \
sys/dev/pci/ixgbe/ixgbe_type.h
2991
: (0x0D00C + (0x40 * ((P) - 64))))
sys/dev/pci/ixgbe/ixgbe_type.h
2992
#define IXGBE_PVFDCA_TXCTRL(P) (0x0600C + (0x40 * (P)))
sys/dev/pci/ixgbe/ixgbe_type.h
4420
#define IXGBE_KRM_PORT_CAR_GEN_CTRL(P) ((P) ? 0x8010 : 0x4010)
sys/dev/pci/ixgbe/ixgbe_type.h
4421
#define IXGBE_KRM_LINK_S1(P) ((P) ? 0x8200 : 0x4200)
sys/dev/pci/ixgbe/ixgbe_type.h
4422
#define IXGBE_KRM_LINK_CTRL_1(P) ((P) ? 0x820C : 0x420C)
sys/dev/pci/ixgbe/ixgbe_type.h
4423
#define IXGBE_KRM_AN_CNTL_1(P) ((P) ? 0x822C : 0x422C)
sys/dev/pci/ixgbe/ixgbe_type.h
4424
#define IXGBE_KRM_AN_CNTL_4(P) ((P) ? 0x8238 : 0x4238)
sys/dev/pci/ixgbe/ixgbe_type.h
4425
#define IXGBE_KRM_AN_CNTL_8(P) ((P) ? 0x8248 : 0x4248)
sys/dev/pci/ixgbe/ixgbe_type.h
4426
#define IXGBE_KRM_PCS_KX_AN(P) ((P) ? 0x9918 : 0x5918)
sys/dev/pci/ixgbe/ixgbe_type.h
4427
#define IXGBE_KRM_PCS_KX_AN_LP(P) ((P) ? 0x991C : 0x591C)
sys/dev/pci/ixgbe/ixgbe_type.h
4428
#define IXGBE_KRM_SGMII_CTRL(P) ((P) ? 0x82A0 : 0x42A0)
sys/dev/pci/ixgbe/ixgbe_type.h
4429
#define IXGBE_KRM_LP_BASE_PAGE_HIGH(P) ((P) ? 0x836C : 0x436C)
sys/dev/pci/ixgbe/ixgbe_type.h
4430
#define IXGBE_KRM_DSP_TXFFE_STATE_4(P) ((P) ? 0x8634 : 0x4634)
sys/dev/pci/ixgbe/ixgbe_type.h
4431
#define IXGBE_KRM_DSP_TXFFE_STATE_5(P) ((P) ? 0x8638 : 0x4638)
sys/dev/pci/ixgbe/ixgbe_type.h
4432
#define IXGBE_KRM_RX_TRN_LINKUP_CTRL(P) ((P) ? 0x8B00 : 0x4B00)
sys/dev/pci/ixgbe/ixgbe_type.h
4433
#define IXGBE_KRM_PMD_DFX_BURNIN(P) ((P) ? 0x8E00 : 0x4E00)
sys/dev/pci/ixgbe/ixgbe_type.h
4434
#define IXGBE_KRM_PMD_FLX_MASK_ST20(P) ((P) ? 0x9054 : 0x5054)
sys/dev/pci/ixgbe/ixgbe_type.h
4435
#define IXGBE_KRM_TX_COEFF_CTRL_1(P) ((P) ? 0x9520 : 0x5520)
sys/dev/pci/ixgbe/ixgbe_type.h
4436
#define IXGBE_KRM_RX_ANA_CTL(P) ((P) ? 0x9A00 : 0x5A00)
sys/dev/raidframe/rf_evenodd_dagfuncs.c
466
short *P;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
474
long *P;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
478
P = RF_Malloc(bytesPerEU);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
482
RF_ASSERT(*P == 0);
sys/dev/raidframe/rf_evenodd_dagfuncs.c
495
P[k] ^= *ebuf_current;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
496
P[k] ^= *pbuf_current;
sys/dev/raidframe/rf_evenodd_dagfuncs.c
571
temp[k] ^= P[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
577
temp[k] ^= P[k];
sys/dev/raidframe/rf_evenodd_dagfuncs.c
620
RF_Free((char *) P, bytesPerEU);
sys/kern/init_sysctl_base.c
192
#define PROC_MACHINE_ARCH(P) machine_arch
sys/kern/subr_kmem.c
270
#define KMEM_CACHE_ALLOC_PROBE(I, P, RS, AS, F) \
sys/kern/subr_kmem.c
271
KMEM_CACHE_PROBE(kmem_cache_alloc_probe_id, I, P, RS, AS, F)
sys/kern/subr_kmem.c
272
#define KMEM_CACHE_BIG_ALLOC_PROBE(I, P, RS, AS, F) \
sys/kern/subr_kmem.c
273
KMEM_CACHE_PROBE(kmem_cache_big_alloc_probe_id, I, P, RS, AS, F)
sys/kern/subr_kmem.c
274
#define KMEM_CACHE_FREE_PROBE(I, P, RS, AS) \
sys/kern/subr_kmem.c
275
KMEM_CACHE_PROBE(kmem_cache_free_probe_id, I, P, RS, AS, 0)
sys/kern/subr_kmem.c
276
#define KMEM_CACHE_BIG_FREE_PROBE(I, P, RS, AS) \
sys/kern/subr_kmem.c
277
KMEM_CACHE_PROBE(kmem_cache_big_free_probe_id, I, P, RS, AS, 0)
sys/kern/subr_psref.c
464
struct psreffed *P = cookie0;
sys/kern/subr_psref.c
478
if (_psref_held(P->target, P->class, true))
sys/kern/subr_psref.c
479
P->ret = true;
sys/kern/subr_psref.c
485
struct psreffed P = {
sys/kern/subr_psref.c
496
xc_wait(xc_broadcast(class->prc_xc_flags, &psreffed_p_xc, &P,
sys/kern/subr_psref.c
499
psreffed_p_xc(&P, NULL);
sys/kern/subr_psref.c
501
return P.ret;
sys/lib/libkern/entpool.c
104
stir(struct entpool *P)
sys/lib/libkern/entpool.c
114
for (i = 0; i < arraycount(P->s.w); i++)
sys/lib/libkern/entpool.c
115
P->s.w[i] = ENTPOOL_WTOH(P->s.w[i]);
sys/lib/libkern/entpool.c
116
ENTPOOL_PERMUTE(P->s.w);
sys/lib/libkern/entpool.c
117
for (i = 0; i < arraycount(P->s.w); i++)
sys/lib/libkern/entpool.c
118
P->s.w[i] = ENTPOOL_HTOW(P->s.w[i]);
sys/lib/libkern/entpool.c
121
P->i = 0;
sys/lib/libkern/entpool.c
131
entpool_enter(struct entpool *P, const void *buf, size_t len)
sys/lib/libkern/entpool.c
137
ASSERT(P->i <= RATE-1);
sys/lib/libkern/entpool.c
141
if (P->i == RATE-1)
sys/lib/libkern/entpool.c
142
stir(P);
sys/lib/libkern/entpool.c
143
ASSERT(P->i < RATE-1);
sys/lib/libkern/entpool.c
144
P->s.u8[P->i++] ^= (n1 >= 0x80 ? 0x80 : 0) | (n1 & 0x7f);
sys/lib/libkern/entpool.c
150
if (P->i == RATE-1)
sys/lib/libkern/entpool.c
151
stir(P);
sys/lib/libkern/entpool.c
152
ASSERT(P->i < RATE-1);
sys/lib/libkern/entpool.c
153
P->s.u8[P->i++] ^= *p++;
sys/lib/libkern/entpool.c
157
if (P->i == RATE-1)
sys/lib/libkern/entpool.c
158
stir(P);
sys/lib/libkern/entpool.c
159
ASSERT(P->i < RATE-1);
sys/lib/libkern/entpool.c
178
entpool_enter_nostir(struct entpool *P, const void *buf, size_t len)
sys/lib/libkern/entpool.c
184
ASSERT(P->i <= RATE-1);
sys/lib/libkern/entpool.c
187
if (P->i == RATE-1)
sys/lib/libkern/entpool.c
189
ASSERT(P->i < RATE-1);
sys/lib/libkern/entpool.c
196
n = n0 = MIN(127, MIN(len, RATE-1 - P->i - 1));
sys/lib/libkern/entpool.c
197
P->s.u8[P->i++] ^= n;
sys/lib/libkern/entpool.c
199
P->s.u8[P->i++] ^= *p++;
sys/lib/libkern/entpool.c
202
ASSERT(P->i <= RATE-1);
sys/lib/libkern/entpool.c
215
entpool_stir(struct entpool *P)
sys/lib/libkern/entpool.c
219
ASSERT(P->i <= RATE-1);
sys/lib/libkern/entpool.c
222
if (P->i == RATE-1)
sys/lib/libkern/entpool.c
223
stir(P);
sys/lib/libkern/entpool.c
224
ASSERT(P->i < RATE-1);
sys/lib/libkern/entpool.c
236
entpool_extract(struct entpool *P, secret void *buf, size_t len)
sys/lib/libkern/entpool.c
242
ASSERT(P->i <= RATE-1);
sys/lib/libkern/entpool.c
245
if (P->i != 0)
sys/lib/libkern/entpool.c
246
stir(P);
sys/lib/libkern/entpool.c
247
ASSERT(P->i == 0);
sys/lib/libkern/entpool.c
254
memcpy(p, P->s.u8, RATE-1);
sys/lib/libkern/entpool.c
255
memset(P->s.u8, 0, RATE-1);
sys/lib/libkern/entpool.c
256
P->s.u8[RATE-1] ^= 0x80;
sys/lib/libkern/entpool.c
257
stir(P);
sys/lib/libkern/entpool.c
269
memcpy(p, P->s.u8, n); /* Copy part of it. */
sys/lib/libkern/entpool.c
270
memset(P->s.u8, 0, RATE-1); /* Zero all of it. */
sys/lib/libkern/entpool.c
271
P->s.u8[RATE-1] ^= 0x80;
sys/lib/libkern/entpool.c
272
stir(P);
sys/lib/libkern/entpool.c
402
#define KAT_BEGIN(P, n) memset(P, 0, sizeof(*(P)))
sys/lib/libkern/entpool.c
404
#define KAT_END(P, n) do \
sys/lib/libkern/entpool.c
407
entpool_extract(P, KAT_ACTUAL, KATLEN); \
sys/lib/libkern/entpool.c
415
struct entpool pool, *P = &pool;
sys/lib/libkern/entpool.c
421
KAT_BEGIN(P, 0);
sys/lib/libkern/entpool.c
422
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
423
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
424
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
425
KAT_END(P, 0);
sys/lib/libkern/entpool.c
428
KAT_BEGIN(P, 1);
sys/lib/libkern/entpool.c
429
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
431
entpool_enter(P, zero, RATE-3);
sys/lib/libkern/entpool.c
433
entpool_enter(P, zero, RATE-4);
sys/lib/libkern/entpool.c
435
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
436
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
437
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
438
KAT_END(P, 1);
sys/lib/libkern/entpool.c
441
KAT_BEGIN(P, 2);
sys/lib/libkern/entpool.c
442
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
444
if (!entpool_enter_nostir(P, zero, RATE-2))
sys/lib/libkern/entpool.c
447
if (!entpool_enter_nostir(P, zero, 127))
sys/lib/libkern/entpool.c
449
if (!entpool_enter_nostir(P, zero, RATE-2 - 127 - 1))
sys/lib/libkern/entpool.c
452
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
453
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
454
KAT_END(P, 2);
sys/lib/libkern/entpool.c
457
KAT_BEGIN(P, 3);
sys/lib/libkern/entpool.c
458
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
460
if (!entpool_enter_nostir(P, zero, RATE-2))
sys/lib/libkern/entpool.c
464
if (!entpool_enter_nostir(P, zero, 127))
sys/lib/libkern/entpool.c
466
if (!entpool_enter_nostir(P, zero, RATE-2 - 127 - 1))
sys/lib/libkern/entpool.c
469
entpool_stir(P);
sys/lib/libkern/entpool.c
470
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
471
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
472
KAT_END(P, 3);
sys/lib/libkern/entpool.c
475
KAT_BEGIN(P, 4);
sys/lib/libkern/entpool.c
476
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
477
if (!entpool_enter_nostir(P, sample, 1))
sys/lib/libkern/entpool.c
479
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
480
KAT_END(P, 4);
sys/lib/libkern/entpool.c
483
KAT_BEGIN(P, 5);
sys/lib/libkern/entpool.c
484
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
486
entpool_enter(P, zero, RATE-3);
sys/lib/libkern/entpool.c
488
entpool_enter(P, zero, RATE-4);
sys/lib/libkern/entpool.c
490
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
491
if (entpool_enter_nostir(P, sample, 1))
sys/lib/libkern/entpool.c
493
entpool_stir(P);
sys/lib/libkern/entpool.c
494
KAT_END(P, 5);
sys/lib/libkern/entpool.c
497
KAT_BEGIN(P, 6);
sys/lib/libkern/entpool.c
498
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
500
if (!entpool_enter_nostir(P, zero, RATE-2))
sys/lib/libkern/entpool.c
504
if (!entpool_enter_nostir(P, zero, 127))
sys/lib/libkern/entpool.c
506
if (!entpool_enter_nostir(P, zero, RATE-2 - 127 - 1))
sys/lib/libkern/entpool.c
509
if (entpool_enter_nostir(P, sample, 1))
sys/lib/libkern/entpool.c
511
entpool_stir(P);
sys/lib/libkern/entpool.c
512
KAT_END(P, 6);
sys/lib/libkern/entpool.c
515
KAT_BEGIN(P, 7);
sys/lib/libkern/entpool.c
516
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
518
if (!entpool_enter_nostir(P, zero, RATE-2))
sys/lib/libkern/entpool.c
522
if (!entpool_enter_nostir(P, zero, 127))
sys/lib/libkern/entpool.c
524
if (!entpool_enter_nostir(P, zero, RATE-2 - 127 - 1))
sys/lib/libkern/entpool.c
527
entpool_stir(P);
sys/lib/libkern/entpool.c
528
if (!entpool_enter_nostir(P, sample, 1))
sys/lib/libkern/entpool.c
530
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
531
KAT_END(P, 7);
sys/lib/libkern/entpool.c
534
KAT_BEGIN(P, 8);
sys/lib/libkern/entpool.c
535
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
536
KAT_END(P, 8);
sys/lib/libkern/entpool.c
539
KAT_BEGIN(P, 9);
sys/lib/libkern/entpool.c
540
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
541
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
542
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
543
KAT_END(P, 9);
sys/lib/libkern/entpool.c
546
KAT_BEGIN(P, 10);
sys/lib/libkern/entpool.c
547
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
549
if (!entpool_enter_nostir(P, zero, RATE-2))
sys/lib/libkern/entpool.c
553
if (!entpool_enter_nostir(P, zero, 127))
sys/lib/libkern/entpool.c
555
if (!entpool_enter_nostir(P, zero, RATE-2 - 127 - 1))
sys/lib/libkern/entpool.c
558
KAT_END(P, 10);
sys/lib/libkern/entpool.c
561
KAT_BEGIN(P, 11);
sys/lib/libkern/entpool.c
562
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
563
entpool_extract(P, scratch, RATE-1 + 1);
sys/lib/libkern/entpool.c
564
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
565
KAT_END(P, 11);
sys/lib/libkern/entpool.c
568
KAT_BEGIN(P, 12);
sys/lib/libkern/entpool.c
569
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
570
entpool_extract(P, scratch, 1);
sys/lib/libkern/entpool.c
571
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
572
entpool_enter(P, sample, 1);
sys/lib/libkern/entpool.c
573
entpool_stir(P); /* noop */
sys/lib/libkern/entpool.c
574
KAT_END(P, 12);
sys/sys/pslist.h
292
#define _PSLIST_VALIDATE_PTRS(P, Q) 0
sys/sys/pslist.h
293
#define _PSLIST_VALIDATE_CONTAINER(P, T, F) 0
sys/sys/pslist.h
295
#define _PSLIST_VALIDATE_PTRS(P, Q) \
sys/sys/pslist.h
296
(0 * sizeof((P) - (Q)) * sizeof(*(P)) * sizeof(*(Q)))
sys/sys/pslist.h
297
#define _PSLIST_VALIDATE_CONTAINER(P, T, F) \
sys/sys/pslist.h
298
(0 * sizeof((P) - &((T *)(((char *)(P)) - offsetof(T, F)))->F))
tests/dev/audio/audiotest.c
4928
{ P, P, R },
tests/dev/audio/audiotest.c
4929
{ A , A|P, R },
tests/dev/audio/audiotest.c
4930
{ A|P, A|P, R },
tests/dev/audio/audiotest.c
4932
{ R| P, P, R },
tests/dev/audio/audiotest.c
4933
{ R|A , A|P, R },
tests/dev/audio/audiotest.c
4934
{ R|A|P, A|P, R },
tests/dev/audio/audiotest.c
4939
{ 0, 0, P },
tests/dev/audio/audiotest.c
4940
{ P, P, P },
tests/dev/audio/audiotest.c
4941
{ A , A|P, A|P },
tests/dev/audio/audiotest.c
4942
{ A|P, A|P, A|P },
tests/dev/audio/audiotest.c
4943
{ R , R , P },
tests/dev/audio/audiotest.c
4944
{ R| P, P, P },
tests/dev/audio/audiotest.c
4945
{ R|A , A|P, A|P },
tests/dev/audio/audiotest.c
4946
{ R|A|P, A|P, A|P },
tests/dev/audio/audiotest.c
4947
{ 8, 8, P },
tests/dev/audio/audiotest.c
4982
{ 0, 0, R| P },
tests/dev/audio/audiotest.c
4983
{ P, P, R| P },
tests/dev/audio/audiotest.c
4984
{ A , A|P, R|A|P },
tests/dev/audio/audiotest.c
4985
{ A|P, A|P, R|A|P },
tests/dev/audio/audiotest.c
4986
{ R , R , R| P },
tests/dev/audio/audiotest.c
4987
{ R| P, R| P, R| P },
tests/dev/audio/audiotest.c
4988
{ R|A , R|A|P, R|A|P },
tests/dev/audio/audiotest.c
4989
{ R|A|P, R|A|P, R|A|P },
tests/dev/audio/audiotest.c
4990
{ 8, 8, R| P },
tests/dev/audio/audiotest.c
4994
{ 0, 0, P },
tests/dev/audio/audiotest.c
4995
{ P, P, P },
tests/dev/audio/audiotest.c
4996
{ A , A|P, A|P },
tests/dev/audio/audiotest.c
4997
{ A|P, A|P, A|P },
tests/dev/audio/audiotest.c
4998
{ R , R , P },
tests/dev/audio/audiotest.c
4999
{ R| P, P, P },
tests/dev/audio/audiotest.c
5000
{ R|A , A|P, A|P },
tests/dev/audio/audiotest.c
5001
{ R|A|P, A|P, A|P },
tests/dev/audio/audiotest.c
5002
{ 8, 8, P },
tests/lib/libc/time/t_strptime.c
457
static const uint64_t P[] = { /* cases that should pass round-trip */
tests/lib/libc/time/t_strptime.c
517
for (i = 0; i < __arraycount(P); i++) {
tests/lib/libc/time/t_strptime.c
527
n = snprintf(buf, sizeof(buf), "%"PRIu64, P[i]);
tests/lib/libc/time/t_strptime.c
534
fprintf(stderr, "# P[%zu]: %"PRId64"\n", i, P[i]);
tests/lib/libc/time/t_strptime.c
566
ATF_CHECK_EQ_MSG(P[i], (uint64_t)t,
tests/lib/libc/time/t_strptime.c
567
"P[%zu]: %"PRId64" -> %"PRId64, i, P[i], (int64_t)t);
tests/net/bpf/t_mbuf.c
110
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
116
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
132
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
138
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
173
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
179
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
202
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
208
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
236
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
242
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
275
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
281
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpf/t_mbuf.c
293
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
298
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
310
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
315
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
327
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
332
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
344
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
349
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
362
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
367
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
380
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
385
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
397
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
402
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
415
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
420
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
433
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
438
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
450
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
455
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
468
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
473
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
486
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
491
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
504
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
509
return interp_prog_mchain2(insns, P, sizeof(P), split) == 0;
tests/net/bpf/t_mbuf.c
80
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpf/t_mbuf.c
86
return interp_prog_mchain2(insns, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
112
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
119
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
135
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
142
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
177
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
184
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
207
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
214
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
242
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
249
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
282
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
289
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
tests/net/bpfjit/t_mbuf.c
301
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
307
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
319
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
325
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
337
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
343
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
355
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
361
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
374
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
380
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
393
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
399
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
411
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
417
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
430
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
436
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
449
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
455
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
467
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
473
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
486
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
492
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
505
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
511
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
524
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
530
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == 0;
tests/net/bpfjit/t_mbuf.c
81
static unsigned char P[] = { 1, 2, 3, 4, 5 };
tests/net/bpfjit/t_mbuf.c
88
return exec_prog_mchain2(insns, insn_count, P, sizeof(P), split) == res;
usr.bin/error/main.c
172
P("%d Errors are unclassifiable.\n", nunknown);
usr.bin/error/main.c
174
P("%d Errors are classifiable, but totally "
usr.bin/error/main.c
177
P("%d Errors are synchronization errors.\n",
usr.bin/error/main.c
180
P("%d Errors are discarded because they refer to "
usr.bin/error/main.c
183
P("%d Errors are nulled because they refer to specific "
usr.bin/error/main.c
186
P("%d Errors are not specific to any file.\n",
usr.bin/error/main.c
189
P("%d Errors are specific to a given file, but not "
usr.bin/error/main.c
192
P("%d Errors are true errors, and can be inserted "
usr.bin/lam/lam.c
106
int P, S, F, T;
usr.bin/lam/lam.c
108
P = S = F = T = 0; /* capitalized options */
usr.bin/lam/lam.c
117
ip->pad = P;
usr.bin/lam/lam.c
121
ip->format = ((P || F) ? (ip-1)->format : "%s");
usr.bin/lam/lam.c
146
P = (*c == 'P' ? 1 : 0);
usr.bin/mail/cmdtab.c
74
/* R */ { "delete", delete, 0, CMP(n) W|P|MSGLIST, 0, MMNDEL },
usr.bin/mail/cmdtab.c
77
/* R */ { "undelete", undeletecmd, 0, CMP(n) P|MSGLIST, MDELETED, MMNDEL },
usr.bin/mail/def.h
236
#define ARGTYPE_MASK ~(P|I|M|W|F|T|R)
usr.bin/mail/lex.c
809
if (contxt != ec_autoprint && com->c_argtype & P &&
usr.bin/midiplay/midiplay.c
120
P(C), P(C), P(C), P(E), P(D), P(D), P(D),
usr.bin/midiplay/midiplay.c
121
P(F), P(E), P(E), P(D), P(D), PL(C),
usr.bin/pmap/pmap.c
117
printf("proc->p_vmspace %p = {", P(vmspace));
usr.bin/pmap/pmap.c
136
printf("%*s%s %p = {", indent(2), "", mname, P(vm_map));
usr.bin/pmap/pmap.c
167
const char *name = mapname(P(vm_map));
usr.bin/pmap/pmap.c
170
recurse < 2 ? "MAP" : "SUBMAP", P(vm_map),
usr.bin/pmap/pmap.c
301
last = P(header);
usr.bin/pmap/pmap.c
360
P(vm_map_entry));
usr.bin/pmap/pmap.c
394
P(amap) = vme->aref.ar_amap;
usr.bin/pmap/pmap.c
407
P(uvm_obj) = vme->object.uvm_obj;
usr.bin/pmap/pmap.c
412
P(vp) = P(uvm_obj);
usr.bin/pmap/pmap.c
420
if (P(vp) != NULL && D(vp, vnode)->v_mount != NULL) {
usr.bin/pmap/pmap.c
421
P(vfs) = D(vp, vnode)->v_mount;
usr.bin/pmap/pmap.c
433
P(&data) = D(vp, vnode)->v_data; \
usr.bin/pmap/pmap.c
508
P(vm_map_entry), vme->start, vme->end,
usr.bin/pmap/pmap.c
525
(unsigned long long)inode, name, P(vp));
usr.bin/pmap/pmap.c
593
P(submap) = vme->object.sub_map;
usr.bin/pmap/pmap.c
625
P(amap),
usr.bin/pmap/pmap.c
760
rv = search_cache(kd, P(vp), &name, buf, sizeof(buf));
usr.bin/pmap/pmap.c
788
P(&kdev) = P(uvm_obj);
usr.bin/rpcgen/rpc_svcout.c
702
P("\n");
usr.bin/rpcgen/rpc_svcout.c
703
P("char *svc_caller()\n");
usr.bin/rpcgen/rpc_svcout.c
704
P("{\n");
usr.bin/rpcgen/rpc_svcout.c
705
P(" struct sockaddr_in actual;\n");
usr.bin/rpcgen/rpc_svcout.c
706
P(" struct hostent *hp;\n");
usr.bin/rpcgen/rpc_svcout.c
707
P(" static struct in_addr prev;\n");
usr.bin/rpcgen/rpc_svcout.c
708
P(" static char cname[128];\n\n");
usr.bin/rpcgen/rpc_svcout.c
710
P(" actual = *svc_getcaller(caller);\n\n");
usr.bin/rpcgen/rpc_svcout.c
712
P(" if (memcmp((char *)&actual.sin_addr, (char *)&prev,\n");
usr.bin/rpcgen/rpc_svcout.c
713
P(" sizeof(struct in_addr)) == 0)\n");
usr.bin/rpcgen/rpc_svcout.c
714
P(" return (cname);\n\n");
usr.bin/rpcgen/rpc_svcout.c
716
P(" prev = actual.sin_addr;\n\n");
usr.bin/rpcgen/rpc_svcout.c
718
P(" hp = gethostbyaddr((char *)&actual.sin_addr, sizeof(actual.sin_addr), AF_INET);\n");
usr.bin/rpcgen/rpc_svcout.c
719
P(" if (hp == NULL) { /* dummy one up */\n");
usr.bin/rpcgen/rpc_svcout.c
720
P(" extern char *inet_ntoa();\n");
usr.bin/rpcgen/rpc_svcout.c
721
P(" strlcpy(cname, inet_ntoa(actual.sin_addr), sizeof(cname));\n");
usr.bin/rpcgen/rpc_svcout.c
722
P(" } else {\n");
usr.bin/rpcgen/rpc_svcout.c
723
P(" strlcpy(cname, hp->h_name, sizeof(cname));\n");
usr.bin/rpcgen/rpc_svcout.c
724
P(" }\n\n");
usr.bin/rpcgen/rpc_svcout.c
726
P(" return (cname);\n");
usr.bin/rpcgen/rpc_svcout.c
727
P("}\n");
usr.sbin/sysinst/arch/amd64/md.h
131
#define MD_BOOT_CFG_FINALIZE(P) amd64_md_boot_cfg_finalize(P)
usr.sbin/wgconfig/wgconfig.c
65
P("[show all]");
usr.sbin/wgconfig/wgconfig.c
66
P("show peer <peer name> [--show-preshared-key]");
usr.sbin/wgconfig/wgconfig.c
67
P("show private-key");
usr.sbin/wgconfig/wgconfig.c
68
P("set private-key <file path>");
usr.sbin/wgconfig/wgconfig.c
69
P("set listen-port <port>");
usr.sbin/wgconfig/wgconfig.c
70
P("add peer <peer name> <base64 public key>\n"
usr.sbin/wgconfig/wgconfig.c
73
P("delete peer <peer name>");