HomeSort by relevance Sort by last modified time
    Searched refs:C1 (Results 51 - 75 of 463) sorted by null

1 23 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
k_cos.c 29 * 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 */
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
  /external/clang/test/SemaCXX/
vtable-instantiation.cpp 4 template<class T1> struct C1 {
5 virtual void c1() { function in struct:PR8640::C1
12 new C1<T2>(); // expected-note {{in instantiation of member function}}
namespace-alias.cpp 92 class C1;
95 class C1;
97 C1 *pc1 = 0;
cstyle-cast.cpp 47 struct C1 : public virtual B {}; // Single virtual base.
49 struct D : public C1, public C2 {}; // Diamond
51 struct F : public C1 {}; // Single path to B with virtual.
88 (void)(const B*)((C1*)0);
89 (void)(B&)(*((C1*)0));
126 (void)(C1*)((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
127 (void)(C1&)(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
static-cast.cpp 4 struct C1 : public virtual B {}; // Single virtual base.
6 struct D : public C1, public C2 {}; // Diamond
8 struct F : public C1 {}; // Single path to B with virtual.
47 (void)static_cast<const B*>((C1*)0);
48 (void)static_cast<B&>(*((C1*)0));
85 (void)static_cast<C1*>((A*)0); // expected-error {{cannot cast 'A *' to 'C1 *' via virtual base 'B'}}
86 (void)static_cast<C1&>(*((A*)0)); // expected-error {{cannot cast 'A' to 'C1 &' via virtual base 'B'}}
  /external/guava/guava/src/com/google/common/collect/
Hashing.java 35 private static final int C1 = 0xcc9e2d51;
47 return C2 * Integer.rotateLeft(hashCode * C1, 15);
  /external/llvm/unittests/Support/
TrailingObjectsTest.cpp 118 Class2 *C1 = Class2::create(4);
135 EXPECT_EQ(C1->getDouble(), 0);
136 EXPECT_EQ(C1->getShort(), 4);
137 EXPECT_EQ(C1->getTrailingObjects<double>(),
138 reinterpret_cast<double *>(C1 + 1));
139 EXPECT_EQ(C1->getTrailingObjects<short>(), reinterpret_cast<short *>(C1 + 1));
147 delete C1;
  /external/eigen/lapack/
clarfb.f 256 * Form H * C or H**H * C where C = ( C1 )
262 * W := C**H * V = (C1**H * V1 + C2**H * V2) (stored in WORK)
264 * W := C1**H
305 * C1 := C1 - W**H
315 * Form C * H or C * H**H where C = ( C1 C2 )
320 * W := C * V = (C1*V1 + C2*V2) (stored in WORK)
322 * W := C1
364 * C1 := C1 -
    [all...]
dlarfb.f 253 * Form H * C or H**T * C where C = ( C1 )
259 * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK)
261 * W := C1**T
303 * C1 := C1 - W**T
313 * Form C * H or C * H**T where C = ( C1 C2 )
318 * W := C * V = (C1*V1 + C2*V2) (stored in WORK)
320 * W := C1
362 * C1 := C1 -
    [all...]
slarfb.f 253 * Form H * C or H**T * C where C = ( C1 )
259 * W := C**T * V = (C1**T * V1 + C2**T * V2) (stored in WORK)
261 * W := C1**T
303 * C1 := C1 - W**T
313 * Form C * H or C * H**T where C = ( C1 C2 )
318 * W := C * V = (C1*V1 + C2*V2) (stored in WORK)
320 * W := C1
362 * C1 := C1 -
    [all...]
zlarfb.f 256 * Form H * C or H**H * C where C = ( C1 )
262 * W := C**H * V = (C1**H * V1 + C2**H * V2) (stored in WORK)
264 * W := C1**H
306 * C1 := C1 - W**H
316 * Form C * H or C * H**H where C = ( C1 C2 )
321 * W := C * V = (C1*V1 + C2*V2) (stored in WORK)
323 * W := C1
365 * C1 := C1 -
    [all...]
  /external/llvm/include/llvm/IR/
Constants.h     [all...]
  /prebuilts/go/darwin-x86/test/ken/
cplx2.go 15 C1 = R + I // ADD(5,6)
20 C5 = C1 + R // ADD(10,6)
21 C6 = C1 + I // ADD(5,12)
45 c1 := r + i
46 if c1 != C1 {
47 println("opcode x", c1, C1)
69 c5 := c1 + r
75 c6 := c1 +
    [all...]
cplx3.go 18 C1 = R + I // ADD(5,6)
22 c0 := C1
  /prebuilts/go/linux-x86/test/ken/
cplx2.go 15 C1 = R + I // ADD(5,6)
20 C5 = C1 + R // ADD(10,6)
21 C6 = C1 + I // ADD(5,12)
45 c1 := r + i
46 if c1 != C1 {
47 println("opcode x", c1, C1)
69 c5 := c1 + r
75 c6 := c1 +
    [all...]
cplx3.go 18 C1 = R + I // ADD(5,6)
22 c0 := C1
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 80 static bool MultiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product,
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,
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, C2, Quotient, Remainder)
    [all...]
  /external/clang/test/Sema/
ms_bitfield_layout.c 201 typedef struct C1 {
206 } C1;
209 // CHECK-NEXT: 0 | struct C1
334 sizeof(C1) +
  /external/clang/test/CodeGenCXX/
debug-info-enum-class.cpp 5 enum C { C1 = 1 };
  /external/clang/test/Parser/
cxx-concept-declaration.cpp 6 template<typename T> concept bool C1 = true;
  /external/testng/src/test/java/test/dependent/
ClassDependsOnGroups.java 27 addClass(test.dependent.C1.class.getName());
  /toolchain/binutils/binutils-2.25/gold/testsuite/
dwp_test.h 25 class C1
  /device/google/contexthub/lib/libm/
kf_cos.c 24 C1 = 4.1666667908e-02, /* 0x3d2aaaab */
46 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
  /external/clang/test/CXX/class/class.mfct/class.mfct.non-static/
p3.cpp 44 struct C1 : A { };
52 C1::foo(Opaque1()); // expected-error {{call to non-static member function without an object argument}}

Completed in 983 milliseconds

1 23 4 5 6 7 8 91011>>