Symbol: R
crypto/libressl/crypto/aes/aes_wrap.c
102
unsigned char *A, B[16], *R;
crypto/libressl/crypto/aes/aes_wrap.c
113
R = out + inlen - 8;
crypto/libressl/crypto/aes/aes_wrap.c
114
for (i = 0; i < inlen; i += 8, t--, R -= 8) {
crypto/libressl/crypto/aes/aes_wrap.c
121
memcpy(B + 8, R, 8);
crypto/libressl/crypto/aes/aes_wrap.c
123
memcpy(R, B + 8, 8);
crypto/libressl/crypto/aes/aes_wrap.c
67
unsigned char *A, B[16], *R;
crypto/libressl/crypto/aes/aes_wrap.c
81
R = out + 8;
crypto/libressl/crypto/aes/aes_wrap.c
82
for (i = 0; i < inlen; i += 8, t++, R += 8) {
crypto/libressl/crypto/aes/aes_wrap.c
83
memcpy(B + 8, R, 8);
crypto/libressl/crypto/aes/aes_wrap.c
91
memcpy(R, B + 8, 8);
crypto/libressl/crypto/bf/bf_locl.h
164
#define BF_ENC(LL,R,KEY,Pi) (\
crypto/libressl/crypto/bf/bf_locl.h
166
t= KEY[BF_ROUNDS+2 + 0 + ((R>>24)&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
167
t+= KEY[BF_ROUNDS+2 + 256 + ((R>>16)&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
168
t^= KEY[BF_ROUNDS+2 + 512 + ((R>>8 )&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
169
t+= KEY[BF_ROUNDS+2 + 768 + ((R )&0xFF)], \
crypto/libressl/crypto/bf/bf_locl.h
193
#define BF_ENC(LL,R,S,P) ( \
crypto/libressl/crypto/bf/bf_locl.h
195
LL^= (((*(BF_LONG *)((unsigned char *)&(S[ 0])+((R>>BF_0)&BF_M))+ \
crypto/libressl/crypto/bf/bf_locl.h
196
*(BF_LONG *)((unsigned char *)&(S[256])+((R>>BF_1)&BF_M)))^ \
crypto/libressl/crypto/bf/bf_locl.h
197
*(BF_LONG *)((unsigned char *)&(S[512])+((R>>BF_2)&BF_M)))+ \
crypto/libressl/crypto/bf/bf_locl.h
198
*(BF_LONG *)((unsigned char *)&(S[768])+((R<<BF_3)&BF_M))) \
crypto/libressl/crypto/bf/bf_locl.h
210
#define BF_ENC(LL,R,S,P) ( \
crypto/libressl/crypto/bf/bf_locl.h
212
LL^=((( S[ ((int)(R>>24)&0xff)] + \
crypto/libressl/crypto/bf/bf_locl.h
213
S[0x0100+((int)(R>>16)&0xff)])^ \
crypto/libressl/crypto/bf/bf_locl.h
214
S[0x0200+((int)(R>> 8)&0xff)])+ \
crypto/libressl/crypto/bf/bf_locl.h
215
S[0x0300+((int)(R )&0xff)])&0xffffffffL \
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
282
R = BN_new();
crypto/libressl/crypto/bn/bn_gcd.c
284
R = in;
crypto/libressl/crypto/bn/bn_gcd.c
285
if (R == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
523
if (!BN_copy(R, Y))
crypto/libressl/crypto/bn/bn_gcd.c
526
if (!BN_nnmod(R, Y,n, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
533
ret = R;
crypto/libressl/crypto/bn/bn_gcd.c
537
BN_free(R);
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
599
R = BN_new();
crypto/libressl/crypto/bn/bn_gcd.c
601
R = in;
crypto/libressl/crypto/bn/bn_gcd.c
602
if (R == NULL)
crypto/libressl/crypto/bn/bn_gcd.c
712
if (!BN_copy(R, Y))
crypto/libressl/crypto/bn/bn_gcd.c
715
if (!BN_nnmod(R, Y, n, ctx))
crypto/libressl/crypto/bn/bn_gcd.c
722
ret = R;
crypto/libressl/crypto/bn/bn_gcd.c
726
BN_free(R);
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
748
R = in;
crypto/libressl/crypto/bn/bn_gcd.c
867
if (!BN_copy(R, A))
crypto/libressl/crypto/bn/bn_gcd.c
869
ret = R;
crypto/libressl/crypto/bn/bn_gcd.c
872
BN_free(R);
crypto/libressl/crypto/bn/bn_mont.c
370
BIGNUM *Ri, *R;
crypto/libressl/crypto/bn/bn_mont.c
378
R = &(mont->RR); /* grab RR as a temp */
crypto/libressl/crypto/bn/bn_mont.c
402
BN_zero(R);
crypto/libressl/crypto/bn/bn_mont.c
403
if (!(BN_set_bit(R, 2 * BN_BITS2)))
crypto/libressl/crypto/bn/bn_mont.c
412
if ((BN_mod_inverse_ct(Ri, R, &tmod, ctx)) == NULL)
crypto/libressl/crypto/bn/bn_mont.c
437
BN_zero(R);
crypto/libressl/crypto/bn/bn_mont.c
438
if (!(BN_set_bit(R, BN_BITS2)))
crypto/libressl/crypto/bn/bn_mont.c
445
if ((BN_mod_inverse_ct(Ri, R, &tmod, ctx)) == NULL)
crypto/libressl/crypto/bn/bn_mont.c
469
BN_zero(R);
crypto/libressl/crypto/bn/bn_mont.c
470
if (!BN_set_bit(R, mont->ri))
crypto/libressl/crypto/bn/bn_mont.c
473
if ((BN_mod_inverse_ct(Ri, R, &mont->N, ctx)) == NULL)
crypto/libressl/crypto/cast/cast_lcl.h
158
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
161
t=(key[n*2] OP1 R)&0xffffffffL; \
crypto/libressl/crypto/cast/cast_lcl.h
174
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
178
w=(key[n*2] OP1 R)&0xffffffffL; \
crypto/libressl/crypto/cast/cast_lcl.h
196
#define E_CAST(n,key,L,R,OP1,OP2,OP3) \
crypto/libressl/crypto/cast/cast_lcl.h
199
t=(key[n*2] OP1 R)&0xffffffff; \
crypto/libressl/crypto/curve25519/curve25519.c
4678
ge_p3 R;
crypto/libressl/crypto/curve25519/curve25519.c
4679
x25519_ge_scalarmult_base(&R, nonce);
crypto/libressl/crypto/curve25519/curve25519.c
4680
ge_p3_tobytes(out_sig, &R);
crypto/libressl/crypto/curve25519/curve25519.c
4723
ge_p2 R;
crypto/libressl/crypto/curve25519/curve25519.c
4724
ge_double_scalarmult_vartime(&R, h, &A, scopy);
crypto/libressl/crypto/curve25519/curve25519.c
4727
x25519_ge_tobytes(rcheck, &R);
crypto/libressl/crypto/des/des_locl.h
147
#define LOAD_DATA_tmp(R,S,u,t,E0,E1) \
crypto/libressl/crypto/des/des_locl.h
148
{ DES_LONG tmp; LOAD_DATA(R,S,u,t,E0,E1,tmp); }
crypto/libressl/crypto/des/des_locl.h
150
#define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
crypto/libressl/crypto/des/des_locl.h
151
t=R^(R>>16L); \
crypto/libressl/crypto/des/des_locl.h
153
tmp=(u<<16); u^=R^s[S ]; u^=tmp; \
crypto/libressl/crypto/des/des_locl.h
154
tmp=(t<<16); t^=R^s[S+1]; t^=tmp
crypto/libressl/crypto/des/des_locl.h
157
#define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
crypto/libressl/crypto/des/des_locl.h
158
u=R^s[S ]; \
crypto/libressl/crypto/des/des_locl.h
159
t=R^s[S+1]
crypto/libressl/crypto/des/des_locl.h
176
#define D_ENCRYPT(LL,R,S) { \
crypto/libressl/crypto/des/des_locl.h
178
LOAD_DATA(R,S,u,t,E0,E1,u1); \
crypto/libressl/crypto/des/des_locl.h
204
#define D_ENCRYPT(LL,R,S) { \
crypto/libressl/crypto/des/des_locl.h
206
LOAD_DATA(R,S,u,t,E0,E1,u1); \
crypto/libressl/crypto/des/des_locl.h
232
#define D_ENCRYPT(LL,R,S) { \
crypto/libressl/crypto/des/des_locl.h
233
LOAD_DATA_tmp(R,S,u,t,E0,E1); \
crypto/libressl/crypto/des/des_locl.h
250
#define D_ENCRYPT(LL,R,S) {\
crypto/libressl/crypto/des/des_locl.h
252
LOAD_DATA(R,S,u,t,E0,E1,u1); \
crypto/libressl/crypto/des/des_locl.h
279
#define D_ENCRYPT(LL,R,S) {\
crypto/libressl/crypto/des/des_locl.h
281
LOAD_DATA(R,S,u,t,E0,E1,u1); \
crypto/libressl/crypto/des/des_locl.h
310
#define D_ENCRYPT(LL,R,S) {\
crypto/libressl/crypto/des/des_locl.h
311
LOAD_DATA_tmp(R,S,u,t,E0,E1); \
crypto/libressl/crypto/gost/gostr341001.c
255
BIGNUM *e = NULL, *R = NULL, *v = NULL, *z1 = NULL, *z2 = NULL;
crypto/libressl/crypto/gost/gostr341001.c
276
if ((R = BN_CTX_get(ctx)) == NULL)
crypto/libressl/crypto/gost/gostr341001.c
312
if (BN_mod_ct(R, X, order, ctx) == 0)
crypto/libressl/crypto/gost/gostr341001.c
314
if (BN_cmp(R, sig->r) != 0) {
crypto/openssh/sntrup761.c
1002
for (i = 0;i < p;++i) R[i] = ((r[i]+q12)*10923)>>15;
crypto/openssh/sntrup761.c
1004
Encode(s,R,M,p);
crypto/openssh/sntrup761.c
1009
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
1013
Decode(R,s,M,p);
crypto/openssh/sntrup761.c
1014
for (i = 0;i < p;++i) r[i] = R[i]*3-q12;
crypto/openssh/sntrup761.c
354
static void Encode(unsigned char *out,const uint16 *R,const uint16 *M,long long len)
crypto/openssh/sntrup761.c
357
uint16 r = R[0];
crypto/openssh/sntrup761.c
371
uint32 r = R[i]+R[i+1]*m0;
crypto/openssh/sntrup761.c
382
R2[i/2] = R[i];
crypto/openssh/sntrup761.c
975
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
978
for (i = 0;i < p;++i) R[i] = r[i]+q12;
crypto/openssh/sntrup761.c
980
Encode(s,R,M,p);
crypto/openssh/sntrup761.c
985
uint16 R[p],M[p];
crypto/openssh/sntrup761.c
989
Decode(R,s,M,p);
crypto/openssh/sntrup761.c
990
for (i = 0;i < p;++i) r[i] = ((Fq)R[i])-q12;
crypto/openssh/sntrup761.c
999
uint16 R[p],M[p];
crypto/openssh/xmss_fast.c
582
unsigned char R[n];
crypto/openssh/xmss_fast.c
593
prf(R, idx_bytes_32, sk_prf, n);
crypto/openssh/xmss_fast.c
595
memcpy(hash_key, R, n);
crypto/openssh/xmss_fast.c
615
sig_msg[i] = R[i];
crypto/openssh/xmss_fast.c
805
unsigned char R[n];
crypto/openssh/xmss_fast.c
839
prf(R, idx_bytes_32, sk_prf, n);
crypto/openssh/xmss_fast.c
841
memcpy(hash_key, R, n);
crypto/openssh/xmss_fast.c
861
sig_msg[i] = R[i];
games/sail/assorted.c
74
Rhit = rhits = tp->R;
games/sail/extern.h
227
char H, G, C, R;
games/sail/pl_3.c
189
rhits = t->R;
libexec/ftpd/ftpcmd.y
116
L N P R S T
libexec/ftpd/ftpcmd.y
1494
return (R);
libexec/ftpd/ftpcmd.y
437
| ALLO check_login SP NUMBER SP R SP NUMBER CRLF
libexec/ftpd/ftpcmd.y
952
| R
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
133
{ 0xD8, R, "CD-DA READ" }
sys/bus/cam/scsi/scsi_all.c
192
{ 0x01, D | W | R | O | M, "REZERO UNIT" },
sys/bus/cam/scsi/scsi_all.c
197
{ 0x04, D | R | O, "FORMAT UNIT" },
sys/bus/cam/scsi/scsi_all.c
225
{ 0x0B, D | W | R | O, "SEEK(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
251
{ 0x16, ALL & ~(R | B | V | F | C), "RESERVE(6)" },
sys/bus/cam/scsi/scsi_all.c
255
{ 0x17, ALL & ~(R | B | V | F | C), "RELEASE(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
265
{ 0x1B, D | W | R | O | A | B | K | F, "START STOP UNIT" },
sys/bus/cam/scsi/scsi_all.c
275
{ 0x1C, ALL & ~(R | B), "RECEIVE DIAGNOSTIC RESULTS" },
sys/bus/cam/scsi/scsi_all.c
277
{ 0x1D, ALL & ~(R | B), "SEND DIAGNOSTIC" },
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
286
{ 0x23, R, "READ FORMAT CAPACITIES" },
sys/bus/cam/scsi/scsi_all.c
292
{ 0x25, R, "READ CAPACITY" },
sys/bus/cam/scsi/scsi_all.c
300
{ 0x28, D | W | R | O | B | K | S, "READ(10)" },
sys/bus/cam/scsi/scsi_all.c
306
{ 0x2A, D | W | R | O | B | K, "WRITE(10)" },
sys/bus/cam/scsi/scsi_all.c
312
{ 0x2B, D | W | R | O | K, "SEEK(10)" },
sys/bus/cam/scsi/scsi_all.c
318
{ 0x2C, R | O, "ERASE(10)" },
sys/bus/cam/scsi/scsi_all.c
323
{ 0x2E, D | W | R | O | B | K, "WRITE AND VERIFY(10)" },
sys/bus/cam/scsi/scsi_all.c
325
{ 0x2F, D | W | R | O, "VERIFY(10)" },
sys/bus/cam/scsi/scsi_all.c
327
{ 0x30, D | W | R | O, "SEARCH DATA HIGH(10)" },
sys/bus/cam/scsi/scsi_all.c
329
{ 0x31, D | W | R | O, "SEARCH DATA EQUAL(10)" },
sys/bus/cam/scsi/scsi_all.c
333
{ 0x32, D | W | R | O, "SEARCH DATA LOW(10)" },
sys/bus/cam/scsi/scsi_all.c
335
{ 0x33, D | W | R | O, "SET LIMITS(10)" },
sys/bus/cam/scsi/scsi_all.c
343
{ 0x35, D | W | R | O | B | K, "SYNCHRONIZE CACHE(10)" },
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
371
{ 0x42, R, "READ SUB-CHANNEL" },
sys/bus/cam/scsi/scsi_all.c
373
{ 0x43, R, "READ TOC/PMA/ATIP" },
sys/bus/cam/scsi/scsi_all.c
378
{ 0x45, R, "PLAY AUDIO(10)" },
sys/bus/cam/scsi/scsi_all.c
380
{ 0x46, R, "GET CONFIGURATION" },
sys/bus/cam/scsi/scsi_all.c
382
{ 0x47, R, "PLAY AUDIO MSF" },
sys/bus/cam/scsi/scsi_all.c
386
{ 0x4A, R, "GET EVENT STATUS NOTIFICATION" },
sys/bus/cam/scsi/scsi_all.c
388
{ 0x4B, R, "PAUSE/RESUME" },
sys/bus/cam/scsi/scsi_all.c
390
{ 0x4C, ALL & ~(R | B), "LOG SELECT" },
sys/bus/cam/scsi/scsi_all.c
392
{ 0x4D, ALL & ~(R | B), "LOG SENSE" },
sys/bus/cam/scsi/scsi_all.c
394
{ 0x4E, R, "STOP PLAY/SCAN" },
sys/bus/cam/scsi/scsi_all.c
401
{ 0x51, R, "READ DISC INFORMATION" },
sys/bus/cam/scsi/scsi_all.c
405
{ 0x52, R, "READ TRACK INFORMATION" },
sys/bus/cam/scsi/scsi_all.c
407
{ 0x53, R, "RESERVE TRACK" },
sys/bus/cam/scsi/scsi_all.c
409
{ 0x54, R, "SEND OPC INFORMATION" },
sys/bus/cam/scsi/scsi_all.c
413
{ 0x56, ALL & ~(R | B | K | V | F | C), "RESERVE(10)" },
sys/bus/cam/scsi/scsi_all.c
417
{ 0x57, ALL & ~(R | B | K | V | F | C), "RELEASE(10)" },
sys/bus/cam/scsi/scsi_all.c
421
{ 0x58, R, "REPAIR TRACK" },
sys/bus/cam/scsi/scsi_all.c
426
{ 0x5B, R, "CLOSE TRACK/SESSION" },
sys/bus/cam/scsi/scsi_all.c
428
{ 0x5C, R, "READ BUFFER CAPACITY" },
sys/bus/cam/scsi/scsi_all.c
430
{ 0x5D, R, "SEND CUE SHEET" },
sys/bus/cam/scsi/scsi_all.c
432
{ 0x5E, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE IN" },
sys/bus/cam/scsi/scsi_all.c
434
{ 0x5F, ALL & ~(R | B | K | V | C), "PERSISTENT RESERVE OUT" },
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
454
{ 0x85, D | R | B, "ATA COMMAND PASS THROUGH(16)" },
sys/bus/cam/scsi/scsi_all.c
456
{ 0x86, ALL & ~(L | R | F), "ACCESS CONTROL IN" },
sys/bus/cam/scsi/scsi_all.c
458
{ 0x87, ALL & ~(L | R | F), "ACCESS CONTROL OUT" },
sys/bus/cam/scsi/scsi_all.c
509
{ 0xA0, ALL & ~(R | B), "REPORT LUNS" },
sys/bus/cam/scsi/scsi_all.c
511
{ 0xA1, R, "BLANK" },
sys/bus/cam/scsi/scsi_all.c
515
{ 0xA2, D | T | R | V, "SECURITY PROTOCOL IN" },
sys/bus/cam/scsi/scsi_all.c
517
{ 0xA3, ALL & ~(P | R | F), "MAINTENANCE (IN)" },
sys/bus/cam/scsi/scsi_all.c
519
{ 0xA3, R, "SEND KEY" },
sys/bus/cam/scsi/scsi_all.c
521
{ 0xA4, ALL & ~(P | R | F), "MAINTENANCE (OUT)" },
sys/bus/cam/scsi/scsi_all.c
523
{ 0xA4, R, "REPORT KEY" },
sys/bus/cam/scsi/scsi_all.c
527
{ 0xA5, R, "PLAY AUDIO(12)" },
sys/bus/cam/scsi/scsi_all.c
531
{ 0xA6, R, "LOAD/UNLOAD C/DVD" },
sys/bus/cam/scsi/scsi_all.c
535
{ 0xA7, R, "SET READ AHEAD" },
sys/bus/cam/scsi/scsi_all.c
537
{ 0xA8, D | W | R | O, "READ(12)" },
sys/bus/cam/scsi/scsi_all.c
543
{ 0xAA, D | W | R | O, "WRITE(12)" },
sys/bus/cam/scsi/scsi_all.c
547
{ 0xAB, R | V, "SERVICE ACTION IN(12)" },
sys/bus/cam/scsi/scsi_all.c
551
{ 0xAC, R, "GET PERFORMANCE" },
sys/bus/cam/scsi/scsi_all.c
553
{ 0xAD, R, "READ DVD STRUCTURE" },
sys/bus/cam/scsi/scsi_all.c
557
{ 0xAF, D | W | R | O, "VERIFY(12)" },
sys/bus/cam/scsi/scsi_all.c
559
{ 0xB0, W | R | O, "SEARCH DATA HIGH(12)" },
sys/bus/cam/scsi/scsi_all.c
561
{ 0xB1, W | R | O, "SEARCH DATA EQUAL(12)" },
sys/bus/cam/scsi/scsi_all.c
563
{ 0xB2, W | R | O, "SEARCH DATA LOW(12)" },
sys/bus/cam/scsi/scsi_all.c
565
{ 0xB3, D | W | R | O, "SET LIMITS(12)" },
sys/bus/cam/scsi/scsi_all.c
567
{ 0xB4, D | T | W | R | O, "READ ELEMENT STATUS ATTACHED" },
sys/bus/cam/scsi/scsi_all.c
569
{ 0xB5, D | T | R | V, "SECURITY PROTOCOL OUT" },
sys/bus/cam/scsi/scsi_all.c
575
{ 0xB6, R, "SET STREAMING" },
sys/bus/cam/scsi/scsi_all.c
579
{ 0xB8, T | W | R | O | M, "READ ELEMENT STATUS" },
sys/bus/cam/scsi/scsi_all.c
581
{ 0xB9, R, "READ CD MSF" },
sys/bus/cam/scsi/scsi_all.c
585
{ 0xBA, R, "SCAN" },
sys/bus/cam/scsi/scsi_all.c
589
{ 0xBB, R, "SET CD SPEED" },
sys/bus/cam/scsi/scsi_all.c
595
{ 0xBD, R, "MECHANISM STATUS" },
sys/bus/cam/scsi/scsi_all.c
599
{ 0xBE, R, "READ CD" },
sys/bus/cam/scsi/scsi_all.c
603
{ 0xBF, R, "SEND DVD STRUCTURE" }
sys/cpu/x86_64/misc/db_disasm.c
1364
case R:
sys/cpu/x86_64/misc/db_disasm.c
238
/*02*/ { "lar", TRUE, LONG, op2(E,R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
239
/*03*/ { "lsl", TRUE, LONG, op2(E,R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
296
/*40*/ { "cmovo", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
297
/*41*/ { "cmovno", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
298
/*42*/ { "cmovb", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
299
/*43*/ { "cmovnb", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
300
/*44*/ { "cmovz", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
301
/*45*/ { "cmovnz", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
302
/*46*/ { "cmovbe", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
303
/*47*/ { "cmovnbe",TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
305
/*48*/ { "cmovs", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
306
/*49*/ { "cmovns", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
307
/*4a*/ { "cmovp", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
308
/*4b*/ { "cmovnp", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
309
/*4c*/ { "cmovl", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
310
/*4d*/ { "cmovnl", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
311
/*4e*/ { "cmovle", TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
312
/*4f*/ { "cmovnle",TRUE, NONE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
359
/*a3*/ { "bt", TRUE, LONG, op2(R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
360
/*a4*/ { "shld", TRUE, LONG, op3(Ib,R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
361
/*a5*/ { "shld", TRUE, LONG, op3(CL,R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
368
/*ab*/ { "bts", TRUE, LONG, op2(R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
369
/*ac*/ { "shrd", TRUE, LONG, op3(Ib,R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
370
/*ad*/ { "shrd", TRUE, LONG, op3(CL,R,E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
372
/*a7*/ { "imul", TRUE, LONG, op2(E,R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
376
/*b0*/ { "cmpxchg",TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
377
/*b0*/ { "cmpxchg",TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
378
/*b2*/ { "lss", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
379
/*b3*/ { "btr", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
380
/*b4*/ { "lfs", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
381
/*b5*/ { "lgs", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
382
/*b6*/ { "movzb", TRUE, LONG, op2(Eb, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
383
/*b7*/ { "movzw", TRUE, LONG, op2(Ew, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
388
/*bb*/ { "btc", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
389
/*bc*/ { "bsf", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
390
/*bd*/ { "bsr", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
391
/*be*/ { "movsb", TRUE, LONG, op2(Eb, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
392
/*bf*/ { "movsw", TRUE, LONG, op2(Ew, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
396
/*c0*/ { "xadd", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
397
/*c1*/ { "xadd", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
615
/*00*/ { "add", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
616
/*01*/ { "add", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
617
/*02*/ { "add", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
618
/*03*/ { "add", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
624
/*08*/ { "or", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
625
/*09*/ { "or", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
626
/*0a*/ { "or", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
627
/*0b*/ { "or", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
633
/*10*/ { "adc", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
634
/*11*/ { "adc", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
635
/*12*/ { "adc", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
636
/*13*/ { "adc", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
642
/*18*/ { "sbb", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
643
/*19*/ { "sbb", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
644
/*1a*/ { "sbb", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
645
/*1b*/ { "sbb", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
651
/*20*/ { "and", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
652
/*21*/ { "and", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
653
/*22*/ { "and", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
654
/*23*/ { "and", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
660
/*28*/ { "sub", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
661
/*29*/ { "sub", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
662
/*2a*/ { "sub", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
663
/*2b*/ { "sub", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
669
/*30*/ { "xor", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
670
/*31*/ { "xor", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
671
/*32*/ { "xor", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
672
/*33*/ { "xor", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
678
/*38*/ { "cmp", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
679
/*39*/ { "cmp", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
680
/*3a*/ { "cmp", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
681
/*3b*/ { "cmp", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
725
/*62*/ { "bound", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
726
/*63*/ { "movslq", TRUE, NONE, op2(EL,R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
734
/*69*/ { "imul", TRUE, LONG, op3(I,E,R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
736
/*6b*/ { "imul", TRUE, LONG, op3(Ibs,E,R),0 },
sys/cpu/x86_64/misc/db_disasm.c
764
/*84*/ { "test", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
765
/*85*/ { "test", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
766
/*86*/ { "xchg", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
767
/*87*/ { "xchg", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
769
/*88*/ { "mov", TRUE, BYTE, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
770
/*89*/ { "mov", TRUE, LONG, op2(R, E), 0 },
sys/cpu/x86_64/misc/db_disasm.c
771
/*8a*/ { "mov", TRUE, BYTE, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
772
/*8b*/ { "mov", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
774
/*8d*/ { "lea", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
836
/*c4*/ { "les", TRUE, LONG, op2(E, R), 0 },
sys/cpu/x86_64/misc/db_disasm.c
837
/*c5*/ { "lds", TRUE, LONG, op2(E, R), 0 },
sys/crypto/blowfish/bf_locl.h
168
#define BF_ENC(LL,R,S,P) \
sys/crypto/blowfish/bf_locl.h
170
LL^=((( S[ (R>>24L) ] + \
sys/crypto/blowfish/bf_locl.h
171
S[0x0100+((R>>16L)&0xff)])^ \
sys/crypto/blowfish/bf_locl.h
172
S[0x0200+((R>> 8L)&0xff)])+ \
sys/crypto/blowfish/bf_locl.h
173
S[0x0300+((R )&0xff)])&0xffffffff;
sys/crypto/des/des_locl.h
127
#define LOAD_DATA(R,S,u,t,E0,E1,tmp) \
sys/crypto/des/des_locl.h
128
u=R^s[S ]; \
sys/crypto/des/des_locl.h
129
t=R^s[S+1]
sys/crypto/des/des_locl.h
145
#define D_ENCRYPT(LL,R,S) { \
sys/crypto/des/des_locl.h
147
LOAD_DATA(R,S,u,t,E0,E1,u1); \
sys/crypto/des/des_locl.h
173
#define D_ENCRYPT(LL,R,S) { \
sys/crypto/des/des_locl.h
175
LOAD_DATA(R,S,u,t,E0,E1,u1); \
sys/crypto/des/des_locl.h
212
#define D_ENCRYPT(LL,R,S) { \
sys/crypto/des/des_locl.h
213
LOAD_DATA_tmp(R,S,u,t,E0,E1); \
sys/crypto/des/des_locl.h
229
#define D_ENCRYPT(LL,R,S) {\
sys/crypto/des/des_locl.h
231
LOAD_DATA(R,S,u,t,E0,E1,u1); \
sys/crypto/des/des_locl.h
258
#define D_ENCRYPT(LL,R,S) {\
sys/crypto/des/des_locl.h
260
LOAD_DATA(R,S,u,t,E0,E1,u1); \
sys/crypto/des/des_locl.h
289
#define D_ENCRYPT(LL,R,S) {\
sys/crypto/des/des_locl.h
290
LOAD_DATA_tmp(R,S,u,t,E0,E1); \
sys/crypto/rmd160/rmd160.c
180
R(a, b, c, d, e, F0, K0, 11, 0);
sys/crypto/rmd160/rmd160.c
181
R(e, a, b, c, d, F0, K0, 14, 1);
sys/crypto/rmd160/rmd160.c
182
R(d, e, a, b, c, F0, K0, 15, 2);
sys/crypto/rmd160/rmd160.c
183
R(c, d, e, a, b, F0, K0, 12, 3);
sys/crypto/rmd160/rmd160.c
184
R(b, c, d, e, a, F0, K0, 5, 4);
sys/crypto/rmd160/rmd160.c
185
R(a, b, c, d, e, F0, K0, 8, 5);
sys/crypto/rmd160/rmd160.c
186
R(e, a, b, c, d, F0, K0, 7, 6);
sys/crypto/rmd160/rmd160.c
187
R(d, e, a, b, c, F0, K0, 9, 7);
sys/crypto/rmd160/rmd160.c
188
R(c, d, e, a, b, F0, K0, 11, 8);
sys/crypto/rmd160/rmd160.c
189
R(b, c, d, e, a, F0, K0, 13, 9);
sys/crypto/rmd160/rmd160.c
190
R(a, b, c, d, e, F0, K0, 14, 10);
sys/crypto/rmd160/rmd160.c
191
R(e, a, b, c, d, F0, K0, 15, 11);
sys/crypto/rmd160/rmd160.c
192
R(d, e, a, b, c, F0, K0, 6, 12);
sys/crypto/rmd160/rmd160.c
193
R(c, d, e, a, b, F0, K0, 7, 13);
sys/crypto/rmd160/rmd160.c
194
R(b, c, d, e, a, F0, K0, 9, 14);
sys/crypto/rmd160/rmd160.c
195
R(a, b, c, d, e, F0, K0, 8, 15); /* #15 */
sys/crypto/rmd160/rmd160.c
197
R(e, a, b, c, d, F1, K1, 7, 7);
sys/crypto/rmd160/rmd160.c
198
R(d, e, a, b, c, F1, K1, 6, 4);
sys/crypto/rmd160/rmd160.c
199
R(c, d, e, a, b, F1, K1, 8, 13);
sys/crypto/rmd160/rmd160.c
200
R(b, c, d, e, a, F1, K1, 13, 1);
sys/crypto/rmd160/rmd160.c
201
R(a, b, c, d, e, F1, K1, 11, 10);
sys/crypto/rmd160/rmd160.c
202
R(e, a, b, c, d, F1, K1, 9, 6);
sys/crypto/rmd160/rmd160.c
203
R(d, e, a, b, c, F1, K1, 7, 15);
sys/crypto/rmd160/rmd160.c
204
R(c, d, e, a, b, F1, K1, 15, 3);
sys/crypto/rmd160/rmd160.c
205
R(b, c, d, e, a, F1, K1, 7, 12);
sys/crypto/rmd160/rmd160.c
206
R(a, b, c, d, e, F1, K1, 12, 0);
sys/crypto/rmd160/rmd160.c
207
R(e, a, b, c, d, F1, K1, 15, 9);
sys/crypto/rmd160/rmd160.c
208
R(d, e, a, b, c, F1, K1, 9, 5);
sys/crypto/rmd160/rmd160.c
209
R(c, d, e, a, b, F1, K1, 11, 2);
sys/crypto/rmd160/rmd160.c
210
R(b, c, d, e, a, F1, K1, 7, 14);
sys/crypto/rmd160/rmd160.c
211
R(a, b, c, d, e, F1, K1, 13, 11);
sys/crypto/rmd160/rmd160.c
212
R(e, a, b, c, d, F1, K1, 12, 8); /* #31 */
sys/crypto/rmd160/rmd160.c
214
R(d, e, a, b, c, F2, K2, 11, 3);
sys/crypto/rmd160/rmd160.c
215
R(c, d, e, a, b, F2, K2, 13, 10);
sys/crypto/rmd160/rmd160.c
216
R(b, c, d, e, a, F2, K2, 6, 14);
sys/crypto/rmd160/rmd160.c
217
R(a, b, c, d, e, F2, K2, 7, 4);
sys/crypto/rmd160/rmd160.c
218
R(e, a, b, c, d, F2, K2, 14, 9);
sys/crypto/rmd160/rmd160.c
219
R(d, e, a, b, c, F2, K2, 9, 15);
sys/crypto/rmd160/rmd160.c
220
R(c, d, e, a, b, F2, K2, 13, 8);
sys/crypto/rmd160/rmd160.c
221
R(b, c, d, e, a, F2, K2, 15, 1);
sys/crypto/rmd160/rmd160.c
222
R(a, b, c, d, e, F2, K2, 14, 2);
sys/crypto/rmd160/rmd160.c
223
R(e, a, b, c, d, F2, K2, 8, 7);
sys/crypto/rmd160/rmd160.c
224
R(d, e, a, b, c, F2, K2, 13, 0);
sys/crypto/rmd160/rmd160.c
225
R(c, d, e, a, b, F2, K2, 6, 6);
sys/crypto/rmd160/rmd160.c
226
R(b, c, d, e, a, F2, K2, 5, 13);
sys/crypto/rmd160/rmd160.c
227
R(a, b, c, d, e, F2, K2, 12, 11);
sys/crypto/rmd160/rmd160.c
228
R(e, a, b, c, d, F2, K2, 7, 5);
sys/crypto/rmd160/rmd160.c
229
R(d, e, a, b, c, F2, K2, 5, 12); /* #47 */
sys/crypto/rmd160/rmd160.c
231
R(c, d, e, a, b, F3, K3, 11, 1);
sys/crypto/rmd160/rmd160.c
232
R(b, c, d, e, a, F3, K3, 12, 9);
sys/crypto/rmd160/rmd160.c
233
R(a, b, c, d, e, F3, K3, 14, 11);
sys/crypto/rmd160/rmd160.c
234
R(e, a, b, c, d, F3, K3, 15, 10);
sys/crypto/rmd160/rmd160.c
235
R(d, e, a, b, c, F3, K3, 14, 0);
sys/crypto/rmd160/rmd160.c
236
R(c, d, e, a, b, F3, K3, 15, 8);
sys/crypto/rmd160/rmd160.c
237
R(b, c, d, e, a, F3, K3, 9, 12);
sys/crypto/rmd160/rmd160.c
238
R(a, b, c, d, e, F3, K3, 8, 4);
sys/crypto/rmd160/rmd160.c
239
R(e, a, b, c, d, F3, K3, 9, 13);
sys/crypto/rmd160/rmd160.c
240
R(d, e, a, b, c, F3, K3, 14, 3);
sys/crypto/rmd160/rmd160.c
241
R(c, d, e, a, b, F3, K3, 5, 7);
sys/crypto/rmd160/rmd160.c
242
R(b, c, d, e, a, F3, K3, 6, 15);
sys/crypto/rmd160/rmd160.c
243
R(a, b, c, d, e, F3, K3, 8, 14);
sys/crypto/rmd160/rmd160.c
244
R(e, a, b, c, d, F3, K3, 6, 5);
sys/crypto/rmd160/rmd160.c
245
R(d, e, a, b, c, F3, K3, 5, 6);
sys/crypto/rmd160/rmd160.c
246
R(c, d, e, a, b, F3, K3, 12, 2); /* #63 */
sys/crypto/rmd160/rmd160.c
248
R(b, c, d, e, a, F4, K4, 9, 4);
sys/crypto/rmd160/rmd160.c
249
R(a, b, c, d, e, F4, K4, 15, 0);
sys/crypto/rmd160/rmd160.c
250
R(e, a, b, c, d, F4, K4, 5, 5);
sys/crypto/rmd160/rmd160.c
251
R(d, e, a, b, c, F4, K4, 11, 9);
sys/crypto/rmd160/rmd160.c
252
R(c, d, e, a, b, F4, K4, 6, 7);
sys/crypto/rmd160/rmd160.c
253
R(b, c, d, e, a, F4, K4, 8, 12);
sys/crypto/rmd160/rmd160.c
254
R(a, b, c, d, e, F4, K4, 13, 2);
sys/crypto/rmd160/rmd160.c
255
R(e, a, b, c, d, F4, K4, 12, 10);
sys/crypto/rmd160/rmd160.c
256
R(d, e, a, b, c, F4, K4, 5, 14);
sys/crypto/rmd160/rmd160.c
257
R(c, d, e, a, b, F4, K4, 12, 1);
sys/crypto/rmd160/rmd160.c
258
R(b, c, d, e, a, F4, K4, 13, 3);
sys/crypto/rmd160/rmd160.c
259
R(a, b, c, d, e, F4, K4, 14, 8);
sys/crypto/rmd160/rmd160.c
260
R(e, a, b, c, d, F4, K4, 11, 11);
sys/crypto/rmd160/rmd160.c
261
R(d, e, a, b, c, F4, K4, 8, 6);
sys/crypto/rmd160/rmd160.c
262
R(c, d, e, a, b, F4, K4, 5, 15);
sys/crypto/rmd160/rmd160.c
263
R(b, c, d, e, a, F4, K4, 6, 13); /* #79 */
sys/crypto/rmd160/rmd160.c
274
R(a, b, c, d, e, F4, KK0, 8, 5);
sys/crypto/rmd160/rmd160.c
275
R(e, a, b, c, d, F4, KK0, 9, 14);
sys/crypto/rmd160/rmd160.c
276
R(d, e, a, b, c, F4, KK0, 9, 7);
sys/crypto/rmd160/rmd160.c
277
R(c, d, e, a, b, F4, KK0, 11, 0);
sys/crypto/rmd160/rmd160.c
278
R(b, c, d, e, a, F4, KK0, 13, 9);
sys/crypto/rmd160/rmd160.c
279
R(a, b, c, d, e, F4, KK0, 15, 2);
sys/crypto/rmd160/rmd160.c
280
R(e, a, b, c, d, F4, KK0, 15, 11);
sys/crypto/rmd160/rmd160.c
281
R(d, e, a, b, c, F4, KK0, 5, 4);
sys/crypto/rmd160/rmd160.c
282
R(c, d, e, a, b, F4, KK0, 7, 13);
sys/crypto/rmd160/rmd160.c
283
R(b, c, d, e, a, F4, KK0, 7, 6);
sys/crypto/rmd160/rmd160.c
284
R(a, b, c, d, e, F4, KK0, 8, 15);
sys/crypto/rmd160/rmd160.c
285
R(e, a, b, c, d, F4, KK0, 11, 8);
sys/crypto/rmd160/rmd160.c
286
R(d, e, a, b, c, F4, KK0, 14, 1);
sys/crypto/rmd160/rmd160.c
287
R(c, d, e, a, b, F4, KK0, 14, 10);
sys/crypto/rmd160/rmd160.c
288
R(b, c, d, e, a, F4, KK0, 12, 3);
sys/crypto/rmd160/rmd160.c
289
R(a, b, c, d, e, F4, KK0, 6, 12); /* #15 */
sys/crypto/rmd160/rmd160.c
291
R(e, a, b, c, d, F3, KK1, 9, 6);
sys/crypto/rmd160/rmd160.c
292
R(d, e, a, b, c, F3, KK1, 13, 11);
sys/crypto/rmd160/rmd160.c
293
R(c, d, e, a, b, F3, KK1, 15, 3);
sys/crypto/rmd160/rmd160.c
294
R(b, c, d, e, a, F3, KK1, 7, 7);
sys/crypto/rmd160/rmd160.c
295
R(a, b, c, d, e, F3, KK1, 12, 0);
sys/crypto/rmd160/rmd160.c
296
R(e, a, b, c, d, F3, KK1, 8, 13);
sys/crypto/rmd160/rmd160.c
297
R(d, e, a, b, c, F3, KK1, 9, 5);
sys/crypto/rmd160/rmd160.c
298
R(c, d, e, a, b, F3, KK1, 11, 10);
sys/crypto/rmd160/rmd160.c
299
R(b, c, d, e, a, F3, KK1, 7, 14);
sys/crypto/rmd160/rmd160.c
300
R(a, b, c, d, e, F3, KK1, 7, 15);
sys/crypto/rmd160/rmd160.c
301
R(e, a, b, c, d, F3, KK1, 12, 8);
sys/crypto/rmd160/rmd160.c
302
R(d, e, a, b, c, F3, KK1, 7, 12);
sys/crypto/rmd160/rmd160.c
303
R(c, d, e, a, b, F3, KK1, 6, 4);
sys/crypto/rmd160/rmd160.c
304
R(b, c, d, e, a, F3, KK1, 15, 9);
sys/crypto/rmd160/rmd160.c
305
R(a, b, c, d, e, F3, KK1, 13, 1);
sys/crypto/rmd160/rmd160.c
306
R(e, a, b, c, d, F3, KK1, 11, 2); /* #31 */
sys/crypto/rmd160/rmd160.c
308
R(d, e, a, b, c, F2, KK2, 9, 15);
sys/crypto/rmd160/rmd160.c
309
R(c, d, e, a, b, F2, KK2, 7, 5);
sys/crypto/rmd160/rmd160.c
310
R(b, c, d, e, a, F2, KK2, 15, 1);
sys/crypto/rmd160/rmd160.c
311
R(a, b, c, d, e, F2, KK2, 11, 3);
sys/crypto/rmd160/rmd160.c
312
R(e, a, b, c, d, F2, KK2, 8, 7);
sys/crypto/rmd160/rmd160.c
313
R(d, e, a, b, c, F2, KK2, 6, 14);
sys/crypto/rmd160/rmd160.c
314
R(c, d, e, a, b, F2, KK2, 6, 6);
sys/crypto/rmd160/rmd160.c
315
R(b, c, d, e, a, F2, KK2, 14, 9);
sys/crypto/rmd160/rmd160.c
316
R(a, b, c, d, e, F2, KK2, 12, 11);
sys/crypto/rmd160/rmd160.c
317
R(e, a, b, c, d, F2, KK2, 13, 8);
sys/crypto/rmd160/rmd160.c
318
R(d, e, a, b, c, F2, KK2, 5, 12);
sys/crypto/rmd160/rmd160.c
319
R(c, d, e, a, b, F2, KK2, 14, 2);
sys/crypto/rmd160/rmd160.c
320
R(b, c, d, e, a, F2, KK2, 13, 10);
sys/crypto/rmd160/rmd160.c
321
R(a, b, c, d, e, F2, KK2, 13, 0);
sys/crypto/rmd160/rmd160.c
322
R(e, a, b, c, d, F2, KK2, 7, 4);
sys/crypto/rmd160/rmd160.c
323
R(d, e, a, b, c, F2, KK2, 5, 13); /* #47 */
sys/crypto/rmd160/rmd160.c
325
R(c, d, e, a, b, F1, KK3, 15, 8);
sys/crypto/rmd160/rmd160.c
326
R(b, c, d, e, a, F1, KK3, 5, 6);
sys/crypto/rmd160/rmd160.c
327
R(a, b, c, d, e, F1, KK3, 8, 4);
sys/crypto/rmd160/rmd160.c
328
R(e, a, b, c, d, F1, KK3, 11, 1);
sys/crypto/rmd160/rmd160.c
329
R(d, e, a, b, c, F1, KK3, 14, 3);
sys/crypto/rmd160/rmd160.c
330
R(c, d, e, a, b, F1, KK3, 14, 11);
sys/crypto/rmd160/rmd160.c
331
R(b, c, d, e, a, F1, KK3, 6, 15);
sys/crypto/rmd160/rmd160.c
332
R(a, b, c, d, e, F1, KK3, 14, 0);
sys/crypto/rmd160/rmd160.c
333
R(e, a, b, c, d, F1, KK3, 6, 5);
sys/crypto/rmd160/rmd160.c
334
R(d, e, a, b, c, F1, KK3, 9, 12);
sys/crypto/rmd160/rmd160.c
335
R(c, d, e, a, b, F1, KK3, 12, 2);
sys/crypto/rmd160/rmd160.c
336
R(b, c, d, e, a, F1, KK3, 9, 13);
sys/crypto/rmd160/rmd160.c
337
R(a, b, c, d, e, F1, KK3, 12, 9);
sys/crypto/rmd160/rmd160.c
338
R(e, a, b, c, d, F1, KK3, 5, 7);
sys/crypto/rmd160/rmd160.c
339
R(d, e, a, b, c, F1, KK3, 15, 10);
sys/crypto/rmd160/rmd160.c
340
R(c, d, e, a, b, F1, KK3, 8, 14); /* #63 */
sys/crypto/rmd160/rmd160.c
342
R(b, c, d, e, a, F0, KK4, 8, 12);
sys/crypto/rmd160/rmd160.c
343
R(a, b, c, d, e, F0, KK4, 5, 15);
sys/crypto/rmd160/rmd160.c
344
R(e, a, b, c, d, F0, KK4, 12, 10);
sys/crypto/rmd160/rmd160.c
345
R(d, e, a, b, c, F0, KK4, 9, 4);
sys/crypto/rmd160/rmd160.c
346
R(c, d, e, a, b, F0, KK4, 12, 1);
sys/crypto/rmd160/rmd160.c
347
R(b, c, d, e, a, F0, KK4, 5, 5);
sys/crypto/rmd160/rmd160.c
348
R(a, b, c, d, e, F0, KK4, 14, 8);
sys/crypto/rmd160/rmd160.c
349
R(e, a, b, c, d, F0, KK4, 6, 7);
sys/crypto/rmd160/rmd160.c
350
R(d, e, a, b, c, F0, KK4, 8, 6);
sys/crypto/rmd160/rmd160.c
351
R(c, d, e, a, b, F0, KK4, 13, 2);
sys/crypto/rmd160/rmd160.c
352
R(b, c, d, e, a, F0, KK4, 6, 13);
sys/crypto/rmd160/rmd160.c
353
R(a, b, c, d, e, F0, KK4, 5, 14);
sys/crypto/rmd160/rmd160.c
354
R(e, a, b, c, d, F0, KK4, 15, 0);
sys/crypto/rmd160/rmd160.c
355
R(d, e, a, b, c, F0, KK4, 13, 3);
sys/crypto/rmd160/rmd160.c
356
R(c, d, e, a, b, F0, KK4, 11, 9);
sys/crypto/rmd160/rmd160.c
357
R(b, c, d, e, a, F0, KK4, 11, 11); /* #79 */
sys/crypto/sha2/sha2.c
197
#define sigma0_256(x) (S32(7, (x)) ^ S32(18, (x)) ^ R(3 , (x)))
sys/crypto/sha2/sha2.c
198
#define sigma1_256(x) (S32(17, (x)) ^ S32(19, (x)) ^ R(10, (x)))
sys/crypto/sha2/sha2.c
203
#define sigma0_512(x) (S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7, (x)))
sys/crypto/sha2/sha2.c
204
#define sigma1_512(x) (S64(19, (x)) ^ S64(61, (x)) ^ R( 6, (x)))
sys/dev/disk/iscsi/initiator/isc_soc.c
449
&& cmd->R
sys/dev/disk/iscsi/initiator/iscsi.h
132
u_char R:1;
sys/dev/disk/iscsi/initiator/iscsi_subr.c
515
cmd->R = (ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN;
sys/dev/disk/iscsi/initiator/iscsi_subr.c
554
pq->pdu.ipdu.bhs.opcode, cmd->R);
sys/dev/disk/iscsi/initiator/iscsi_subr.c
562
if(cmd->R) {
sys/dev/drm/amd/amdgpu/si_dpm.c
2610
dte_tables->R[i] = cpu_to_be32(dte_data->r[i]);
sys/dev/drm/amd/amdgpu/sislands_smc.h
372
uint32_t R[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
sys/dev/drm/i915/i915_cmd_parser.c
216
CMD( MI_USER_INTERRUPT, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
221
CMD( MI_SEMAPHORE_MBOX, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
222
CMD( MI_STORE_DWORD_INDEX, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
249
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
253
CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
254
CMD( MI_SET_CONTEXT, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
262
CMD( MI_UPDATE_GTT, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
315
CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
332
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
340
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
376
CMD( MI_ARB_ON_OFF, SMI, F, 1, R ),
sys/dev/drm/i915/i915_cmd_parser.c
384
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
414
CMD( MI_DISPLAY_FLIP, SMI, !F, 0xFF, R ),
sys/dev/drm/i915/i915_cmd_parser.c
421
CMD( MI_UPDATE_GTT, SMI, !F, 0x3F, R ),
sys/dev/drm/i915/i915_cmd_parser.c
448
CMD( MI_LOAD_SCAN_LINES_EXCL, SMI, !F, 0x3F, R ),
sys/dev/drm/radeon/r300_reg.h
929
# define R300_EASY_TX_FORMAT(B, G, R, A, FMT) ( \
sys/dev/drm/radeon/r300_reg.h
932
| ((R300_TX_FORMAT_##R)<<R300_TX_FORMAT_R_SHIFT) \
sys/dev/drm/radeon/si_dpm.c
2515
dte_tables->R[i] = cpu_to_be32(dte_data->r[i]);
sys/dev/drm/radeon/sislands_smc.h
372
uint32_t R[SMC_SISLANDS_DTE_MAX_FILTER_STAGES];
sys/dev/raid/asr/asr.c
1859
U32 R;
usr.bin/mail/cmdtab.c
62
{ "mail", sendmail, R|M|I|STRLIST, 0, 0 },
usr.bin/mail/cmdtab.c
89
{ "Reply", Respond, R|I|MSGLIST, 0, MMNDEL },
usr.bin/mail/cmdtab.c
90
{ "Respond", Respond, R|I|MSGLIST, 0, MMNDEL },
usr.bin/mail/cmdtab.c
91
{ "reply", respond, R|I|MSGLIST, 0, MMNDEL },
usr.bin/mail/cmdtab.c
92
{ "respond", respond, R|I|MSGLIST, 0, MMNDEL },
usr.bin/mail/lex.c
352
if (contxt && com->c_argtype & R) {
usr.bin/mail/lex.c
356
switch (com->c_argtype & ~(F|P|I|M|T|W|R)) {
usr.bin/systat/icmp.c
102
L(1, "ICMP Input"); R(1, "ICMP Output");
usr.bin/systat/icmp.c
103
L(2, "total messages"); R(2, "total messages");
usr.bin/systat/icmp.c
104
L(3, "with bad code"); R(3, "errors generated");
usr.bin/systat/icmp.c
105
L(4, "with bad length"); R(4, "suppressed - original too short");
usr.bin/systat/icmp.c
106
L(5, "with bad checksum"); R(5, "suppressed - original was ICMP");
usr.bin/systat/icmp.c
107
L(6, "with insufficient data"); R(6, "responses sent");
usr.bin/systat/icmp.c
108
; R(7, "suppressed - multicast echo");
usr.bin/systat/icmp.c
109
; R(8, "suppressed - multicast tstamp");
usr.bin/systat/icmp.c
110
L(10, "Input Histogram"); R(10, "Output Histogram");
usr.bin/systat/icmp.c
111
#define B(row, str) L(row, str); R(row, str)
usr.bin/systat/icmp.c
118
L(17, "router advertisement"); R(17, "router solicitation");
usr.bin/systat/icmp6.c
100
L(2, "total messages"); R(2, "total messages");
usr.bin/systat/icmp6.c
101
L(3, "with bad code"); R(3, "errors generated");
usr.bin/systat/icmp6.c
102
L(4, "with bad length"); R(4, "suppressed - original too short");
usr.bin/systat/icmp6.c
103
L(5, "with bad checksum"); R(5, "suppressed - original was ICMP");
usr.bin/systat/icmp6.c
104
L(6, "with insufficient data"); R(6, "responses sent");
usr.bin/systat/icmp6.c
106
L(8, "Input Histogram"); R(8, "Output Histogram");
usr.bin/systat/icmp6.c
107
#define B(row, str) L(row, str); R(row, str)
usr.bin/systat/icmp6.c
116
L(17, "router advertisement"); R(17, "router solicitation");
usr.bin/systat/icmp6.c
99
L(1, "ICMPv6 Input"); R(1, "ICMPv6 Output");
usr.bin/systat/ip.c
108
L(1, "IP Input"); R(1, "IP Output");
usr.bin/systat/ip.c
109
L(2, "total packets received"); R(2, "total packets sent");
usr.bin/systat/ip.c
110
L(3, "- with bad checksums"); R(3, "- generated locally");
usr.bin/systat/ip.c
111
L(4, "- too short for header"); R(4, "- output drops");
usr.bin/systat/ip.c
112
L(5, "- too short for data"); R(5, "output fragments generated");
usr.bin/systat/ip.c
113
L(6, "- with invalid hlen"); R(6, "- fragmentation failed");
usr.bin/systat/ip.c
114
L(7, "- with invalid length"); R(7, "destinations unreachable");
usr.bin/systat/ip.c
115
L(8, "- with invalid version"); R(8, "packets output via raw IP");
usr.bin/systat/ip.c
117
L(10, "total fragments received"); R(10, "UDP Statistics");
usr.bin/systat/ip.c
118
L(11, "- fragments dropped"); R(11, "total input packets");
usr.bin/systat/ip.c
119
L(12, "- fragments timed out"); R(12, "- too short for header");
usr.bin/systat/ip.c
120
L(13, "- packets reassembled ok"); R(13, "- invalid checksum");
usr.bin/systat/ip.c
121
L(14, "packets forwarded"); R(14, "- no checksum");
usr.bin/systat/ip.c
122
L(15, "- unreachable dests"); R(15, "- invalid length");
usr.bin/systat/ip.c
123
L(16, "- redirects generated"); R(16, "- no socket for dest port");
usr.bin/systat/ip.c
124
L(17, "option errors"); R(17, "- no socket for broadcast");
usr.bin/systat/ip.c
125
L(18, "unwanted multicasts"); R(18, "- socket buffer full");
usr.bin/systat/ip.c
126
L(19, "delivered to upper layer"); R(19, "total output packets");
usr.bin/systat/ip6.c
103
L(1, "IPv6 Input"); R(1, "IPv6 Output");
usr.bin/systat/ip6.c
104
L(2, "total packets received"); R(2, "total packets sent");
usr.bin/systat/ip6.c
105
L(3, "- too short for header"); R(3, "- generated locally");
usr.bin/systat/ip6.c
106
L(4, "- too short for data"); R(4, "- output drops");
usr.bin/systat/ip6.c
107
L(5, "- with invalid version"); R(5, "output fragments generated");
usr.bin/systat/ip6.c
108
L(6, "total fragments received"); R(6, "- fragmentation failed");
usr.bin/systat/ip6.c
109
L(7, "- fragments dropped"); R(7, "destinations unreachable");
usr.bin/systat/ip6.c
110
L(8, "- fragments timed out"); R(8, "packets output via raw IP");
usr.bin/systat/ip6.c
112
L(10, "- packets reassembled ok"); R(10, "Input next-header histogram");
usr.bin/systat/ip6.c
113
L(11, "packets forwarded"); R(11, " - destination options");
usr.bin/systat/ip6.c
114
L(12, "- unreachable dests"); R(12, " - hop-by-hop options");
usr.bin/systat/ip6.c
115
L(13, "- redirects generated"); R(13, " - IPv4");
usr.bin/systat/ip6.c
116
L(14, "option errors"); R(14, " - TCP");
usr.bin/systat/ip6.c
117
L(15, "unwanted multicasts"); R(15, " - UDP");
usr.bin/systat/ip6.c
118
L(16, "delivered to upper layer"); R(16, " - IPv6");
usr.bin/systat/ip6.c
119
L(17, "bad scope packets"); R(17, " - routing header");
usr.bin/systat/ip6.c
120
L(18, "address selection failed"); R(18, " - fragmentation header");
usr.bin/systat/ip6.c
121
R(19, " - ICMP6");
usr.bin/systat/ip6.c
122
R(20, " - none");
usr.bin/systat/tcp.c
105
L(1, "TCP Connections"); R(1, "TCP Packets");
usr.bin/systat/tcp.c
106
L(2, "connections initiated"); R(2, "total packets sent");
usr.bin/systat/tcp.c
107
L(3, "connections accepted"); R(3, "- data");
usr.bin/systat/tcp.c
108
L(4, "connections established"); R(4, "- data (retransmit)");
usr.bin/systat/tcp.c
109
L(5, "connections dropped"); R(5, "- ack-only");
usr.bin/systat/tcp.c
110
L(6, "- in embryonic state"); R(6, "- window probes");
usr.bin/systat/tcp.c
111
L(7, "- on retransmit timeout"); R(7, "- window updates");
usr.bin/systat/tcp.c
112
L(8, "- by keepalive"); R(8, "- urgent data only");
usr.bin/systat/tcp.c
113
L(9, "- from listen queue"); R(9, "- control");
usr.bin/systat/tcp.c
114
R(10, "- resends by PMTU discovery");
usr.bin/systat/tcp.c
115
L(11, "TCP Timers"); R(11, "total packets received");
usr.bin/systat/tcp.c
116
L(12, "potential rtt updates"); R(12, "- in sequence");
usr.bin/systat/tcp.c
117
L(13, "- successful"); R(13, "- completely duplicate");
usr.bin/systat/tcp.c
118
L(14, "delayed acks sent"); R(14, "- with some duplicate data");
usr.bin/systat/tcp.c
119
L(15, "retransmit timeouts"); R(15, "- out-of-order");
usr.bin/systat/tcp.c
120
L(16, "persist timeouts"); R(16, "- duplicate acks");
usr.bin/systat/tcp.c
121
L(17, "keepalive probes"); R(17, "- acks");
usr.bin/systat/tcp.c
122
L(18, "- timeouts"); R(18, "- window probes");
usr.bin/systat/tcp.c
123
R(19, "- window updates");
usr.bin/systat/tcp.c
227
L(2, tcps_connattempt); R(2, tcps_sndtotal);
usr.bin/systat/tcp.c
228
L(3, tcps_accepts); R(3, tcps_sndpack);
usr.bin/systat/tcp.c
229
L(4, tcps_connects); R(4, tcps_sndrexmitpack);
usr.bin/systat/tcp.c
230
L(5, tcps_drops); R(5, tcps_sndacks);
usr.bin/systat/tcp.c
231
L(6, tcps_conndrops); R(6, tcps_sndprobe);
usr.bin/systat/tcp.c
232
L(7, tcps_timeoutdrop); R(7, tcps_sndwinup);
usr.bin/systat/tcp.c
233
L(8, tcps_keepdrops); R(8, tcps_sndurg);
usr.bin/systat/tcp.c
234
L(9, tcps_listendrop); R(9, tcps_sndctrl);
usr.bin/systat/tcp.c
235
R(10, tcps_mturesent);
usr.bin/systat/tcp.c
236
R(11, tcps_rcvtotal);
usr.bin/systat/tcp.c
237
L(12, tcps_segstimed); R(12, tcps_rcvpack);
usr.bin/systat/tcp.c
238
L(13, tcps_rttupdated); R(13, tcps_rcvduppack);
usr.bin/systat/tcp.c
239
L(14, tcps_delack); R(14, tcps_rcvpartduppack);
usr.bin/systat/tcp.c
240
L(15, tcps_rexmttimeo); R(15, tcps_rcvoopack);
usr.bin/systat/tcp.c
241
L(16, tcps_persisttimeo); R(16, tcps_rcvdupack);
usr.bin/systat/tcp.c
242
L(17, tcps_keepprobe); R(17, tcps_rcvackpack);
usr.bin/systat/tcp.c
243
L(18, tcps_keeptimeo); R(18, tcps_rcvwinprobe);
usr.bin/systat/tcp.c
244
R(19, tcps_rcvwinupd);
usr.sbin/ppp/libradius/radlib.c
1445
char R[LEN_AUTH];
usr.sbin/ppp/libradius/radlib.c
1464
if (rad_request_authenticator(h, R, sizeof R) != LEN_AUTH) {
usr.sbin/ppp/libradius/radlib.c
1475
MD5Update(&Context, R, LEN_AUTH);
usr.sbin/ppp/libradius/radlib.c
1501
char R[LEN_AUTH]; /* variable names as per rfc2548 */
usr.sbin/ppp/libradius/radlib.c
1516
if (rad_request_authenticator(h, R, sizeof R) != LEN_AUTH) {
usr.sbin/ppp/libradius/radlib.c
1530
MD5Update(&Context, R, LEN_AUTH);
usr.sbin/ppp/radius.c
147
char R[AUTH_LEN]; /* variable names as per rfc2548 */
usr.sbin/ppp/radius.c
164
if (rad_request_authenticator(r->cx.rad, R, sizeof R) != AUTH_LEN) {
usr.sbin/ppp/radius.c
180
MD5_Update(&Context, R, AUTH_LEN);