Searched refs:C3 (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-12-stable/lib/msun/src/
H A Dk_cosf.c31 C3 = 0x199342e0ee5069.0p-68; /* 0.0000243904487962774090654 */ variable
44 r = C2+z*C3;
H A Dk_cos.c33 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
37 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
63 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */ variable
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
H A Dk_sincosf.h29 C3 = 0x199342e0ee5069.0p-68; /* 0.0000243904487962774090654 */ variable
41 r = C2 + z * C3;
H A Dk_sincos.h28 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */ variable
48 r = z * (C1 + z * (C2 + z * C3)) + w * w * (C4 + z * (C5 + z * C6));
H A Dk_sincosl.h37 C3 = 0.000024801587301571716, /* 0x1a01a01a018e22.0p-68 */ variable
71 r = z * (C1 + z * (C2 + z * (C3 + z * (C4 + z * (C5 + z * (C6 +
81 C3 = 0.00002480158730158730158730158600795304914210L, variable
127 r = z * (C1 + z * (C2 + z * (C3 + z * (C4 + z * (C5 + z * (C6 +
/freebsd-12-stable/lib/msun/ld128/
H A Dk_cosl.c38 C3 = 0.00002480158730158730158730158600795304914210L, variable
56 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*(C7+
H A Ds_expl.c139 * different. For example, the last 2 digits in C3 should be 59, not 67.
144 C3 = 1.66666666666666666666666666666666667e-1L, variable
247 q = x * x2 * C3 + x2 * x2 * (C4 + x * (C5 + x * (C6 +
/freebsd-12-stable/lib/msun/ld80/
H A Dk_cosl.c62 C3 = 0.000024801587301571716, /* 0x1a01a01a018e22.0p-68 */ variable
74 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*C7))))));
/freebsd-12-stable/crypto/openssl/crypto/sm2/
H A Dsm2_crypt.c28 ASN1_OCTET_STRING *C3; local
35 ASN1_SIMPLE(SM2_Ciphertext, C3, ASN1_OCTET_STRING),
132 uint8_t *C3 = NULL;
138 ctext_struct.C3 = NULL;
172 C3 = OPENSSL_zalloc(C3_size);
174 if (x2y2 == NULL || C3 == NULL) {
220 || EVP_DigestFinal(hash, C3, NULL) == 0) {
227 ctext_struct.C3 = ASN1_OCTET_STRING_new();
230 if (ctext_struct.C3 == NULL || ctext_struct.C2 == NULL) {
234 if (!ASN1_OCTET_STRING_set(ctext_struct.C3, C
[all...]
/freebsd-12-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl359 ($Hhl,$Hlo,$Hhi,$Xlo,$Xhi,$xE1,$sqr, $C0,$C1,$C2,$C3,$V)=
419 xmulxhi $Xhi,$Hhi,$C3
430 xor $C3,$C2,$C2
438 xor $C1,$C3,$C3
443 xor $C1,$C3,$C3
446 stx $C3,[$Xip+0]
461 ldx [$Xip+0],$C3
492 xor $C3,
[all...]
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
H A Du8.h67 #define VEC8_ROUND_SEQ(A1, B1, C1, D1, A2, B2, C2, D2, A3, B3, C3, D3, A4, B4, \
71 VEC8_LINE1(A3, B3, C3, D3); \
75 VEC8_LINE2(A3, B3, C3, D3); \
79 VEC8_LINE3(A3, B3, C3, D3); \
83 VEC8_LINE4(A3, B3, C3, D3); \
86 #define VEC8_ROUND_HALF(A1, B1, C1, D1, A2, B2, C2, D2, A3, B3, C3, D3, A4, \
96 VEC8_LINE1(A3, B3, C3, D3); \
98 VEC8_LINE2(A3, B3, C3, D3); \
100 VEC8_LINE3(A3, B3, C3, D3); \
102 VEC8_LINE4(A3, B3, C3, D
[all...]
/freebsd-12-stable/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c179 # define C3(K,i) ROTATE(Cx.q[K.c[(i)*8+3]],24) macro
197 # define C3(K,i) (Cx.q[3+8*K.c[(i)*8+3]]) macro
210 # define C3(K,i) (((u64_a1*)(Cx.c+5))[2*K.c[(i)*8+3]]) macro
516 C2(K, (i - 2) & 7) ^ C3(K, (i - 3) & 7) ^
523 C2(S, (i - 2) & 7) ^ C3(S, (i - 3) & 7) ^
561 L0 = C0(K, 0) ^ C1(K, 7) ^ C2(K, 6) ^ C3(K, 5) ^
563 L1 = C0(K, 1) ^ C1(K, 0) ^ C2(K, 7) ^ C3(K, 6) ^
565 L2 = C0(K, 2) ^ C1(K, 1) ^ C2(K, 0) ^ C3(K, 7) ^
567 L3 = C0(K, 3) ^ C1(K, 2) ^ C2(K, 1) ^ C3(K, 0) ^
569 L4 = C0(K, 4) ^ C1(K, 3) ^ C2(K, 2) ^ C3(
[all...]
/freebsd-12-stable/contrib/gcc/
H A Drtl.h606 #define RTL_FLAG_CHECK3(NAME, RTX, C1, C2, C3) __extension__ \
609 && GET_CODE(_rtx) != C3) \
614 #define RTL_FLAG_CHECK4(NAME, RTX, C1, C2, C3, C4) __extension__ \
617 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4) \
622 #define RTL_FLAG_CHECK5(NAME, RTX, C1, C2, C3, C4, C5) __extension__ \
625 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
631 #define RTL_FLAG_CHECK6(NAME, RTX, C1, C2, C3, C4, C5, C6) \
635 && GET_CODE(_rtx) != C3 && GET_CODE(_rtx) != C4 \
641 #define RTL_FLAG_CHECK7(NAME, RTX, C1, C2, C3, C4, C5, C6, C7) \
645 && GET_CODE(_rtx) != C3
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantsContext.h85 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
89 Op<2>() = C3;
127 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
132 Op<2>() = C3;
149 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
152 cast<VectorType>(C3->getType())->getElementCount()),
157 Op<2>() = C3;
/freebsd-12-stable/crypto/openssl/crypto/chacha/asm/
H A Dchacha-armv8.pl700 $A3,$B3,$C3,$D3,$A4,$B4,$C4,$D4,$A5,$B5,$C5,$D5) = map("v$_.4s",(0..23));
790 mov $C3,@K[2]
805 my @thread3=&NEONROUND($A3,$B3,$C3,$D3,$T3,0);
824 @thread3=&NEONROUND($A3,$B3,$C3,$D3,$T3,1);
919 @thread3=&NEONROUND($A3,$B3,$C3,$D3,$T3,0);
936 @thread3=&NEONROUND($A3,$B3,$C3,$D3,$T3,1);
977 add $C3,$C3,@K[2]
1063 eor $C3,$C3,
[all...]
/freebsd-12-stable/usr.bin/systat/
H A Difstat.c55 #define C3 40 /* 40-59 */ macro
62 static const int col3 = C3;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1263 APInt C3((~C1) ^ C2);
1266 if (!C3.isNullValue() && !C3.isAllOnesValue()) {
1272 Res = createAndInstr(I, X, C3);
1279 APInt C3 = C1 ^ C2;
1282 if (!C3.isNullValue() && !C3.isAllOnesValue()) {
1288 Res = createAndInstr(I, X, C3);
1289 ConstOpnd ^= C3;
1295 APInt C3
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.h30 MAP(C3, 67) \
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCTargetDesc.cpp121 SystemZ::C0, SystemZ::C1, SystemZ::C2, SystemZ::C3,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1860 Constant *C3 = ConstantExpr::getTrunc(YC, I.getType()); local
1861 C3 = ConstantExpr::getAnd(C3, AndRHS);
1862 return BinaryOperator::CreateAnd(NewCast, C3);
2201 // Fold (icmp ult/ule (A + C1), C3) | (icmp ult/ule (A + C2), C3)
2202 // --> (icmp ult/ule ((A & ~(C1 ^ C2)) + max(C1, C2)), C3)
2204 // [MAX_UINT-C1+1, MAX_UINT-C1+1+C3] and [MAX_UINT-C2+1, MAX_UINT-C2+1+C3]
2206 // 1) C1 and C2 is unsigned greater than C3
3138 ConstantInt *C2 = Op0CI, *C3 = RHSC; local
[all...]
H A DInstCombineCompares.cpp1639 // If this is: (X >> C3) & C2 != C1 (where any shift and any compare could
1640 // exist), turn it into (X & (C2 << C3)) != (C1 << C3). This happens a LOT in
1646 const APInt *C3; local
1647 if (match(Shift->getOperand(1), m_APInt(C3))) {
1666 if (!IsAshr || (C2.shl(*C3).lshr(*C3) == C2)) {
1668 (!C2.shl(*C3).isNegative() && !C1.shl(*C3).isNegative()))
1674 APInt NewCst = IsShl ? C1.lshr(*C3)
3865 ConstantInt *C3 = Builder.getInt(AP1 - AP2); local
3869 ConstantInt *C3 = Builder.getInt(AP2 - AP1); local
[all...]
H A DInstCombineAddSub.cpp941 const APInt *C3; local
942 if (match(Op0, m_AShr(m_Shl(m_Value(X), m_APInt(C2)), m_APInt(C3))) &&
943 C2 == C3 && *C2 == Ty->getScalarSizeInBits() - 1) {
/freebsd-12-stable/contrib/dialog/
H A Ddlg_keys.c360 CURSES_NAME(C3),
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp466 Counter addCounters(Counter C1, Counter C2, Counter C3) { argument
467 return addCounters(addCounters(C1, C2), C3);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/Disassembler/
H A DSparcDisassembler.cpp127 SP::C0, SP::C1, SP::C2, SP::C3,

Completed in 364 milliseconds

12