HomeSort by relevance Sort by last modified time
    Searched full:poly (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 18 * \param[in] poly : the vector of coefficients of the polynomial ordered
19 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
28 T poly_eval_horner( const Polynomials& poly, const T& x )
30 T val=poly[poly.size()-1];
31 for(DenseIndex i=poly.size()-2; i>=0; --i ){
32 val = val*x + poly[i]; }
39 * \param[in] poly : the vector of coefficients of the polynomial ordered
40 * by degrees i.e. poly[i] is the coefficient of degree i of the polynomial
46 T poly_eval( const Polynomials& poly, const T& x
    [all...]
PolynomialSolver.h 43 inline void setPolynomial( const OtherPolynomial& poly ){
44 m_roots.resize(poly.size()); }
48 inline PolynomialSolverBase( const OtherPolynomial& poly ){
49 setPolynomial( poly() ); }
342 void compute( const OtherPolynomial& poly )
344 assert( Scalar(0) != poly[poly.size()-1] );
345 internal::companion<Scalar,_Deg> companion( poly );
353 inline PolynomialSolver( const OtherPolynomial& poly ){
354 compute( poly ); }
    [all...]
Companion.h 75 void setPolynomial( const VectorType& poly )
77 const Index deg = poly.size()-1;
78 m_monic = -1/poly[deg] * poly.head(deg);
84 companion( const VectorType& poly ){
85 setPolynomial( poly ); }
  /external/clang/test/CXX/basic/basic.def.odr/
p2-typeid.cpp 13 struct Poly {
14 virtual ~Poly();
28 void test(X<Poly> xp, X<Poly, Poly&> xpr, X<NonPoly> xnp, X<NonPoly, NonPoly&> xnpr) {
30 xp.g(Poly());
35 xpr.g(Poly()); // expected-note{{instantiation of member function}}
  /external/clang/test/SemaCXX/
runtimediag-ppe.cpp 14 class Poly { virtual ~Poly(); };
15 Poly& P(int);
dynamic-cast.cpp 13 struct Poly
18 struct PolyDerived : Poly
64 void poly() function
66 (void)dynamic_cast<A*>((Poly*)0);
67 (void)dynamic_cast<A&>(*((Poly*)0));
72 (void)dynamic_cast<Poly*>((A*)0); // expected-error {{'A' is not polymorphic}}
  /external/clang/test/SemaObjCXX/
arc-ppe.mm 14 class Poly { virtual ~Poly(); };
15 Poly& P(void*);
  /external/ceres-solver/internal/ceres/
polynomial_solver_test.cc 50 Vector poly(1);
51 poly(0) = value;
52 return poly;
55 // Return the polynomial p(x) = poly(x) * (x - root).
56 Vector AddRealRoot(const Vector& poly, double root) {
57 Vector poly2(poly.size() + 1);
59 poly2.head(poly.size()) += poly;
60 poly2.tail(poly.size()) -= root * poly;
95 Vector poly = ConstantPolynomial(1.23); local
129 Vector poly = ConstantPolynomial(1.23); local
173 Vector poly = ConstantPolynomial(1.23); local
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p12-0x.cpp 27 class Poly { virtual ~Poly(); };
29 const std::type_info& m = typeid(*(Poly*)S::m); // expected-error {{invalid use of non-static data member}}
30 const std::type_info& n = typeid(*(Poly*)(0*sizeof S::m));
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
polydiff-netbeans.zip 
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-attrs/
gtkhtml 40 poly
  /packages/apps/Gallery2/jni/filters/
shadows.c 36 double *poly = (double *) malloc(5*sizeof(double)); local
38 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
47 double v = (fastevalPoly(poly,5,hsv[0]/4080.)*4080);
54 free(poly);
hsv.c 20 double fastevalPoly(double *poly,int n, double x){
23 double sum = poly[0]+poly[1]*f;
27 sum += poly[i]*f;
  /external/srtp/test/
lfsr.c 120 weight(uint32_t poly) {
124 wt += octet_weight[poly & 0xff];
125 wt += octet_weight[(poly >> 8) & 0xff];
126 wt += octet_weight[(poly >> 16) & 0xff];
127 wt += octet_weight[(poly >> 24)];
137 period(uint32_t poly) {
149 x = (x >> 1) ^ poly;
167 * code generated by the polynomial poly
176 weight_distribution2(uint32_t poly, int *A) {
194 x = (x >> 1) ^ poly;
    [all...]
  /external/llvm/test/CodeGen/XCore/
misc-intrinsics.ll 19 define i32 @crc32(i32 %crc, i32 %data, i32 %poly) {
22 %result = call i32 @llvm.xcore.crc32(i32 %crc, i32 %data, i32 %poly)
26 define %0 @crc8(i32 %crc, i32 %data, i32 %poly) {
29 %result = call %0 @llvm.xcore.crc8(i32 %crc, i32 %data, i32 %poly)
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/html-values/
webkit 63 poly
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_init.c 50 int poly, x, y, m, err; local
63 for (poly = 0; poly < (int)(sizeof(polys)/sizeof(polys[0])); poly++) {
64 if (polys[poly].len == ocb->block_len) {
68 if (polys[poly].len != ocb->block_len) {
102 ocb->Ls[x][y] ^= polys[poly].poly_mul[y];
118 ocb->Lr[x] ^= polys[poly].poly_div[x];
  /external/dropbear/libtomcrypt/src/mac/pmac/
pmac_init.c 48 int poly, x, y, m, err; local
61 for (poly = 0; poly < (int)(sizeof(polys)/sizeof(polys[0])); poly++) {
62 if (polys[poly].len == pmac->block_len) {
66 if (polys[poly].len != pmac->block_len) {
105 pmac->Ls[x][y] ^= polys[poly].poly_mul[y];
121 pmac->Lr[x] ^= polys[poly].poly_div[x];
  /frameworks/base/core/jni/android/opengl/
poly.h 41 } Poly;
47 int poly_clip_to_frustum(Poly *p1);
poly_clip.cpp 30 #include "poly.h"
59 void poly_clip_to_halfspace(Poly* p, Poly* q, int index, float sign, float k)
104 * (n+6)gon, so POLY_NMAX in poly.h must be big enough to allow that.
107 int poly_clip_to_frustum(Poly *p1)
112 Poly p2, *p, *q, *r;
151 memcpy(p1, &p2, sizeof(Poly)-(POLY_NMAX-p2.n)*sizeof(Poly_vert));
  /external/openssl/crypto/ec/
ec2_smpl.c 164 group->poly[0] = 0;
165 group->poly[1] = 0;
166 group->poly[2] = 0;
167 group->poly[3] = 0;
168 group->poly[4] = 0;
169 group->poly[5] = -1;
182 dest->poly[0] = src->poly[0];
183 dest->poly[1] = src->poly[1]
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
shadows.rs 28 static double poly[] = {
39 static double fastevalPoly(double *poly,int n, double x){
42 double sum = poly[0]+poly[1]*f;
46 sum += poly[i]*f;
182 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
188 double v = (fastevalPoly(poly,5,hsv.x/4080.)*4080);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
shadows.rs 28 static double poly[] = {
39 static double fastevalPoly(double *poly,int n, double x){
42 double sum = poly[0]+poly[1]*f;
46 sum += poly[i]*f;
182 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
188 double v = (fastevalPoly(poly,5,hsv.x/4080.)*4080);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
shadows.rs 28 static double poly[] = {
39 static double fastevalPoly(double *poly,int n, double x){
42 double sum = poly[0]+poly[1]*f;
46 sum += poly[i]*f;
182 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
188 double v = (fastevalPoly(poly,5,hsv.x/4080.)*4080);
  /external/e2fsprogs/lib/ext2fs/
crc16.h 6 * Poly 0x8005 (x16 + x15 + x2 + 1)

Completed in 4210 milliseconds

1 2 3 4 5