| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| HD | StringSwitch.h | 92 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 94 return Case(S0, Value).Cases(S1, S2, Value); in Cases() 97 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 99 return Case(S0, Value).Cases(S1, S2, S3, Value); in Cases() 102 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 104 return Case(S0, Value).Cases(S1, S2, S3, S4, Value); in Cases() 107 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 110 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, Value); in Cases() 113 StringSwitch &Cases(StringLiteral S0, StringLiteral S1, StringLiteral S2, in Cases() argument 116 return Case(S0, Value).Cases(S1, S2, S3, S4, S5, S6, Value); in Cases() [all …]
|
| HD | SetOperations.h | 22 bool set_union(S1Ty &S1, const S2Ty &S2) { in set_union() argument 25 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_union() 39 void set_intersect(S1Ty &S1, const S2Ty &S2) { in set_intersect() argument 43 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 in set_intersect() 50 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { in set_difference() argument 54 if (!S2.count(*SI)) // if the element is not in set2 in set_difference() 62 void set_subtract(S1Ty &S1, const S2Ty &S2) { in set_subtract() argument 63 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); in set_subtract()
|
| /freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| HD | dt_lex.l | 104 %s S0 S1 S2 S3 S4 186 <S2>auto { yybegin(YYS_EXPR); return (DT_KEY_AUTO); } 187 <S2>char { yybegin(YYS_EXPR); return (DT_KEY_CHAR); } 188 <S2>const { yybegin(YYS_EXPR); return (DT_KEY_CONST); } 189 <S2>counter { yybegin(YYS_DEFINE); return (DT_KEY_COUNTER); } 190 <S2>double { yybegin(YYS_EXPR); return (DT_KEY_DOUBLE); } 191 <S2>enum { yybegin(YYS_EXPR); return (DT_KEY_ENUM); } 192 <S2>extern { yybegin(YYS_EXPR); return (DT_KEY_EXTERN); } 193 <S2>float { yybegin(YYS_EXPR); return (DT_KEY_FLOAT); } 194 <S2>import { yybegin(YYS_EXPR); return (DT_KEY_IMPORT); } [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| HD | PrettyTypeDumper.cpp | 37 typedef bool (*CompareFunc)(const LayoutPtr &S1, const LayoutPtr &S2); 39 static bool CompareNames(const LayoutPtr &S1, const LayoutPtr &S2) { in CompareNames() argument 40 return S1->getName() < S2->getName(); in CompareNames() 43 static bool CompareSizes(const LayoutPtr &S1, const LayoutPtr &S2) { in CompareSizes() argument 44 return S1->getSize() < S2->getSize(); in CompareSizes() 47 static bool ComparePadding(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePadding() argument 48 return S1->deepPaddingSize() < S2->deepPaddingSize(); in ComparePadding() 51 static bool ComparePaddingPct(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePaddingPct() argument 53 double Pct2 = (double)S2->deepPaddingSize() / (double)S2->getSize(); in ComparePaddingPct() 57 static bool ComparePaddingImmediate(const LayoutPtr &S1, const LayoutPtr &S2) { in ComparePaddingImmediate() argument [all …]
|
| /freebsd-11-stable/contrib/wpa/src/crypto/ |
| HD | sha1-tlsprf.c | 34 const u8 *S1, *S2; in tls_prf_sha1_md5() local 65 S2 = secret + L_S1; in tls_prf_sha1_md5() 68 S2--; in tls_prf_sha1_md5() 72 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1); in tls_prf_sha1_md5() 83 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len, in tls_prf_sha1_md5() 86 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1); in tls_prf_sha1_md5()
|
| /freebsd-11-stable/lib/msun/src/ |
| HD | k_sincosl.h | 42 S2 = 0.0083333333333333332, /* 0x11111111111111.0p-59 */ variable 62 r = S2 + z * (S3 + z * (S4 + z * (S5 + z * (S6 + z * (S7 + z * S8))))); in __kernel_sincosl() 87 S2 = 0.0083333333333333333333333333333331135404851288270047L, variable 117 r = S2 + z * (S3 + z * (S4 + z * (S5 + z * (S6 + z * (S7 + z * (S8 + in __kernel_sincosl()
|
| HD | k_sinf.c | 28 S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */ variable 45 return (x + s*(S1+z*S2)) + s*w*r; in __kernel_sindf()
|
| HD | k_sin.c | 53 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */ variable 66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6); in __kernel_sin()
|
| HD | k_sincosf.h | 20 S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */ variable 40 *sn = (x + s * (S1 + z * S2)) + s * w * r; in __kernel_sincosdf()
|
| HD | k_sincos.h | 19 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */ variable 40 r = S2 + z * (S3 + z * S4) + z * w * (S5 + z * S6); in __kernel_sincos()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| HD | HexagonStoreWidening.cpp | 108 bool storesAreAdjacent(const MachineInstr *S1, const MachineInstr *S2); 285 const MachineInstr *S2) { in storesAreAdjacent() argument 286 if (!handledStoreType(S1) || !handledStoreType(S2)) in storesAreAdjacent() 293 int Off2 = S2->getOperand(1).getImm(); in storesAreAdjacent() 354 MachineInstr *S2 = *I; in selectStores() local 357 if (!storesAreAdjacent(S1, S2)) in selectStores() 360 unsigned S2Size = getStoreTarget(S2).getSize(); in selectStores() 364 OG.push_back(S2); in selectStores() 373 S1 = S2; in selectStores()
|
| HD | HexagonScheduleV60.td | 33 // S2-3 | | | CVI_VX | | CVI_VX | | | | | | | 48 // S2-3 | CVI_VX_DV | | |
|
| /freebsd-11-stable/crypto/openssh/regress/ |
| HD | keygen-change.sh | 7 S2="2secret" 20 ${SSHKEYGEN} -p -P ${S1} -N ${S2} -f $OBJ/$t-key > /dev/null
|
| /freebsd-11-stable/lib/msun/ld80/ |
| HD | k_sinl.c | 44 S2 = 0.0083333333333333332, /* 0x11111111111111.0p-59 */ variable 59 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*S8))))); in __kernel_sinl()
|
| /freebsd-11-stable/lib/msun/ld128/ |
| HD | k_sinl.c | 34 S2 = 0.0083333333333333333333333333333331135404851288270047L, variable 55 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*(S8+ in __kernel_sinl()
|
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/ |
| HD | ASTDiff.cpp | 561 Subtree S2; member in clang::diff::ZhangShashaMatcher 567 : DiffImpl(DiffImpl), S1(T1, Id1), S2(T2, Id2) { in ZhangShashaMatcher() 573 TreeDist[I] = std::make_unique<double[]>(size_t(S2.getSize()) + 1); in ZhangShashaMatcher() 574 ForestDist[I] = std::make_unique<double[]>(size_t(S2.getSize()) + 1); in ZhangShashaMatcher() 586 TreePairs.emplace_back(SNodeId(S1.getSize()), SNodeId(S2.getSize())); in getMatchingNodes() 600 FirstCol = S2.getLeftMostDescendant(LastCol); in getMatchingNodes() 614 SNodeId LMD2 = S2.getLeftMostDescendant(Col); in getMatchingNodes() 616 LMD2 == S2.getLeftMostDescendant(LastCol)) { in getMatchingNodes() 618 NodeId Id2 = S2.getIdInRoot(Col); in getMatchingNodes() 645 if (!DiffImpl.isMatchingPossible(S1.getIdInRoot(Id1), S2.getIdInRoot(Id2))) in getUpdateCost() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| HD | GSIStreamBuilder.cpp | 118 static bool gsiRecordLess(StringRef S1, StringRef S2) { in gsiRecordLess() argument 120 size_t RS = S2.size(); in gsiRecordLess() 126 if (LLVM_UNLIKELY(!isAsciiString(S1) || !isAsciiString(S2))) in gsiRecordLess() 127 return memcmp(S1.data(), S2.data(), LS) < 0; in gsiRecordLess() 130 return S1.compare_lower(S2.data()) < 0; in gsiRecordLess()
|
| /freebsd-11-stable/crypto/openssl/crypto/ec/ |
| HD | ecp_nistz256.c | 320 BN_ULONG U2[P256_LIMBS], S2[P256_LIMBS]; in ecp_nistz256_point_add() local 361 ecp_nistz256_mul_mont(S2, Z1sqr, in1_z); /* S2 = Z1^3 */ in ecp_nistz256_point_add() 364 ecp_nistz256_mul_mont(S2, S2, in2_y); /* S2 = Y2*Z1^3 */ in ecp_nistz256_point_add() 365 ecp_nistz256_sub(R, S2, S1); /* R = S2 - S1 */ in ecp_nistz256_point_add() 375 if (is_equal(S1, S2)) { in ecp_nistz256_point_add() 398 ecp_nistz256_mul_mont(S2, S1, Hcub); in ecp_nistz256_point_add() 400 ecp_nistz256_sub(res_y, res_y, S2); in ecp_nistz256_point_add() 420 BN_ULONG U2[P256_LIMBS], S2[P256_LIMBS]; in ecp_nistz256_point_add_affine() local 465 ecp_nistz256_mul_mont(S2, Z1sqr, in1_z); /* S2 = Z1^3 */ in ecp_nistz256_point_add_affine() 469 ecp_nistz256_mul_mont(S2, S2, in2_y); /* S2 = Y2*Z1^3 */ in ecp_nistz256_point_add_affine() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| HD | InstSimplifyPass.cpp | 33 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; in runImpl() local
|
| HD | LoopInstSimplify.cpp | 63 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2; in simplifyLoopInst() local
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| HD | Mips16InstrInfo.cpp | 200 case Mips::S2: in addSaveRestoreRegs() 217 bool SaveS2 = Reserved[Mips::S2]; in makeFrame() 224 MIB.addReg(Mips::S2); in makeFrame() 247 bool SaveS2 = Reserved[Mips::S2]; in restoreFrame() 267 MIB.addReg(Mips::S2, RegState::Define); in restoreFrame()
|
| HD | MipsCCState.cpp | 32 auto Comp = [](const char *S1, const char *S2) { return strcmp(S1, S2) < 0; }; in isF128SoftLibCall() argument
|
| HD | Mips16FrameLowering.cpp | 170 bool SaveS2 = Reserved[Mips::S2]; in determineCalleeSaves() 172 SavedRegs.set(Mips::S2); in determineCalleeSaves()
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| HD | ProgramState.h | 561 bool haveEqualConstraints(ProgramStateRef S1, ProgramStateRef S2) const { in haveEqualConstraints() argument 562 return ConstraintMgr->haveEqualConstraints(S1, S2); in haveEqualConstraints() 565 bool haveEqualEnvironments(ProgramStateRef S1, ProgramStateRef S2) const { in haveEqualEnvironments() argument 566 return S1->Env == S2->Env; in haveEqualEnvironments() 569 bool haveEqualStores(ProgramStateRef S1, ProgramStateRef S2) const { in haveEqualStores() argument 570 return S1->store == S2->store; in haveEqualStores()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/ |
| HD | MipsMCExpr.cpp | 294 if (const MipsMCExpr *S2 = dyn_cast<const MipsMCExpr>(S1->getSubExpr())) { in isGpOff() local 295 if (S1->getKind() == MEK_NEG && S2->getKind() == MEK_GPREL) { in isGpOff()
|