Searched refs:S1 (Results 26 - 50 of 103) sorted by relevance

12345

/freebsd-13-stable/sys/mips/include/
H A Dregnum.h84 #define S1 17 macro
/freebsd-13-stable/crypto/openssl/crypto/poly1305/asm/
H A Dpoly1305-x86_64.pl2131 my ($R0,$R1,$R2,$R3,$R4, $S1,$S2,$S3,$S4) = map("%zmm$_",(16..24));
2179 vmovdqu `16*2-64`($ctx),%x#$T0 # ... ${S1}
2189 vpermd $T0,$T2,$S1
2197 vmovdqa64 $S1,0x40(%rsp){%k2}
2261 vpmuludq $T4,$S1,$M0
2338 vpslld \$2,$R1,$S1 # *5
2342 vpaddd $R1,$S1,$S1
2453 vpmuludq $H4,$S1,$M0
2529 vpsrlq \$32,$S1,
[all...]
H A Dpoly1305-armv4.pl448 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("d$_",(0..9));
482 vdup.32 $S1,r2
508 vmlal.u32 $D0,$R4,${S1}[1]
627 vshl.u32 $S1,$R1,#2
630 vadd.i32 $S1,$S1,$R1
634 vst4.32 {${R0}[0],${R1}[0],${S1}[0],${R2}[0]},[$tbl0]!
635 vst4.32 {${R0}[1],${R1}[1],${S1}[1],${R2}[1]},[$tbl1]!
649 vshl.u32 $S1,$D1#lo,#2 @ *5
657 vadd.i32 $S1,
[all...]
H A Dpoly1305-c64xplus.pl35 ($R0,$R1,$R2,$R3,$S1,$S2,$S3,$S3b)=("A0","B0","A1","B1","A12","B12","A13","B13");
132 LDDW *${CTXA}[5],$S3:$S1 ; load s3:s1
177 MPY32U $H3,$S1,A29:A28
192 MPY32 $H4,$S1,B20
H A Dpoly1305-armv8.pl214 my ($R0,$R1,$S1,$R2,$S2,$R3,$S3,$R4,$S4) = map("v$_.4s",(0..8));
499 ld1 {$R0,$R1,$S1,$R2},[x15],#64
614 umlal $ACC0,$IN23_4,${S1}[2]
675 umlal $ACC0,$IN01_4,${S1}[0]
771 umlal2 $ACC0,$IN23_4,${S1}
810 umlal $ACC0,$IN01_4,${S1}
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp63 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
H A DReassociate.cpp234 static BinaryOperator *CreateAdd(Value *S1, Value *S2, const Twine &Name, argument
236 if (S1->getType()->isIntOrIntVectorTy())
237 return BinaryOperator::CreateAdd(S1, S2, Name, InsertBefore);
240 BinaryOperator::CreateFAdd(S1, S2, Name, InsertBefore);
246 static BinaryOperator *CreateMul(Value *S1, Value *S2, const Twine &Name, argument
248 if (S1->getType()->isIntOrIntVectorTy())
249 return BinaryOperator::CreateMul(S1, S2, Name, InsertBefore);
252 BinaryOperator::CreateFMul(S1, S2, Name, InsertBefore);
258 static Instruction *CreateNeg(Value *S1, const Twine &Name, argument
260 if (S1
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp263 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices. local
284 .add(MI.getOperand(S1));
H A DHexagonExpandCondsets.cpp1194 MachineOperand &S1 = MI->getOperand(2), &S2 = MI->getOperand(3); local
1195 if (!S1.isReg() && !S2.isReg())
1204 MachineOperand &S1 = CI->getOperand(2), &S2 = CI->getOperand(3); local
1224 if (S1.isReg()) {
1225 RegisterRef RS = S1;
1228 Done = coalesceRegisters(RD, RegisterRef(S1));
1231 UpdRegs.insert(S1.getReg());
H A DHexagonSubtarget.cpp284 SUnit &S1 = DAG->SUnits[j]; local
285 MachineInstr &L1 = *S1.getInstr();
303 S1.addPred(A, true);
/freebsd-13-stable/contrib/tnftp/src/
H A Dmain.c880 goto S1;
883 S1:
904 goto S1;
918 goto S1;
929 goto S1;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DGSIStreamBuilder.cpp154 static int gsiRecordCmp(StringRef S1, StringRef S2) {
155 size_t LS = S1.size();
162 if (LLVM_UNLIKELY(!isAsciiString(S1) || !isAsciiString(S2)))
163 return memcmp(S1.data(), S2.data(), LS);
166 return S1.compare_lower(S2.data());
/freebsd-13-stable/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dsha256c.c110 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) macro
116 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/crypto/sha2/
H A Dsha256c.c108 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) macro
114 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c79 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) macro
84 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c95 #define S1(x) (ROTR(x, 14) ^ ROTR(x, 18) ^ ROTR(x, 41)) macro
100 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-13-stable/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl34 $S1="CAST_S_table0";
177 &mov( $tmp1, &DWP($S1,"",$tmp1,4));
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h568 bool haveEqualConstraints(ProgramStateRef S1, ProgramStateRef S2) const { argument
569 return ConstraintMgr->haveEqualConstraints(S1, S2);
572 bool haveEqualEnvironments(ProgramStateRef S1, ProgramStateRef S2) const { argument
573 return S1->Env == S2->Env;
576 bool haveEqualStores(ProgramStateRef S1, ProgramStateRef S2) const { argument
577 return S1->store == S2->store;
/freebsd-13-stable/crypto/openssl/crypto/aria/
H A Daria.c76 static const uint32_t S1[256] = { variable
357 S1[GET_U8_BE(T0, 0)] ^ \
362 S1[GET_U8_BE(T1, 0)] ^ \
367 S1[GET_U8_BE(T2, 0)] ^ \
372 S1[GET_U8_BE(T3, 0)] ^ \
384 S1[GET_U8_BE(T0, 2)] ^ \
389 S1[GET_U8_BE(T1, 2)] ^ \
394 S1[GET_U8_BE(T2, 2)] ^ \
399 S1[GET_U8_BE(T3, 2)] ^ \
514 (uint8_t)(S1[GET_U8_B
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl876 $U1,$U2,$S1,$S2)=map(32*$_,(0..11));
950 call __ecp_nistz256_mul_mont ! p256_mul_mont(S1, Z2sqr, in2_z);
951 add %sp,LOCALS+$S1,$rp
959 add %sp,LOCALS+$S1,$ap
960 call __ecp_nistz256_mul_mont ! p256_mul_mont(S1, S1, in1_y);
961 add %sp,LOCALS+$S1,$rp
968 add %sp,LOCALS+$S1,$bp
969 call __ecp_nistz256_sub_from ! p256_sub(R, S2, S1);
1013 be,pt %icc,.Ladd_double ! is_equal(S1,S
[all...]
H A Decp_nistz256-x86.pl1384 $U1,$U2,$S1,$S2)=map(32*$_,(0..17));
1461 &lea ("edi",&DWP($S1,"esp"));
1462 &call ("_ecp_nistz256_mul_mont"); # p256_mul_mont(S1, Z2sqr, in2_z);
1472 &lea ("ebp",&DWP($S1,"esp"));
1473 &lea ("edi",&DWP($S1,"esp"));
1474 &call ("_ecp_nistz256_mul_mont"); # p256_mul_mont(S1, S1, in1_y);
1483 &lea ("ebp",&DWP($S1,"esp"));
1485 &call ("_ecp_nistz256_sub"); # p256_sub(R, S2, S1);
1527 &or ("eax",&DWP(32*18+8,"esp")); # ~is_equal(S1,S
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1965 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1966 Value *S1 = getShadow(&I, 0);
1970 if (V1->getType() != S1->getType()) {
1971 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
1974 Value *S1S2 = IRB.CreateAnd(S1, S2);
1976 Value *S1V2 = IRB.CreateAnd(S1, V2);
1987 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1988 Value *S1
[all...]
/freebsd-13-stable/contrib/bmake/filemon/
H A Dfilemon_ktrace.c420 struct filemon_state *S1; local
445 S1 = rb_tree_insert_node(&F->active, S);
446 if (S1 != S) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegPressure.cpp73 bool llvm::isEqual(const GCNRPTracker::LiveRegSet &S1, argument
75 if (S1.size() != S2.size())
78 for (const auto &P : S1) {
/freebsd-13-stable/contrib/bearssl/src/symcipher/
H A Ddes_tab.c52 static const uint32_t S1[] = { variable
211 S1[((r1 >> 11) ^ (skl >> 18)) & 0x3F]

Completed in 236 milliseconds

12345