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

123

/freebsd-10.0-release/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));
/freebsd-10.0-release/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.0-release/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.0-release/contrib/llvm/include/llvm/IR/
H A DConstants.h833 static Constant *getAdd(Constant *C1, Constant *C2,
835 static Constant *getFAdd(Constant *C1, Constant *C2);
836 static Constant *getSub(Constant *C1, Constant *C2,
838 static Constant *getFSub(Constant *C1, Constant *C2);
839 static Constant *getMul(Constant *C1, Constant *C2,
841 static Constant *getFMul(Constant *C1, Constant *C2);
842 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
843 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
844 static Constant *getFDiv(Constant *C1, Constant *C2);
845 static Constant *getURem(Constant *C1, Constant *C2);
870 getNSWAdd(Constant *C1, Constant *C2) argument
873 getNUWAdd(Constant *C1, Constant *C2) argument
876 getNSWSub(Constant *C1, Constant *C2) argument
879 getNUWSub(Constant *C1, Constant *C2) argument
882 getNSWMul(Constant *C1, Constant *C2) argument
885 getNUWMul(Constant *C1, Constant *C2) argument
888 getNSWShl(Constant *C1, Constant *C2) argument
891 getNUWShl(Constant *C1, Constant *C2) argument
894 getExactSDiv(Constant *C1, Constant *C2) argument
897 getExactUDiv(Constant *C1, Constant *C2) argument
900 getExactAShr(Constant *C1, Constant *C2) argument
903 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/freebsd-10.0-release/contrib/ntp/scripts/monitoring/
H A Dtimelocal.pl44 $ym = pack(C2, @_[5,4]);
52 $ym = pack(C2, @_[5,4]);
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp871 Constant *C1, Constant *C2) {
873 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
876 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
885 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
892 ((CI = dyn_cast<ConstantInt>(C2)) && CI->getValue()[0]) ||
893 (isa<UndefValue>(C1) && isa<UndefValue>(C2)))
903 if (ConstantInt *CI2 = dyn_cast<ConstantInt>(C2))
909 if (!isa<UndefValue>(C2)) // undef / X -> 0
911 return C2; // X / undef -> undef
913 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // unde
870 ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, Constant *C2) argument
1227 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) argument
1569 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) argument
1957 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, Int64Ty); local
[all...]
H A DConstantFold.h49 Constant *C1, Constant *C2);
H A DConstants.cpp1667 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, argument
1673 assert(C1->getType() == C2->getType() &&
1681 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1688 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1695 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1700 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1706 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!");
1725 assert(C1->getType() == C2
1786 getCompare(unsigned short Predicate, Constant *C1, Constant *C2) argument
2004 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2011 getFAdd(Constant *C1, Constant *C2) argument
2015 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2022 getFSub(Constant *C1, Constant *C2) argument
2026 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2033 getFMul(Constant *C1, Constant *C2) argument
2037 getUDiv(Constant *C1, Constant *C2, bool isExact) argument
2042 getSDiv(Constant *C1, Constant *C2, bool isExact) argument
2047 getFDiv(Constant *C1, Constant *C2) argument
2051 getURem(Constant *C1, Constant *C2) argument
2055 getSRem(Constant *C1, Constant *C2) argument
2059 getFRem(Constant *C1, Constant *C2) argument
2063 getAnd(Constant *C1, Constant *C2) argument
2067 getOr(Constant *C1, Constant *C2) argument
2071 getXor(Constant *C1, Constant *C2) argument
2075 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2082 getLShr(Constant *C1, Constant *C2, bool isExact) argument
2087 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.0-release/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp248 const RawComment &C2 = RC; local
255 (C1.isTrailingComment() == C2.isTrailingComment())) {
257 unsigned C2BeginLine = C2.getBeginLine(SourceMgr);
260 C2.getSourceRange().getEnd());
H A DASTImporter.cpp187 ASTContext &C1, &C2; member in struct:__anon2954::StructuralEquivalenceContext
209 /// \brief \c true if the last diagnostic came from C2.
212 StructuralEquivalenceContext(ASTContext &C1, ASTContext &C2, argument
216 : C1(C1), C2(C2), NonEquivalentDecls(NonEquivalentDecls),
237 C1.getDiagnostics().notePriorDiagnosticFrom(C2.getDiagnostics());
245 C2.getDiagnostics().notePriorDiagnosticFrom(C1.getDiagnostics());
247 return C2.getDiagnostics().Report(Loc, DiagID);
368 T2 = Context.C2.getCanonicalType(T2);
853 << Context.C2
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp77 static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) { argument
79 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
113 // ((X << C1)*C2) == (X * (C2 << C1))
656 // (X / C1) / C2 -> X / (C1*C2)
740 // (x lshr C1) udiv C2 --> x udiv (C2 << C1)
741 if (ConstantInt *C2 = dyn_cast<ConstantInt>(Op1)) {
745 APInt NC = C2
767 { Value *Cond; const APInt *C1, *C2; local
885 ConstantFP *C2 = Op1C; local
923 ConstantFP *C1 = cast<ConstantFP>(Op0), *C2; local
1047 { Value *Cond; const APInt *C1, *C2; local
[all...]
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.cpp1019 ConstantInt *C2;
1020 if (Value *X = dyn_castFoldableMul(LHS, C2)) {
1022 return BinaryOperator::CreateMul(RHS, AddOne(C2));
1024 // X*C1 + X*C2 --> X * (C1+C2)
1027 return BinaryOperator::CreateMul(X, ConstantExpr::getAdd(C1, C2));
1031 if (dyn_castFoldableMul(RHS, C2) == LHS)
1032 return BinaryOperator::CreateMul(LHS, AddOne(C2));
1080 match(LHS, m_And(m_Value(X), m_ConstantInt(C2))) &&
1081 CRHS->getValue() == (CRHS->getValue() & C2
1242 Value *A1, *B1, *C1, *A2, *B2, *C2; local
[all...]
H A DInstCombineAndOrXor.cpp128 // OptAndOp - This handles expressions of the form ((val OP C1) & C2). Where
129 // the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
143 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
152 // (X | C1) & C2 --> (X | (C1&C2)) & C2
160 // (X | C1) & C2 --> (X & (C2
1807 ConstantInt *C1 = 0, *C2 = 0; local
2223 ConstantInt *C2 = Op0CI, *C3 = RHS; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c152 # define C2(K,i) ROTATE(Cx.q[K.c[(i)*8+2]],16) macro
170 # define C2(K,i) (Cx.q[2+8*K.c[(i)*8+2]]) macro
183 # define C2(K,i) (((u64*)(Cx.c+6))[2*K.c[(i)*8+2]]) macro
488 C2(K,(i-2)&7) ^ C3(K,(i-3)&7) ^
496 C2(S,(i-2)&7) ^ C3(S,(i-3)&7) ^
536 L0 = C0(K,0) ^ C1(K,7) ^ C2(K,6) ^ C3(K,5) ^
538 L1 = C0(K,1) ^ C1(K,0) ^ C2(K,7) ^ C3(K,6) ^
540 L2 = C0(K,2) ^ C1(K,1) ^ C2(K,0) ^ C3(K,7) ^
542 L3 = C0(K,3) ^ C1(K,2) ^ C2(K,1) ^ C3(K,0) ^
544 L4 = C0(K,4) ^ C1(K,3) ^ C2(
[all...]
/freebsd-10.0-release/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.0-release/contrib/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp233 // C1 = A1 / A2; C2 = A2 / A1 (which may be both direct and a swap)
1605 for (SmallVector<ValuePairWithDepth, 8>::iterator C2
1607 C2 != E2; ++C2) {
1608 if (C2->first.first == C->first.first ||
1609 C2->first.first == C->first.second ||
1610 C2->first.second == C->first.first ||
1611 C2->first.second == C->first.second ||
1612 pairsConflict(C2->first, C->first, PairableInstUsers,
1615 if (C2
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/contrib/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp394 const Constant *C2 = dyn_cast<Constant>(V2); local
395 if (!C2) return false;
397 if (C1->isNullValue() && C2->isNullValue() &&
398 isEquivalentType(C1->getType(), C2->getType()))
400 // Try bitcasting C2 to C1's type. If the bitcast is legal and returns C1
402 return C1->getType()->canLosslesslyBitCastTo(C2->getType()) &&
403 C1 == ConstantExpr::getBitCast(const_cast<Constant*>(C2), C1->getType());
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DIfConversion.cpp232 static bool IfcvtTokenCmp(IfcvtToken *C1, IfcvtToken *C2) { argument
235 int Incr2 = (C2->Kind == ICDiamond)
236 ? -(int)(C2->NumDups + C2->NumDups2) : (int)C2->NumDups;
241 if (C1->NeedSubsumption == false && C2->NeedSubsumption == true)
243 else if (C1->NeedSubsumption == C2->NeedSubsumption) {
245 if ((unsigned)C1->Kind < (unsigned)C2->Kind)
247 else if (C1->Kind == C2->Kind)
248 return C1->BBI.BB->getNumber() < C2
[all...]
/freebsd-10.0-release/usr.bin/systat/
H A Difstat.c50 #define C2 20 /* 20-39 */ macro
57 static const int col2 = C2;
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1582 const APInt &C2 = N2C->getAPIntValue(); local
1588 case ISD::SETEQ: return getConstant(C1 == C2, VT);
1589 case ISD::SETNE: return getConstant(C1 != C2, VT);
1590 case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1591 case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1592 case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1593 case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1594 case ISD::SETLT: return getConstant(C1.slt(C2), VT);
1595 case ISD::SETGT: return getConstant(C1.sgt(C2), VT);
1596 case ISD::SETLE: return getConstant(C1.sle(C2), V
2726 const APInt &C2 = Inputs[I].second->getAPIntValue(); local
[all...]

Completed in 222 milliseconds

123