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

12345

/freebsd-11-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 Dk_sincosf.h28 C2 = -0x16c087e80f1e27.0p-62, /* -0.00138867637746099294692 */ variable
41 r = C2 + z * C3;
H A De_coshl.c50 C2 = 0.5, variable
71 C2 = 0.5, variable
110 ((C8*x2 + C6)*x2 + C4)*x4 + C2*x2 + 1);
116 C4)*(x2*x2) + C2*x2 + 1);
H A Dk_sincos.h27 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */ variable
48 r = z * (C1 + z * (C2 + z * C3)) + w * w * (C4 + z * (C5 + z * C6));
H A Dk_sincosl.h36 C2 = -0.0013888888888888874, /* -0x16c16c16c16c10.0p-62 */ variable
71 r = z * (C1 + z * (C2 + z * (C3 + z * (C4 + z * (C5 + z * (C6 +
80 C2 = -0.001388888888888888888888888888863490893732L, variable
127 r = z * (C1 + z * (C2 + z * (C3 + z * (C4 + z * (C5 + z * (C6 +
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-sparcv9.pl351 ($Hhl,$Hlo,$Hhi,$Xlo,$Xhi,$xE1,$sqr, $C0,$C1,$C2,$C3,$V)=
407 xor $Xlo,$Xhi,$C2 ! Karatsuba pre-processing
408 xmulx $C2,$Hhl,$C1
410 xmulxhi $C2,$Hhl,$C2
420 xor $Xlo,$C2,$C2
422 xor $C3,$C2,$C2
424 xor $Xhi,$C2,
[all...]
/freebsd-11-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-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h932 static Constant *getAdd(Constant *C1, Constant *C2,
934 static Constant *getFAdd(Constant *C1, Constant *C2);
935 static Constant *getSub(Constant *C1, Constant *C2,
937 static Constant *getFSub(Constant *C1, Constant *C2);
938 static Constant *getMul(Constant *C1, Constant *C2,
940 static Constant *getFMul(Constant *C1, Constant *C2);
941 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false);
942 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false);
943 static Constant *getFDiv(Constant *C1, Constant *C2);
944 static Constant *getURem(Constant *C1, Constant *C2);
977 getNSWAdd(Constant *C1, Constant *C2) argument
981 getNUWAdd(Constant *C1, Constant *C2) argument
985 getNSWSub(Constant *C1, Constant *C2) argument
989 getNUWSub(Constant *C1, Constant *C2) argument
993 getNSWMul(Constant *C1, Constant *C2) argument
997 getNUWMul(Constant *C1, Constant *C2) argument
1001 getNSWShl(Constant *C1, Constant *C2) argument
1005 getNUWShl(Constant *C1, Constant *C2) argument
1009 getExactSDiv(Constant *C1, Constant *C2) argument
1013 getExactUDiv(Constant *C1, Constant *C2) argument
1017 getExactAShr(Constant *C1, Constant *C2) argument
1021 getExactLShr(Constant *C1, Constant *C2) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp346 APInt C2(Ty.getSizeInBits(), *MaybeOp2Cst, true);
351 return C1 + C2;
353 return C1 & C2;
355 return C1.ashr(C2);
357 return C1.lshr(C2);
359 return C1 * C2;
361 return C1 | C2;
363 return C1 << C2;
365 return C1 - C2;
367 return C1 ^ C2;
[all...]
/freebsd-11-stable/contrib/ntp/scripts/monitoring/
H A Dtimelocal.pl44 $ym = pack(C2, @_[5,4]);
52 $ym = pack(C2, @_[5,4]);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1000 Constant *C2) {
1011 return C2;
1012 if (C2 == Identity)
1018 (isa<UndefValue>(C1) || isa<UndefValue>(C2));
1022 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
1031 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef
1036 if (isa<UndefValue>(C1) && isa<UndefValue>(C2))
1040 if (match(C1, m_APInt(CV)) || match(C2, m_APInt(CV)))
1050 if (isa<UndefValue>(C2))
1051 return C2;
999 ConstantFoldBinaryInstruction(unsigned Opcode, Constant *C1, Constant *C2) argument
1427 IdxCompare(Constant *C1, Constant *C2, Type *ElTy) argument
1810 ConstantFoldCompareInstruction(unsigned short pred, Constant *C1, Constant *C2) argument
2301 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined, CommonTy); local
[all...]
H A DConstantFold.h50 Constant *C1, Constant *C2);
H A DConstants.cpp1936 Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2, argument
1941 assert(C1->getType() == C2->getType() &&
1982 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1988 Constant *ArgVec[] = { C1, C2 };
2037 Constant *C2, bool OnlyIfReduced) {
2038 assert(C1->getType() == C2->getType() && "Op types should be identical!");
2048 return getFCmp(Predicate, C1, C2, OnlyIfReduced);
2054 return getICmp(Predicate, C1, C2, OnlyIfReduced);
2318 Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2, argument
2322 return get(Instruction::Add, C1, C2, Flag
2036 getCompare(unsigned short Predicate, Constant *C1, Constant *C2, bool OnlyIfReduced) argument
2325 getFAdd(Constant *C1, Constant *C2) argument
2329 getSub(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2336 getFSub(Constant *C1, Constant *C2) argument
2340 getMul(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2347 getFMul(Constant *C1, Constant *C2) argument
2351 getUDiv(Constant *C1, Constant *C2, bool isExact) argument
2356 getSDiv(Constant *C1, Constant *C2, bool isExact) argument
2361 getFDiv(Constant *C1, Constant *C2) argument
2365 getURem(Constant *C1, Constant *C2) argument
2369 getSRem(Constant *C1, Constant *C2) argument
2373 getFRem(Constant *C1, Constant *C2) argument
2377 getAnd(Constant *C1, Constant *C2) argument
2381 getOr(Constant *C1, Constant *C2) argument
2385 getXor(Constant *C1, Constant *C2) argument
2389 getShl(Constant *C1, Constant *C2, bool HasNUW, bool HasNSW) argument
2396 getLShr(Constant *C1, Constant *C2, bool isExact) argument
2401 getAShr(Constant *C1, Constant *C2, bool isExact) argument
[all...]
H A DConstantsContext.h64 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2, argument
68 Op<1>() = C2;
85 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
86 : ConstantExpr(C2->getType(), Instruction::Select, &Op<0>(), 3) {
88 Op<1>() = C2;
106 ExtractElementConstantExpr(Constant *C1, Constant *C2) argument
110 Op<1>() = C2;
127 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3) argument
131 Op<1>() = C2;
149 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constan argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DRawCommentList.cpp75 unsigned C2 = SM.getPresumedColumnNumber(L2, &Invalid); local
76 return !Invalid && (C1 == C2);
297 const RawComment &C2 = RC; local
312 if ((C1.isTrailingComment() == C2.isTrailingComment() ||
313 (C1.isTrailingComment() && !C2.isTrailingComment() &&
314 isOrdinaryKind(C2.getKind()) &&
315 commentsStartOnSameColumn(SourceMgr, C1, C2))) &&
316 onlyWhitespaceBetween(SourceMgr, C1.getEndLoc(), C2.getBeginLoc(),
318 SourceRange MergedRange(C1.getBeginLoc(), C2.getEndLoc());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dinternal_defs.h84 #define CHECK_IMPL(C1, Op, C2) \
87 scudo::u64 V2 = (scudo::u64)(C2); \
90 "(" #C1 ") " #Op " (" #C2 ")", V1, V2); \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp197 Constant *C1, *C2; local
199 if (match(&I, m_Mul(m_Shl(m_Value(NewOp), m_Constant(C2)),
202 // ((X << C2)*C1) == (X * (C1 << C2))
203 Constant *Shl = ConstantExpr::getShl(C1, C2);
460 // further folds and (X * C) + C2 is 'fma'.
647 static bool multiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product, argument
650 Product = IsSigned ? C1.smul_ov(C2, Overflow) : C1.umul_ov(C2, Overflow);
654 /// True if C1 is a multiple of C2
655 isMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, bool IsSigned) argument
696 const APInt *C2; local
968 const APInt *C1, *C2; local
[all...]
H A DInstCombineAddSub.cpp779 const APInt *C1 = nullptr, *C2 = nullptr; local
791 // X = XOR(Y, C1), Y = OR(Z, C2), C2 = NOT(C1) ==> X == NOT(AND(Z, C1))
793 if (match(Y, m_Or(m_Value(Z), m_APInt(C2))) && (*C2 == ~(*C1))) {
796 } else if (match(Y, m_And(m_Value(Z), m_APInt(C2))) && (*C1 == *C2)) {
797 // X = XOR(Y, C1), Y = AND(Z, C2), C2 == C1 ==> X == NOT(OR(Z, ~C1))
813 // C2 i
837 const APInt *C1, *C2; local
907 const APInt *C2; local
1323 ConstantInt *C2; local
[all...]
H A DInstCombineAndOrXor.cpp115 /// This handles expressions of the form ((val OP C1) & C2). Where
116 /// the Op parameter is 'OP', OpRHS is 'C1', and AndRHS is 'C2'.
517 auto IsSubSetOrEqual = [](ConstantInt *C1, ConstantInt *C2) {
518 return (C1->getValue() & C2->getValue()) == C1->getValue();
520 auto IsSuperSetOrEqual = [](ConstantInt *C1, ConstantInt *C2) {
521 return (C1->getValue() & C2->getValue()) == C2->getValue();
811 const APInt *C1, *C2; local
813 !match(RHS->getOperand(1), m_APInt(C2)))
816 // We only handle (X != C1 && X != C2) an
2090 areInverseVectorBitmasks(Constant *C1, Constant *C2) argument
2500 ConstantInt *C2 = dyn_cast<ConstantInt>(D); local
3077 Constant *C2; local
3138 ConstantInt *C2 = Op0CI, *C3 = RHSC; local
[all...]
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h70 static bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) { argument
71 return C1 == C2;
/freebsd-11-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-11-stable/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.h93 bool operator()(const Change &C1, const Change &C2) const;

Completed in 307 milliseconds

12345