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

1234

/freebsd-11.0-release/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-11.0-release/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-11.0-release/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DIterable.h159 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
160 friend AdaptedConstIterator<C1, E1, A1> operator+(typename C1::const_iterator::difference_type, AdaptedConstIterator<C1, E1, A1> &);
162 template <typename C1, typename E1, E1 (*A1)(typename C1::const_iterator &)>
163 friend typename C1::const_iterator::difference_type operator-(AdaptedConstIterator<C1, E1, A1> &, AdaptedConstIterator<C1, E
[all...]
/freebsd-11.0-release/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-11.0-release/crypto/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl351 ($Hhl,$Hlo,$Hhi,$Xlo,$Xhi,$xE1,$sqr, $C0,$C1,$C2,$C3,$V)=
408 xmulx $C2,$Hhl,$C1
419 xor $C0,$C1,$C1 ! Karatsuba post-processing
421 xor $sqr,$Xlo,$Xlo ! real destination is $C1
423 xor $Xlo,$C1,$C1
425 xor $Xhi,$C1,$C1
429 xmulx $C1,
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/IR/
H A DConstants.h920 static Constant *getAdd(Constant *C1, Constant *C2,
922 static Constant *getFAdd(Constant *C1, Constant *C2);
923 static Constant *getSub(Constant *C1, Constant *C2,
925 static Constant *getFSub(Constant *C1, Constant *C2);
926 static Constant *getMul(Constant *C1, Constant *C2,
928 static Constant *getFMul(Constant *C1, Constant *C2);
929 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
930 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
931 static Constant *getFDiv(Constant *C1, Constant *C2);
932 static Constant *getURem(Constant *C1, Constan
964 getNSWAdd(Constant *C1, Constant *C2) argument
967 getNUWAdd(Constant *C1, Constant *C2) argument
970 getNSWSub(Constant *C1, Constant *C2) argument
973 getNUWSub(Constant *C1, Constant *C2) argument
976 getNSWMul(Constant *C1, Constant *C2) argument
979 getNUWMul(Constant *C1, Constant *C2) argument
982 getNSWShl(Constant *C1, Constant *C2) argument
985 getNUWShl(Constant *C1, Constant *C2) argument
988 getExactSDiv(Constant *C1, Constant *C2) argument
991 getExactUDiv(Constant *C1, Constant *C2) argument
994 getExactAShr(Constant *C1, Constant *C2) argument
997 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DConstantFold.cpp918 Constant *C1, Constant *C2) {
920 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
923 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
926 return Constant::getNullValue(C1->getType());
930 return UndefValue::get(C1->getType());
932 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
933 return C1;
934 return Constant::getNullValue(C1->getType()); // undef & X -> 0
937 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
938 return C1;
917 ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, Constant *C2) argument
1286 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) argument
1659 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) argument
2122 Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, CommonTy); local
[all...]
H A DConstantFold.h49 Constant *C1, Constant *C2);
H A DConstants.cpp1803 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, argument
1809 assert(C1->getType() == C2->getType() &&
1817 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1818 assert(C1->getType()->isIntOrIntVectorTy() &&
1824 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1825 assert(C1->getType()->isFPOrFPVectorTy() &&
1831 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1832 assert(C1->getType()->isIntOrIntVectorTy() &&
1836 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1837 assert(C1
1925 getCompare(unsigned short Predicate, Constant *C1, Constant *C2, bool OnlyIfReduced) argument
2193 getAdd(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2200 getFAdd(Constant *C1, Constant *C2) argument
2204 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2211 getFSub(Constant *C1, Constant *C2) argument
2215 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2222 getFMul(Constant *C1, Constant *C2) argument
2226 getUDiv(Constant *C1, Constant *C2, bool isExact) argument
2231 getSDiv(Constant *C1, Constant *C2, bool isExact) argument
2236 getFDiv(Constant *C1, Constant *C2) argument
2240 getURem(Constant *C1, Constant *C2) argument
2244 getSRem(Constant *C1, Constant *C2) argument
2248 getFRem(Constant *C1, Constant *C2) argument
2252 getAnd(Constant *C1, Constant *C2) argument
2256 getOr(Constant *C1, Constant *C2) argument
2260 getXor(Constant *C1, Constant *C2) argument
2264 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2271 getLShr(Constant *C1, Constant *C2, bool isExact) argument
2276 getAShr(Constant *C1, Constant *C2, bool isExact) argument
[all...]
H A DConstantsContext.h60 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, argument
62 : ConstantExpr(C1->getType(), Opcode, &Op<0>(), 2) {
63 Op<0>() = C1;
81 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
83 Op<0>() = C1;
102 ExtractElementConstantExpr(Constant *C1, Constant *C2) argument
103 : ConstantExpr(cast<VectorType>(C1->getType())->getElementType(),
105 Op<0>() = C1;
123 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
124 : ConstantExpr(C1
145 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp80 static bool MultiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product, argument
84 Product = C1.smul_ov(C2, Overflow);
86 Product = C1.umul_ov(C2, Overflow);
91 /// \brief True if C2 is a multiple of C1. Quotient contains C2/C1.
92 static bool IsMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, argument
94 assert(C1.getBitWidth() == C2.getBitWidth() &&
102 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue())
105 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned);
107 APInt::sdivrem(C1, C
199 Constant *C1, *C2; local
253 ConstantInt *C1; local
282 Constant *C1; local
471 Constant *C1 = dyn_cast<Constant>(I->getOperand(1)); local
494 Constant *C1 = dyn_cast<Constant>(Opnd1); local
587 Constant *C1 = dyn_cast<Constant>(Opnd1); local
807 const APInt *C1; local
1058 const APInt *C1, *C2; local
1237 Constant *C1 = nullptr; local
1275 Constant *C1 = cast<Constant>(Op0), *C2; local
[all...]
H A DInstCombineAddSub.cpp361 ConstantFP *C0, *C1; local
367 if ((C1 = dyn_cast<ConstantFP>(Opnd1)) && C1->isZero())
379 if (!C1)
382 Addend.set(C1, nullptr);
1004 const APInt *C1 = nullptr, *C2 = nullptr; local
1012 if (match(RHS, m_Xor(m_Value(Y), m_APInt(C1))))
1015 if (match(X, m_Xor(m_Value(Y), m_APInt(C1)))) {
1016 // X = XOR(Y, C1), Y = OR(Z, C2), C2 = NOT(C1)
1393 Value *A1, *B1, *C1, *A2, *B2, *C2; local
[all...]
H A DInstCombineSelect.cpp193 static bool isSelect01(Constant *C1, Constant *C2) { argument
194 ConstantInt *C1I = dyn_cast<ConstantInt>(C1);
286 /// (select (icmp eq (and X, C1), 0), Y, (or Y, C2))
288 /// (or (shl (and X, C1), C3), y)
290 /// C1 and C2 are both powers of 2
292 /// C3 = Log(C2) - Log(C1)
297 /// 3. The magnitude of C2 and C1 are flipped
312 const APInt *C1; local
313 if (!match(CmpLHS, m_And(m_Value(X), m_Power2(C1))))
328 unsigned C1Log = C1
508 ConstantInt *C1 = nullptr, *C2 = nullptr; local
[all...]
H A DInstCombineCalls.cpp536 Constant *C1 = dyn_cast<Constant>(Op1); local
541 C1 ? dyn_cast<ConstantInt>(C1->getAggregateElement((unsigned)0))
891 const ConstantFP *C1 = dyn_cast<ConstantFP>(Arg1); local
894 if (C0 && !C1) {
901 if (C1 && C1->isNaN())
934 if (C1 && C1->isInfinity()) {
936 if (C1
1217 Constant *C1 = dyn_cast<Constant>(Op1); local
1277 Constant *C1 = dyn_cast<Constant>(Op1); local
[all...]
H A DInstCombineAndOrXor.cpp158 /// This handles expressions of the form ((val OP C1) & C2). Where
159 /// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'. Op is
173 // (X ^ C1) & C2 --> (X & C2) ^ (C1&C2)
182 // (X | C1) & C2 --> (X | (C1&C2)) & C2
190 // (X | C1) & C2 --> (X & (C2^(C1&C2))) | C1
284 // (Val ashr C1)
1233 ConstantInt *C1 = nullptr; local
2083 ConstantInt *C1 = nullptr; Value *X = nullptr; local
2115 ConstantInt *C1 = nullptr, *C2 = nullptr; local
2577 ConstantInt *C1; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DRawCommentList.cpp74 unsigned C1 = SM.getPresumedColumnNumber(L1, &Invalid); local
77 return !Invalid && (C1 == C2);
297 const RawComment &C1 = *Comments.back(); local
313 if ((C1.isTrailingComment() == C2.isTrailingComment() ||
314 (C1.isTrailingComment() && !C2.isTrailingComment() &&
316 commentsStartOnSameColumn(SourceMgr, C1, C2))) &&
317 onlyWhitespaceBetween(SourceMgr, C1.getLocEnd(), C2.getLocStart(),
319 SourceRange MergedRange(C1.getLocStart(), C2.getLocEnd());
/freebsd-11.0-release/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-11.0-release/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-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp528 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
542 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
621 // If this is ((X >>u C1) << ShAmt), see if we can simplify this into a
627 unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); local
629 int Diff = ShAmt-C1;
717 // If this is ((X << C1) >>
723 unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); local
1277 const APInt &C1 = N1C->getAPIntValue(); local
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h70 bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) { argument
71 return C1 == C2;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DWhitespaceManager.h91 bool operator()(const Change &C1, const Change &C2) const;
/freebsd-11.0-release/contrib/binutils/opcodes/
H A Dia64-opc.h49 #define C1 IA64_OPND_C1 macro
/freebsd-11.0-release/contrib/netbsd-tests/usr.bin/grep/
H A Dt_grep.sh180 atf_check -o file:d_context_d.out grep -C1 pig d_context_a.in d_context_b.in
246 grep -z -C1 cod test1 test2
/freebsd-11.0-release/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp792 ConstantSDNode *C1 = cast<ConstantSDNode>(N1); local
793 if (isDSOffsetLegal(N0, C1->getSExtValue(), 16)) {
857 ConstantSDNode *C1 = cast<ConstantSDNode>(N1); local
858 unsigned DWordOffset0 = C1->getZExtValue() / 4;
947 ConstantSDNode *C1 = cast<ConstantSDNode>(N1); local
950 // (add (add N2, N3), C1) -> addr64
958 // (add N0, C1) -> offset
963 if (isLegalMUBUFImmOffset(C1)) {
964 Offset = CurDAG->getTargetConstant(C1->getZExtValue(), DL, MVT::i16);
966 } else if (isUInt<32>(C1
1050 ConstantSDNode *C1 = cast<ConstantSDNode>(N1); local
[all...]

Completed in 817 milliseconds

1234