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

1 2 3 4 5 6 7

  /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()));
  /device/google/contexthub/firmware/os/algos/common/math/
kasa.c 46 float inv = 1.0f / kasa->nsamples; local
48 kasa->acc_x *= inv;
49 kasa->acc_y *= inv;
50 kasa->acc_z *= inv;
51 kasa->acc_w *= inv;
53 kasa->acc_xx *= inv;
54 kasa->acc_xy *= inv;
55 kasa->acc_xz *= inv;
56 kasa->acc_xw *= inv;
58 kasa->acc_yy *= inv;
    [all...]
  /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/
libipt_ah.c 46 const char *inv = invert ? "!" : ""; local
51 printf(":%s", inv);
54 printf("s:%s", inv);
libxt_esp.c 46 const char *inv = invert ? "!" : ""; local
50 printf(" %s:%s%u", name, inv, min);
52 printf(" %ss:%s%u:%u", name, inv, min, max);
libxt_ipcomp.c 49 const char *inv = invert ? "!" : ""; local
53 printf("%s:%s%u", name, inv, min);
55 printf("%ss:%s%u:%u", name, inv, min, max);
libip6t_ah.c 65 const char *inv = invert ? "!" : ""; local
69 printf("%s:%s%u", name, inv, min);
71 printf("%ss:%s%u:%u", name, inv, min, max);
78 const char *inv = invert ? "!" : ""; local
81 printf("%s:%s%u", name, inv, len);
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);
  /external/ltp/testcases/kernel/syscalls/epoll_ctl/
epoll_ctl02.c 49 static int inv = -1; variable
63 {&inv, EPOLL_CTL_ADD, &fd[1], &events[1], EBADF},
64 {&epfd, EPOLL_CTL_ADD, &inv, &events[1], EBADF},
  /external/pcre/dist2/src/sljit/
sljitNativeMIPS_64.c 33 sljit_s32 inv = 0; local
52 inv = 1;
76 if (inv)
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ShowDataAction.java 50 Map<String, Set<String>> inv = data.invertData(); local
55 add(builder, "Boot classpath:", inv.get(null));
58 for (String k : inv.keySet()) {
61 add(builder, k, inv.get(k));
  /device/google/contexthub/firmware/os/algos/calibration/diversity_checker/
diversity_checker.c 188 float inv = 1.0f / diverse_data->num_points; local
189 float var = (acc_norm_square - (acc_norm * acc_norm) * inv) * inv;
195 diverse_data->diversity_dbg.mean_log = acc_norm * 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/flatbuffers/samples/
SampleBinary.php 49 $inv = \MyGame\Sample\Monster::CreateInventoryVector($builder, $treasure); variable
60 \MyGame\Sample\Monster::AddInventory($builder, $inv);
sample_binary.cpp 80 auto inv = monster->inventory(); local
81 assert(inv);
82 assert(inv->Get(9) == 9);
83 (void)inv;
  /external/mesa3d/src/mesa/math/
m_matrix.h 77 GLfloat *inv; /**< 16-element inverse (16-byte aligned) */ member in struct:__anon30603
  /external/skia/src/core/
Sk4px.h 36 Sk4px inv() const { return Sk16b(255) - *this; } function in class:__anon33974::Sk4px
  /external/skia/src/shaders/gradients/
SkRadialGradient.cpp 17 SkScalar inv = SkScalarInvert(radius); local
21 matrix.postScale(inv, inv);
172 SkMatrix inv; local
173 if (!args.fLocalMatrix->invert(&inv)) {
176 matrix.postConcat(inv);
  /external/skqp/src/core/
Sk4px.h 36 Sk4px inv() const { return Sk16b(255) - *this; } function in class:__anon34643::Sk4px
  /external/skqp/src/shaders/gradients/
SkRadialGradient.cpp 17 SkScalar inv = SkScalarInvert(radius); local
21 matrix.postScale(inv, inv);
172 SkMatrix inv; local
173 if (!args.fLocalMatrix->invert(&inv)) {
176 matrix.postConcat(inv);
  /external/tensorflow/tensorflow/python/ops/linalg/
linalg_impl.py 44 inv = linalg_ops.matrix_inverse variable
  /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;

Completed in 616 milliseconds

1 2 3 4 5 6 7