Searched refs:S1 (Results 1 - 25 of 54) sorted by relevance

123

/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
H A DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { argument
28 if (S1.insert(*SI).second)
36 /// is nicer to use. Functionally, this iterates through S1, removing
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { argument
41 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) {
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { argument
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1
63 set_subtract(S1Ty &S1, const S2Ty &S2) argument
[all...]
H A DStringSwitch.h85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
87 return Case(S0, Value).Case(S1, Value);
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1], argument
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
/freebsd-10-stable/lib/msun/ld80/
H A Dk_sinl.c37 #define S1 ((long double)S1hi + S1lo) macro
40 S1 = -0.166666666666666666671L; /* -0xaaaaaaaaaaaaaaab.0p-66 */ variable
60 if(iy==0) return x+v*(S1+z*r);
61 else return x-((z*(half*y-v*r)-y)-v*S1);
/freebsd-10-stable/crypto/openssh/regress/
H A Dkeygen-change.sh6 S1="secret1"
18 ${SSHKEYGEN} -q -N ${S1} -t $t -f $OBJ/$t-key
20 ${SSHKEYGEN} -p -P ${S1} -N ${S2} -f $OBJ/$t-key > /dev/null
/freebsd-10-stable/lib/msun/src/
H A Dk_sin.c31 * sin(x) ~ x + S1*x + ... + S6*x
35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
44 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
52 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */ variable
68 if(iy==0) return x+v*(S1+z*r);
69 else return x-((z*(half*y-v*r)-y)-v*S1);
H A Dk_sinf.c27 S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */ variable
45 return (x + s*(S1+z*S2)) + s*w*r;
/freebsd-10-stable/contrib/wpa/src/crypto/
H A Dsha1-tlsprf.c34 const u8 *S1, *S2; local
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
67 S1 = secret;
70 /* The last byte of S1 will be shared with S2 */
74 hmac_md5_vector(S1, L_S1, 2, &MD5_addr[1], &MD5_len[1], A_MD5);
81 hmac_md5_vector(S1, L_S1, 3, MD5_addr, MD5_len, P_MD5);
83 hmac_md5(S1, L_S1, A_MD5, MD5_MAC_LEN, A_MD5);
/freebsd-10-stable/lib/msun/ld128/
H A Dk_sinl.c33 S1 = -0.16666666666666666666666666666666666606732416116558L, variable
57 if(iy==0) return x+v*(S1+z*r);
58 else return x-((z*(half*y-v*r)-y)-v*S1);
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyInstructions.cpp51 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
/freebsd-10-stable/lib/libstand/mips/
H A D_setjmp.S66 REG_S s1, ((S1 + 3) * SZREG)(a0)
91 REG_L s1, ((S1 + 3) * SZREG)(a0)
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMips16FrameLowering.cpp62 unsigned S1 = MRI->getDwarfRegNum(Mips::S1, true); local
63 MMI.addFrameInst(MCCFIInstruction::createOffset(CSLabel, S1, -12));
107 // Registers RA, S0,S1 are the callee saved registers and they
132 // Registers RA,S0,S1 are the callee saved registers and they will be restored
173 MF.getRegInfo().setPhysRegUsed(Mips::S1);
/freebsd-10-stable/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c456 goto S1;
459 S1:
476 goto S1;
488 goto S1;
498 sb++; goto S1;
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/
H A DLoopInstSimplify.cpp77 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; local
/freebsd-10-stable/sbin/iscontrol/
H A Dfsm.c626 S1, S2, /*S3,*/ S4, S5, S6, S7, S8 enumerator in enum:__anon33
631 S1: FREE
640 +--------->/ S1 \<----+ |
686 state = S1;
699 case S1:
708 case T2: state = S1; break;
716 case T7: state = S1; break;
724 case T8: state = S1; break;
734 case T13: state = S1; break;
743 case T18: state = S1; brea
[all...]
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/
H A DHexagonPeephole.cpp270 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices. local
297 // Swap operands S1 and S2.
298 MachineOperand Op1 = MI->getOperand(S1);
300 ChangeOpInto(MI->getOperand(S1), Op2);
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_lex.l92 * S1 - D comments (i.e. skip everything until end of comment)
104 %s S0 S1 S2 S3 S4
468 BEGIN(S1);
597 <S1>"/*" yyerror("/* encountered inside a comment\n");
598 <S1>"*/" BEGIN(yypcb->pcb_cstate);
599 <S1>.|\n ; /* discard */
863 if ((YYSTATE) == S1)
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
H A DInstrTypes.h142 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
144 BinaryOperator(BinaryOps iType, Value *S1, Value *S2, Type *Ty,
161 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
169 static BinaryOperator *Create(BinaryOps Op, Value *S1, Value *S2,
697 unsigned short predicate, Value *S1,
705 static CmpInst *Create(OtherOps Op, unsigned short predicate, Value *S1,
/freebsd-10-stable/contrib/llvm/utils/TableGen/
H A DSetTheory.cpp52 // (and S1, S2) Set intersection.
59 RecSet S1, S2; local
60 ST.evaluate(Expr->arg_begin()[0], S1, Loc);
62 for (RecSet::iterator I = S1.begin(), E = S1.end(); I != E; ++I)
152 // (interleave S1, S2, ...) Interleave elements of the arguments.
/freebsd-10-stable/sys/dev/patm/
H A Didt77252reg.h107 #define IDT_MKCMD_RUTIL(S0, S1, A) \
108 (IDT_CMD_RUTIL | ((S1) << 9) | ((S0) << 8) | (A))
109 #define IDT_MKCMD_WUTIL(S0, S1, A) \
110 (IDT_CMD_WUTIL | ((S1) << 9) | ((S0) << 8) | (A))
/freebsd-10-stable/sys/mips/include/
H A Dregnum.h78 #define S1 17 macro
/freebsd-10-stable/contrib/xz/src/liblzma/check/
H A Dsha256.c51 h(i) += S1(e(i)) + Ch(e(i), f(i), g(i)) + SHA256_K[i + j] + blk; \
58 #define S1(x) rotr_32(x ^ rotr_32(x ^ rotr_32(x, 14), 5), 6) macro
/freebsd-10-stable/contrib/tnftp/src/
H A Dmain.c870 goto S1;
873 S1:
894 goto S1;
908 goto S1;
919 goto S1;
/freebsd-10-stable/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl21 $S1="CAST_S_table0";
162 &mov( $tmp1, &DWP($S1,"",$tmp1,4));
/freebsd-10-stable/sys/crypto/sha2/
H A Dsha256c.c107 #define S1(x) (ROTR(x, 6) ^ ROTR(x, 11) ^ ROTR(x, 25)) macro
113 h += S1(e) + Ch(e, f, g) + k; \
/freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp1176 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1177 Value *S1 = getShadow(&I, 0); local
1181 if (V1->getType() != S1->getType()) {
1182 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
1185 Value *S1S2 = IRB.CreateAnd(S1, S2);
1187 Value *S1V2 = IRB.CreateAnd(S1, V2);
1198 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1199 Value *S1 local
1454 Value *S1 = IRB.CreateICmp(I.getPredicate(), local
1530 Value *S1 = getShadow(&I, 0); local
[all...]

Completed in 290 milliseconds

123