Searched refs:C2 (Results 1 - 25 of 73) sorted by relevance

123

/freebsd-10-stable/lib/msun/src/
H A Dk_cosf.c30 C2 = -0x16c087e80f1e27.0p-62, /* -0.00138867637746099294692 */ 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
62 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */ variable
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
H A De_coshl.c50 C2 = 0.5, variable
71 C2 = 0.5, variable
108 ((C8*x2 + C6)*x2 + C4)*x4 + C2*x2 + 1);
114 C4)*(x2*x2) + C2*x2 + 1);
/freebsd-10-stable/lib/msun/ld128/
H A Dk_cosl.c37 C2 = -0.001388888888888888888888888888863490893732L, variable
56 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*(C7+
/freebsd-10-stable/lib/msun/ld80/
H A Dk_cosl.c61 C2 = -0.0013888888888888874, /* -0x16c16c16c16c10.0p-62 */ variable
74 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*C7))))));
/freebsd-10-stable/contrib/llvm/include/llvm/IR/
H A DConstants.h831 static Constant *getAdd(Constant *C1, Constant *C2,
833 static Constant *getFAdd(Constant *C1, Constant *C2);
834 static Constant *getSub(Constant *C1, Constant *C2,
836 static Constant *getFSub(Constant *C1, Constant *C2);
837 static Constant *getMul(Constant *C1, Constant *C2,
839 static Constant *getFMul(Constant *C1, Constant *C2);
840 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
841 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
842 static Constant *getFDiv(Constant *C1, Constant *C2);
843 static Constant *getURem(Constant *C1, Constant *C2);
869 getNSWAdd(Constant *C1, Constant *C2) argument
872 getNUWAdd(Constant *C1, Constant *C2) argument
875 getNSWSub(Constant *C1, Constant *C2) argument
878 getNUWSub(Constant *C1, Constant *C2) argument
881 getNSWMul(Constant *C1, Constant *C2) argument
884 getNUWMul(Constant *C1, Constant *C2) argument
887 getNSWShl(Constant *C1, Constant *C2) argument
890 getNUWShl(Constant *C1, Constant *C2) argument
893 getExactSDiv(Constant *C1, Constant *C2) argument
896 getExactUDiv(Constant *C1, Constant *C2) argument
899 getExactAShr(Constant *C1, Constant *C2) argument
902 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/freebsd-10-stable/contrib/ntp/scripts/monitoring/
H A Dtimelocal.pl44 $ym = pack(C2, @_[5,4]);
52 $ym = pack(C2, @_[5,4]);
/freebsd-10-stable/contrib/llvm/lib/IR/
H A DConstantFold.cpp874 Constant *C1, Constant *C2) {
876 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
879 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
888 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
895 ((CI = dyn_cast<ConstantInt>(C2)) && CI->getValue()[0]) ||
896 (isa<UndefValue>(C1) && isa<UndefValue>(C2)))
906 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2))
912 if (!isa<UndefValue>(C2)) // undef / X -> 0
914 return C2; // X / undef -> undef
916 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // unde
873 ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, Constant *C2) argument
1230 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) argument
1572 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) argument
2016 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, Int64Ty); local
[all...]
H A DConstantFold.h49 Constant *C1, Constant *C2);
H A DConstants.cpp1690 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, argument
1696 assert(C1->getType() == C2->getType() &&
1704 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1711 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1718 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1723 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1729 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1734 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1741 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1748 assert(C1->getType() == C2
1809 getCompare(unsigned short Predicate, Constant *C1, Constant *C2) argument
2040 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2047 getFAdd(Constant *C1, Constant *C2) argument
2051 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2058 getFSub(Constant *C1, Constant *C2) argument
2062 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2069 getFMul(Constant *C1, Constant *C2) argument
2073 getUDiv(Constant *C1, Constant *C2, bool isExact) argument
2078 getSDiv(Constant *C1, Constant *C2, bool isExact) argument
2083 getFDiv(Constant *C1, Constant *C2) argument
2087 getURem(Constant *C1, Constant *C2) argument
2091 getSRem(Constant *C1, Constant *C2) argument
2095 getFRem(Constant *C1, Constant *C2) argument
2099 getAnd(Constant *C1, Constant *C2) argument
2103 getOr(Constant *C1, Constant *C2) argument
2107 getXor(Constant *C1, Constant *C2) argument
2111 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2118 getLShr(Constant *C1, Constant *C2, bool isExact) argument
2123 getAShr(Constant *C1, Constant *C2, bool isExact) argument
[all...]
H A DConstantsContext.h59 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, argument
63 Op<1>() = C2;
80 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
81 : ConstantExpr(C2->getType(), Instruction::Select, &Op<0>(), 3) {
83 Op<1>() = C2;
101 ExtractElementConstantExpr(Constant *C1, Constant *C2) argument
105 Op<1>() = C2;
122 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
126 Op<1>() = C2;
144 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constan argument
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp240 const RawComment &C2 = RC; local
245 if (C1.isTrailingComment() == C2.isTrailingComment() &&
246 onlyWhitespaceBetween(SourceMgr, C1.getLocEnd(), C2.getLocStart(),
248 SourceRange MergedRange(C1.getLocStart(), C2.getLocEnd());
/freebsd-10-stable/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c159 # define C2(K,i) ROTATE(Cx.q[K.c[(i)*8+2]],16) macro
177 # define C2(K,i) (Cx.q[2+8*K.c[(i)*8+2]]) macro
190 # define C2(K,i) (((u64*)(Cx.c+6))[2*K.c[(i)*8+2]]) 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(
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp196 static bool isSelect01(Constant *C1, Constant *C2) { argument
200 ConstantInt *C2I = dyn_cast<ConstantInt>(C2);
354 /// (select (icmp eq (and X, C1), 0), Y, (or Y, C2))
358 /// C1 and C2 are both powers of 2
360 /// C3 = Log(C2) - Log(C1)
365 /// 3. The magnitude of C2 and C1 are flipped
384 const APInt *C2; local
386 bool OrOnFalseVal = match(FalseVal, m_Or(m_Specific(TrueVal), m_Power2(C2)));
388 OrOnTrueVal = match(TrueVal, m_Or(m_Specific(FalseVal), m_Power2(C2)));
397 unsigned C2Log = C2
530 ConstantInt *C1 = NULL, *C2 = NULL; local
[all...]
H A DInstCombineAddSub.cpp1020 ConstantInt *C2;
1021 if (Value *X = dyn_castFoldableMul(LHS, C2)) {
1023 return BinaryOperator::CreateMul(RHS, AddOne(C2));
1025 // X*C1 + X*C2 --> X * (C1+C2)
1028 return BinaryOperator::CreateMul(X, ConstantExpr::getAdd(C1, C2));
1032 if (dyn_castFoldableMul(RHS, C2) == LHS)
1033 return BinaryOperator::CreateMul(LHS, AddOne(C2));
1081 match(LHS, m_And(m_Value(X), m_ConstantInt(C2))) &&
1082 CRHS->getValue() == (CRHS->getValue() & C2
1249 Value *A1, *B1, *C1, *A2, *B2, *C2; local
[all...]
H A DInstCombineMulDivRem.cpp77 static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) { argument
79 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
133 Constant *C1, *C2; local
135 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
138 // ((X << C1)*C2) == (X * (C2 << C1))
139 return BinaryOperator::CreateMul(NewOp, ConstantExpr::getShl(C1, C2));
688 // (X / C1) / C2 -> X / (C1*C2)
785 // X udiv (C1 << N), where C1 is "1<<C2"
1009 ConstantFP *C2 = Op1C; local
1047 ConstantFP *C1 = cast<ConstantFP>(Op0), *C2; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Format/
H A DWhitespaceManager.h86 bool operator()(const Change &C1, const Change &C2) const;
/freebsd-10-stable/contrib/gcc/
H A Drtl.h472 #define RTL_CHECK2(RTX, N, C1, C2) __extension__ \
479 && GET_RTX_FORMAT(_code)[_n] != C2) \
480 rtl_check_failed_type2 (_rtx, _n, C1, C2, __FILE__, __LINE__, \
491 #define RTL_CHECKC2(RTX, N, C1, C2) __extension__ \
494 if (_code != (C1) && _code != (C2)) \
495 rtl_check_failed_code2 (_rtx, (C1), (C2), __FILE__, __LINE__, \
573 #define RTL_CHECK2(RTX, N, C1, C2) ((RTX)->u.fld[N])
575 #define RTL_CHECKC2(RTX, N, C1, C2) ((RTX)->u.fld[N])
599 #define RTL_FLAG_CHECK2(NAME, RTX, C1, C2) __extension__ \
601 if (GET_CODE(_rtx) != C1 && GET_CODE(_rtx) != C2) \
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp233 // C1 = A1 / A2; C2 = A2 / A1 (which may be both direct and a swap)
1609 for (SmallVectorImpl<ValuePairWithDepth>::iterator C2
1611 C2 != E2; ++C2) {
1612 if (C2->first.first == C->first.first ||
1613 C2->first.first == C->first.second ||
1614 C2->first.second == C->first.first ||
1615 C2->first.second == C->first.second ||
1616 pairsConflict(C2->first, C->first, PairableInstUsers,
1619 if (C2
[all...]
/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h189 bool operator()(const Case &C1, const Case &C2) { argument
190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
192 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
198 bool operator()(const CaseBits &C1, const CaseBits &C2) { argument
199 return C1.Bits > C2.Bits;
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp504 std::string C2; local
505 C2.reserve(C.size());
509 C2 += C.substr(last);
512 C2 += C.substr(last, loc-last);
525 C2 += '\\';
529 if (!C2.empty())
530 ParseDirective(C2, &ED, SM, &PP, CommentBegin, Status);
/freebsd-10-stable/contrib/llvm/lib/Analysis/
H A DAliasSetTracker.cpp184 CallSite C1 = getUnknownInst(i), C2 = Inst; local
185 if (!C1 || !C2 ||
186 AA.getModRefInfo(C1, C2) != AliasAnalysis::NoModRef ||
187 AA.getModRefInfo(C2, C1) != AliasAnalysis::NoModRef)
/freebsd-10-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh158 atf_check -o file:d_context_a.out grep -C2 bamboo d_context_a.in
/freebsd-10-stable/contrib/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp74 const LowerSwitch::CaseRange& C2) {
77 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
73 operator ()(const LowerSwitch::CaseRange& C1, const LowerSwitch::CaseRange& C2) argument
/freebsd-10-stable/contrib/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp402 const Constant *C2 = dyn_cast<Constant>(V2); local
403 if (!C2) return false;
405 if (C1->isNullValue() && C2->isNullValue() &&
406 isEquivalentType(C1->getType(), C2->getType()))
408 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
410 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
411 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());

Completed in 318 milliseconds

123