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

1 23 4 5 6 7 8 9

  /external/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 232 double inv = 1 / denom; local
233 if (approximately_equal_half(cx * inv, cubic[minX].fX * inv)) {
236 if (approximately_equal_half(cy * inv, cubic[minY].fY * inv)) {
  /external/skia/experimental/Intersection/
CubicReduceOrder.cpp 227 double inv = 1 / denom; local
228 if (approximately_equal_half(cx * inv, cubic[minX].x * inv)) {
231 if (approximately_equal_half(cy * inv, cubic[minY].y * inv)) {
  /external/skia/src/pathops/
SkReduceOrder.cpp 232 double inv = 1 / denom; local
233 if (approximately_equal_half(cx * inv, cubic[minX].fX * inv)) {
236 if (approximately_equal_half(cy * inv, cubic[minY].fY * inv)) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerTest.java 368 BigInteger a = zero, mod, inv; local
374 inv = a.modInverse(mod);
375 assertTrue("bad inverse: " + a + " inv mod " + mod
376 + " equals " + inv, one.equals(a.multiply(inv).mod(
379 + " inv mod " + mod + " equals " + inv, inv
381 assertTrue("inverse less than zero: " + a + " inv mod "
382 + mod + " equals " + inv, in
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkMatrix.cpp 770 bool SkMatrix::invertNonIdentity(SkMatrix* inv) const {
777 if (inv) {
787 // Must be careful when writing to inv, since it may be the
790 inv->fMat[kMSkewX] = inv->fMat[kMSkewY] =
791 inv->fMat[kMPersp0] = inv->fMat[kMPersp1] = 0;
793 inv->fMat[kMScaleX] = invX;
794 inv->fMat[kMScaleY] = invY;
795 inv->fMat[kMPersp2] = 1
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 770 bool SkMatrix::invertNonIdentity(SkMatrix* inv) const {
777 if (inv) {
787 // Must be careful when writing to inv, since it may be the
790 inv->fMat[kMSkewX] = inv->fMat[kMSkewY] =
791 inv->fMat[kMPersp0] = inv->fMat[kMPersp1] = 0;
793 inv->fMat[kMScaleX] = invX;
794 inv->fMat[kMScaleY] = invY;
795 inv->fMat[kMPersp2] = 1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_norm_tmp.h 53 const GLfloat *m = mat->inv;
120 const GLfloat *m = mat->inv;
185 const GLfloat *m = mat->inv;
217 const GLfloat *m = mat->inv;
246 const GLfloat *m = mat->inv;
276 const GLfloat *m = mat->inv;
m_matrix.c 303 print_matrix_floats(m->inv);
304 matmul4(prod, m->m, m->inv);
341 * stored in the GLmatrix::inv attribute.
355 GLfloat *out = mat->inv;
469 * stored in the GLmatrix::inv attribute.
483 GLfloat *out = mat->inv;
543 * stored in the GLmatrix::inv attribute.
555 GLfloat *out = mat->inv;
626 * stored in the GLmatrix::inv attribute.
630 * Simply copies Identity into GLmatrix::inv
    [all...]
m_debug_norm.c 131 const GLfloat *m = mat->inv;
154 const GLfloat *m = mat->inv;
212 mat->inv = m = mat->m;
  /external/mesa3d/src/mesa/math/
m_norm_tmp.h 53 const GLfloat *m = mat->inv;
120 const GLfloat *m = mat->inv;
185 const GLfloat *m = mat->inv;
217 const GLfloat *m = mat->inv;
246 const GLfloat *m = mat->inv;
276 const GLfloat *m = mat->inv;
m_matrix.c 303 print_matrix_floats(m->inv);
304 matmul4(prod, m->m, m->inv);
341 * stored in the GLmatrix::inv attribute.
355 GLfloat *out = mat->inv;
469 * stored in the GLmatrix::inv attribute.
483 GLfloat *out = mat->inv;
543 * stored in the GLmatrix::inv attribute.
555 GLfloat *out = mat->inv;
626 * stored in the GLmatrix::inv attribute.
630 * Simply copies Identity into GLmatrix::inv
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 199 double inv = 0x1.0p31 / ((int) (h >>> 33) + 1); local
200 next = (int) ((candidate + 1) * inv);
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
armSP_FFT_CToC_SC32_Radix2_fs_unsafe_s.S 148 FFTSTAGE "FALSE","TRUE",inv
  /external/chromium_org/sync/notifier/
unacked_invalidation_set.cc 64 Invalidation inv(*it);
65 inv.set_ack_handler(ack_handler);
66 out->Insert(inv);
  /external/iptables/extensions/
libip6t_rt.c 153 const char *inv = invert ? "!" : ""; local
158 printf(":%s", inv);
161 printf("s:%s", inv);
libxt_dccp.c 159 const char *inv = invert ? "!" : ""; local
164 printf(":%s", inv);
167 printf("s:%s", inv);
  /external/chromium_org/third_party/skia/src/effects/gradients/
SkLinearGradient.cpp 45 SkScalar inv = mag ? SkScalarInvert(mag) : 0; local
47 vec.scale(inv);
50 matrix->postScale(inv, inv);
564 SkMatrix inv; local
565 if (!localMatrix->invert(&inv)) {
568 matrix.postConcat(inv);
SkRadialGradient.cpp 60 SkScalar inv = SkScalarInvert(radius); local
63 matrix->postScale(inv, inv);
576 SkMatrix inv; local
577 if (!localMatrix->invert(&inv)) {
580 matrix.postConcat(inv);
SkSweepGradient.cpp 295 SkMatrix inv; local
296 if (!localMatrix->invert(&inv)) {
299 matrix.postConcat(inv);
  /external/skia/src/effects/gradients/
SkLinearGradient.cpp 45 SkScalar inv = mag ? SkScalarInvert(mag) : 0; local
47 vec.scale(inv);
50 matrix->postScale(inv, inv);
564 SkMatrix inv; local
565 if (!localMatrix->invert(&inv)) {
568 matrix.postConcat(inv);
SkRadialGradient.cpp 60 SkScalar inv = SkScalarInvert(radius); local
63 matrix->postScale(inv, inv);
576 SkMatrix inv; local
577 if (!localMatrix->invert(&inv)) {
580 matrix.postConcat(inv);
  /external/opencv/cxcore/src/
cxdxt.cpp 440 int inv = flags & CV_DXT_INVERSE;
449 return !inv ?
460 if( !inv )
531 if( inv )
825 if( inv )
836 else if( inv )
863 int inv = flags & CV_DXT_INVERSE;
872 return !inv ?
881 if( !inv )
955 if( inv )
    [all...]
  /external/deqp/modules/gles2/functional/
es2fStencilTests.cpp 496 int inv = (~targetStencil)&mask;
497 dst.push_back(StencilOp::clearStencil(inv));
498 dst.push_back(StencilOp::quad(GL_EQUAL, inv, GL_ALWAYS, 0.0f, GL_KEEP, GL_KEEP, GL_INVERT));
499 dst.push_back(StencilOp::quad(GL_EQUAL, inv, GL_ALWAYS, 0.0f, GL_KEEP, GL_KEEP, GL_INVERT));
504 int inv = (~targetStencil)&mask;
505 dst.push_back(StencilOp::clearStencil(inv));
  /external/deqp/modules/gles3/functional/
es3fStencilTests.cpp 499 int inv = (~targetStencil)&mask;
500 dst.push_back(StencilOp::clearStencil(inv));
501 dst.push_back(StencilOp::quad(GL_EQUAL, inv, GL_ALWAYS, 0.0f, GL_KEEP, GL_KEEP, GL_INVERT));
502 dst.push_back(StencilOp::quad(GL_EQUAL, inv, GL_ALWAYS, 0.0f, GL_KEEP, GL_KEEP, GL_INVERT));
507 int inv = (~targetStencil)&mask;
508 dst.push_back(StencilOp::clearStencil(inv));
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 126 Packet4f inv, restep, div; local
133 inv = vrecpeq_f32(b);
135 // This returns a differential, by which we will have to multiply inv to get a better
137 restep = vrecpsq_f32(b, inv);
138 inv = vmulq_f32(restep, inv);
141 div = vmulq_f32(a, inv);

Completed in 908 milliseconds

1 23 4 5 6 7 8 9