Symbol: P
crypto/libressl/crypto/bf/bf_enc.c
155
p=key->P;
crypto/libressl/crypto/bf/bf_enc.c
78
p=key->P;
crypto/libressl/crypto/bf/bf_locl.h
193
#define BF_ENC(LL,R,S,P) ( \
crypto/libressl/crypto/bf/bf_locl.h
194
LL^=P, \
crypto/libressl/crypto/bf/bf_locl.h
210
#define BF_ENC(LL,R,S,P) ( \
crypto/libressl/crypto/bf/bf_locl.h
211
LL^=P, \
crypto/libressl/crypto/bf/bf_skey.c
74
p=key->P;
crypto/libressl/crypto/ec/ec_curve.c
3320
EC_POINT *P = NULL;
crypto/libressl/crypto/ec/ec_curve.c
3368
if ((P = EC_POINT_new(group)) == NULL) {
crypto/libressl/crypto/ec/ec_curve.c
3377
if (!EC_POINT_set_affine_coordinates(group, P, x, y, ctx)) {
crypto/libressl/crypto/ec/ec_curve.c
3386
if (!EC_GROUP_set_generator(group, P, order, x)) {
crypto/libressl/crypto/ec/ec_curve.c
3402
EC_POINT_free(P);
crypto/libressl/crypto/ec/ecp_smpl.c
1475
#define EC_POINT_BN_set_flags(P, flags) do { \
crypto/libressl/crypto/ec/ecp_smpl.c
1476
BN_set_flags(&(P)->X, (flags)); \
crypto/libressl/crypto/ec/ecp_smpl.c
1477
BN_set_flags(&(P)->Y, (flags)); \
crypto/libressl/crypto/ec/ecp_smpl.c
1478
BN_set_flags(&(P)->Z, (flags)); \
crypto/libressl/include/openssl/blowfish.h
88
BF_LONG P[BF_ROUNDS+2];
lib/libc/db/hash/hash_buf.c
77
#define BUF_INSERT(B, P) { \
lib/libc/db/hash/hash_buf.c
78
(B)->next = (P)->next; \
lib/libc/db/hash/hash_buf.c
79
(B)->prev = (P); \
lib/libc/db/hash/hash_buf.c
80
(P)->next = (B); \
lib/libc/db/hash/hash_page.c
81
#define PAGE_INIT(P) { \
lib/libc/db/hash/hash_page.c
82
((uint16_t *)(P))[0] = 0; \
lib/libc/db/hash/hash_page.c
83
((uint16_t *)(P))[1] = hashp->BSIZE - 3 * sizeof(uint16_t); \
lib/libc/db/hash/hash_page.c
84
((uint16_t *)(P))[2] = hashp->BSIZE; \
lib/libc/db/hash/page.h
77
#define FREESPACE(P) ((P)[(P)[0]+1])
lib/libc/db/hash/page.h
78
#define OFFSET(P) ((P)[(P)[0]+2])
lib/libc/db/hash/page.h
79
#define PAIRFITS(P,K,D) \
lib/libc/db/hash/page.h
80
(((P)[2] >= REAL_KEY) && \
lib/libc/db/hash/page.h
81
(PAIRSIZE((K),(D)) + OVFLSIZE) <= FREESPACE((P)))
lib/libcrypt/blowfish.c
102
u_int32_t *p = c->P;
lib/libcrypt/blowfish.c
437
c->P[i] = c->P[i] ^ temp;
lib/libcrypt/blowfish.c
446
c->P[i] = datal;
lib/libcrypt/blowfish.c
447
c->P[i + 1] = datar;
lib/libcrypt/blowfish.c
476
c->P[i] = c->P[i] ^ temp;
lib/libcrypt/blowfish.c
487
c->P[i] = datal;
lib/libcrypt/blowfish.c
488
c->P[i + 1] = datar;
lib/libcrypt/blowfish.c
77
u_int32_t *p = c->P;
lib/libcrypt/blowfish.h
56
u_int32_t P[BLF_N + 2]; /* Subkeys */
lib/libexecinfo/private_libelf.h
1079
#define FREE(P) do { \
lib/libexecinfo/private_libelf.h
1080
if (P) \
lib/libexecinfo/private_libelf.h
1081
free(P); \
lib/libexecinfo/private_libelf.h
1322
#define READ_BYTE(P,X) do { \
lib/libexecinfo/private_libelf.h
1324
(const unsigned char *) (P); \
lib/libexecinfo/private_libelf.h
1326
(P) = (P) + 1; \
lib/libexecinfo/private_libelf.h
1328
#define READ_HALF(P,X) do { \
lib/libexecinfo/private_libelf.h
1332
(const unsigned char *) (P); \
lib/libexecinfo/private_libelf.h
1335
(P) = (P) + 2; \
lib/libexecinfo/private_libelf.h
1338
#define _READ_WORD(P,X,T) do { \
lib/libexecinfo/private_libelf.h
1342
(const unsigned char *) (P); \
lib/libexecinfo/private_libelf.h
1347
(P) = (P) + 4; \
lib/libexecinfo/private_libelf.h
1350
#define READ_SWORD(P,X) _READ_WORD(P, X, /*Elf32_Sword*/ Elf64_Sword)
lib/libexecinfo/private_libelf.h
1351
#define READ_WORD(P,X) _READ_WORD(P, X, /*Elf32_Word*/ Elf64_Word)
lib/libexecinfo/private_libelf.h
1352
#define _READ_WORD64(P,X,T) do { \
lib/libexecinfo/private_libelf.h
1356
(const unsigned char *) (P); \
lib/libexecinfo/private_libelf.h
1365
(P) = (P) + 8; \
lib/libexecinfo/private_libelf.h
1368
#define READ_ADDR64(P,X) _READ_WORD64(P, X, Elf64_Addr)
lib/libexecinfo/private_libelf.h
1369
#define READ_LWORD(P,X) _READ_WORD64(P, X, Elf64_Lword)
lib/libexecinfo/private_libelf.h
1370
#define READ_OFF64(P,X) _READ_WORD64(P, X, Elf64_Off)
lib/libexecinfo/private_libelf.h
1371
#define READ_SXWORD(P,X) _READ_WORD64(P, X, Elf64_Sxword)
lib/libexecinfo/private_libelf.h
1372
#define READ_XWORD(P,X) _READ_WORD64(P, X, Elf64_Xword)
lib/libexecinfo/private_libelf.h
1373
#define READ_IDENT(P,X) do { \
lib/libexecinfo/private_libelf.h
1374
(void) memcpy((X), (P), sizeof((X))); \
lib/libexecinfo/private_libelf.h
1375
(P) = (P) + EI_NIDENT; \
lib/libexecinfo/private_libelf.h
2737
#define LIBELF_IS_ELF(P) ((P)[EI_MAG0] == ELFMAG0 && \
lib/libexecinfo/private_libelf.h
2738
(P)[EI_MAG1] == ELFMAG1 && (P)[EI_MAG2] == ELFMAG2 && \
lib/libexecinfo/private_libelf.h
2739
(P)[EI_MAG3] == ELFMAG3)
lib/libssh/openbsd-compat/blf.h
52
u_int32_t P[BLF_N + 2]; /* Subkeys */
lib/libssh/openbsd-compat/blowfish.c
101
u_int32_t *p = c->P;
lib/libssh/openbsd-compat/blowfish.c
434
c->P[i] = c->P[i] ^ temp;
lib/libssh/openbsd-compat/blowfish.c
443
c->P[i] = datal;
lib/libssh/openbsd-compat/blowfish.c
444
c->P[i + 1] = datar;
lib/libssh/openbsd-compat/blowfish.c
473
c->P[i] = c->P[i] ^ temp;
lib/libssh/openbsd-compat/blowfish.c
484
c->P[i] = datal;
lib/libssh/openbsd-compat/blowfish.c
485
c->P[i + 1] = datar;
lib/libssh/openbsd-compat/blowfish.c
76
u_int32_t *p = c->P;
lib/libutil/auth.c
43
static properties P;
lib/libutil/auth.c
50
if (!P) {
lib/libutil/auth.c
55
P = properties_read(fd);
lib/libutil/auth.c
57
if (!P) {
lib/libutil/auth.c
68
if (!P && initauthconf(_PATH_AUTHCONF))
lib/libutil/auth.c
71
return property_find(P, name);
libexec/ftpd/ftpcmd.y
116
L N P R S T
libexec/ftpd/ftpcmd.y
1490
return (P);
libexec/ftpd/ftpcmd.y
956
| P
sbin/growfs/debug.h
112
#define DBG_OPEN(P)
sbin/growfs/debug.h
64
#define DBG_OPEN(P) dbg_open((P))
sys/bus/cam/scsi/scsi_all.c
130
#define ALL (D | T | L | P | W | R | O | M | A | E | B | K | V | F | S | C)
sys/bus/cam/scsi/scsi_all.c
212
{ 0x08, P, "RECEIVE" },
sys/bus/cam/scsi/scsi_all.c
219
{ 0x0A, P, "SEND(6)" },
sys/bus/cam/scsi/scsi_all.c
249
{ 0x15, ALL & ~(P | R | B | F), "MODE SELECT(6)" },
sys/bus/cam/scsi/scsi_all.c
259
{ 0x18, D | T | L | P | W | R | O | K | S, "COPY" },
sys/bus/cam/scsi/scsi_all.c
263
{ 0x1A, ALL & ~(P | R | B | F), "MODE SENSE(6)" },
sys/bus/cam/scsi/scsi_all.c
353
{ 0x39, D | T | L | P | W | R | O | K | S, "COMPARE" },
sys/bus/cam/scsi/scsi_all.c
355
{ 0x3A, D | T | L | P | W | R | O | K | S, "COPY AND VERIFY" },
sys/bus/cam/scsi/scsi_all.c
367
{ 0x40, D | T | L | P | W | R | O | M | S | C, "CHANGE DEFINITION" },
sys/bus/cam/scsi/scsi_all.c
411
{ 0x55, ALL & ~(P), "MODE SELECT(10)" },
sys/bus/cam/scsi/scsi_all.c
424
{ 0x5A, ALL & ~(P), "MODE SENSE(10)" },
sys/bus/cam/scsi/scsi_all.c
450
{ 0x83, D | T | L | P | W | O | K | V, "EXTENDED COPY" },
sys/bus/cam/scsi/scsi_all.c
452
{ 0x84, D | T | L | P | W | O | K | V, "RECEIVE COPY RESULTS" },
sys/bus/cam/scsi/scsi_all.c
517
{ 0xA3, ALL & ~(P | R | F), "MAINTENANCE (IN)" },
sys/bus/cam/scsi/scsi_all.c
521
{ 0xA4, ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
sys/crypto/blowfish/bf_enc.c
123
p = key->P;
sys/crypto/blowfish/bf_enc.c
83
p = key->P;
sys/crypto/blowfish/bf_locl.h
168
#define BF_ENC(LL,R,S,P) \
sys/crypto/blowfish/bf_locl.h
169
LL^=P; \
sys/crypto/blowfish/bf_skey.c
78
p = key->P;
sys/crypto/blowfish/blowfish.h
79
BF_LONG P[BF_ROUNDS+2];
sys/dev/drm/i915/intel_overlay.c
1453
P(OBUF_0Y);
sys/dev/drm/i915/intel_overlay.c
1454
P(OBUF_1Y);
sys/dev/drm/i915/intel_overlay.c
1455
P(OBUF_0U);
sys/dev/drm/i915/intel_overlay.c
1456
P(OBUF_0V);
sys/dev/drm/i915/intel_overlay.c
1457
P(OBUF_1U);
sys/dev/drm/i915/intel_overlay.c
1458
P(OBUF_1V);
sys/dev/drm/i915/intel_overlay.c
1459
P(OSTRIDE);
sys/dev/drm/i915/intel_overlay.c
1460
P(YRGB_VPH);
sys/dev/drm/i915/intel_overlay.c
1461
P(UV_VPH);
sys/dev/drm/i915/intel_overlay.c
1462
P(HORZ_PH);
sys/dev/drm/i915/intel_overlay.c
1463
P(INIT_PHS);
sys/dev/drm/i915/intel_overlay.c
1464
P(DWINPOS);
sys/dev/drm/i915/intel_overlay.c
1465
P(DWINSZ);
sys/dev/drm/i915/intel_overlay.c
1466
P(SWIDTH);
sys/dev/drm/i915/intel_overlay.c
1467
P(SWIDTHSW);
sys/dev/drm/i915/intel_overlay.c
1468
P(SHEIGHT);
sys/dev/drm/i915/intel_overlay.c
1469
P(YRGBSCALE);
sys/dev/drm/i915/intel_overlay.c
1470
P(UVSCALE);
sys/dev/drm/i915/intel_overlay.c
1471
P(OCLRC0);
sys/dev/drm/i915/intel_overlay.c
1472
P(OCLRC1);
sys/dev/drm/i915/intel_overlay.c
1473
P(DCLRKV);
sys/dev/drm/i915/intel_overlay.c
1474
P(DCLRKM);
sys/dev/drm/i915/intel_overlay.c
1475
P(SCLRKVH);
sys/dev/drm/i915/intel_overlay.c
1476
P(SCLRKVL);
sys/dev/drm/i915/intel_overlay.c
1477
P(SCLRKEN);
sys/dev/drm/i915/intel_overlay.c
1478
P(OCONFIG);
sys/dev/drm/i915/intel_overlay.c
1479
P(OCMD);
sys/dev/drm/i915/intel_overlay.c
1480
P(OSTART_0Y);
sys/dev/drm/i915/intel_overlay.c
1481
P(OSTART_1Y);
sys/dev/drm/i915/intel_overlay.c
1482
P(OSTART_0U);
sys/dev/drm/i915/intel_overlay.c
1483
P(OSTART_0V);
sys/dev/drm/i915/intel_overlay.c
1484
P(OSTART_1U);
sys/dev/drm/i915/intel_overlay.c
1485
P(OSTART_1V);
sys/dev/drm/i915/intel_overlay.c
1486
P(OTILEOFF_0Y);
sys/dev/drm/i915/intel_overlay.c
1487
P(OTILEOFF_1Y);
sys/dev/drm/i915/intel_overlay.c
1488
P(OTILEOFF_0U);
sys/dev/drm/i915/intel_overlay.c
1489
P(OTILEOFF_0V);
sys/dev/drm/i915/intel_overlay.c
1490
P(OTILEOFF_1U);
sys/dev/drm/i915/intel_overlay.c
1491
P(OTILEOFF_1V);
sys/dev/drm/i915/intel_overlay.c
1492
P(FASTHSCALE);
sys/dev/drm/i915/intel_overlay.c
1493
P(UVSCALEV);
sys/dev/netif/bwn/bwn/if_bwnvar.h
140
#define BWN_LPD(L, P, D) (((L) << 2) | ((P) << 1) | ((D) << 0))
sys/dev/netif/ix/ixgbe_type.h
2858
#define IXGBE_PVFCTRL(P) (0x00300 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2859
#define IXGBE_PVFSTATUS(P) (0x00008 + (0 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2860
#define IXGBE_PVFLINKS(P) (0x042A4 + (0 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2861
#define IXGBE_PVFRTIMER(P) (0x00048 + (0 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2862
#define IXGBE_PVFMAILBOX(P) (0x04C00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2863
#define IXGBE_PVFRXMEMWRAP(P) (0x03190 + (0 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2864
#define IXGBE_PVTEICR(P) (0x00B00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2865
#define IXGBE_PVTEICS(P) (0x00C00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2866
#define IXGBE_PVTEIMS(P) (0x00D00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2867
#define IXGBE_PVTEIMC(P) (0x00E00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2868
#define IXGBE_PVTEIAC(P) (0x00F00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2869
#define IXGBE_PVTEIAM(P) (0x04D00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2870
#define IXGBE_PVTEITR(P) (((P) < 24) ? (0x00820 + ((P) * 4)) : \
sys/dev/netif/ix/ixgbe_type.h
2871
(0x012300 + (((P) - 24) * 4)))
sys/dev/netif/ix/ixgbe_type.h
2872
#define IXGBE_PVTIVAR(P) (0x12500 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2873
#define IXGBE_PVTIVAR_MISC(P) (0x04E00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2874
#define IXGBE_PVTRSCINT(P) (0x12000 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2875
#define IXGBE_VFPBACL(P) (0x110C8 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2876
#define IXGBE_PVFRDBAL(P) ((P < 64) ? (0x01000 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2877
: (0x0D000 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2878
#define IXGBE_PVFRDBAH(P) ((P < 64) ? (0x01004 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2879
: (0x0D004 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2880
#define IXGBE_PVFRDLEN(P) ((P < 64) ? (0x01008 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2881
: (0x0D008 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2882
#define IXGBE_PVFRDH(P) ((P < 64) ? (0x01010 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2883
: (0x0D010 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2884
#define IXGBE_PVFRDT(P) ((P < 64) ? (0x01018 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2885
: (0x0D018 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2886
#define IXGBE_PVFRXDCTL(P) ((P < 64) ? (0x01028 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2887
: (0x0D028 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2888
#define IXGBE_PVFSRRCTL(P) ((P < 64) ? (0x01014 + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2889
: (0x0D014 + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2890
#define IXGBE_PVFPSRTYPE(P) (0x0EA00 + (4 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2891
#define IXGBE_PVFTDBAL(P) (0x06000 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2892
#define IXGBE_PVFTDBAH(P) (0x06004 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2893
#define IXGBE_PVFTDLEN(P) (0x06008 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2894
#define IXGBE_PVFTDH(P) (0x06010 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2895
#define IXGBE_PVFTDT(P) (0x06018 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2896
#define IXGBE_PVFTXDCTL(P) (0x06028 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2897
#define IXGBE_PVFTDWBAL(P) (0x06038 + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2898
#define IXGBE_PVFTDWBAH(P) (0x0603C + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
2899
#define IXGBE_PVFDCA_RXCTRL(P) (((P) < 64) ? (0x0100C + (0x40 * (P))) \
sys/dev/netif/ix/ixgbe_type.h
2900
: (0x0D00C + (0x40 * ((P) - 64))))
sys/dev/netif/ix/ixgbe_type.h
2901
#define IXGBE_PVFDCA_TXCTRL(P) (0x0600C + (0x40 * (P)))
sys/dev/netif/ix/ixgbe_type.h
4313
#define IXGBE_KRM_PORT_CAR_GEN_CTRL(P) ((P) ? 0x8010 : 0x4010)
sys/dev/netif/ix/ixgbe_type.h
4314
#define IXGBE_KRM_LINK_S1(P) ((P) ? 0x8200 : 0x4200)
sys/dev/netif/ix/ixgbe_type.h
4315
#define IXGBE_KRM_LINK_CTRL_1(P) ((P) ? 0x820C : 0x420C)
sys/dev/netif/ix/ixgbe_type.h
4316
#define IXGBE_KRM_AN_CNTL_1(P) ((P) ? 0x822C : 0x422C)
sys/dev/netif/ix/ixgbe_type.h
4317
#define IXGBE_KRM_AN_CNTL_4(P) ((P) ? 0x8238 : 0x4238)
sys/dev/netif/ix/ixgbe_type.h
4318
#define IXGBE_KRM_AN_CNTL_8(P) ((P) ? 0x8248 : 0x4248)
sys/dev/netif/ix/ixgbe_type.h
4319
#define IXGBE_KRM_PCS_KX_AN(P) ((P) ? 0x9918 : 0x5918)
sys/dev/netif/ix/ixgbe_type.h
4320
#define IXGBE_KRM_PCS_KX_AN_LP(P) ((P) ? 0x991C : 0x591C)
sys/dev/netif/ix/ixgbe_type.h
4321
#define IXGBE_KRM_SGMII_CTRL(P) ((P) ? 0x82A0 : 0x42A0)
sys/dev/netif/ix/ixgbe_type.h
4322
#define IXGBE_KRM_LP_BASE_PAGE_HIGH(P) ((P) ? 0x836C : 0x436C)
sys/dev/netif/ix/ixgbe_type.h
4323
#define IXGBE_KRM_DSP_TXFFE_STATE_4(P) ((P) ? 0x8634 : 0x4634)
sys/dev/netif/ix/ixgbe_type.h
4324
#define IXGBE_KRM_DSP_TXFFE_STATE_5(P) ((P) ? 0x8638 : 0x4638)
sys/dev/netif/ix/ixgbe_type.h
4325
#define IXGBE_KRM_RX_TRN_LINKUP_CTRL(P) ((P) ? 0x8B00 : 0x4B00)
sys/dev/netif/ix/ixgbe_type.h
4326
#define IXGBE_KRM_PMD_DFX_BURNIN(P) ((P) ? 0x8E00 : 0x4E00)
sys/dev/netif/ix/ixgbe_type.h
4327
#define IXGBE_KRM_PMD_FLX_MASK_ST20(P) ((P) ? 0x9054 : 0x5054)
sys/dev/netif/ix/ixgbe_type.h
4328
#define IXGBE_KRM_TX_COEFF_CTRL_1(P) ((P) ? 0x9520 : 0x5520)
sys/dev/netif/ix/ixgbe_type.h
4329
#define IXGBE_KRM_RX_ANA_CTL(P) ((P) ? 0x9A00 : 0x5A00)
sys/kern/kern_sched.c
94
#define p4prio_to_rtpprio(P) (RTP_PRIO_MAX - (P))
sys/kern/kern_sched.c
95
#define rtpprio_to_p4prio(P) (RTP_PRIO_MAX - (P))
sys/netgraph/rfc1490/ng_rfc1490.c
213
#define OUICMP(P,A,B,C) ((P)[0]==(A) && (P)[1]==(B) && (P)[2]==(C))
sys/netgraph7/rfc1490/ng_rfc1490.c
305
#define OUICMP(P,A,B,C) ((P)[0]==(A) && (P)[1]==(B) && (P)[2]==(C))
sys/sys/rtprio.h
58
#define RTP_PRIO_BASE(P) ((P) & ~RTP_PRIO_FIFO_BIT)
sys/sys/rtprio.h
59
#define RTP_PRIO_IS_REALTIME(P) (RTP_PRIO_BASE(P) == RTP_PRIO_REALTIME)
sys/sys/rtprio.h
60
#define RTP_PRIO_NEED_RR(P) ((P) != RTP_PRIO_FIFO)
usr.bin/lam/lam.c
108
ip->pad = P;
usr.bin/lam/lam.c
112
ip->format = ((P || F) ? (ip-1)->format : "%s");
usr.bin/lam/lam.c
137
P = (*c == 'P' ? 1 : 0);
usr.bin/lam/lam.c
96
int P, S, F, T;
usr.bin/lam/lam.c
98
P = S = F = T = 0; /* capitalized options */
usr.bin/mail/cmdtab.c
57
{ "delete", delete, W|P|MSGLIST, 0, MMNDEL },
usr.bin/mail/cmdtab.c
60
{ "undelete", undelete_messages, P|MSGLIST, MDELETED,MMNDEL },
usr.bin/mail/lex.c
356
switch (com->c_argtype & ~(F|P|I|M|T|W|R)) {
usr.bin/mail/lex.c
451
if (value("autoprint") != NULL && com->c_argtype & P)
usr.sbin/ppp/libradius/radlib.c
1507
u_char *P;
usr.sbin/ppp/libradius/radlib.c
1526
P = alloca(Clen); /* We derive our plaintext */
usr.sbin/ppp/libradius/radlib.c
1539
P[Ppos++] = C[i] ^ b[i];
usr.sbin/ppp/libradius/radlib.c
1555
*len = *P;
usr.sbin/ppp/libradius/radlib.c
1571
memcpy(demangled, P + 1, *len);
usr.sbin/ppp/radius.c
153
u_char *P;
usr.sbin/ppp/radius.c
176
P = alloca(Clen); /* We derive our plaintext */
usr.sbin/ppp/radius.c
189
P[Ppos++] = C[i] ^ b[i];
usr.sbin/ppp/radius.c
205
*len = *P;
usr.sbin/ppp/radius.c
214
memcpy(*buf, P + 1, *len);