lib/libcrypto/asn1/t_x509.c
420
int y = 0, M = 0, d = 0, h = 0, m = 0, s = 0;
lib/libcrypto/asn1/t_x509.c
436
M = (v[4] - '0') * 10 + (v[5] - '0');
lib/libcrypto/asn1/t_x509.c
437
if ((M > 12) || (M < 1))
lib/libcrypto/asn1/t_x509.c
458
mon[M - 1], d, h, m, s, f_len, f, y, (gmt) ? " GMT" : "") <= 0)
lib/libcrypto/asn1/t_x509.c
475
int y = 0, M = 0, d = 0, h = 0, m = 0, s = 0;
lib/libcrypto/asn1/t_x509.c
490
M = (v[2] - '0') * 10 + (v[3] - '0');
lib/libcrypto/asn1/t_x509.c
491
if ((M > 12) || (M < 1))
lib/libcrypto/asn1/t_x509.c
502
mon[M - 1], d, h, m, s, y + 1900, (gmt) ? " GMT" : "") <= 0)
lib/libcrypto/bn/bn_gcd.c
207
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
lib/libcrypto/bn/bn_gcd.c
229
if ((M = BN_CTX_get(ctx)) == NULL)
lib/libcrypto/bn/bn_gcd.c
282
if (!BN_div_ct(D, M, pA, B, ctx))
lib/libcrypto/bn/bn_gcd.c
294
B = M;
lib/libcrypto/bn/bn_gcd.c
321
M = Y; /* keep the BIGNUM object, the value does not matter */
lib/libcrypto/bn/bn_gcd.c
357
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
lib/libcrypto/bn/bn_gcd.c
375
if ((M = BN_CTX_get(ctx)) == NULL)
lib/libcrypto/bn/bn_gcd.c
435
if (!BN_div_ct(D, M, pA, B, ctx))
lib/libcrypto/bn/bn_gcd.c
447
B = M;
lib/libcrypto/bn/bn_gcd.c
474
M = Y; /* keep the BIGNUM object, the value does not matter */
lib/libcrypto/bn/bn_gcd.c
518
BIGNUM *A, *B, *X, *Y, *M, *D, *T, *R = NULL;
lib/libcrypto/bn/bn_gcd.c
534
if ((M = BN_CTX_get(ctx)) == NULL)
lib/libcrypto/bn/bn_gcd.c
667
if (!BN_sub(M, A, B))
lib/libcrypto/bn/bn_gcd.c
677
if (!BN_sub(M, A, B))
lib/libcrypto/bn/bn_gcd.c
681
if (!BN_sub(M, A, T))
lib/libcrypto/bn/bn_gcd.c
696
if (!BN_sub(M, M, B))
lib/libcrypto/bn/bn_gcd.c
701
if (!BN_div_nonct(D, M, A, B, ctx))
lib/libcrypto/bn/bn_gcd.c
714
B = M;
lib/libcrypto/bn/bn_gcd.c
760
M = Y; /* keep the BIGNUM object, the value does not matter */
lib/libcrypto/evp/e_aes.c
1163
cctx->M = 12;
lib/libcrypto/evp/e_aes.c
1190
cctx->M = arg;
lib/libcrypto/evp/e_aes.c
1231
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
lib/libcrypto/evp/e_aes.c
1294
if (CRYPTO_ccm128_tag(ccm, tag, cctx->M)) {
lib/libcrypto/evp/e_aes.c
1295
if (timingsafe_memcmp(tag, ctx->buf, cctx->M) == 0)
lib/libcrypto/evp/e_aes.c
96
int L, M; /* L and M parameters from RFC3610 */
lib/libcrypto/modes/ccm128.c
485
unsigned int M = (ctx->nonce.c[0] >> 3) & 7; /* the M parameter */
lib/libcrypto/modes/ccm128.c
487
M *= 2;
lib/libcrypto/modes/ccm128.c
488
M += 2;
lib/libcrypto/modes/ccm128.c
489
if (len != M)
lib/libcrypto/modes/ccm128.c
491
memcpy(tag, ctx->cmac.c, M);
lib/libcrypto/modes/ccm128.c
492
return M;
lib/libcrypto/modes/ccm128.c
61
unsigned int M, unsigned int L, void *key, block128_f block)
lib/libcrypto/modes/ccm128.c
64
ctx->nonce.c[0] = ((uint8_t)(L - 1) & 7) | (uint8_t)(((M - 2)/2) & 7) << 3;
lib/libcrypto/modes/modes.h
94
unsigned int M, unsigned int L, void *key, block128_f block);
lib/libelf/_elftc.h
41
#define offsetof(T, M) ((int) &((T*) 0) -> M)
lib/libelf/libelf_ehdr.c
73
#define GET_SHDR_MEMBER(M) ((ec == ELFCLASS32) ? scn->s_shdr.s_shdr32.M : \
lib/libelf/libelf_ehdr.c
74
scn->s_shdr.s_shdr64.M)
regress/lib/libc/cephes/etodec.c
134
xi[M] &= 0177;
regress/lib/libc/cephes/etodec.c
135
r |= xi[M];
regress/lib/libc/cephes/etodec.c
137
*d++ = xi[M+1];
regress/lib/libc/cephes/etodec.c
138
*d++ = xi[M+2];
regress/lib/libc/cephes/etodec.c
139
*d++ = xi[M+3];
regress/lib/libc/cephes/etodec.c
192
x[M] &= 0177;
regress/lib/libc/cephes/etodec.c
193
i |= x[M];
regress/lib/libc/cephes/etodec.c
195
*y++ = x[M+1];
regress/lib/libc/cephes/etodec.c
196
*y++ = x[M+2];
regress/lib/libc/cephes/etodec.c
197
*y++ = x[M+3];
regress/lib/libc/cephes/etodec.c
89
i = xi[M+4];
regress/lib/libc/cephes/etodec.c
97
for( j=M+5; j<NI; j++ )
regress/lib/libc/cephes/ieee.c
1028
p = &num[M];
regress/lib/libc/cephes/ieee.c
1030
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
1056
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
1062
for( i=M+1; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
1308
for( i=M+1; i<NI-1; i++ )
regress/lib/libc/cephes/ieee.c
1746
yy[M] = (r & 0x0f) | 0x10;
regress/lib/libc/cephes/ieee.c
1781
yy[M] &= ~0x10;
regress/lib/libc/cephes/ieee.c
1785
p = &yy[M+1];
regress/lib/libc/cephes/ieee.c
1947
p = &yy[M + 1];
regress/lib/libc/cephes/ieee.c
1960
yy[M] = 0;
regress/lib/libc/cephes/ieee.c
1964
yy[M] = 1;
regress/lib/libc/cephes/ieee.c
1998
yy[M] = (r & 0x7f) | 0200;
regress/lib/libc/cephes/ieee.c
2031
yy[M] &= ~0200;
regress/lib/libc/cephes/ieee.c
2035
p = &yy[M+1];
regress/lib/libc/cephes/ieee.c
2602
yi[M] = (unsigned short) (ll >> (LONGBITS - 16));
regress/lib/libc/cephes/ieee.c
2603
yi[M + 1] = (unsigned short) (ll >> (LONGBITS - 32));
regress/lib/libc/cephes/ieee.c
2604
yi[M + 2] = (unsigned short) (ll >> 16);
regress/lib/libc/cephes/ieee.c
2605
yi[M + 3] = (unsigned short) ll;
regress/lib/libc/cephes/ieee.c
2610
yi[M] = (unsigned short )(ll >> 16);
regress/lib/libc/cephes/ieee.c
2611
yi[M+1] = (unsigned short )ll;
regress/lib/libc/cephes/ieee.c
2643
yi[M] = (unsigned short) (ll >> (LONGBITS - 16));
regress/lib/libc/cephes/ieee.c
2644
yi[M + 1] = (unsigned short) (ll >> (LONGBITS - 32));
regress/lib/libc/cephes/ieee.c
2645
yi[M + 2] = (unsigned short) (ll >> 16);
regress/lib/libc/cephes/ieee.c
2646
yi[M + 3] = (unsigned short) ll;
regress/lib/libc/cephes/ieee.c
2651
yi[M] = (unsigned short )(ll >> 16);
regress/lib/libc/cephes/ieee.c
2652
yi[M+1] = (unsigned short )ll;
regress/lib/libc/cephes/ieee.c
2712
ll = xi[M];
regress/lib/libc/cephes/ieee.c
2717
ll = (ll << 16) | xi[M];
regress/lib/libc/cephes/ieee.c
2728
*i = (long )xi[M] & 0xffff;
regress/lib/libc/cephes/ieee.c
2734
xi[M] = 0;
regress/lib/libc/cephes/ieee.c
2789
ll = xi[M];
regress/lib/libc/cephes/ieee.c
2794
ll = (ll << 16) | xi[M];
regress/lib/libc/cephes/ieee.c
2803
*i = (long )xi[M] & 0xffff;
regress/lib/libc/cephes/ieee.c
2811
xi[M] = 0;
regress/lib/libc/cephes/ieee.c
2905
p = &x[M];
regress/lib/libc/cephes/ieee.c
508
for( i=M+1; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
552
a += M; /* skip up to significand area */
regress/lib/libc/cephes/ieee.c
553
b += M;
regress/lib/libc/cephes/ieee.c
554
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
579
x += M; /* point to significand area */
regress/lib/libc/cephes/ieee.c
582
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
609
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
633
x += M;
regress/lib/libc/cephes/ieee.c
635
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
658
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
678
p = x + M;
regress/lib/libc/cephes/ieee.c
679
x += M + 1;
regress/lib/libc/cephes/ieee.c
681
for( i=M; i<NI-1; i++ )
regress/lib/libc/cephes/ieee.c
700
for( i=M; i<NI-1; i++ )
regress/lib/libc/cephes/ieee.c
721
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
749
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
779
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
787
p = &den[M+2];
regress/lib/libc/cephes/ieee.c
790
for( i=M+3; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
795
if( (den[M+1] & 1) != 0 )
regress/lib/libc/cephes/ieee.c
800
p = &den[M+1];
regress/lib/libc/cephes/ieee.c
801
q = &num[M+1];
regress/lib/libc/cephes/ieee.c
847
p = &num[M];
regress/lib/libc/cephes/ieee.c
849
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
871
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
929
for( i=M+1; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
947
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
969
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
974
tdenm = den[M+1];
regress/lib/libc/cephes/ieee.c
975
for( i=M; i<NI; i++ )
regress/lib/libc/cephes/ieee.c
978
tnum = (((unsigned long) num[M]) << 16) + num[M+1];
regress/lib/libc/sys/t_wait_noproc.c
156
const size_t M = (1 << __arraycount(matrix)) - 1;
regress/lib/libc/sys/t_wait_noproc.c
160
if (pos > M)
regress/lib/libc/sys/t_wait_noproc.c
204
const size_t M = (1 << __arraycount(special)) - 1;
regress/lib/libc/sys/t_wait_noproc.c
213
if (pos > M)
regress/sys/crypto/cmac/cmac_test.c
100
AES_CMAC_Update(&ctx, M, 64);
regress/sys/crypto/cmac/cmac_test.c
105
printf("M "); print_hex(" ",M,64);
regress/sys/crypto/cmac/cmac_test.c
108
AES_CMAC_Update(&ctx, M, 40);
regress/sys/crypto/cmac/cmac_test.c
109
AES_CMAC_Update(&ctx, M + 40, 24);
regress/sys/crypto/cmac/cmac_test.c
114
printf("M "); print_hex(" ",M,64);
regress/sys/crypto/cmac/cmac_test.c
117
AES_CMAC_Update(&ctx, M, 16);
regress/sys/crypto/cmac/cmac_test.c
118
AES_CMAC_Update(&ctx, M + 16, 16);
regress/sys/crypto/cmac/cmac_test.c
119
AES_CMAC_Update(&ctx, M + 32, 10);
regress/sys/crypto/cmac/cmac_test.c
120
AES_CMAC_Update(&ctx, M + 42, 0);
regress/sys/crypto/cmac/cmac_test.c
121
AES_CMAC_Update(&ctx, M + 42, 14);
regress/sys/crypto/cmac/cmac_test.c
122
AES_CMAC_Update(&ctx, M + 56, 8);
regress/sys/crypto/cmac/cmac_test.c
51
unsigned char M[64] = {
regress/sys/crypto/cmac/cmac_test.c
75
AES_CMAC_Update(&ctx, M, 0);
regress/sys/crypto/cmac/cmac_test.c
80
printf("M "); print_hex(" ",M,16);
regress/sys/crypto/cmac/cmac_test.c
84
AES_CMAC_Update(&ctx, M, 16);
regress/sys/crypto/cmac/cmac_test.c
88
printf("M "); print_hex(" ",M,40);
regress/sys/crypto/cmac/cmac_test.c
92
AES_CMAC_Update(&ctx, M, 40);
regress/sys/crypto/cmac/cmac_test.c
97
printf("M "); print_hex(" ",M,64);
sbin/iked/sntrup761.c
1000
Encode(s,R,M,p);
sbin/iked/sntrup761.c
1005
uint16 R[p],M[p];
sbin/iked/sntrup761.c
1008
for (i = 0;i < p;++i) M[i] = (q+2)/3;
sbin/iked/sntrup761.c
1009
Decode(R,s,M,p);
sbin/iked/sntrup761.c
285
static void Decode(uint16 *out,const unsigned char *S,const uint16 *M,long long len)
sbin/iked/sntrup761.c
288
if (M[0] == 1)
sbin/iked/sntrup761.c
290
else if (M[0] <= 256)
sbin/iked/sntrup761.c
291
*out = uint32_mod_uint14(S[0],M[0]);
sbin/iked/sntrup761.c
293
*out = uint32_mod_uint14(S[0]+(((uint16)S[1])<<8),M[0]);
sbin/iked/sntrup761.c
302
uint32 m = M[i]*(uint32) M[i+1];
sbin/iked/sntrup761.c
320
M2[i/2] = M[i];
sbin/iked/sntrup761.c
327
uint32_divmod_uint14(&r1,&r0,r,M[i]);
sbin/iked/sntrup761.c
328
r1 = uint32_mod_uint14(r1,M[i+1]); /* only needed for invalid inputs */
sbin/iked/sntrup761.c
350
static void Encode(unsigned char *out,const uint16 *R,const uint16 *M,long long len)
sbin/iked/sntrup761.c
354
uint16 m = M[0];
sbin/iked/sntrup761.c
366
uint32 m0 = M[i];
sbin/iked/sntrup761.c
368
uint32 m = M[i+1]*m0;
sbin/iked/sntrup761.c
379
M2[i/2] = M[i];
sbin/iked/sntrup761.c
971
uint16 R[p],M[p];
sbin/iked/sntrup761.c
975
for (i = 0;i < p;++i) M[i] = q;
sbin/iked/sntrup761.c
976
Encode(s,R,M,p);
sbin/iked/sntrup761.c
981
uint16 R[p],M[p];
sbin/iked/sntrup761.c
984
for (i = 0;i < p;++i) M[i] = q;
sbin/iked/sntrup761.c
985
Decode(R,s,M,p);
sbin/iked/sntrup761.c
995
uint16 R[p],M[p];
sbin/iked/sntrup761.c
999
for (i = 0;i < p;++i) M[i] = (q+2)/3;
sbin/shutdown/shutdown.c
74
{ 1 H, 30 M },
sbin/shutdown/shutdown.c
75
{ 30 M, 10 M },
sbin/shutdown/shutdown.c
76
{ 20 M, 10 M },
sbin/shutdown/shutdown.c
77
{ 10 M, 5 M },
sbin/shutdown/shutdown.c
78
{ 5 M, 3 M },
sbin/shutdown/shutdown.c
79
{ 2 M, 1 M },
sbin/shutdown/shutdown.c
80
{ 1 M, 30 S },
sys/dev/fdt/sxipio_pins.h
11275
{ SXIPIO_PIN(M, 0), {
sys/dev/fdt/sxipio_pins.h
11280
{ SXIPIO_PIN(M, 1), {
sys/dev/fdt/sxipio_pins.h
11285
{ SXIPIO_PIN(M, 2), {
sys/dev/fdt/sxipio_pins.h
11291
{ SXIPIO_PIN(M, 3), {
sys/dev/fdt/sxipio_pins.h
11296
{ SXIPIO_PIN(M, 4), {
sys/dev/fdt/sxipio_pins.h
8241
{ SXIPIO_PIN(M, 0), {
sys/dev/fdt/sxipio_pins.h
8246
{ SXIPIO_PIN(M, 1), {
sys/dev/fdt/sxipio_pins.h
8251
{ SXIPIO_PIN(M, 2), {
sys/dev/fdt/sxipio_pins.h
8256
{ SXIPIO_PIN(M, 3), {
sys/dev/fdt/sxipio_pins.h
8261
{ SXIPIO_PIN(M, 4), {
sys/dev/fdt/sxipio_pins.h
8267
{ SXIPIO_PIN(M, 8), {
sys/dev/fdt/sxipio_pins.h
8273
{ SXIPIO_PIN(M, 9), {
sys/dev/fdt/sxipio_pins.h
8279
{ SXIPIO_PIN(M, 10), {
sys/dev/fdt/sxipio_pins.h
8285
{ SXIPIO_PIN(M, 11), {
sys/dev/fdt/sxipio_pins.h
8291
{ SXIPIO_PIN(M, 12), {
sys/dev/fdt/sxipio_pins.h
8297
{ SXIPIO_PIN(M, 13), {
sys/dev/fdt/sxipio_pins.h
8303
{ SXIPIO_PIN(M, 14), {
sys/dev/fdt/sxipio_pins.h
8309
{ SXIPIO_PIN(M, 15), {
sys/dev/ic/ar9003.c
2682
int icept, G, I, L, M, angle, xnonlin, y2, y4, sumy2, sumy4;
sys/dev/ic/ar9003.c
2740
M = 10;
sys/dev/ic/ar9003.c
2742
M = 9;
sys/dev/ic/ar9003.c
2744
M = 8;
sys/dev/ic/ar9003.c
2755
xtilde[i] = ((xnonlin << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2756
xtilde[i] = ((xtilde[i] << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2757
xtilde[i] = ((xtilde[i] << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2811
order = 3 * M - Qx - Qb1 - Qbeta + 10 + Qscale;
sys/dev/ic/ar9003.c
2815
order = 3 * M - Qx - Qb2 - Qalpha + 10 + Qscale;
sys/dev/ic/ar9003.c
2859
ttilde = ((t[i + I] << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2860
ttilde = ((ttilde << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2861
ttilde = ((ttilde << M) + y[i + I]) / y[i + I];
sys/dev/ic/ar9003.c
2872
order = 3 * M - Qx - Qb1 - Qbeta + 10 + Qscale + 5;
sys/dev/ic/ar9003.c
2876
order = 3 * M - Qx - Qb2 - Qalpha + 10 + Qscale + 5;
sys/dev/ipmi.c
1189
int16_t M, B;
sys/dev/ipmi.c
1194
M = signextend((((short)(s1->m_tolerance & 0xC0)) << 2) + s1->m, 10);
sys/dev/ipmi.c
1204
val = ipow(M * v, K2 + adj) + ipow(B, K1 + K2 + adj);
sys/dev/pci/agp_ali.c
191
4*M, /* 3 - invalid */
sys/dev/pci/agp_ali.c
192
8*M, /* 4 - invalid */
sys/dev/pci/agp_ali.c
194
16*M, /* 6 - invalid */
sys/dev/pci/agp_ali.c
195
32*M, /* 7 - invalid */
sys/dev/pci/agp_ali.c
196
64*M, /* 8 - invalid */
sys/dev/pci/agp_ali.c
197
128*M, /* 9 - invalid */
sys/dev/pci/agp_ali.c
198
256*M, /* 10 - invalid */
sys/dev/pci/agp_apple.c
129
asc->asc_apsize = 256 * M;
sys/dev/pci/agp_apple.c
163
if (aperture % (4 * M) || aperture < (4 * M) || aperture > (256 * M))
sys/dev/pci/tga.c
1601
int N, M, R, V, X;
sys/dev/pci/tga.c
1606
N = 0x40; M = 0x7; V = 0x0; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1608
N = 0x2d; M = 0x2b; V = 0x1; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1610
N = 0x11; M = 0x9; V = 0x1; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1612
N = 0x6d; M = 0xf; V = 0x0; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1614
N = 0x5F; M = 0x3E; V = 0x1; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1616
N = 0x6e; M = 0x15; V = 0x0; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1618
N = 0x2a; M = 0x41; V = 0x1; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1620
N = 0x35; M = 0xb; V = 0x0; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1622
N = 0x6d; M = 0x0c; V = 0x0; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1624
N = 0x37; M = 0x3f; V = 0x1; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1626
N = 0x5f; M = 0x11; V = 0x0; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1628
N = 0x16; M = 0x05; V = 0x0; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1630
N = 0x66; M = 0x1d; V = 0x0; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1632
N = 0x42; M = 0x07; V = 0x0; X = 0x1; R = 0x1; break;
sys/dev/pci/tga.c
1634
N = 0x60; M = 0x32; V = 0x1; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1636
N = 0x60; M = 0x32; V = 0x1; X = 0x1; R = 0x2; break;
sys/dev/pci/tga.c
1638
N = 0x03; M = 0x03; V = 0x1; X = 0x1; R = 0x3; break;
sys/dev/pci/tga.c
1644
valU = N | ( M << 7 ) | (V << 14);
sys/dev/videomode/vesagtf.c
180
#define M_PRIME256(p) (p->K * p->M)
sys/dev/videomode/vesagtf.c
641
params.M = VESAGTF_M;
sys/dev/videomode/vesagtf.h
49
unsigned M; /* blanking formula gradient */
sys/dev/videomode/videomode.c
100
M("640x512x60",640,512,54000,664,720,844,512,514,533,HP|VP|DS),
sys/dev/videomode/videomode.c
101
M("640x512x70",640,512,63000,664,720,844,512,514,533,HP|VP|DS),
sys/dev/videomode/videomode.c
102
M("640x512x75",640,512,67500,648,720,844,512,514,533,HP|VP|DS),
sys/dev/videomode/videomode.c
103
M("640x512x85",640,512,78750,672,752,864,512,514,536,HP|VP|DS),
sys/dev/videomode/videomode.c
104
M("800x600x60",800,600,81000,832,928,1080,600,602,625,HP|VP|DS),
sys/dev/videomode/videomode.c
105
M("800x600x65",800,600,87750,832,928,1080,600,602,625,HP|VP|DS),
sys/dev/videomode/videomode.c
106
M("800x600x70",800,600,94500,832,928,1080,600,602,625,HP|VP|DS),
sys/dev/videomode/videomode.c
107
M("800x600x75",800,600,101250,832,928,1080,600,602,625,HP|VP|DS),
sys/dev/videomode/videomode.c
108
M("800x600x85",800,600,114750,832,928,1080,600,602,625,HP|VP|DS),
sys/dev/videomode/videomode.c
109
M("840x525x60",840,525,73570,892,984,1128,525,527,543,HP|VP|DS),
sys/dev/videomode/videomode.c
110
M("896x672x60",896,672,102400,960,1060,1224,672,674,697,HN|VP|DS),
sys/dev/videomode/videomode.c
111
M("896x672x75",896,672,130500,944,1052,1228,672,674,708,HN|VP|DS),
sys/dev/videomode/videomode.c
112
M("928x696x60",928,696,109150,976,1088,1264,696,698,719,HN|VP|DS),
sys/dev/videomode/videomode.c
113
M("928x696x75",928,696,144000,992,1104,1280,696,698,750,HN|VP|DS),
sys/dev/videomode/videomode.c
114
M("960x720x60",960,720,117000,1024,1128,1300,720,722,750,HN|VP|DS),
sys/dev/videomode/videomode.c
115
M("960x720x75",960,720,148500,1032,1144,1320,720,722,750,HN|VP|DS),
sys/dev/videomode/videomode.c
116
M("416x312x74",416,312,28642,432,464,576,312,314,333,HN|VN|DS),
sys/dev/videomode/videomode.c
117
M("576x384x54",576,384,32497,589,657,736,385,388,403,HP|VP|DS),
sys/dev/videomode/videomode.c
118
M("700x525x60",700,525,61000,744,820,940,526,532,541,HP|VP|DS),
sys/dev/videomode/videomode.c
119
M("700x525x74",700,525,77900,732,892,956,526,532,545,HP|VP|DS),
sys/dev/videomode/videomode.c
120
M("576x450x66",576,450,47250,596,660,764,451,453,468,HN|VN|DS),
sys/dev/videomode/videomode.c
121
M("576x450x76",576,450,52780,584,640,736,451,453,471,HN|VN|DS),
sys/dev/videomode/videomode.c
27
M("640x350x85",640,350,31500,672,736,832,382,385,445,HP|VN),
sys/dev/videomode/videomode.c
28
M("640x400x85",640,400,31500,672,736,832,401,404,445,HN|VP),
sys/dev/videomode/videomode.c
29
M("720x400x70",720,400,28320,738,846,900,412,414,449,HN|VP),
sys/dev/videomode/videomode.c
30
M("720x400x85",720,400,35500,756,828,936,401,404,446,HN|VP),
sys/dev/videomode/videomode.c
31
M("720x400x87",720,400,35500,738,846,900,421,423,449,HN|VN),
sys/dev/videomode/videomode.c
32
M("640x480x60",640,480,25175,656,752,800,490,492,525,HN|VN),
sys/dev/videomode/videomode.c
33
M("640x480x72",640,480,31500,664,704,832,489,492,520,HN|VN),
sys/dev/videomode/videomode.c
34
M("640x480x75",640,480,31500,656,720,840,481,484,500,HN|VN),
sys/dev/videomode/videomode.c
35
M("640x480x85",640,480,36000,696,752,832,481,484,509,HN|VN),
sys/dev/videomode/videomode.c
36
M("800x600x56",800,600,36000,824,896,1024,601,603,625,HP|VP),
sys/dev/videomode/videomode.c
37
M("800x600x60",800,600,40000,840,968,1056,601,605,628,HP|VP),
sys/dev/videomode/videomode.c
38
M("800x600x72",800,600,50000,856,976,1040,637,643,666,HP|VP),
sys/dev/videomode/videomode.c
39
M("800x600x75",800,600,49500,816,896,1056,601,604,625,HP|VP),
sys/dev/videomode/videomode.c
40
M("800x600x85",800,600,56250,832,896,1048,601,604,631,HP|VP),
sys/dev/videomode/videomode.c
41
M("1024x768x87i",1024,768,44900,1032,1208,1264,768,776,817,HP|VP|I),
sys/dev/videomode/videomode.c
42
M("1024x768x60",1024,768,65000,1048,1184,1344,771,777,806,HN|VN),
sys/dev/videomode/videomode.c
43
M("1024x768x70",1024,768,75000,1048,1184,1328,771,777,806,HN|VN),
sys/dev/videomode/videomode.c
44
M("1024x768x75",1024,768,78750,1040,1136,1312,769,772,800,HP|VP),
sys/dev/videomode/videomode.c
45
M("1024x768x85",1024,768,94500,1072,1168,1376,769,772,808,HP|VP),
sys/dev/videomode/videomode.c
46
M("1024x768x89",1024,768,100000,1108,1280,1408,768,780,796,HP|VP),
sys/dev/videomode/videomode.c
47
M("1152x864x75",1152,864,108000,1216,1344,1600,865,868,900,HP|VP),
sys/dev/videomode/videomode.c
48
M("1280x768x75",1280,768,105640,1312,1712,1744,782,792,807,HN|VP),
sys/dev/videomode/videomode.c
49
M("1280x960x60",1280,960,108000,1376,1488,1800,961,964,1000,HP|VP),
sys/dev/videomode/videomode.c
50
M("1280x960x85",1280,960,148500,1344,1504,1728,961,964,1011,HP|VP),
sys/dev/videomode/videomode.c
51
M("1280x1024x60",1280,1024,108000,1328,1440,1688,1025,1028,1066,HP|VP),
sys/dev/videomode/videomode.c
52
M("1280x1024x70",1280,1024,126000,1328,1440,1688,1025,1028,1066,HP|VP),
sys/dev/videomode/videomode.c
53
M("1280x1024x75",1280,1024,135000,1296,1440,1688,1025,1028,1066,HP|VP),
sys/dev/videomode/videomode.c
54
M("1280x1024x85",1280,1024,157500,1344,1504,1728,1025,1028,1072,HP|VP),
sys/dev/videomode/videomode.c
55
M("1600x1200x60",1600,1200,162000,1664,1856,2160,1201,1204,1250,HP|VP),
sys/dev/videomode/videomode.c
56
M("1600x1200x65",1600,1200,175500,1664,1856,2160,1201,1204,1250,HP|VP),
sys/dev/videomode/videomode.c
57
M("1600x1200x70",1600,1200,189000,1664,1856,2160,1201,1204,1250,HP|VP),
sys/dev/videomode/videomode.c
58
M("1600x1200x75",1600,1200,202500,1664,1856,2160,1201,1204,1250,HP|VP),
sys/dev/videomode/videomode.c
59
M("1600x1200x85",1600,1200,229500,1664,1856,2160,1201,1204,1250,HP|VP),
sys/dev/videomode/videomode.c
60
M("1680x1050x60",1680,1050,147140,1784,1968,2256,1051,1054,1087,HP|VP),
sys/dev/videomode/videomode.c
61
M("1792x1344x60",1792,1344,204800,1920,2120,2448,1345,1348,1394,HN|VP),
sys/dev/videomode/videomode.c
62
M("1792x1344x75",1792,1344,261000,1888,2104,2456,1345,1348,1417,HN|VP),
sys/dev/videomode/videomode.c
63
M("1856x1392x60",1856,1392,218300,1952,2176,2528,1393,1396,1439,HN|VP),
sys/dev/videomode/videomode.c
64
M("1856x1392x75",1856,1392,288000,1984,2208,2560,1393,1396,1500,HN|VP),
sys/dev/videomode/videomode.c
65
M("1920x1440x60",1920,1440,234000,2048,2256,2600,1441,1444,1500,HN|VP),
sys/dev/videomode/videomode.c
66
M("1920x1440x75",1920,1440,297000,2064,2288,2640,1441,1444,1500,HN|VP),
sys/dev/videomode/videomode.c
67
M("832x624x74",832,624,57284,864,928,1152,625,628,667,HN|VN),
sys/dev/videomode/videomode.c
68
M("1152x768x54",1152,768,64995,1178,1314,1472,771,777,806,HP|VP),
sys/dev/videomode/videomode.c
69
M("1400x1050x60",1400,1050,122000,1488,1640,1880,1052,1064,1082,HP|VP),
sys/dev/videomode/videomode.c
70
M("1400x1050x74",1400,1050,155800,1464,1784,1912,1052,1064,1090,HP|VP),
sys/dev/videomode/videomode.c
71
M("1152x900x66",1152,900,94500,1192,1320,1528,902,906,937,HN|VN),
sys/dev/videomode/videomode.c
72
M("1152x900x76",1152,900,105560,1168,1280,1472,902,906,943,HN|VN),
sys/dev/videomode/videomode.c
76
M("320x175x85",320,175,15750,336,368,416,191,192,222,HP|VN|DS),
sys/dev/videomode/videomode.c
77
M("320x200x85",320,200,15750,336,368,416,200,202,222,HN|VP|DS),
sys/dev/videomode/videomode.c
78
M("360x200x70",360,200,14160,369,423,450,206,207,224,HN|VP|DS),
sys/dev/videomode/videomode.c
79
M("360x200x85",360,200,17750,378,414,468,200,202,223,HN|VP|DS),
sys/dev/videomode/videomode.c
80
M("360x200x87",360,200,17750,369,423,450,210,211,224,HN|VN|DS),
sys/dev/videomode/videomode.c
81
M("320x240x60",320,240,12587,328,376,400,245,246,262,HN|VN|DS),
sys/dev/videomode/videomode.c
82
M("320x240x72",320,240,15750,332,352,416,244,246,260,HN|VN|DS),
sys/dev/videomode/videomode.c
83
M("320x240x75",320,240,15750,328,360,420,240,242,250,HN|VN|DS),
sys/dev/videomode/videomode.c
84
M("320x240x85",320,240,18000,348,376,416,240,242,254,HN|VN|DS),
sys/dev/videomode/videomode.c
85
M("400x300x56",400,300,18000,412,448,512,300,301,312,HP|VP|DS),
sys/dev/videomode/videomode.c
86
M("400x300x60",400,300,20000,420,484,528,300,302,314,HP|VP|DS),
sys/dev/videomode/videomode.c
87
M("400x300x72",400,300,25000,428,488,520,318,321,333,HP|VP|DS),
sys/dev/videomode/videomode.c
88
M("400x300x75",400,300,24750,408,448,528,300,302,312,HP|VP|DS),
sys/dev/videomode/videomode.c
89
M("400x300x85",400,300,28125,416,448,524,300,302,315,HP|VP|DS),
sys/dev/videomode/videomode.c
90
M("512x384x87i",512,384,22450,516,604,632,384,388,408,HP|VP|DS|I),
sys/dev/videomode/videomode.c
91
M("512x384x60",512,384,32500,524,592,672,385,388,403,HN|VN|DS),
sys/dev/videomode/videomode.c
92
M("512x384x70",512,384,37500,524,592,664,385,388,403,HN|VN|DS),
sys/dev/videomode/videomode.c
93
M("512x384x75",512,384,39375,520,568,656,384,386,400,HP|VP|DS),
sys/dev/videomode/videomode.c
94
M("512x384x85",512,384,47250,536,584,688,384,386,404,HP|VP|DS),
sys/dev/videomode/videomode.c
95
M("512x384x89",512,384,50000,554,640,704,384,390,398,HP|VP|DS),
sys/dev/videomode/videomode.c
96
M("576x432x75",576,432,54000,608,672,800,432,434,450,HP|VP|DS),
sys/dev/videomode/videomode.c
97
M("640x384x75",640,384,52820,656,856,872,391,396,403,HN|VP|DS),
sys/dev/videomode/videomode.c
98
M("640x480x60",640,480,54000,688,744,900,480,482,500,HP|VP|DS),
sys/dev/videomode/videomode.c
99
M("640x480x85",640,480,74250,672,752,864,480,482,505,HP|VP|DS),
usr.bin/deroff/deroff.c
1622
M(NONE, '\\','"', skip), /* comment */
usr.bin/deroff/deroff.c
1623
M(NOMAC, 'd','e', domacro), /* define */
usr.bin/deroff/deroff.c
1624
M(NOMAC, 'i','g', domacro), /* ignore till .. */
usr.bin/deroff/deroff.c
1625
M(NOMAC, 'a','m', domacro), /* append macro */
usr.bin/deroff/deroff.c
1626
M(NBLK, 'n','f', nf), /* filled */
usr.bin/deroff/deroff.c
1627
M(NBLK, 'c','e', ce), /* centered */
usr.bin/deroff/deroff.c
1629
M(NONE, 's','o', so), /* source a file */
usr.bin/deroff/deroff.c
1630
M(NONE, 'n','x', nx), /* go to next file */
usr.bin/deroff/deroff.c
1632
M(NONE, 't','m', skip), /* print string on tty */
usr.bin/deroff/deroff.c
1633
M(NONE, 'h','w', skip), /* exception hyphen words */
usr.bin/deroff/deroff.c
1634
M(NONE, 0,0, 0)
usr.bin/deroff/deroff.c
1641
M(FNEST, 'E','Q', EQ), /* equation starting */
usr.bin/deroff/deroff.c
1642
M(FNEST, 'T','S', intbl), /* table starting */
usr.bin/deroff/deroff.c
1643
M(FNEST, 'T','C', intbl), /* alternative table? */
usr.bin/deroff/deroff.c
1644
M(FNEST, 'T','&', intbl), /* table reformatting */
usr.bin/deroff/deroff.c
1645
M(NONE, 'T','E', outtbl),/* table ending */
usr.bin/deroff/deroff.c
1646
M(NONE, 'P','S', PS), /* picture starting */
usr.bin/deroff/deroff.c
1647
M(NONE, 0,0, 0)
usr.bin/deroff/deroff.c
1654
M(NONE, 'T','L', skiptocom), /* title follows */
usr.bin/deroff/deroff.c
1655
M(NONE, 'F','S', skiptocom), /* start footnote */
usr.bin/deroff/deroff.c
1656
M(NONE, 'O','K', skiptocom), /* Other kws */
usr.bin/deroff/deroff.c
1658
M(NONE, 'N','R', skip), /* undocumented */
usr.bin/deroff/deroff.c
1659
M(NONE, 'N','D', skip), /* use supplied date */
usr.bin/deroff/deroff.c
1661
M(PARAG, 'P','P', PP), /* begin parag */
usr.bin/deroff/deroff.c
1662
M(PARAG, 'I','P', PP), /* begin indent parag, tag x */
usr.bin/deroff/deroff.c
1663
M(PARAG, 'L','P', PP), /* left blocked parag */
usr.bin/deroff/deroff.c
1665
M(NONE, 'A','U', AU), /* author */
usr.bin/deroff/deroff.c
1666
M(NONE, 'A','I', AU), /* authors institution */
usr.bin/deroff/deroff.c
1668
M(NONE, 'S','H', SH), /* section heading */
usr.bin/deroff/deroff.c
1669
M(NONE, 'S','N', SH), /* undocumented */
usr.bin/deroff/deroff.c
1670
M(NONE, 'U','X', UX), /* unix */
usr.bin/deroff/deroff.c
1672
M(NBLK, 'D','S', mssnblock), /* start display text */
usr.bin/deroff/deroff.c
1673
M(NBLK, 'K','S', mssnblock), /* start keep */
usr.bin/deroff/deroff.c
1674
M(NBLK, 'K','F', mssnblock), /* start float keep */
usr.bin/deroff/deroff.c
1675
M(NONE, 0,0, 0)
usr.bin/deroff/deroff.c
1679
M(NONE, 'H',' ', MMHU), /* -mm ? */
usr.bin/deroff/deroff.c
1680
M(NONE, 'H','U', MMHU), /* -mm ? */
usr.bin/deroff/deroff.c
1681
M(PARAG, 'P',' ', PP), /* paragraph for -mm */
usr.bin/deroff/deroff.c
1682
M(NBLK, 'N','S', mssnblock), /* undocumented */
usr.bin/deroff/deroff.c
1683
M(NONE, 0,0, 0)
usr.bin/deroff/deroff.c
1687
M(PARAG, 'p','p', mepp),
usr.bin/deroff/deroff.c
1688
M(PARAG, 'l','p', mepp),
usr.bin/deroff/deroff.c
1689
M(PARAG, 'n','p', mepp),
usr.bin/deroff/deroff.c
1690
M(NONE, 'i','p', meip),
usr.bin/deroff/deroff.c
1692
M(NONE, 's','h', mesh),
usr.bin/deroff/deroff.c
1693
M(NONE, 'u','h', mesh),
usr.bin/deroff/deroff.c
1695
M(NBLK, '(','l', mesnblock),
usr.bin/deroff/deroff.c
1696
M(NBLK, '(','q', mesnblock),
usr.bin/deroff/deroff.c
1697
M(NBLK, '(','b', mesnblock),
usr.bin/deroff/deroff.c
1698
M(NBLK, '(','z', mesnblock),
usr.bin/deroff/deroff.c
1699
M(NBLK, '(','c', mesnblock),
usr.bin/deroff/deroff.c
1701
M(NBLK, '(','d', mesnblock),
usr.bin/deroff/deroff.c
1702
M(NBLK, '(','f', mesnblock),
usr.bin/deroff/deroff.c
1703
M(NBLK, '(','x', mesnblock),
usr.bin/deroff/deroff.c
1705
M(NONE, 'r',' ', mefont),
usr.bin/deroff/deroff.c
1706
M(NONE, 'i',' ', mefont),
usr.bin/deroff/deroff.c
1707
M(NONE, 'b',' ', mefont),
usr.bin/deroff/deroff.c
1708
M(NONE, 'u',' ', mefont),
usr.bin/deroff/deroff.c
1709
M(NONE, 'q',' ', mefont),
usr.bin/deroff/deroff.c
1710
M(NONE, 'r','b', mefont),
usr.bin/deroff/deroff.c
1711
M(NONE, 'b','i', mefont),
usr.bin/deroff/deroff.c
1712
M(NONE, 'b','x', mefont),
usr.bin/deroff/deroff.c
1713
M(NONE, 0,0, 0)
usr.bin/deroff/deroff.c
1717
M(PARAG, 'B','I', manfont),
usr.bin/deroff/deroff.c
1718
M(PARAG, 'B','R', manfont),
usr.bin/deroff/deroff.c
1719
M(PARAG, 'I','B', manfont),
usr.bin/deroff/deroff.c
1720
M(PARAG, 'I','R', manfont),
usr.bin/deroff/deroff.c
1721
M(PARAG, 'R','B', manfont),
usr.bin/deroff/deroff.c
1722
M(PARAG, 'R','I', manfont),
usr.bin/deroff/deroff.c
1724
M(PARAG, 'P','P', manpp),
usr.bin/deroff/deroff.c
1725
M(PARAG, 'L','P', manpp),
usr.bin/deroff/deroff.c
1726
M(PARAG, 'H','P', manpp),
usr.bin/deroff/deroff.c
1727
M(NONE, 0,0, 0)
usr.bin/mail/cmdtab.c
100
{ "exit", { rexit }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
103
{ "if", { ifcmd }, F|M|RAWLIST, 1, 1 },
usr.bin/mail/cmdtab.c
104
{ "else", { elsecmd }, F|M|RAWLIST, 0, 0 },
usr.bin/mail/cmdtab.c
105
{ "endif", { endifcmd }, F|M|RAWLIST, 0, 0 },
usr.bin/mail/cmdtab.c
106
{ "alternates", { alternates }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
107
{ "ignore", { igfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
108
{ "discard", { igfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
109
{ "retain", { retfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
110
{ "saveignore", { saveigfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
111
{ "savediscard",{ saveigfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
112
{ "saveretain", { saveretfield }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
116
{ "#", { null }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
47
{ "alias", { group }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
60
{ "unset", { unset }, M|RAWLIST, 1, 1000 },
usr.bin/mail/cmdtab.c
61
{ "mail", { sendmail }, R|M|I|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
72
{ "copy", { copycmd }, M|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
73
{ "chdir", { schdir }, M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
74
{ "cd", { schdir }, M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
76
{ "source", { source }, M|RAWLIST, 1, 1 },
usr.bin/mail/cmdtab.c
77
{ "set", { set }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
79
{ "version", { pversion }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
80
{ "group", { group }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
83
{ "file", { file }, T|M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
84
{ "folder", { file }, T|M|RAWLIST, 0, 1 },
usr.bin/mail/cmdtab.c
85
{ "folders", { folders }, T|M|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
86
{ "?", { help }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
87
{ "z", { scroll }, M|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
89
{ "help", { help }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
96
{ "echo", { echo }, M|RAWLIST, 0, 1000 },
usr.bin/mail/cmdtab.c
98
{ "list", { pcmdlist }, M|NOLIST, 0, 0 },
usr.bin/mail/cmdtab.c
99
{ "xit", { rexit }, M|NOLIST, 0, 0 },
usr.bin/mail/lex.c
346
if (!rcvmode && (com->c_argtype & M) == 0) {
usr.bin/mail/lex.c
365
switch (com->c_argtype & ~(F|P|I|M|T|W|R)) {
usr.bin/mail/list.c
202
if ((com->c_argtype & ~(F|P|I|M|T|W|R))
usr.bin/make/generate.c
100
M(NODE_PATH),
usr.bin/make/generate.c
101
M(NODE_PHONY),
usr.bin/make/generate.c
102
M(NODE_PRECIOUS),
usr.bin/make/generate.c
103
M(NODE_RECURSIVE),
usr.bin/make/generate.c
104
M(NODE_SILENT),
usr.bin/make/generate.c
105
M(NODE_SINGLESHELL),
usr.bin/make/generate.c
106
M(NODE_SUFFIXES),
usr.bin/make/generate.c
107
M(NODE_USE),
usr.bin/make/generate.c
108
M(NODE_WAIT),
usr.bin/make/generate.c
109
M(NODE_BEGIN),
usr.bin/make/generate.c
110
M(NODE_END),
usr.bin/make/generate.c
111
M(NODE_INTERRUPT),
usr.bin/make/generate.c
112
M(NODE_CHEAP),
usr.bin/make/generate.c
113
M(NODE_EXPENSIVE),
usr.bin/make/generate.c
114
M(NODE_POSIX),
usr.bin/make/generate.c
115
M(NODE_SCCS_GET),
usr.bin/make/generate.c
42
M(TARGET),
usr.bin/make/generate.c
43
M(OODATE),
usr.bin/make/generate.c
44
M(ALLSRC),
usr.bin/make/generate.c
45
M(IMPSRC),
usr.bin/make/generate.c
46
M(PREFIX),
usr.bin/make/generate.c
47
M(ARCHIVE),
usr.bin/make/generate.c
48
M(MEMBER),
usr.bin/make/generate.c
49
M(LONGTARGET),
usr.bin/make/generate.c
50
M(LONGOODATE),
usr.bin/make/generate.c
51
M(LONGALLSRC),
usr.bin/make/generate.c
52
M(LONGIMPSRC),
usr.bin/make/generate.c
53
M(LONGPREFIX),
usr.bin/make/generate.c
54
M(LONGARCHIVE),
usr.bin/make/generate.c
55
M(LONGMEMBER),
usr.bin/make/generate.c
60
M(COND_IF),
usr.bin/make/generate.c
61
M(COND_IFDEF),
usr.bin/make/generate.c
62
M(COND_IFNDEF),
usr.bin/make/generate.c
63
M(COND_IFMAKE),
usr.bin/make/generate.c
64
M(COND_IFNMAKE),
usr.bin/make/generate.c
65
M(COND_ELSE),
usr.bin/make/generate.c
66
M(COND_ELIF),
usr.bin/make/generate.c
67
M(COND_ELIFDEF),
usr.bin/make/generate.c
68
M(COND_ELIFNDEF),
usr.bin/make/generate.c
69
M(COND_ELIFMAKE),
usr.bin/make/generate.c
70
M(COND_ELIFNMAKE),
usr.bin/make/generate.c
71
M(COND_ENDIF),
usr.bin/make/generate.c
72
M(COND_FOR),
usr.bin/make/generate.c
73
M(COND_ENDFOR),
usr.bin/make/generate.c
74
M(COND_INCLUDE),
usr.bin/make/generate.c
75
M(COND_UNDEF),
usr.bin/make/generate.c
76
M(COND_POISON),
usr.bin/make/generate.c
81
M(NODE_DEFAULT),
usr.bin/make/generate.c
82
M(NODE_EXEC),
usr.bin/make/generate.c
83
M(NODE_IGNORE),
usr.bin/make/generate.c
84
M(NODE_INCLUDES),
usr.bin/make/generate.c
85
M(NODE_INVISIBLE),
usr.bin/make/generate.c
86
M(NODE_JOIN),
usr.bin/make/generate.c
87
M(NODE_LIBS),
usr.bin/make/generate.c
88
M(NODE_MADE),
usr.bin/make/generate.c
89
M(NODE_MAIN),
usr.bin/make/generate.c
90
M(NODE_MAKE),
usr.bin/make/generate.c
91
M(NODE_MAKEFLAGS),
usr.bin/make/generate.c
92
M(NODE_MFLAGS),
usr.bin/make/generate.c
93
M(NODE_NOTMAIN),
usr.bin/make/generate.c
94
M(NODE_NOTPARALLEL),
usr.bin/make/generate.c
95
M(NODE_NO_PARALLEL),
usr.bin/make/generate.c
96
M(NODE_NULL),
usr.bin/make/generate.c
97
M(NODE_OPTIONAL),
usr.bin/make/generate.c
98
M(NODE_ORDER),
usr.bin/make/generate.c
99
M(NODE_PARALLEL),
usr.bin/ssh/sntrup761.c
1742
static void Encode(unsigned char *out, const uint16_t *R, const uint16_t *M, long long len) {
usr.bin/ssh/sntrup761.c
1744
uint16_t r = R[0], m = M[0];
usr.bin/ssh/sntrup761.c
1755
uint32_t m0 = M[i];
usr.bin/ssh/sntrup761.c
1757
uint32_t m = M[i + 1] * m0;
usr.bin/ssh/sntrup761.c
1768
M2[i / 2] = M[i];
usr.bin/ssh/sntrup761.c
1774
static void Decode(uint16_t *out, const unsigned char *S, const uint16_t *M, long long len) {
usr.bin/ssh/sntrup761.c
1776
if (M[0] == 1)
usr.bin/ssh/sntrup761.c
1778
else if (M[0] <= 256)
usr.bin/ssh/sntrup761.c
1779
*out = uint32_mod_uint14(S[0], M[0]);
usr.bin/ssh/sntrup761.c
1781
*out = uint32_mod_uint14(S[0] + (((uint16_t)S[1]) << 8), M[0]);
usr.bin/ssh/sntrup761.c
1788
uint32_t m = M[i] * (uint32_t)M[i + 1];
usr.bin/ssh/sntrup761.c
1805
if (i < len) M2[i / 2] = M[i];
usr.bin/ssh/sntrup761.c
1811
uint32_divmod_uint14(&r1, &r0, r, M[i]);
usr.bin/ssh/sntrup761.c
1812
r1 = uint32_mod_uint14(r1, M[i + 1]);
usr.bin/ssh/sntrup761.c
2027
uint16_t R[p], M[p];
usr.bin/ssh/sntrup761.c
2030
for (i = 0; i < p; ++i) M[i] = q;
usr.bin/ssh/sntrup761.c
2031
Encode(s, R, M, p);
usr.bin/ssh/sntrup761.c
2035
uint16_t R[p], M[p];
usr.bin/ssh/sntrup761.c
2037
for (i = 0; i < p; ++i) M[i] = q;
usr.bin/ssh/sntrup761.c
2038
Decode(R, s, M, p);
usr.bin/ssh/sntrup761.c
2043
uint16_t R[p], M[p];
usr.bin/ssh/sntrup761.c
2046
for (i = 0; i < p; ++i) M[i] = (q + 2) / 3;
usr.bin/ssh/sntrup761.c
2047
Encode(s, R, M, p);
usr.bin/ssh/sntrup761.c
2051
uint16_t R[p], M[p];
usr.bin/ssh/sntrup761.c
2053
for (i = 0; i < p; ++i) M[i] = (q + 2) / 3;
usr.bin/ssh/sntrup761.c
2054
Decode(R, s, M, p);