HomeSort by relevance Sort by last modified time
    Searched defs:inv (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapClearTester.java 34 BiMap<V, K> inv = getMap().inverse(); local
37 assertTrue(inv.isEmpty());
42 BiMap<V, K> inv = getMap().inverse(); local
45 assertTrue(inv.isEmpty());
50 BiMap<V, K> inv = getMap().inverse(); local
53 assertTrue(inv.isEmpty());
58 BiMap<V, K> inv = getMap().inverse(); local
59 inv.clear();
61 assertTrue(inv.isEmpty());
66 BiMap<V, K> inv = getMap().inverse() local
74 BiMap<V, K> inv = getMap().inverse(); local
    [all...]
AbstractBiMapTester.java 65 BiMap<V, K> inv = getMap().inverse(); local
67 inv.entrySet().contains(entry));
69 inv.containsKey(entry.getValue()));
71 inv.containsValue(entry.getKey()));
  /external/ceres-solver/internal/ceres/
loss_function.cc 73 const double inv = 1.0 / sum; local
74 // 'sum' and 'inv' are always positive, assuming that 's' is.
76 rho[1] = std::max(std::numeric_limits<double>::min(), inv);
77 rho[2] = - c_ * (inv * inv);
82 const double inv = 1 / sum; local
83 // 'sum' and 'inv' are always positive.
85 rho[1] = std::max(std::numeric_limits<double>::min(), inv);
86 rho[2] = -2.0 * s * b_ * (inv * inv);
    [all...]
  /external/eigen/test/eigen2/
eigen2_prec_inverse_4x4.cpp 41 MatrixType inv = m.inverse(); local
42 double error = double( (m*inv-MatrixType::Identity()).norm() / epsilon<Scalar>() );
61 MatrixType inv = m.inverse(); local
62 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / epsilon<Scalar>() );
  /external/eigen/test/
prec_inverse_4x4.cpp 21 MatrixType inv = m.inverse(); local
22 double error = double( (m*inv-MatrixType::Identity()).norm() / NumTraits<Scalar>::epsilon() );
43 MatrixType inv = m.inverse(); local
44 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / NumTraits<Scalar>::epsilon() );
  /external/iptables/extensions/
libip6t_ah.c 57 const char *inv = invert ? "!" : ""; local
61 printf("%s:%s%u", name, inv, min);
63 printf("%ss:%s%u:%u", name, inv, min, max);
70 const char *inv = invert ? "!" : ""; local
73 printf("%s:%s%u", name, inv, len);
libipt_ah.c 39 const char *inv = invert ? "!" : ""; local
44 printf(":%s", inv);
47 printf("s:%s", inv);
libxt_esp.c 39 const char *inv = invert ? "!" : ""; local
43 printf(" %s:%s%u", name, inv, min);
45 printf(" %ss:%s%u:%u", name, inv, min, max);
libxt_udp.c 89 const char *inv = invert ? "!" : ""; local
94 printf(":%s", inv);
97 printf("s:%s", inv);
libip6t_frag.c 96 const char *inv = invert ? "!" : ""; local
101 printf(":%s%u", inv, min);
103 printf("s:%s%u:%u", inv, min, max);
libxt_dccp.c 159 const char *inv = invert ? "!" : ""; local
164 printf(":%s", inv);
167 printf("s:%s", inv);
libip6t_mh.c 159 const char *inv = invert ? "!" : ""; local
164 printf("%s", inv);
167 printf("%s", inv);
libip6t_rt.c 153 const char *inv = invert ? "!" : ""; local
158 printf(":%s", inv);
161 printf("s:%s", inv);
libxt_sctp.c 323 const char *inv = invert ? "!" : ""; local
328 printf(":%s", inv);
331 printf("s:%s", inv);
libxt_tcp.c 232 const char *inv = invert ? "!" : ""; local
237 printf(":%s", inv);
240 printf("s:%s", inv);
  /external/pcre/dist/sljit/
sljitNativeMIPS_64.c 33 sljit_si inv = 0; local
52 inv = 1;
76 if (inv)
  /external/skia/src/core/
Sk4px.h 27 Sk4px inv() const { return Sk16b(255) - *this; } function in class:Sk4px
  /external/ceres-solver/examples/
fields_of_experts.cc 81 const double inv = 1.0 / sum; local
82 // 'sum' and 'inv' are always positive, assuming that 's' is.
84 rho[1] = alpha_ * c * inv;
85 rho[2] = - alpha_ * c * c * inv * inv;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/special/
Gamma.java 303 double inv = 1 / (x * x); local
307 return FastMath.log(x) - 0.5 / x - inv * ((1.0 / 12) + inv * (1.0 / 120 - inv / 252));
329 double inv = 1 / (x * x); local
334 return 1 / x + inv / 2 + inv / x * (1.0 / 6 - inv * (1.0 / 30 + inv / 42));
  /external/eigen/unsupported/Eigen/src/FFT/
ei_fftw_impl.h 65 void inv(complex_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
75 void inv(scalar_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
108 void inv(complex_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
118 void inv(scalar_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
149 void inv(complex_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
159 void inv(scalar_type * dst,complex_type * src,int nfft) { function in struct:Eigen::internal::fftw_plan
211 void inv(Complex * dst,const Complex *src,int nfft) function in struct:Eigen::internal::fftw_impl
213 get_plan(nfft,true,dst,src).inv(fftw_cast(dst), fftw_cast(src),nfft );
218 void inv( Scalar * dst,const Complex * src,int nfft) function in struct:Eigen::internal::fftw_impl
220 get_plan(nfft,true,dst,src).inv(fftw_cast(dst), fftw_cast(src),nfft )
    [all...]
  /external/mesa3d/src/glsl/
ir_print_visitor.cpp 148 const char *const inv = (ir->invariant) ? "invariant " : ""; local
154 cent, inv, mode[ir->mode], interp[ir->interpolation]);
  /external/mesa3d/src/mesa/math/
m_matrix.h 77 GLfloat *inv; /**< 16-element inverse (16-byte aligned) */ member in struct:__anon17124
  /external/srtp/crypto/include/
xfm.h 76 xfm_inv_t inv; member in struct:xfm_ctx_t
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanhl.c 89 long double inv, r; local
97 inv = 1 / (d + e);
99 r = (a + b) * inv;
107 r = r + (a - d * r + b - e * r) * inv;
  /external/eigen/demos/opengl/
camera.cpp 248 Matrix4f inv = mViewMatrix.inverse().matrix(); local
249 return unProject(uv, depth, inv);

Completed in 447 milliseconds

1 2 3 4