crypto/krb5/src/lib/kadm5/alt_prof.c
490
#define GET_STRING_PARAM(FIELD, BIT, CONFTAG, DEFAULT) \
crypto/krb5/src/lib/kadm5/alt_prof.c
491
get_string_param(¶ms.FIELD, params_in->FIELD, \
crypto/krb5/src/lib/kadm5/alt_prof.c
524
#define GET_PORT_PARAM(FIELD, BIT, CONFTAG, DEFAULT) \
crypto/krb5/src/lib/kadm5/alt_prof.c
525
get_port_param(¶ms.FIELD, params_in->FIELD, \
crypto/krb5/src/lib/kadm5/alt_prof.c
568
#define GET_DELTAT_PARAM(FIELD, BIT, CONFTAG, DEFAULT) \
crypto/krb5/src/lib/kadm5/alt_prof.c
569
get_deltat_param(¶ms.FIELD, params_in->FIELD, \
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
573
#define OFFOF(TYPE,FIELD,FTYPE) \
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
574
(offsetof(TYPE, FIELD) \
crypto/krb5/src/lib/krb5/asn.1/asn1_encode.h
575
+ 0 * WARN_IF_TYPE_MISMATCH(((TYPE*)0)->FIELD, FTYPE))
crypto/krb5/src/lib/krb5/os/accessor.c
48
#define S(FIELD, VAL) .FIELD = VAL
crypto/krb5/src/lib/krb5/os/accessor.c
54
#define S(FIELD, VAL) internals_temp.FIELD = VAL
crypto/krb5/src/lib/krb5/os/accessor.c
60
#define SC(FIELD, VAL) S(FIELD, VAL)
crypto/krb5/src/lib/krb5/os/accessor.c
62
#define SC(FIELD, VAL) S(FIELD, 0)
crypto/krb5/src/lib/krb5/os/accessor.c
69
#define SC(FIELD, VAL) S(FIELD, VAL)
crypto/krb5/src/lib/krb5/os/accessor.c
71
#define SC(FIELD, VAL) S(FIELD, 0)
crypto/krb5/src/lib/krb5/os/accessor.c
78
#define SC(FIELD, VAL) S(FIELD, VAL)
crypto/krb5/src/lib/krb5/os/accessor.c
80
#define SC(FIELD, VAL) S(FIELD, 0)
crypto/krb5/src/util/profile/prof_init.c
282
#define COUNT_LINKED_LIST(COUNT, PTYPE, START, FIELD) \
crypto/krb5/src/util/profile/prof_init.c
288
cll_ptr = cll_ptr->FIELD; \
crypto/openssh/ttymodes.c
317
#define TTYMODE(NAME, FIELD, OP) \
crypto/openssh/ttymodes.c
321
(r = sshbuf_put_u32(buf, ((tio.FIELD & NAME) != 0))) != 0) \
crypto/openssh/ttymodes.c
400
#define TTYMODE(NAME, FIELD, OP) \
crypto/openssh/ttymodes.c
405
tio.FIELD |= NAME; \
crypto/openssh/ttymodes.c
407
tio.FIELD &= ~NAME; \
crypto/openssl/apps/lib/cmp_mock_srv.c
73
#define DEFINE_OSSL_SET1_CERT(FIELD) \
crypto/openssl/apps/lib/cmp_mock_srv.c
74
int ossl_cmp_mock_srv_set1_##FIELD(OSSL_CMP_SRV_CTX *srv_ctx, \
crypto/openssl/apps/lib/cmp_mock_srv.c
84
X509_free(ctx->FIELD); \
crypto/openssl/apps/lib/cmp_mock_srv.c
85
ctx->FIELD = cert; \
crypto/openssl/crypto/cmp/cmp_ctx.c
23
#define DEFINE_OSSL_CMP_CTX_get0(FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
24
DEFINE_OSSL_CMP_CTX_get0_NAME(FIELD, FIELD, TYPE)
crypto/openssl/crypto/cmp/cmp_ctx.c
25
#define DEFINE_OSSL_CMP_CTX_get0_NAME(NAME, FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
255
#define DEFINE_OSSL_set(PREFIX, FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
256
int PREFIX##_set_##FIELD(OSSL_CMP_CTX *ctx, TYPE val) \
crypto/openssl/crypto/cmp/cmp_ctx.c
262
ctx->FIELD = val; \
crypto/openssl/crypto/cmp/cmp_ctx.c
268
#define DEFINE_OSSL_get(PREFIX, FIELD, TYPE, ERR_RET) \
crypto/openssl/crypto/cmp/cmp_ctx.c
269
TYPE PREFIX##_get_##FIELD(const OSSL_CMP_CTX *ctx) \
crypto/openssl/crypto/cmp/cmp_ctx.c
275
return ctx->FIELD; \
crypto/openssl/crypto/cmp/cmp_ctx.c
32
return ctx->FIELD; \
crypto/openssl/crypto/cmp/cmp_ctx.c
40
#define DEFINE_OSSL_set0(PREFIX, FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
41
DEFINE_OSSL_set0_NAME(PREFIX, FIELD, FIELD, TYPE)
crypto/openssl/crypto/cmp/cmp_ctx.c
42
#define DEFINE_OSSL_set0_NAME(PREFIX, NAME, FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
455
#define DEFINE_OSSL_CMP_CTX_get1_certs(FIELD) \
crypto/openssl/crypto/cmp/cmp_ctx.c
456
STACK_OF(X509) *OSSL_CMP_CTX_get1_##FIELD(const OSSL_CMP_CTX *ctx) \
crypto/openssl/crypto/cmp/cmp_ctx.c
462
return X509_chain_up_ref(ctx->FIELD); \
crypto/openssl/crypto/cmp/cmp_ctx.c
468
#define DEFINE_OSSL_set1_certs(PREFIX, FIELD) \
crypto/openssl/crypto/cmp/cmp_ctx.c
469
int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, STACK_OF(X509) *certs) \
crypto/openssl/crypto/cmp/cmp_ctx.c
475
OSSL_STACK_OF_X509_free(ctx->FIELD); \
crypto/openssl/crypto/cmp/cmp_ctx.c
476
ctx->FIELD = NULL; \
crypto/openssl/crypto/cmp/cmp_ctx.c
477
return certs == NULL || (ctx->FIELD = X509_chain_up_ref(certs)) != NULL; \
crypto/openssl/crypto/cmp/cmp_ctx.c
49
TYPE##_free(ctx->FIELD); \
crypto/openssl/crypto/cmp/cmp_ctx.c
50
ctx->FIELD = val; \
crypto/openssl/crypto/cmp/cmp_ctx.c
567
#define DEFINE_OSSL_CMP_CTX_set1(FIELD, TYPE) /* this uses _dup */ \
crypto/openssl/crypto/cmp/cmp_ctx.c
568
int OSSL_CMP_CTX_set1_##FIELD(OSSL_CMP_CTX *ctx, const TYPE *val) \
crypto/openssl/crypto/cmp/cmp_ctx.c
579
TYPE##_free(ctx->FIELD); \
crypto/openssl/crypto/cmp/cmp_ctx.c
580
ctx->FIELD = val_dup; \
crypto/openssl/crypto/cmp/cmp_ctx.c
587
#define DEFINE_OSSL_set1_up_ref(PREFIX, FIELD, TYPE) \
crypto/openssl/crypto/cmp/cmp_ctx.c
588
int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, TYPE *val) \
crypto/openssl/crypto/cmp/cmp_ctx.c
602
TYPE##_free(ctx->FIELD); \
crypto/openssl/crypto/cmp/cmp_ctx.c
603
ctx->FIELD = val; \
crypto/openssl/crypto/cmp/cmp_ctx.c
802
#define DEFINE_set1_ASN1_OCTET_STRING(PREFIX, FIELD) \
crypto/openssl/crypto/cmp/cmp_ctx.c
803
int PREFIX##_set1_##FIELD(OSSL_CMP_CTX *ctx, const ASN1_OCTET_STRING *id) \
crypto/openssl/crypto/cmp/cmp_ctx.c
809
return ossl_cmp_asn1_octet_string_set1(&ctx->FIELD, id); \
crypto/openssl/test/cmp_ctx_test.c
357
#define DEFINE_SET_GET_BASE_TEST(PREFIX, SETN, GETN, DUP, FIELD, TYPE, ERR, \
crypto/openssl/test/cmp_ctx_test.c
360
execute_CTX_##SETN##_##GETN##_##FIELD(OSSL_CMP_CTX_TEST_FIXTURE *fixture) \
crypto/openssl/test/cmp_ctx_test.c
363
int (*set_fn)(CMP_CTX * ctx, TYPE) = (int (*)(CMP_CTX * ctx, TYPE)) PREFIX##_##SETN##_##FIELD; \
crypto/openssl/test/cmp_ctx_test.c
365
TYPE (*get_fn)(const CMP_CTX *ctx) = OSSL_CMP_CTX_##GETN##_##FIELD; \
crypto/openssl/test/cmp_ctx_test.c
492
static int test_CTX_##SETN##_##GETN##_##FIELD(void) \
crypto/openssl/test/cmp_ctx_test.c
495
EXECUTE_TEST(execute_CTX_##SETN##_##GETN##_##FIELD, tear_down); \
crypto/openssl/test/cmp_ctx_test.c
534
#define DEFINE_SET_GET_TEST(OSSL_CMP, CTX, N, M, DUP, FIELD, TYPE) \
crypto/openssl/test/cmp_ctx_test.c
535
DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, DUP, FIELD, \
crypto/openssl/test/cmp_ctx_test.c
538
#define DEFINE_SET_GET_SK_TEST_DEFAULT(OSSL_CMP, CTX, N, M, FIELD, ELEM_TYPE, \
crypto/openssl/test/cmp_ctx_test.c
540
DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, 1, FIELD, \
crypto/openssl/test/cmp_ctx_test.c
542
#define DEFINE_SET_GET_SK_TEST(OSSL_CMP, CTX, N, M, FIELD, T) \
crypto/openssl/test/cmp_ctx_test.c
543
DEFINE_SET_GET_SK_TEST_DEFAULT(OSSL_CMP, CTX, N, M, FIELD, T, \
crypto/openssl/test/cmp_ctx_test.c
550
#define DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, N, M, DUP, FIELD, TYPE, \
crypto/openssl/test/cmp_ctx_test.c
552
DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get##M, DUP, FIELD, \
crypto/openssl/test/cmp_ctx_test.c
554
#define DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, N, DUP, FIELD, TYPE, DEFAULT) \
crypto/openssl/test/cmp_ctx_test.c
555
static TYPE *OSSL_CMP_CTX_get0_##FIELD(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
558
return (TYPE *)ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
560
DEFINE_SET_GET_TEST_DEFAULT(OSSL_CMP, CTX, N, 0, DUP, FIELD, TYPE, DEFAULT)
crypto/openssl/test/cmp_ctx_test.c
561
#define DEFINE_SET_TEST(OSSL_CMP, CTX, N, DUP, FIELD, TYPE) \
crypto/openssl/test/cmp_ctx_test.c
562
DEFINE_SET_TEST_DEFAULT(OSSL_CMP, CTX, N, DUP, FIELD, TYPE, IS_0)
crypto/openssl/test/cmp_ctx_test.c
564
#define DEFINE_SET_SK_TEST(OSSL_CMP, CTX, N, FIELD, TYPE) \
crypto/openssl/test/cmp_ctx_test.c
565
static STACK_OF(TYPE) *OSSL_CMP_CTX_get0_##FIELD(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
568
return ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
570
DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set##N, get0, 1, FIELD, \
crypto/openssl/test/cmp_ctx_test.c
577
#define DEFINE_SET_CB_TEST(FIELD) \
crypto/openssl/test/cmp_ctx_test.c
578
static OSSL_CMP_##FIELD##_t OSSL_CMP_CTX_get_##FIELD(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
581
return ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
583
DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set, get, 0, FIELD, \
crypto/openssl/test/cmp_ctx_test.c
584
OSSL_CMP_##FIELD##_t, NULL, IS_0, \
crypto/openssl/test/cmp_ctx_test.c
585
test_##FIELD, DROP)
crypto/openssl/test/cmp_ctx_test.c
586
#define DEFINE_SET_GET_P_VOID_TEST(FIELD) \
crypto/openssl/test/cmp_ctx_test.c
587
DEFINE_SET_GET_BASE_TEST(OSSL_CMP_CTX, set, get, 0, FIELD, void *, \
crypto/openssl/test/cmp_ctx_test.c
590
#define DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, DEFAULT) \
crypto/openssl/test/cmp_ctx_test.c
591
DEFINE_SET_GET_BASE_TEST(OSSL_CMP##_##CTX, set, get, 0, FIELD, int, -1, \
crypto/openssl/test/cmp_ctx_test.c
593
#define DEFINE_SET_GET_INT_TEST(OSSL_CMP, CTX, FIELD) \
crypto/openssl/test/cmp_ctx_test.c
594
DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, IS_NEG)
crypto/openssl/test/cmp_ctx_test.c
595
#define DEFINE_SET_INT_TEST(FIELD) \
crypto/openssl/test/cmp_ctx_test.c
596
static int OSSL_CMP_CTX_get_##FIELD(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
599
return ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
601
DEFINE_SET_GET_INT_TEST_DEFAULT(OSSL_CMP, CTX, FIELD, IS_0)
crypto/openssl/test/cmp_ctx_test.c
603
#define DEFINE_SET_GET_ARG_FN(SETN, GETN, FIELD, ARG, T) \
crypto/openssl/test/cmp_ctx_test.c
604
static int OSSL_CMP_CTX_##SETN##_##FIELD##_##ARG(CMP_CTX *ctx, T val) \
crypto/openssl/test/cmp_ctx_test.c
606
return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, ARG, val); \
crypto/openssl/test/cmp_ctx_test.c
609
static T OSSL_CMP_CTX_##GETN##_##FIELD##_##ARG(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
611
return OSSL_CMP_CTX_##GETN##_##FIELD(ctx, ARG); \
crypto/openssl/test/cmp_ctx_test.c
614
#define DEFINE_SET_GET1_STR_FN(SETN, FIELD) \
crypto/openssl/test/cmp_ctx_test.c
615
static int OSSL_CMP_CTX_##SETN##_##FIELD##_str(CMP_CTX *ctx, char *val) \
crypto/openssl/test/cmp_ctx_test.c
617
return OSSL_CMP_CTX_##SETN##_##FIELD(ctx, (unsigned char *)val, \
crypto/openssl/test/cmp_ctx_test.c
621
static char *OSSL_CMP_CTX_get1_##FIELD##_str(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
626
bytes = ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
633
#define DEFINE_PUSH_BASE_TEST(PUSHN, DUP, FIELD, ELEM, TYPE, T, \
crypto/openssl/test/cmp_ctx_test.c
635
static TYPE sk_top_##FIELD(const CMP_CTX *ctx) \
crypto/openssl/test/cmp_ctx_test.c
637
return sk_##T##_value(ctx->FIELD, sk_##T##_num(ctx->FIELD) - 1); \
crypto/openssl/test/cmp_ctx_test.c
647
int n_elem = sk_##T##_num(ctx->FIELD); \
crypto/openssl/test/cmp_ctx_test.c
667
field_read = ctx->FIELD; \
crypto/openssl/test/cmp_ctx_test.c
679
if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \
crypto/openssl/test/cmp_ctx_test.c
683
val1_read = sk_top_##FIELD(ctx); \
crypto/openssl/test/cmp_ctx_test.c
703
if (sk_##T##_num(ctx->FIELD) != ++n_elem) { \
crypto/openssl/test/cmp_ctx_test.c
707
val2_read = sk_top_##FIELD(ctx); \
crypto/openssl/test/cmp_ctx_test.c
740
#define DEFINE_PUSH_TEST(N, DUP, FIELD, ELEM, TYPE) \
crypto/openssl/test/cmp_ctx_test.c
741
DEFINE_PUSH_BASE_TEST(push##N, DUP, FIELD, ELEM, TYPE *, TYPE, \
sys/dev/aic7xxx/aicasm/aicasm_gram.y
1468
case FIELD:
sys/dev/aic7xxx/aicasm/aicasm_gram.y
1852
|| node->symbol->type == FIELD
sys/dev/aic7xxx/aicasm/aicasm_gram.y
450
process_field(FIELD, $2, $3.value);
sys/dev/aic7xxx/aicasm/aicasm_gram.y
458
process_field(FIELD, $2, $3.value);
sys/dev/aic7xxx/aicasm/aicasm_gram.y
681
case FIELD:
sys/dev/aic7xxx/aicasm/aicasm_symbol.c
106
case FIELD:
sys/dev/aic7xxx/aicasm/aicasm_symbol.c
242
case FIELD:
sys/dev/aic7xxx/aicasm/aicasm_symbol.c
504
case FIELD:
sys/dev/aic7xxx/aicasm/aicasm_symbol.c
620
case FIELD:
usr.sbin/cxgbetool/cxgbetool.c
1553
#define FIELD1(name, start) FIELD(name, start, start)
usr.sbin/cxgbetool/cxgbetool.c
1559
FIELD("uPToken_4k:", 197, 198),
usr.sbin/cxgbetool/cxgbetool.c
1560
FIELD("WrLength_5:", 196, 196),
usr.sbin/cxgbetool/cxgbetool.c
1561
FIELD("CpuId:", 193, 195),
usr.sbin/cxgbetool/cxgbetool.c
1562
FIELD("PCIeDataChannel_1:", 192, 192),
usr.sbin/cxgbetool/cxgbetool.c
1563
FIELD("DCA_ST:", 181, 191),
usr.sbin/cxgbetool/cxgbetool.c
1564
FIELD("StatusPgNS:", 180, 180),
usr.sbin/cxgbetool/cxgbetool.c
1565
FIELD("StatusPgRO:", 179, 179),
usr.sbin/cxgbetool/cxgbetool.c
1566
FIELD("FetchNS:", 178, 178),
usr.sbin/cxgbetool/cxgbetool.c
1567
FIELD("FetchRO:", 177, 177),
usr.sbin/cxgbetool/cxgbetool.c
1568
FIELD("Valid:", 176, 176),
usr.sbin/cxgbetool/cxgbetool.c
1569
FIELD("ReschedulePending_1:", 175, 175),
usr.sbin/cxgbetool/cxgbetool.c
1570
FIELD("PCIeDataChannel:", 174, 174),
usr.sbin/cxgbetool/cxgbetool.c
1571
FIELD("StatusPgTPHintEn:", 173, 173),
usr.sbin/cxgbetool/cxgbetool.c
1572
FIELD("StatusPgTPHint:", 171, 172),
usr.sbin/cxgbetool/cxgbetool.c
1573
FIELD("FetchTPHintEn:", 170, 170),
usr.sbin/cxgbetool/cxgbetool.c
1574
FIELD("FetchTPHint:", 168, 169),
usr.sbin/cxgbetool/cxgbetool.c
1575
FIELD("FCThreshOverride:", 167, 167),
usr.sbin/cxgbetool/cxgbetool.c
1577
FIELD("WRLengthKnown:", 161, 161),
usr.sbin/cxgbetool/cxgbetool.c
1578
FIELD("ReschedulePending:", 160, 160),
usr.sbin/cxgbetool/cxgbetool.c
1579
FIELD("TimerIx:", 157, 159),
usr.sbin/cxgbetool/cxgbetool.c
1580
FIELD("FetchBurstMin:", 156, 156),
usr.sbin/cxgbetool/cxgbetool.c
1581
FIELD("FLMPacking:", 155, 155),
usr.sbin/cxgbetool/cxgbetool.c
1582
FIELD("FetchBurstMax:", 153, 154),
usr.sbin/cxgbetool/cxgbetool.c
1583
FIELD("uPToken:", 133, 152),
usr.sbin/cxgbetool/cxgbetool.c
1584
FIELD("uPTokenEn:", 132, 132),
usr.sbin/cxgbetool/cxgbetool.c
1585
FIELD("UserModeIO:", 131, 131),
usr.sbin/cxgbetool/cxgbetool.c
1586
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
1587
FIELD("uPFLCreditEn:", 122, 122),
usr.sbin/cxgbetool/cxgbetool.c
1588
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
1589
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
1590
FIELD("HostFCOwner:", 108, 108),
usr.sbin/cxgbetool/cxgbetool.c
1592
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
1593
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
1595
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
1596
FIELD("QueueType:", 1, 1),
usr.sbin/cxgbetool/cxgbetool.c
1597
FIELD("FetchSizeMode:", 0, 0),
usr.sbin/cxgbetool/cxgbetool.c
1601
FIELD("FLMcontextID_4k:", 197, 198),
usr.sbin/cxgbetool/cxgbetool.c
1602
FIELD("CpuId:", 193, 195),
usr.sbin/cxgbetool/cxgbetool.c
1603
FIELD("PCIeDataChannel_1:", 192, 192),
usr.sbin/cxgbetool/cxgbetool.c
1604
FIELD("DCA_ST:", 181, 191),
usr.sbin/cxgbetool/cxgbetool.c
1605
FIELD("StatusPgNS:", 180, 180),
usr.sbin/cxgbetool/cxgbetool.c
1606
FIELD("StatusPgRO:", 179, 179),
usr.sbin/cxgbetool/cxgbetool.c
1607
FIELD("FetchNS:", 178, 178),
usr.sbin/cxgbetool/cxgbetool.c
1608
FIELD("FetchRO:", 177, 177),
usr.sbin/cxgbetool/cxgbetool.c
1609
FIELD("Valid:", 176, 176),
usr.sbin/cxgbetool/cxgbetool.c
1610
FIELD("PCIeDataChannel:", 174, 175),
usr.sbin/cxgbetool/cxgbetool.c
1611
FIELD("StatusPgTPHintEn:", 173, 173),
usr.sbin/cxgbetool/cxgbetool.c
1612
FIELD("StatusPgTPHint:", 171, 172),
usr.sbin/cxgbetool/cxgbetool.c
1613
FIELD("FetchTPHintEn:", 170, 170),
usr.sbin/cxgbetool/cxgbetool.c
1614
FIELD("FetchTPHint:", 168, 169),
usr.sbin/cxgbetool/cxgbetool.c
1615
FIELD("FCThreshOverride:", 167, 167),
usr.sbin/cxgbetool/cxgbetool.c
1616
FIELD("ReschedulePending:", 160, 160),
usr.sbin/cxgbetool/cxgbetool.c
1617
FIELD("OnChipQueue:", 159, 159),
usr.sbin/cxgbetool/cxgbetool.c
1618
FIELD("FetchSizeMode:", 158, 158),
usr.sbin/cxgbetool/cxgbetool.c
1620
FIELD("FLMPacking:", 155, 155),
usr.sbin/cxgbetool/cxgbetool.c
1621
FIELD("FetchBurstMax:", 153, 154),
usr.sbin/cxgbetool/cxgbetool.c
1622
FIELD("FLMcongMode:", 152, 152),
usr.sbin/cxgbetool/cxgbetool.c
1623
FIELD("MaxuPFLCredits:", 144, 151),
usr.sbin/cxgbetool/cxgbetool.c
1624
FIELD("FLMcontextID:", 133, 143),
usr.sbin/cxgbetool/cxgbetool.c
1625
FIELD("uPTokenEn:", 132, 132),
usr.sbin/cxgbetool/cxgbetool.c
1626
FIELD("UserModeIO:", 131, 131),
usr.sbin/cxgbetool/cxgbetool.c
1627
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
1628
FIELD("uPFLCreditEn:", 122, 122),
usr.sbin/cxgbetool/cxgbetool.c
1629
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
1630
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
1631
FIELD("HostFCOwner:", 108, 108),
usr.sbin/cxgbetool/cxgbetool.c
1633
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
1634
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
1636
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
1637
FIELD("QueueType:", 1, 1),
usr.sbin/cxgbetool/cxgbetool.c
1638
FIELD("CachePriority:", 0, 0),
usr.sbin/cxgbetool/cxgbetool.c
1642
FIELD("Fid:", 171, 182),
usr.sbin/cxgbetool/cxgbetool.c
1643
FIELD("InterruptIDX4K:", 170, 170),
usr.sbin/cxgbetool/cxgbetool.c
1644
FIELD("CoalEn:", 169, 169),
usr.sbin/cxgbetool/cxgbetool.c
1645
FIELD("CoalAbort:", 168, 168),
usr.sbin/cxgbetool/cxgbetool.c
1646
FIELD("CoalCntr:", 161, 167),
usr.sbin/cxgbetool/cxgbetool.c
1647
FIELD("CoalCompTimerStatus:", 160, 160),
usr.sbin/cxgbetool/cxgbetool.c
1648
FIELD("CoalCompCntrStatus:", 159, 159),
usr.sbin/cxgbetool/cxgbetool.c
1649
FIELD("SP_NS:", 158, 158),
usr.sbin/cxgbetool/cxgbetool.c
1650
FIELD("SP_RO:", 157, 157),
usr.sbin/cxgbetool/cxgbetool.c
1651
FIELD("SP_TPHintEn:", 156, 156),
usr.sbin/cxgbetool/cxgbetool.c
1652
FIELD("SP_TPHint:", 154, 155),
usr.sbin/cxgbetool/cxgbetool.c
1653
FIELD("DCA_ST:", 143, 153),
usr.sbin/cxgbetool/cxgbetool.c
1654
FIELD("ISCSICoalescing:", 142, 142),
usr.sbin/cxgbetool/cxgbetool.c
1655
FIELD("Queue_Valid:", 141, 141),
usr.sbin/cxgbetool/cxgbetool.c
1656
FIELD("TimerPending:", 140, 140),
usr.sbin/cxgbetool/cxgbetool.c
1657
FIELD("DropRSS:", 139, 139),
usr.sbin/cxgbetool/cxgbetool.c
1658
FIELD("PCIeChannel:", 137, 138),
usr.sbin/cxgbetool/cxgbetool.c
1659
FIELD("SEInterruptArmed:", 136, 136),
usr.sbin/cxgbetool/cxgbetool.c
1660
FIELD("CongestionMgtEnable:", 135, 135),
usr.sbin/cxgbetool/cxgbetool.c
1661
FIELD("NoSnoop:", 134, 134),
usr.sbin/cxgbetool/cxgbetool.c
1662
FIELD("RelaxedOrdering:", 133, 133),
usr.sbin/cxgbetool/cxgbetool.c
1663
FIELD("GTSmode:", 132, 132),
usr.sbin/cxgbetool/cxgbetool.c
1664
FIELD("TPHintEn:", 131, 131),
usr.sbin/cxgbetool/cxgbetool.c
1665
FIELD("TPHint:", 129, 130),
usr.sbin/cxgbetool/cxgbetool.c
1666
FIELD("UpdateScheduling:", 128, 128),
usr.sbin/cxgbetool/cxgbetool.c
1667
FIELD("UpdateDelivery:", 126, 127),
usr.sbin/cxgbetool/cxgbetool.c
1668
FIELD("InterruptSent:", 125, 125),
usr.sbin/cxgbetool/cxgbetool.c
1669
FIELD("InterruptIDX:", 114, 124),
usr.sbin/cxgbetool/cxgbetool.c
1670
FIELD("InterruptDestination:", 113, 113),
usr.sbin/cxgbetool/cxgbetool.c
1671
FIELD("InterruptArmed:", 112, 112),
usr.sbin/cxgbetool/cxgbetool.c
1672
FIELD("RxIntCounter:", 106, 111),
usr.sbin/cxgbetool/cxgbetool.c
1673
FIELD("RxIntCounterThreshold:", 104, 105),
usr.sbin/cxgbetool/cxgbetool.c
1674
FIELD("Generation:", 103, 103),
usr.sbin/cxgbetool/cxgbetool.c
1676
FIELD("PIDX:", 32, 47),
usr.sbin/cxgbetool/cxgbetool.c
1677
FIELD("CIDX:", 16, 31),
usr.sbin/cxgbetool/cxgbetool.c
1680
FIELD("QueueEntryOverride:", 1, 1),
usr.sbin/cxgbetool/cxgbetool.c
1681
FIELD("CachePriority:", 0, 0),
usr.sbin/cxgbetool/cxgbetool.c
1685
FIELD("MidCongEn:", 154, 154),
usr.sbin/cxgbetool/cxgbetool.c
1686
FIELD("FlPtr:", 90, 153),
usr.sbin/cxgbetool/cxgbetool.c
1687
FIELD("Valid:", 89, 89),
usr.sbin/cxgbetool/cxgbetool.c
1688
FIELD("SplitLenMode:", 87, 88),
usr.sbin/cxgbetool/cxgbetool.c
1689
FIELD("TPHintEn:", 86, 86),
usr.sbin/cxgbetool/cxgbetool.c
1690
FIELD("TPHint:", 84, 85),
usr.sbin/cxgbetool/cxgbetool.c
1691
FIELD("NoSnoop:", 83, 83),
usr.sbin/cxgbetool/cxgbetool.c
1692
FIELD("RelaxedOrdering:", 82, 82),
usr.sbin/cxgbetool/cxgbetool.c
1693
FIELD("DCA_ST:", 71, 81),
usr.sbin/cxgbetool/cxgbetool.c
1694
FIELD("EQid:", 54, 70),
usr.sbin/cxgbetool/cxgbetool.c
1695
FIELD("SplitEn:", 52, 53),
usr.sbin/cxgbetool/cxgbetool.c
1696
FIELD("PadEn:", 51, 51),
usr.sbin/cxgbetool/cxgbetool.c
1697
FIELD("PackEn:", 50, 50),
usr.sbin/cxgbetool/cxgbetool.c
1698
FIELD("Cache_Lock :", 49, 49),
usr.sbin/cxgbetool/cxgbetool.c
1699
FIELD("CongDrop:", 48, 48),
usr.sbin/cxgbetool/cxgbetool.c
1700
FIELD("Inflifght:", 47, 47),
usr.sbin/cxgbetool/cxgbetool.c
1701
FIELD("CongEn:", 46, 46),
usr.sbin/cxgbetool/cxgbetool.c
1702
FIELD("CongMode:", 45, 45),
usr.sbin/cxgbetool/cxgbetool.c
1703
FIELD("PackOffset:", 20, 39),
usr.sbin/cxgbetool/cxgbetool.c
1704
FIELD("CIDX:", 8, 15),
usr.sbin/cxgbetool/cxgbetool.c
1705
FIELD("PIDX:", 0, 7),
usr.sbin/cxgbetool/cxgbetool.c
1709
FIELD("CngMPSEnable:", 37, 37),
usr.sbin/cxgbetool/cxgbetool.c
1710
FIELD("CngTPMode:", 35, 36),
usr.sbin/cxgbetool/cxgbetool.c
1711
FIELD("CngDBPHdr:", 34, 34),
usr.sbin/cxgbetool/cxgbetool.c
1712
FIELD("CngDBPData:", 33, 33),
usr.sbin/cxgbetool/cxgbetool.c
1713
FIELD("CngIMSG:", 32, 32),
usr.sbin/cxgbetool/cxgbetool.c
1732
FIELD("DCA_ST:", 181, 191),
usr.sbin/cxgbetool/cxgbetool.c
1738
FIELD("PCIeDataChannel:", 174, 175),
usr.sbin/cxgbetool/cxgbetool.c
1740
FIELD("StatusPgTPHint:", 171, 172),
usr.sbin/cxgbetool/cxgbetool.c
1742
FIELD("FetchTPHint:", 168, 169),
usr.sbin/cxgbetool/cxgbetool.c
1751
FIELD("FetchBurstMax:", 153, 154),
usr.sbin/cxgbetool/cxgbetool.c
1752
FIELD("uPToken:", 133, 152),
usr.sbin/cxgbetool/cxgbetool.c
1755
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
1757
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
1758
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
1761
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
1762
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
1764
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
1770
FIELD("DCA_ST:", 181, 191),
usr.sbin/cxgbetool/cxgbetool.c
1779
FIELD("StatusPgTPHint:", 171, 172),
usr.sbin/cxgbetool/cxgbetool.c
1781
FIELD("FetchTPHint:", 168, 169),
usr.sbin/cxgbetool/cxgbetool.c
1786
FIELD("TimerIx:", 157, 159),
usr.sbin/cxgbetool/cxgbetool.c
1789
FIELD("FetchBurstMax:", 153, 154),
usr.sbin/cxgbetool/cxgbetool.c
1790
FIELD("uPToken:", 133, 152),
usr.sbin/cxgbetool/cxgbetool.c
1793
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
1795
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
1796
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
1799
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
1800
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
1802
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
1808
FIELD("DCA_ST:", 181, 191),
usr.sbin/cxgbetool/cxgbetool.c
1814
FIELD("PCIeDataChannel:", 174, 175),
usr.sbin/cxgbetool/cxgbetool.c
1816
FIELD("StatusPgTPHint:", 171, 172),
usr.sbin/cxgbetool/cxgbetool.c
1818
FIELD("FetchTPHint:", 168, 169),
usr.sbin/cxgbetool/cxgbetool.c
1825
FIELD("FetchBurstMax:", 153, 154),
usr.sbin/cxgbetool/cxgbetool.c
1827
FIELD("MaxuPFLCredits:", 144, 151),
usr.sbin/cxgbetool/cxgbetool.c
1828
FIELD("FLMcontextID:", 133, 143),
usr.sbin/cxgbetool/cxgbetool.c
1831
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
1833
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
1834
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
1837
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
1838
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
1840
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
1846
FIELD("DCA_ST:", 143, 153),
usr.sbin/cxgbetool/cxgbetool.c
1851
FIELD("PCIeChannel:", 137, 138),
usr.sbin/cxgbetool/cxgbetool.c
1858
FIELD("TPHint:", 129, 130),
usr.sbin/cxgbetool/cxgbetool.c
1860
FIELD("UpdateDelivery:", 126, 127),
usr.sbin/cxgbetool/cxgbetool.c
1862
FIELD("InterruptIDX:", 114, 124),
usr.sbin/cxgbetool/cxgbetool.c
1865
FIELD("RxIntCounter:", 106, 111),
usr.sbin/cxgbetool/cxgbetool.c
1866
FIELD("RxIntCounterThreshold:", 104, 105),
usr.sbin/cxgbetool/cxgbetool.c
1869
FIELD("PIDX:", 32, 47),
usr.sbin/cxgbetool/cxgbetool.c
1870
FIELD("CIDX:", 16, 31),
usr.sbin/cxgbetool/cxgbetool.c
1881
FIELD("SP_TPHint:", 154, 155),
usr.sbin/cxgbetool/cxgbetool.c
1882
FIELD("DCA_ST:", 143, 153),
usr.sbin/cxgbetool/cxgbetool.c
1887
FIELD("PCIeChannel:", 137, 138),
usr.sbin/cxgbetool/cxgbetool.c
1894
FIELD("TPHint:", 129, 130),
usr.sbin/cxgbetool/cxgbetool.c
1896
FIELD("UpdateDelivery:", 126, 127),
usr.sbin/cxgbetool/cxgbetool.c
1898
FIELD("InterruptIDX:", 114, 124),
usr.sbin/cxgbetool/cxgbetool.c
1901
FIELD("RxIntCounter:", 106, 111),
usr.sbin/cxgbetool/cxgbetool.c
1902
FIELD("RxIntCounterThreshold:", 104, 105),
usr.sbin/cxgbetool/cxgbetool.c
1905
FIELD("PIDX:", 32, 47),
usr.sbin/cxgbetool/cxgbetool.c
1906
FIELD("CIDX:", 16, 31),
usr.sbin/cxgbetool/cxgbetool.c
1915
FIELD("SplitLenMode:", 87, 88),
usr.sbin/cxgbetool/cxgbetool.c
1917
FIELD("TPHint:", 84, 85),
usr.sbin/cxgbetool/cxgbetool.c
1920
FIELD("DCA_ST:", 71, 81),
usr.sbin/cxgbetool/cxgbetool.c
1921
FIELD("EQid:", 54, 70),
usr.sbin/cxgbetool/cxgbetool.c
1922
FIELD("SplitEn:", 52, 53),
usr.sbin/cxgbetool/cxgbetool.c
1927
FIELD("PackOffset:", 16, 47),
usr.sbin/cxgbetool/cxgbetool.c
1928
FIELD("CIDX:", 8, 15),
usr.sbin/cxgbetool/cxgbetool.c
1929
FIELD("PIDX:", 0, 7),
usr.sbin/cxgbetool/cxgbetool.c
1934
FIELD("SplitLenMode:", 87, 88),
usr.sbin/cxgbetool/cxgbetool.c
1936
FIELD("TPHint:", 84, 85),
usr.sbin/cxgbetool/cxgbetool.c
1939
FIELD("DCA_ST:", 71, 81),
usr.sbin/cxgbetool/cxgbetool.c
1940
FIELD("EQid:", 54, 70),
usr.sbin/cxgbetool/cxgbetool.c
1941
FIELD("SplitEn:", 52, 53),
usr.sbin/cxgbetool/cxgbetool.c
1949
FIELD("PackOffset:", 20, 39),
usr.sbin/cxgbetool/cxgbetool.c
1950
FIELD("CIDX:", 8, 15),
usr.sbin/cxgbetool/cxgbetool.c
1951
FIELD("PIDX:", 0, 7),
usr.sbin/cxgbetool/cxgbetool.c
1956
FIELD("CngTPMode:", 19, 20),
usr.sbin/cxgbetool/cxgbetool.c
1988
FIELD("PCIeDataChannel:", 174, 175),
usr.sbin/cxgbetool/cxgbetool.c
1990
FIELD("DCACPUID:", 168, 172),
usr.sbin/cxgbetool/cxgbetool.c
1992
FIELD("WRLength:", 162, 166),
usr.sbin/cxgbetool/cxgbetool.c
1999
FIELD("uPToken:", 133, 152),
usr.sbin/cxgbetool/cxgbetool.c
2002
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
2004
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
2005
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
2008
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
2009
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
2011
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
2022
FIELD("PCIeDataChannel:", 174, 175),
usr.sbin/cxgbetool/cxgbetool.c
2024
FIELD("DCACPUID:", 168, 172),
usr.sbin/cxgbetool/cxgbetool.c
2032
FIELD("MaxuPFLCredits:", 144, 151),
usr.sbin/cxgbetool/cxgbetool.c
2033
FIELD("FLMcontextID:", 133, 143),
usr.sbin/cxgbetool/cxgbetool.c
2036
FIELD("uPFLCredits:", 123, 130),
usr.sbin/cxgbetool/cxgbetool.c
2038
FIELD("FID:", 111, 121),
usr.sbin/cxgbetool/cxgbetool.c
2039
FIELD("HostFCMode:", 109, 110),
usr.sbin/cxgbetool/cxgbetool.c
2042
FIELD("CIDX:", 89, 104),
usr.sbin/cxgbetool/cxgbetool.c
2043
FIELD("PIDX:", 73, 88),
usr.sbin/cxgbetool/cxgbetool.c
2045
FIELD("QueueSize:", 2, 17),
usr.sbin/cxgbetool/cxgbetool.c
2058
FIELD("PCIeChannel:", 137, 138),
usr.sbin/cxgbetool/cxgbetool.c
2062
FIELD("DCACPUID:", 129, 133),
usr.sbin/cxgbetool/cxgbetool.c
2064
FIELD("UpdateDelivery:", 126, 127),
usr.sbin/cxgbetool/cxgbetool.c
2066
FIELD("InterruptIDX:", 114, 124),
usr.sbin/cxgbetool/cxgbetool.c
2069
FIELD("RxIntCounter:", 106, 111),
usr.sbin/cxgbetool/cxgbetool.c
2070
FIELD("RxIntCounterThreshold:", 104, 105),
usr.sbin/cxgbetool/cxgbetool.c
2073
FIELD("PIDX:", 32, 47),
usr.sbin/cxgbetool/cxgbetool.c
2074
FIELD("CIDX:", 16, 31),
usr.sbin/cxgbetool/cxgbetool.c
2085
FIELD("DCACPUID:", 72, 76),
usr.sbin/cxgbetool/cxgbetool.c
2087
FIELD("EQid:", 54, 70),
usr.sbin/cxgbetool/cxgbetool.c
2088
FIELD("SplitEn:", 52, 53),
usr.sbin/cxgbetool/cxgbetool.c
2092
FIELD("PackOffset:", 16, 47),
usr.sbin/cxgbetool/cxgbetool.c
2093
FIELD("CIDX:", 8, 15),
usr.sbin/cxgbetool/cxgbetool.c
2094
FIELD("PIDX:", 0, 7),
usr.sbin/pmc/display.cc
377
type = FIELD::INTEGER;
usr.sbin/pmc/display.cc
383
type = FIELD::FLOAT;
usr.sbin/pmc/display.cc
389
type = FIELD::STRING;
usr.sbin/pmc/display.cc
396
type = FIELD::PERCENT;
usr.sbin/pmc/display.cc
398
type = FIELD::SAMPLE;
usr.sbin/pmc/display.cc
405
type = FIELD::DSAMPLE;
usr.sbin/pmc/display.cc
416
case FIELD::STRING:
usr.sbin/pmc/display.cc
418
case FIELD::FLOAT:
usr.sbin/pmc/display.cc
420
case FIELD::INTEGER: [[fallthrough]];
usr.sbin/pmc/display.cc
421
case FIELD::SAMPLE:
usr.sbin/pmc/display.cc
423
case FIELD::DSAMPLE:
usr.sbin/pmc/display.cc
425
case FIELD::PERCENT:
usr.sbin/pmc/display.cc
435
case FIELD::STRING:
usr.sbin/pmc/display.cc
437
case FIELD::FLOAT:
usr.sbin/pmc/display.cc
439
case FIELD::INTEGER: [[fallthrough]];
usr.sbin/pmc/display.cc
440
case FIELD::SAMPLE:
usr.sbin/pmc/display.cc
442
case FIELD::DSAMPLE:
usr.sbin/pmc/display.cc
444
case FIELD::PERCENT:
usr.sbin/pmc/display.cc
460
case FIELD::STRING:
usr.sbin/pmc/display.cc
462
case FIELD::FLOAT:
usr.sbin/pmc/display.cc
464
case FIELD::INTEGER:
usr.sbin/pmc/display.cc
466
case FIELD::SAMPLE:
usr.sbin/pmc/display.cc
468
case FIELD::DSAMPLE:
usr.sbin/pmc/display.cc
471
case FIELD::PERCENT:
usr.sbin/pmc/display.hh
83
FIELD type;