Searched refs:C1 (Results 1 - 25 of 83) sorted by relevance

1234

/freebsd-10-stable/lib/msun/ld80/
H A Dk_cosl.c54 #define C1 ((long double)C1hi + C1lo) macro
57 C1 = 0.0416666666666666666136L; /* 0xaaaaaaaaaaaaaa9b.0p-68 */ variable
74 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*C7))))));
/freebsd-10-stable/lib/msun/src/
H A Dk_cosf.c29 C1 = 0x155553e1053a42.0p-57, /* 0.0416666233237390631894 */ variable
45 return ((one+z*C0) + w*C1) + (w*z)*r;
H A Dk_cos.c29 * cos(x) ~ 1 - x*x/2 + C1*x + ... + C6*x
33 * |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
61 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */ variable
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DIterable.h150 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
151 friend AdaptedConstIterator<C1, E1, A1> operator+(typename C1::const_iterator::difference_type, AdaptedConstIterator<C1, E1, A1> &);
153 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
154 friend typename C1::const_iterator::difference_type operator-(AdaptedConstIterator<C1, E1, A1> &, AdaptedConstIterator<C1, E
[all...]
/freebsd-10-stable/lib/msun/ld128/
H A Dk_cosl.c36 C1 = 0.04166666666666666666666666666666658424671L, variable
56 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, Constan
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/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))
882 return Constant::getNullValue(C1->getType());
886 return UndefValue::get(C1->getType());
888 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
889 return C1;
890 return Constant::getNullValue(C1->getType()); // undef & X -> 0
894 if (((CI = dyn_cast<ConstantInt>(C1)) && CI->getValue()[0]) ||
896 (isa<UndefValue>(C1)
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
2015 Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, 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!");
1705 assert(C1->getType()->isIntOrIntVectorTy() &&
1711 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1712 assert(C1->getType()->isFPOrFPVectorTy() &&
1718 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1719 assert(C1->getType()->isIntOrIntVectorTy() &&
1723 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1724 assert(C1
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
61 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
62 Op<0>() = C1;
80 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
82 Op<0>() = C1;
101 ExtractElementConstantExpr(Constant *C1, Constant *C2) argument
102 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
104 Op<0>() = C1;
122 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
123 : ConstantExpr(C1
144 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
[all...]
/freebsd-10-stable/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp77 static bool MultiplyOverflows(ConstantInt *C1, ConstantInt *C2, bool sign) { argument
78 uint32_t W = C1->getBitWidth();
79 APInt LHSExt = C1->getValue(), RHSExt = C2->getValue();
133 Constant *C1, *C2; local
136 m_Constant(C1))) &&
137 match(C1, m_APInt(IVal)))
138 // ((X << C1)*C2) == (X * (C2 << C1))
139 return BinaryOperator::CreateMul(NewOp, ConstantExpr::getShl(C1, C2));
141 if (match(&I, m_Mul(m_Value(NewOp), m_Constant(C1)))) {
162 { Value *X; ConstantInt *C1; local
179 ConstantInt *C1; local
336 ConstantFP *C1 = dyn_cast<ConstantFP>(I->getOperand(1)); local
365 ConstantFP *C1 = dyn_cast<ConstantFP>(Opnd1); local
448 ConstantFP *C1 = dyn_cast<ConstantFP>(Opnd1); local
859 ConstantInt *C1; local
1008 ConstantFP *C1 = 0; local
1047 ConstantFP *C1 = cast<ConstantFP>(Op0), *C2; local
[all...]
H A DInstCombineSelect.cpp196 static bool isSelect01(Constant *C1, Constant *C2) { argument
197 ConstantInt *C1I = dyn_cast<ConstantInt>(C1);
354 /// (select (icmp eq (and X, C1), 0), Y, (or Y, C2))
356 /// (or (shl (and X, C1), C3), y)
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
380 const APInt *C1; local
381 if (!match(CmpLHS, m_And(m_Value(X), m_Power2(C1))))
396 unsigned C1Log = C1
530 ConstantInt *C1 = NULL, *C2 = NULL; local
[all...]
H A DInstCombineAddSub.cpp358 ConstantFP *C0, *C1; local
364 if ((C1 = dyn_cast<ConstantFP>(Opnd1)) && C1->isZero())
376 if (!C1)
379 Addend.set(C1, 0);
1025 // X*C1 + X*C2 --> X * (C1+C2)
1026 ConstantInt *C1;
1027 if (X == dyn_castFoldableMul(RHS, C1))
1028 return BinaryOperator::CreateMul(X, ConstantExpr::getAdd(C1, C
1249 Value *A1, *B1, *C1, *A2, *B2, *C2; local
1491 ConstantInt *C1; 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^(C1&C2))) | C1
254 // (Val ashr C1)
1933 ConstantInt *C1 = 0; Value *X = 0; local
1965 ConstantInt *C1 = 0, *C2 = 0; local
2370 ConstantInt *C1; local
[all...]
/freebsd-10-stable/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp239 const RawComment &C1 = *Comments.back(); local
245 if (C1.isTrailingComment() == C2.isTrailingComment() &&
246 onlyWhitespaceBetween(SourceMgr, C1.getLocEnd(), C2.getLocStart(),
248 SourceRange MergedRange(C1.getLocStart(), C2.getLocEnd());
/freebsd-10-stable/contrib/gcc/
H A Drtl.h461 #define RTL_CHECK1(RTX, N, C1) __extension__ \
467 if (GET_RTX_FORMAT(_code)[_n] != C1) \
468 rtl_check_failed_type1 (_rtx, _n, C1, __FILE__, __LINE__, \
472 #define RTL_CHECK2(RTX, N, C1, C2) __extension__ \
478 if (GET_RTX_FORMAT(_code)[_n] != C1 \
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__, \
572 #define RTL_CHECK1(RTX, N, C1) ((RT
[all...]
/freebsd-10-stable/crypto/openssl/crypto/whrlpool/
H A Dwp_block.c158 # define C1(K,i) ROTATE(Cx.q[K.c[(i)*8+1]],8) macro
176 # define C1(K,i) (Cx.q[1+8*K.c[(i)*8+1]]) macro
189 # define C1(K,i) (((u64*)(Cx.c+7))[2*K.c[(i)*8+1]]) macro
496 L[i] ^= C0(K, i) ^ C1(K, (i - 1) & 7) ^
503 L[i] ^= C0(S, i) ^ C1(S, (i - 1) & 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(
[all...]
/freebsd-10-stable/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh161 atf_check -o file:d_context_d.out grep -C1 pig d_context_a.in d_context_b.in
227 grep -z -C1 cod test1 test2
/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/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp513 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
527 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
606 // If this is ((X >>u C1) << ShAmt), see if we can simplify this into a
612 unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); local
614 int Diff = ShAmt-C1;
695 // If this is ((X << C1) >>
701 unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); local
1148 const APInt &C1 = N1C->getAPIntValue(); local
[all...]
H A DSelectionDAGBuilder.h189 bool operator()(const Case &C1, const Case &C2) { argument
190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
191 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
198 bool operator()(const CaseBits &C1, const CaseBits &C2) { argument
199 return C1.Bits > C2.Bits;
/freebsd-10-stable/contrib/binutils/opcodes/
H A Dia64-opc.h49 #define C1 IA64_OPND_C1 macro
/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/sys/dev/ep/
H A Dif_ep_pccard.c74 { PCMCIA_CARD(3COM, 3C1), EP_CHIP_C1 },
/freebsd-10-stable/contrib/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp116 /// C1) The operand is in the form "X & C", where C is a constant and C != ~0
120 /// C2.2) Any operand E which doesn't fall into C1 and C2.1, we view this
1160 const APInt &C1 = Opnd1->getConstPart();
1161 if (C1 != ConstOpnd)
1165 Res = createAndInstr(I, X, ~C1);
1166 // ConstOpnd was C2, now C1 ^ C2.
1167 ConstOpnd ^= C1;
1208 const APInt &C1 = Opnd1->getConstPart();
1210 APInt C3((~C1) ^ C2);
1220 ConstOpnd ^= C1;
[all...]

Completed in 282 milliseconds

1234