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

/freebsd-10.2-release/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));
/freebsd-10.2-release/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.c137 * different. For example, the last 2 digits in C3 should be 59, not 67.
142 C3 = 1.66666666666666666666666666666666667e-1L, variable
245 q = x * x2 * C3 + x2 * x2 * (C4 + x * (C5 + x * (C6 +
/freebsd-10.2-release/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-10.2-release/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c160 # define C3(K,i) ROTATE(Cx.q[K.c[(i)*8+3]],24) macro
178 # define C3(K,i) (Cx.q[3+8*K.c[(i)*8+3]]) macro
191 # define C3(K,i) (((u64*)(Cx.c+5))[2*K.c[(i)*8+3]]) macro
497 C2(K, (i - 2) & 7) ^ C3(K, (i - 3) & 7) ^
504 C2(S, (i - 2) & 7) ^ C3(S, (i - 3) & 7) ^
542 L0 = C0(K, 0) ^ C1(K, 7) ^ C2(K, 6) ^ C3(K, 5) ^
544 L1 = C0(K, 1) ^ C1(K, 0) ^ C2(K, 7) ^ C3(K, 6) ^
546 L2 = C0(K, 2) ^ C1(K, 1) ^ C2(K, 0) ^ C3(K, 7) ^
548 L3 = C0(K, 3) ^ C1(K, 2) ^ C2(K, 1) ^ C3(K, 0) ^
550 L4 = C0(K, 4) ^ C1(K, 3) ^ C2(K, 2) ^ C3(
[all...]
/freebsd-10.2-release/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-10.2-release/contrib/llvm/lib/IR/
H A DConstantsContext.h80 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
84 Op<2>() = C3;
122 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
127 Op<2>() = C3;
144 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
147 cast<VectorType>(C3->getType())->getNumElements()),
152 Op<2>() = C3;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp1210 APInt C3((~C1) ^ C2);
1213 if (C3 != 0 && !C3.isAllOnesValue()) {
1219 Res = createAndInstr(I, X, C3);
1227 APInt C3 = C1 ^ C2;
1230 if (C3 != 0 && !C3.isAllOnesValue()) {
1236 Res = createAndInstr(I, X, C3);
1237 ConstOpnd ^= C3;
1243 APInt C3
[all...]
/freebsd-10.2-release/usr.bin/systat/
H A Difstat.c51 #define C3 40 /* 40-59 */ macro
58 static const int col3 = C3;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1203 Constant *C3 = ConstantExpr::getTrunc(YC, I.getType()); local
1204 C3 = ConstantExpr::getAnd(C3, AndRHS);
1205 return BinaryOperator::CreateAnd(NewCast, C3);
2041 // ((V|C3)&C1) | ((V|C4)&C2) --> (V|C3|C4)&(C1|C2)
2042 // iff (C1&C2) == 0 and (C3&~C1) == 0 and (C4&~C2) == 0.
2043 ConstantInt *C3 = 0, *C4 = 0;
2044 if (match(A, m_Or(m_Value(V1), m_ConstantInt(C3))) &&
2045 (C3
2376 ConstantInt *C2 = Op0CI, *C3 = RHS; local
[all...]
H A DInstCombineCompares.cpp1187 // If this is: (X >> C1) & C2 != C3 (where any shift and any compare
1188 // could exist), turn it into (X & (C2 << C1)) != (C3 << C1). This
2687 // icmp (X + C1), (Y + C2) -> icmp (X + C3), Y
2688 // s.t. C3 = C1 - C2
2691 // icmp (X + C1), (Y + C2) -> icmp X, (Y + C3)
2692 // s.t. C3 = C2 - C1
2703 ConstantInt *C3 = Builder->getInt(AP1 - AP2); local
2704 Value *NewAdd = Builder->CreateNSWAdd(A, C3);
2707 ConstantInt *C3 = Builder->getInt(AP2 - AP1); local
2708 Value *NewAdd = Builder->CreateNSWAdd(C, C3);
[all...]
/freebsd-10.2-release/contrib/dialog/
H A Ddlg_keys.c360 CURSES_NAME(C3),
/freebsd-10.2-release/contrib/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp28 MAP(C3, 35) \
/freebsd-10.2-release/contrib/binutils/gas/config/
H A Dtc-arm.c14813 #define C3(mnem, op, nops, ops, ae) \
14970 C3(adrl, 28f0000, 2, (RR, EXP), adrl),
15018 C3(rscs, 0f00000, 3, (RR, oRR, SH), arit),
15020 C3(stmib, 9800000, 2, (RRw, REGLST), ldmstm),
15021 C3(stmfa, 9800000, 2, (RRw, REGLST), ldmstm),
15022 C3(stmda, 8000000, 2, (RRw, REGLST), ldmstm),
15023 C3(stmed, 8000000, 2, (RRw, REGLST), ldmstm),
15024 C3(ldmib, 9900000, 2, (RRw, REGLST), ldmstm),
15025 C3(ldmed, 9900000, 2, (RRw, REGLST), ldmstm),
15026 C3(ldmd
14801 #define C3 macro
[all...]
/freebsd-10.2-release/crypto/openssl/crypto/modes/
H A Dgcm128.c1704 static const u8 C3[] = { local
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1868 SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT, local
1870 AddToWorkList(C3.getNode());
1872 N0.getOperand(0), C3);
3251 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.

Completed in 358 milliseconds