HomeSort by relevance Sort by last modified time
    Searched refs:inv (Results 26 - 50 of 99) sorted by null

12 3 4

  /external/iptables/extensions/
libip6t_mh.c 159 const char *inv = invert ? "!" : ""; local
164 printf("%s", inv);
167 printf("%s", inv);
libxt_udp.c 89 const char *inv = invert ? "!" : ""; local
94 printf(":%s", inv);
97 printf("s:%s", inv);
libip6t_rt.c 153 const char *inv = invert ? "!" : ""; local
158 printf(":%s", inv);
161 printf("s:%s", inv);
libxt_dccp.c 155 const char *inv = invert ? "!" : ""; local
160 printf(":%s", inv);
163 printf("s:%s", inv);
libxt_tcp.c 237 const char *inv = invert ? "!" : ""; local
242 printf(":%s", inv);
245 printf("s:%s", inv);
  /external/skia/src/core/
SkMatrix.cpp 886 bool SkMatrix::invertNonIdentity(SkMatrix* inv) const {
894 if (inv) {
904 // Must be careful when writing to inv, since it may be the
907 inv->fMat[kMSkewX] = inv->fMat[kMSkewY] =
908 inv->fMat[kMPersp0] = inv->fMat[kMPersp1] = 0;
910 inv->fMat[kMScaleX] = invX;
911 inv->fMat[kMScaleY] = invY;
912 inv->fMat[kMPersp2] = kMatrix22Elem
    [all...]
SkBitmapProcState.cpp 84 bool SkBitmapProcState::chooseProcs(const SkMatrix& inv, const SkPaint& paint) {
90 bool trivial_matrix = (inv.getType() & ~SkMatrix::kTranslate_Mask) == 0;
95 m = &inv;
97 fUnitInvMatrix = inv;
129 fUnitInvMatrix = inv;
152 // Below this point, we should never refer to the inv parameter, since we
168 // note: we explicitly check inv, since m might be scaled due to unitinv
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 246 float inv = 1f / dirDotNorm; local
247 float t = diffDotNorm * inv;
257 float w1 = dirDotDiffxEdge2 * inv;
258 float w2 = dirDotEdge1xDiff * inv;
324 float inv = 1f / dirDotNorm; local
325 float t = diffDotNorm * inv;
  /external/srec/srec/clib/
matrix_i.c 44 int invert_matrix(covdata **mat, covdata **inv, int dim)
54 ASSERT(inv);
73 inv[ii][jj] = col[ii];
89 sum += mat[ii][kk] * inv[kk][jj];
  /external/srtp/crypto/include/
xfm.h 76 xfm_inv_t inv; member in struct:xfm_ctx_t
  /external/apache-harmony/math/src/test/java/tests/api/java/math/
BigIntegerTest.java 393 BigInteger a = zero, mod, inv; local
399 inv = a.modInverse(mod);
400 assertTrue("bad inverse: " + a + " inv mod " + mod
401 + " equals " + inv, one.equals(a.multiply(inv).mod(
404 + " inv mod " + mod + " equals " + inv, inv
406 assertTrue("inverse less than zero: " + a + " inv mod "
407 + mod + " equals " + inv, in
    [all...]
  /external/skia/legacy/src/core/
SkMatrix.cpp 820 bool SkMatrix::invert(SkMatrix* inv) const {
829 if (inv) {
831 if (inv == this) {
832 inv = &tmp;
834 inv->setTypeMask(kUnknown_Mask);
838 inv->fMat[kMScaleX] = SkScalarMulShift(SkPerspMul(fMat[kMScaleY], fMat[kMPersp2]) - SkPerspMul(fMat[kMTransY], fMat[kMPersp1]), scale, shift);
839 inv->fMat[kMSkewX] = SkScalarMulShift(SkPerspMul(fMat[kMTransX], fMat[kMPersp1]) - SkPerspMul(fMat[kMSkewX], fMat[kMPersp2]), scale, shift);
840 inv->fMat[kMTransX] = SkScalarMulShift(SkScalarMul(fMat[kMSkewX], fMat[kMTransY]) - SkScalarMul(fMat[kMTransX], fMat[kMScaleY]), scale, shift);
842 inv->fMat[kMSkewY] = SkScalarMulShift(SkPerspMul(fMat[kMTransY], fMat[kMPersp0]) - SkPerspMul(fMat[kMSkewY], fMat[kMPersp2]), scale, shift);
843 inv->fMat[kMScaleY] = SkScalarMulShift(SkPerspMul(fMat[kMScaleX], fMat[kMPersp2]) - SkPerspMul(fMat[kM (…)
    [all...]
SkBitmapProcState.h 106 bool chooseProcs(const SkMatrix& inv, const SkPaint&);
SkBitmapProcState.cpp 351 bool SkBitmapProcState::chooseProcs(const SkMatrix& inv, const SkPaint& paint) {
357 bool trivial_matrix = (inv.getType() & ~SkMatrix::kTranslate_Mask) == 0;
362 m = &inv;
364 fUnitInvMatrix = inv;
400 // note: we explicitly check inv, since m might be scaled due to unitinv
403 (inv.getType() > SkMatrix::kTranslate_Mask &&
  /external/clang/test/SemaCXX/
scope-check.cpp 279 Invalid inv; // expected-error {{unknown type name}} member in namespace:test16
284 if (inv)
  /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);
  /libcore/luni/src/test/java/tests/api/java/math/
BigIntegerTest.java 564 BigInteger a = zero, mod, inv; local
570 inv = a.modInverse(mod);
571 assertTrue("bad inverse: " + a + " inv mod " + mod
572 + " equals " + inv, one.equals(a.multiply(inv).mod(
575 + " inv mod " + mod + " equals " + inv, inv
577 assertTrue("inverse less than zero: " + a + " inv mod "
578 + mod + " equals " + inv, in
    [all...]
  /frameworks/base/libs/hwui/
SkiaShader.cpp 173 const float inv = mag ? 1.0f / mag : 0; local
175 vec.scale(inv);
178 matrix->postScale(inv, inv);
255 const float inv = 1.0f / radius; local
257 matrix->postScale(inv, 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/llvm/unittests/ADT/
APFloatTest.cpp     [all...]
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 123 Packet4f inv, restep, div; local
130 inv = vrecpeq_f32(b);
132 // This returns a differential, by which we will have to multiply inv to get a better
134 restep = vrecpsq_f32(b, inv);
135 inv = vmulq_f32(restep, inv);
138 div = vmulq_f32(a, inv);
  /external/skia/src/effects/gradients/
SkTwoPointRadialGradient.cpp 361 SkScalar inv = fDiffRadius ? SkScalarInvert(fDiffRadius) : 0;
362 fDiff.fX = SkScalarMul(fDiff.fX, inv);
363 fDiff.fY = SkScalarMul(fDiff.fY, inv);
364 fStartRadius = SkScalarMul(fRadius1, inv);
370 fPtsToUnit.postScale(inv, inv);
  /external/eigen/bench/
benchFFT.cpp 75 fft.inv(inbuf,outbuf);
92 cout << " inv";
  /external/valgrind/main/VEX/priv/
guest_arm_helpers.c 475 UInt nf, zf, vf, cf, inv; local
482 inv = cond & 1;
488 return inv ^ zf;
493 return inv ^ cf;
498 return inv ^ nf;
503 return inv ^ vf;
509 return inv ^ (cf & ~zf);
515 return inv ^ (1 & ~(nf ^ vf));
522 return inv ^ (1 & ~(zf | (nf ^ vf)));
    [all...]
  /external/eigen/demos/opengl/
camera.cpp 248 Matrix4f inv = mViewMatrix.inverse().matrix(); local
249 return unProject(uv, depth, inv);

Completed in 780 milliseconds

12 3 4