Searched refs:R2 (Results 1 - 25 of 119) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DDivisionByConstantInfo.cpp35 APInt Q1, R1, Q2, R2; local
38 // initialize Q2 = 2P/abs(D); R2 = rem(2P,abs(D))
39 APInt::udivrem(SignedMin, AD, Q2, R2);
49 R2 <<= 1; // update R2 = rem(2P/abs(D))
50 if (R2.uge(AD)) { // must be unsigned comparison
52 R2 -= AD;
54 // Delta = AD - R2
56 Delta -= R2;
90 APInt Q1, R1, Q2, R2; local
[all...]
/freebsd-current/crypto/openssl/crypto/md4/
H A Dmd4_dgst.c130 R2(A, B, C, D, X(0), 3, 0x6ED9EBA1L);
131 R2(D, A, B, C, X(8), 9, 0x6ED9EBA1L);
132 R2(C, D, A, B, X(4), 11, 0x6ED9EBA1L);
133 R2(B, C, D, A, X(12), 15, 0x6ED9EBA1L);
134 R2(A, B, C, D, X(2), 3, 0x6ED9EBA1L);
135 R2(D, A, B, C, X(10), 9, 0x6ED9EBA1L);
136 R2(C, D, A, B, X(6), 11, 0x6ED9EBA1L);
137 R2(B, C, D, A, X(14), 15, 0x6ED9EBA1L);
138 R2(A, B, C, D, X(1), 3, 0x6ED9EBA1L);
139 R2(
[all...]
/freebsd-current/share/doc/psd/02.implement/
H A DMakefile13 echo accumulate; echo .R2) > ${.TARGET}
/freebsd-current/share/doc/papers/relengr/
H A DMakefile11 @(echo .R1; echo database ${.CURDIR}/ref.bib; echo .R2) > ${.TARGET}
/freebsd-current/tools/test/stress2/misc/
H A Dforkbomb.sh79 #define R2 2 /* forks */
97 atomic_add_int(&share[R2], 1);
100 if (share[R2] >= MAXPROC || share[R4] > MXFAIL)
102 atomic_add_int(&share[R2], 1);
105 atomic_add_int(&share[R2], -1);
139 while (share[R2] == 0 || share[R3] < share[R2])
144 MAXPROC, share[R2], share[R3], share[R4]);
H A Dlstat.sh84 #define R2 1
108 while (share[R2] == 0) {
114 if (share[R2] == 1)
155 while (share[R2] == 0) {
158 while (dirs[0] > MXDIRS && share[R2] == 0)
179 while (dirs[0] > 0 || share[R2] == 0) {
183 while (lstat(path, &sb) == -1 && share[R2] == 0) {
226 share[R2] = 1;
H A Dpipe2.sh72 #define R2 2 /* forks */
100 if (share[R2] >= PIPES)
103 atomic_add_int(&share[R2], 1);
119 if (share[R2] == PIPES) {
/freebsd-current/crypto/openssl/crypto/md5/
H A Dmd5_dgst.c130 R2(A, B, C, D, X(5), 4, 0xfffa3942L);
131 R2(D, A, B, C, X(8), 11, 0x8771f681L);
132 R2(C, D, A, B, X(11), 16, 0x6d9d6122L);
133 R2(B, C, D, A, X(14), 23, 0xfde5380cL);
134 R2(A, B, C, D, X(1), 4, 0xa4beea44L);
135 R2(D, A, B, C, X(4), 11, 0x4bdecfa9L);
136 R2(C, D, A, B, X(7), 16, 0xf6bb4b60L);
137 R2(B, C, D, A, X(10), 23, 0xbebfbc70L);
138 R2(A, B, C, D, X(13), 4, 0x289b7ec6L);
139 R2(
[all...]
/freebsd-current/share/doc/psd/01.cacm/
H A DMakefile12 echo accumulate; echo .R2) > ${.TARGET}
/freebsd-current/crypto/openssl/crypto/sm3/
H A Dsm3.c101 R2(A, B, C, D, E, F, G, H, 0x9D8A7A87, W00, W00 ^ W04);
103 R2(D, A, B, C, H, E, F, G, 0x3B14F50F, W01, W01 ^ W05);
105 R2(C, D, A, B, G, H, E, F, 0x7629EA1E, W02, W02 ^ W06);
107 R2(B, C, D, A, F, G, H, E, 0xEC53D43C, W03, W03 ^ W07);
109 R2(A, B, C, D, E, F, G, H, 0xD8A7A879, W04, W04 ^ W08);
111 R2(D, A, B, C, H, E, F, G, 0xB14F50F3, W05, W05 ^ W09);
113 R2(C, D, A, B, G, H, E, F, 0x629EA1E7, W06, W06 ^ W10);
115 R2(B, C, D, A, F, G, H, E, 0xC53D43CE, W07, W07 ^ W11);
117 R2(A, B, C, D, E, F, G, H, 0x8A7A879D, W08, W08 ^ W12);
119 R2(
[all...]
/freebsd-current/contrib/wpa/src/crypto/
H A Dsha1-internal.c143 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
150 #define R2(v,w,x,y,z,i) \ macro
203 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
204 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(
[all...]
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dsha1.c40 * (R0+R1), R2, R3, R4 are the different operations (rounds) used in SHA1
44 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); macro
78 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
79 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(
[all...]
/freebsd-current/contrib/ldns/
H A Dsha1.c37 /* (R0+R1), R2, R3, R4 are the different operations used in SHA1 */
40 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); macro
76 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
77 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(
[all...]
/freebsd-current/crypto/openssl/crypto/md5/asm/
H A Dmd5-586.pl37 %Ltmp1=("R0",&Np($C), "R1",&Np($C), "R2",&Np($C), "R3",&Np($D));
41 5, 8, 11, 14, 1, 4, 7, 10, 13, 0, 3, 6, 9, 12, 15, 2, # R2
107 sub R2 subroutine
114 &comment("R2 $ki");
132 &comment("R2 $ki");
251 &comment("R2 section");
252 &R2( 0,-1,$A,$B,$C,$D,$X,32, 4,0xfffa3942);
253 &R2( 1, 0,$D,$A,$B,$C,$X,33,11,0x8771f681);
254 &R2( 2, 0,$C,$D,$A,$B,$X,34,16,0x6d9d6122);
255 &R2(
[all...]
/freebsd-current/share/doc/psd/15.yacc/
H A DMakefile12 echo accumulate; echo .R2) > ${.TARGET}
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DReachableCode.h53 SourceRange R2, bool HasFallThroughAttr) = 0;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dexecutor_address_test.cpp88 ExecutorAddrRange R0(A0, A1), R1(A1, A2), R2(A2, A3), R3(A0, A2), R4(A1, A3);
92 // R2: # -- After R1
98 EXPECT_NE(R1, R2);
105 EXPECT_FALSE(R1.overlaps(R2));
/freebsd-current/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-s390x.pl227 my ($R0, $R1, $S1, $R2, $S2) = map("%v$_",(10..14));
291 vmlof ($ACC2,$H0,$R2);
298 vmalof ($ACC3,$H1,$R2,$ACC3);
305 vmalof ($ACC4,$H2,$R2,$ACC4);
393 vlvgg ($R2,$d1,0);
399 veslg ($S2,$R2,2);
404 vlr ($H2,$R2);
408 vag ($S2,$S2,$R2);
416 vpdi ($R2,$H2,$R2,
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRangeSelector.h59 /// Selects the range between `R1` and `R2.
60 inline RangeSelector between(RangeSelector R1, RangeSelector R2) { argument
61 return enclose(after(std::move(R1)), before(std::move(R2)));
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DConstraintSystem.cpp54 for (unsigned R2 = R1 + 1; R2 < NumRemainingConstraints; R2++) {
55 if (R1 == R2)
58 int64_t UpperLast = getLastCoefficient(RemainingRows[R2], LastIdx);
68 unsigned UpperR = R2;
/freebsd-current/contrib/ntp/libntp/lib/isc/
H A Dsha1.c105 * (R0+R1), R2, R3, R4 are the different operations (rounds) used in SHA1
113 #define R2(v,w,x,y,z,i) \ macro
142 #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i)
233 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23);
234 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dfastmath_dlib_asm.S60 #define mantb R2
75 #define minusl R2
195 #define mantb R2
210 #define minusl R2
324 #define mantbl R2
337 #define minus1l R2
/freebsd-current/contrib/bearssl/src/symcipher/
H A Dpoly1305_i15.c51 static const uint16_t R2[] = { variable
179 br_i15_montymul(r, t, R2, P1305, P0I);
/freebsd-current/crypto/openssl/crypto/bn/
H A Drsaz_exp.c66 unsigned char *R2 = table_s; /* borrow */
83 rsaz_1024_norm2red_avx2(R2, RR);
85 rsaz_1024_mul_avx2(R2, R2, R2, m, k0);
86 rsaz_1024_mul_avx2(R2, R2, two80, m, k0);
89 rsaz_1024_mul_avx2(result, R2, one, m, k0);
91 rsaz_1024_mul_avx2(a_inv, a_inv, R2, m, k0);
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiBaseInfo.h46 case Lanai::R2:

Completed in 162 milliseconds

12345