crypto/libressl/crypto/asn1/t_x509.c
378
int y = 0, M = 0, d = 0, h = 0, m = 0, s = 0;
crypto/libressl/crypto/asn1/t_x509.c
394
M = (v[4] - '0') * 10 + (v[5] - '0');
crypto/libressl/crypto/asn1/t_x509.c
395
if ((M > 12) || (M < 1))
crypto/libressl/crypto/asn1/t_x509.c
416
mon[M - 1], d, h, m, s, f_len, f, y, (gmt) ? " GMT" : "") <= 0)
crypto/libressl/crypto/asn1/t_x509.c
432
int y = 0, M = 0, d = 0, h = 0, m = 0, s = 0;
crypto/libressl/crypto/asn1/t_x509.c
447
M = (v[2] - '0') * 10 + (v[3] - '0');
crypto/libressl/crypto/asn1/t_x509.c
448
if ((M > 12) || (M < 1))
crypto/libressl/crypto/asn1/t_x509.c
459
mon[M - 1], d, h, m, s, y + 1900, (gmt) ? " GMT" : "") <= 0)
crypto/libressl/crypto/bn/bn_gcd.c
255
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
274
if ((M = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
408
if (!BN_sub(M, A, B))
crypto/libressl/crypto/bn/bn_gcd.c
418
if (!BN_sub(M, A, B))
crypto/libressl/crypto/bn/bn_gcd.c
422
if (!BN_sub(M, A, T))
crypto/libressl/crypto/bn/bn_gcd.c
435
if (!BN_sub(M, M, B))
crypto/libressl/crypto/bn/bn_gcd.c
440
if (!BN_div_nonct(D, M, A, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
453
B = M;
crypto/libressl/crypto/bn/bn_gcd.c
499
M = Y; /* keep the BIGNUM object, the value does not matter */
crypto/libressl/crypto/bn/bn_gcd.c
570
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
591
if ((M = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
650
if (!BN_div_ct(D, M, pA, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
662
B = M;
crypto/libressl/crypto/bn/bn_gcd.c
689
M = Y; /* keep the BIGNUM object, the value does not matter */
crypto/libressl/crypto/bn/bn_gcd.c
740
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
crypto/libressl/crypto/bn/bn_gcd.c
765
if ((M = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
817
if (!BN_div_ct(D, M, pA, B, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
829
B = M;
crypto/libressl/crypto/bn/bn_gcd.c
856
M = Y; /* keep the BIGNUM object, the value does not matter */
crypto/libressl/crypto/evp/e_aes.c
102
int L, M; /* L and M parameters from RFC3610 */
crypto/libressl/crypto/evp/e_aes.c
1964
cctx->M = 12;
crypto/libressl/crypto/evp/e_aes.c
1987
cctx->M = arg;
crypto/libressl/crypto/evp/e_aes.c
2030
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/evp/e_aes.c
2038
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/evp/e_aes.c
2097
if (CRYPTO_ccm128_tag(ccm, tag, cctx->M)) {
crypto/libressl/crypto/evp/e_aes.c
2098
if (!memcmp(tag, ctx->buf, cctx->M))
crypto/libressl/crypto/evp/e_aes.c
343
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
crypto/libressl/crypto/gost/gostr341194.c
133
hash_step(GOSTR341194_CTX *c, unsigned char *H, const unsigned char *M)
crypto/libressl/crypto/gost/gostr341194.c
139
xor_blocks(W, H, M, 32);
crypto/libressl/crypto/gost/gostr341194.c
147
circle_xor8(M, V);
crypto/libressl/crypto/gost/gostr341194.c
193
xor_blocks(S, S, M, 32);
crypto/libressl/crypto/gost/streebog.c
1241
STREEBOG_LONG64 M[8], l;
crypto/libressl/crypto/gost/streebog.c
1246
M[i] = PULL64(in[i*8]);
crypto/libressl/crypto/gost/streebog.c
1248
gN(ctx->h, M, ctx->N);
crypto/libressl/crypto/gost/streebog.c
1262
ctx->Sigma[0] += M[0];
crypto/libressl/crypto/gost/streebog.c
1264
if (ctx->Sigma[i-1] != M[i-1])
crypto/libressl/crypto/gost/streebog.c
1265
CF = (ctx->Sigma[i-1] < M[i-1]);
crypto/libressl/crypto/gost/streebog.c
1266
ctx->Sigma[i] += M[i] + CF;
crypto/libressl/crypto/modes/ccm128.c
435
{ unsigned int M = (ctx->nonce.c[0]>>3)&7; /* the M parameter */
crypto/libressl/crypto/modes/ccm128.c
437
M *= 2; M += 2;
crypto/libressl/crypto/modes/ccm128.c
438
if (len != M) return 0;
crypto/libressl/crypto/modes/ccm128.c
439
memcpy(tag,ctx->cmac.c,M);
crypto/libressl/crypto/modes/ccm128.c
440
return M;
crypto/libressl/crypto/modes/ccm128.c
64
unsigned int M,unsigned int L,void *key,block128_f block)
crypto/libressl/crypto/modes/ccm128.c
67
ctx->nonce.c[0] = ((u8)(L-1)&7) | (u8)(((M-2)/2)&7)<<3;
crypto/libressl/crypto/modes/gcm128.c
607
u64 M = (u64)(X>>(8*sizeof(long)-1));
crypto/libressl/crypto/modes/gcm128.c
608
Z.hi ^= V.hi&M;
crypto/libressl/crypto/modes/gcm128.c
609
Z.lo ^= V.lo&M;
crypto/libressl/include/openssl/modes.h
120
unsigned int M, unsigned int L, void *key,block128_f block);
crypto/openssh/sntrup761.c
1003
for (i = 0;i < p;++i) M[i] = (q+2)/3;
crypto/openssh/sntrup761.c
1004
Encode(s,R,M,p);
crypto/openssh/sntrup761.c
1009
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
1012
for (i = 0;i < p;++i) M[i] = (q+2)/3;
crypto/openssh/sntrup761.c
1013
Decode(R,s,M,p);
crypto/openssh/sntrup761.c
289
static void Decode(uint16 *out,const unsigned char *S,const uint16 *M,long long len)
crypto/openssh/sntrup761.c
292
if (M[0] == 1)
crypto/openssh/sntrup761.c
294
else if (M[0] <= 256)
crypto/openssh/sntrup761.c
295
*out = uint32_mod_uint14(S[0],M[0]);
crypto/openssh/sntrup761.c
297
*out = uint32_mod_uint14(S[0]+(((uint16)S[1])<<8),M[0]);
crypto/openssh/sntrup761.c
306
uint32 m = M[i]*(uint32) M[i+1];
crypto/openssh/sntrup761.c
324
M2[i/2] = M[i];
crypto/openssh/sntrup761.c
331
uint32_divmod_uint14(&r1,&r0,r,M[i]);
crypto/openssh/sntrup761.c
332
r1 = uint32_mod_uint14(r1,M[i+1]); /* only needed for invalid inputs */
crypto/openssh/sntrup761.c
354
static void Encode(unsigned char *out,const uint16 *R,const uint16 *M,long long len)
crypto/openssh/sntrup761.c
358
uint16 m = M[0];
crypto/openssh/sntrup761.c
370
uint32 m0 = M[i];
crypto/openssh/sntrup761.c
372
uint32 m = M[i+1]*m0;
crypto/openssh/sntrup761.c
383
M2[i/2] = M[i];
crypto/openssh/sntrup761.c
975
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
979
for (i = 0;i < p;++i) M[i] = q;
crypto/openssh/sntrup761.c
980
Encode(s,R,M,p);
crypto/openssh/sntrup761.c
985
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
988
for (i = 0;i < p;++i) M[i] = q;
crypto/openssh/sntrup761.c
989
Decode(R,s,M,p);
crypto/openssh/sntrup761.c
999
uint16 R[p],M[p];
lib/libexecinfo/private_libelf.h
2425
#define GET_SHDR_MEMBER(M) (/* (ec == ELFCLASS32) ? scn->s_shdr.s_shdr32.M :*/ \
lib/libexecinfo/private_libelf.h
2426
scn->s_shdr.s_shdr64.M)
libexec/getty/init.c
58
{ "er", M(VERASE), NULL }, /* erase character */
libexec/getty/init.c
59
{ "kl", M(VKILL), NULL }, /* kill character */
libexec/getty/init.c
60
{ "et", M(VEOF), NULL }, /* eof chatacter (eot) */
libexec/getty/init.c
67
{ "in", M(VINTR), NULL }, /* interrupt char */
libexec/getty/init.c
68
{ "qu", M(VQUIT), NULL }, /* quit char */
libexec/getty/init.c
69
{ "xn", M(VSTART), NULL }, /* XON (start) char */
libexec/getty/init.c
70
{ "xf", M(VSTOP), NULL }, /* XOFF (stop) char */
libexec/getty/init.c
71
{ "bk", M(VEOL), NULL }, /* brk char (alt \n) */
libexec/getty/init.c
72
{ "su", M(VSUSP), NULL }, /* suspend char */
libexec/getty/init.c
73
{ "ds", M(VDSUSP), NULL }, /* delayed suspend */
libexec/getty/init.c
74
{ "rp", M(VREPRINT), NULL }, /* reprint char */
libexec/getty/init.c
75
{ "fl", M(VDISCARD), NULL }, /* flush output */
libexec/getty/init.c
76
{ "we", M(VWERASE), NULL }, /* word erase */
libexec/getty/init.c
77
{ "ln", M(VLNEXT), NULL }, /* literal next */
sbin/growfs/debug.h
114
#define DBG_DUMP_HEX(F,C,M)
sbin/growfs/debug.h
116
#define DBG_DUMP_CG(F,C,M)
sbin/growfs/debug.h
117
#define DBG_DUMP_CSUM(F,C,M)
sbin/growfs/debug.h
118
#define DBG_DUMP_INO(F,C,M)
sbin/growfs/debug.h
119
#define DBG_DUMP_IBLK(F,C,M,L)
sbin/growfs/debug.h
120
#define DBG_DUMP_INMAP(F,C,M)
sbin/growfs/debug.h
121
#define DBG_DUMP_FRMAP(F,C,M)
sbin/growfs/debug.h
122
#define DBG_DUMP_CLMAP(F,C,M)
sbin/growfs/debug.h
123
#define DBG_DUMP_CLSUM(F,C,M)
sbin/growfs/debug.h
124
#define DBG_DUMP_SPTBL(F,C,M)
sbin/growfs/debug.h
66
#define DBG_DUMP_HEX(F,C,M) dbg_dump_hex((F),(C),(M))
sbin/growfs/debug.h
68
#define DBG_DUMP_CG(F,C,M) dbg_dump_cg((C),(M))
sbin/growfs/debug.h
69
#define DBG_DUMP_CSUM(F,C,M) dbg_dump_csum((C),(M))
sbin/growfs/debug.h
70
#define DBG_DUMP_INO(F,C,M) dbg_dump_ino((F),(C),(M))
sbin/growfs/debug.h
71
#define DBG_DUMP_IBLK(F,C,M,L) dbg_dump_iblk((F),(C),(M),(L))
sbin/growfs/debug.h
72
#define DBG_DUMP_INMAP(F,C,M) dbg_dump_inmap((F),(C),(M))
sbin/growfs/debug.h
73
#define DBG_DUMP_FRMAP(F,C,M) dbg_dump_frmap((F),(C),(M))
sbin/growfs/debug.h
74
#define DBG_DUMP_CLMAP(F,C,M) dbg_dump_clmap((F),(C),(M))
sbin/growfs/debug.h
75
#define DBG_DUMP_CLSUM(F,C,M) dbg_dump_clsum((F),(C),(M))
sbin/growfs/debug.h
76
#define DBG_DUMP_SPTBL(F,C,M) dbg_dump_sptbl((F),(C),(M))
sbin/shutdown/shutdown.c
68
{ 1 H, 30 M },
sbin/shutdown/shutdown.c
69
{ 30 M, 10 M },
sbin/shutdown/shutdown.c
70
{ 20 M, 10 M },
sbin/shutdown/shutdown.c
71
{ 10 M, 5 M },
sbin/shutdown/shutdown.c
72
{ 5 M, 3 M },
sbin/shutdown/shutdown.c
73
{ 2 M, 1 M },
sbin/shutdown/shutdown.c
74
{ 1 M, 30 S },
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
192
{ 0x01, D | W | R | O | M, "REZERO UNIT" },
sys/bus/cam/scsi/scsi_all.c
208
{ 0x07, M, "INITIALIZE ELEMENT STATUS" },
sys/bus/cam/scsi/scsi_all.c
253
{ 0x16, M, "RESERVE ELEMENT(6)" },
sys/bus/cam/scsi/scsi_all.c
257
{ 0x17, M, "RELEASE ELEMENT(6)" },
sys/bus/cam/scsi/scsi_all.c
273
{ 0x1B, M, "OPEN/CLOSE IMPORT/EXPORT ELEMENT" },
sys/bus/cam/scsi/scsi_all.c
279
{ 0x1E, D | T | W | R | O | M | K | F, "PREVENT ALLOW MEDIUM REMOVAL" },
sys/bus/cam/scsi/scsi_all.c
316
{ 0x2B, M, "POSITION TO ELEMENT" },
sys/bus/cam/scsi/scsi_all.c
349
{ 0x37, M, "INITIALIZE ELEMENT STATUS WITH RANGE" },
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
415
{ 0x56, M, "RESERVE ELEMENT(10)" },
sys/bus/cam/scsi/scsi_all.c
419
{ 0x57, M, "RELEASE ELEMENT(10)" },
sys/bus/cam/scsi/scsi_all.c
436
{ 0x7E, D | T | R | M | A | E | B | V, "extended CDB" },
sys/bus/cam/scsi/scsi_all.c
471
{ 0x8C, D | T | W | O | M | B | V, "READ ATTRIBUTE" },
sys/bus/cam/scsi/scsi_all.c
473
{ 0x8D, D | T | W | O | M | B | V, "WRITE ATTRIBUTE" },
sys/bus/cam/scsi/scsi_all.c
525
{ 0xA5, T | W | O | M, "MOVE MEDIUM" },
sys/bus/cam/scsi/scsi_all.c
529
{ 0xA6, M, "EXCHANGE MEDIUM" },
sys/bus/cam/scsi/scsi_all.c
571
{ 0xB5, M, "REQUEST VOLUME ELEMENT ADDRESS" },
sys/bus/cam/scsi/scsi_all.c
573
{ 0xB6, M, "SEND VOLUME TAG" },
sys/bus/cam/scsi/scsi_all.c
579
{ 0xB8, T | W | R | O | M, "READ ELEMENT STATUS" },
sys/bus/cam/scsi/scsi_all.c
583
{ 0xBA, D | W | O | M | A | E, "REDUNDANCY GROUP (IN)" },
sys/bus/cam/scsi/scsi_all.c
587
{ 0xBB, D | W | O | M | A | E, "REDUNDANCY GROUP (OUT)" },
sys/bus/cam/scsi/scsi_all.c
591
{ 0xBC, D | W | O | M | A | E, "SPARE (IN)" },
sys/bus/cam/scsi/scsi_all.c
593
{ 0xBD, D | W | O | M | A | E, "SPARE (OUT)" },
sys/bus/cam/scsi/scsi_all.c
597
{ 0xBE, D | W | O | M | A | E, "VOLUME SET (IN)" },
sys/bus/cam/scsi/scsi_all.c
601
{ 0xBF, D | W | O | M | A | E, "VOLUME SET (OUT)" },
sys/dev/disk/ncr/ncrreg.h
525
#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))
sys/dev/disk/sym/sym_defs.h
870
#define MASK(D,M) (0x00040000 | (((M ^ 0xff) & 0xff) << 8ul)|((D) & 0xff))
sys/dev/drm/i915/i915_cmd_parser.c
217
CMD( MI_WAIT_FOR_EVENT, SMI, F, 1, M ),
sys/dev/drm/i915/i915_cmd_parser.c
314
CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
sys/dev/drm/i915/i915_cmd_parser.c
447
CMD( MI_LOAD_SCAN_LINES_INCL, SMI, !F, 0x3F, M ),
sys/dev/raid/asr/asr.c
1390
I2O_UTIL_PARAMS_GET_MESSAGE M;
sys/dev/raid/asr/asr.c
1858
I2O_EXEC_OUTBOUND_INIT_MESSAGE M;
sys/dev/raid/asr/asr.c
2681
char M[MAX_INBOUND_SIZE];
usr.bin/calendar/moon.c
329
double M = solar_anomaly(c);
usr.bin/calendar/moon.c
340
arg->x * M +
usr.bin/calendar/moon.c
439
double M = solar_anomaly(c);
usr.bin/calendar/moon.c
450
arg->x * M +
usr.bin/calendar/moon.c
549
double M = solar_anomaly(c);
usr.bin/calendar/moon.c
560
arg->x * M +
usr.bin/mail/cmdtab.c
101
{ "if", ifcmd, F|M|RAWLIST, 1, 1 },
usr.bin/mail/cmdtab.c
102
{ "else", elsecmd, F|M|RAWLIST, 0, 0 },
usr.bin/mail/cmdtab.c
103
{ "endif", endifcmd, F|M|RAWLIST, 0, 0 },
usr.bin/mail/cmdtab.c
104
{ "alternates", alternates, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
105
{ "ignore", igfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
106
{ "discard", igfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
107
{ "retain", retfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
108
{ "saveignore", saveigfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
109
{ "savediscard",saveigfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
110
{ "saveretain", saveretfield, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
112
{ "core", core, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
113
{ "#", null, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
114
{ "clobber", clobber, M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
48
{ "alias", group, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
61
{ "unset", unset, M|RAWLIST, 1, 1000 },
usr.bin/mail/cmdtab.c
62
{ "mail", sendmail, R|M|I|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
70
{ "copy", copycmd, M|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
71
{ "chdir", schdir, M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
72
{ "cd", schdir, M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
74
{ "source", source, M|RAWLIST, 1, 1 },
usr.bin/mail/cmdtab.c
75
{ "set", set, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
77
{ "version", pversion, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
78
{ "group", group, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
81
{ "file", file, T|M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
82
{ "folder", file, T|M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
83
{ "folders", folders, T|M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
84
{ "?", help, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
85
{ "z", scroll, M|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
87
{ "help", help, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
94
{ "echo", echo, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
96
{ "list", pcmdlist, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
97
{ "xit", rexit, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
98
{ "exit", rexit, M|NOLIST, 0, 0 },
usr.bin/mail/lex.c
337
if (!rcvmode && (com->c_argtype & M) == 0) {
usr.bin/mail/lex.c
356
switch (com->c_argtype & ~(F|P|I|M|T|W|R)) {
usr.sbin/lpr/lpc/cmdtab.c
68
{ "down", downhelp, PR|M, down_gi, down_q },
usr.sbin/lpr/lpc/cmdtab.c
74
{ "setstatus", setstatushelp, PR|M, setstatus_gi, setstatus_q },
usr.sbin/nscd/cachelib.c
39
#define STRING_SIMPLE_HASH_BODY(in_var, var, a, M) \
usr.sbin/nscd/cachelib.c
41
(var) = ((a)*(var) + *(in_var)) % (M)
usr.sbin/nscd/cachelib.c
43
#define STRING_SIMPLE_MP2_HASH_BODY(in_var, var, a, M) \
usr.sbin/nscd/cachelib.c
45
(var) = ((a)*(var) + *(in_var)) & (M - 1)