HomeSort by relevance Sort by last modified time
    Searched full:p1p2 (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/platform/graphics/cairo/
PathCairo.cpp 169 FloatPoint p1p2((p2.x() - p1.x()),(p2.y() - p1.y()));
171 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
173 double cos_phi = (p1p0.x() * p1p2.x() + p1p0.y() * p1p2.y()) / (p1p0_length * p1p2_length);
196 // angle between orth_p1p0 and p1p2 to get the right vector orthographic to p1p0
197 double cos_alpha = (orth_p1p0.x() * p1p2.x() + orth_p1p0.y() * p1p2.y()) / (orth_p1p0_length * p1p2_length)
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
PathQt.cpp 168 FloatPoint p1p2((p2.x() - p1.x()), (p2.y() - p1.y()));
170 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
172 double cos_phi = (p1p0.x() * p1p2.x() + p1p0.y() * p1p2.y()) / (p1p0_length * p1p2_length);
195 // angle between orth_p1p0 and p1p2 to get the right vector orthographic to p1p0
196 double cos_alpha = (orth_p1p0.x() * p1p2.x() + orth_p1p0.y() * p1p2.y()) / (orth_p1p0_length * p1p2_length)
    [all...]
  /external/openssl/crypto/bn/
bn_x931p.c 102 BIGNUM *t, *p1p2, *pm1; local
117 p1p2 = BN_CTX_get(ctx);
127 if (!BN_mul(p1p2, p1, p2, ctx))
147 if (p->neg && !BN_add(p, p, p1p2))
152 if (!BN_mod_sub(p, p, Xp, p1p2, ctx))
177 if (!BN_add(p, p, p1p2))

Completed in 88 milliseconds