Searched refs:inverse (Results 76 - 100 of 276) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableListMultimapTest.java447 ImmutableListMultimap.<String, Integer>of().inverse());
450 ImmutableListMultimap.of("one", 1).inverse());
453 ImmutableListMultimap.of("one", 1, "two", 2).inverse());
455 ImmutableListMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse(),
459 ImmutableListMultimap.of("foo", 'f', "foo", 'o', "foo", 'o').inverse());
472 assertSame(multimap.inverse(), multimap.inverse());
473 assertSame(multimap, multimap.inverse().inverse());
H A DImmutableSetMultimapTest.java445 ImmutableSetMultimap.<String, Integer>of().inverse());
448 ImmutableSetMultimap.of("one", 1).inverse());
451 ImmutableSetMultimap.of("one", 1, "two", 2).inverse());
454 ImmutableSetMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse());
460 assertSame(multimap.inverse(), multimap.inverse());
461 assertSame(multimap, multimap.inverse().inverse());
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableListMultimapTest.java471 ImmutableListMultimap.<String, Integer>of().inverse());
474 ImmutableListMultimap.of("one", 1).inverse());
477 ImmutableListMultimap.of("one", 1, "two", 2).inverse());
479 ImmutableListMultimap.of("of", 'o', "of", 'f', "to", 't', "to", 'o').inverse(),
483 ImmutableListMultimap.of("foo", 'f', "foo", 'o', "foo", 'o').inverse());
496 assertSame(multimap.inverse(), multimap.inverse());
497 assertSame(multimap, multimap.inverse().inverse());
H A DEnumHashBiMapTest.java118 assertEquals(Currency.DOLLAR, bimap.inverse().get("dollar"));
130 assertEquals(Currency.DOLLAR, bimap.inverse().get("dollar"));
161 bimap2.inverse().put("franc", Currency.FRANC);
183 bimap2.inverse().put("franc", Currency.FRANC);
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
H A DWriteIndicCharts.java303 Transliterator inverse = trans.getInverse();
306 String s1 = inverse.transliterate(cp);
320 Transliterator inverse = trans.getInverse();
326 String s2 = inverse.transliterate(s1);
349 Transliterator inverse = trans.getInverse();
352 String s1 = inverse.transliterate(cp);
/external/webp/src/dsp/
H A Dalpha_processing_sse2.c216 static void MultARGBRow_SSE2(uint32_t* const ptr, int width, int inverse) { argument
218 if (!inverse) {
241 if (width > 0) WebPMultARGBRowC(ptr + x, width, inverse);
245 int width, int inverse) {
247 if (!inverse) {
264 if (width > 0) WebPMultRowC(ptr + x, alpha + x, width, inverse);
244 MultRow_SSE2(uint8_t* const ptr, const uint8_t* const alpha, int width, int inverse) argument
H A Ddsp.h161 // VP8Idct: Does one of two inverse transforms. If do_two is set, the transforms
519 // Pre-Multiply or Un-Multiply (if 'inverse' is true) argb values in a row.
520 extern void (*WebPMultARGBRow)(uint32_t* const ptr, int width, int inverse);
524 int inverse);
528 int width, int inverse);
533 int width, int num_rows, int inverse);
537 int width, int inverse);
538 void WebPMultARGBRowC(uint32_t* const ptr, int width, int inverse);
/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DCorrelatedRandomVectorGenerator.java249 double inverse = 1 / sqrt;
252 double e = inverse * c[ii][ir];
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMpar.h86 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2)/dxnorm;
132 wa1 = qr.colsPermutation().inverse() * diag.cwiseProduct(wa2/dxnorm);
/external/guava/guava/src/com/google/common/collect/
H A DHashBiMap.java41 * {@code HashBiMap} and its inverse are both serializable.
418 return inverse().keySet();
479 private transient BiMap<V, K> inverse; field in class:HashBiMap
482 public BiMap<V, K> inverse() { method in class:HashBiMap
483 return (inverse == null) ? inverse = new Inverse() : inverse;
534 public BiMap<K, V> inverse() { method in class:HashBiMap.Inverse
644 return bimap.inverse();
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableBiMap.java111 public abstract ImmutableBiMap<V, K> inverse(); method in class:ImmutableBiMap
114 return inverse().keySet();
H A DImmutableSetMultimap.java357 private transient ImmutableSetMultimap<V, K> inverse; field in class:ImmutableSetMultimap
362 * <p>Because an inverse of a set multimap cannot contain multiple pairs with
369 public ImmutableSetMultimap<V, K> inverse() { method in class:ImmutableSetMultimap
370 ImmutableSetMultimap<V, K> result = inverse;
371 return (result == null) ? (inverse = invert()) : result;
380 invertedMultimap.inverse = this;
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp215 /* If there are instructions in the else-clause, store the inverse of the
217 * else-clause if the if-statement. Use the (inverse) condition variable
230 ir_rvalue *inverse = local
234 assign = new(mem_ctx) ir_assignment(else_cond, inverse);
/external/speex/libspeex/
H A Dkiss_fft.c41 if (!st->inverse) {
101 if (st->inverse)
185 if (!st->inverse) {
238 if (!st->inverse) {
300 if (!st->inverse) {
480 st->inverse = inverse_fft;
484 if (!st->inverse)
492 if (st->inverse)
/external/eigen/test/
H A Ddontalign.cpp35 square = square.inverse().eval();
H A Dqr_fullpivoting.cpp44 MatrixType c = qr.matrixQ() * r * qr.colsPermutation().inverse();
64 MatrixType m1_inv = qr.inverse();
87 // let's build a matrix more stable to inverse
124 VERIFY_RAISES_ASSERT(qr.inverse())
H A Darray.cpp245 VERIFY_IS_APPROX(m1.inverse(), inverse(m1));
277 VERIFY_IS_APPROX(inverse(inverse(m1)),m1);
310 VERIFY_IS_APPROX(s1/m1, s1 * m1.inverse());
353 VERIFY_IS_APPROX(m1.inverse(), inverse(m1));
400 VERIFY_IS_APPROX(inverse(inverse(m1)),m1);
414 VERIFY_IS_APPROX(s1/m1, s1 * m1.inverse());
[all...]
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_fftw_impl.h209 // inverse complex-to-complex
239 PlanData & get_plan(int nfft,bool inverse,void * dst,const void * src) argument
243 int64_t key = ( (nfft<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1;
248 PlanData & get_plan(int n0,int n1,bool inverse,void * dst,const void * src) argument
252 int64_t key = ( ( (((int64_t)n0) << 30)|(n1<<3 ) | (inverse<<2) | (inplace<<1) | aligned ) << 1 ) + 1;
H A Dei_kissfft_impl.h29 void make_twiddles(int nfft,bool inverse) argument
32 m_inverse = inverse;
34 Scalar phinc = (inverse?2:-2)* acos( (Scalar) -1) / nfft;
336 // inverse complex-to-complex
389 PlanData & get_plan(int nfft, bool inverse) argument
391 // TODO look for PlanKey(nfft, ! inverse) and conjugate the twiddles
392 PlanData & pd = m_plans[ PlanKey(nfft,inverse) ];
394 pd.make_twiddles(nfft,inverse);
/external/fio/
H A Dparse.h67 const char *inverse; /* if set, apply opposite action to this option */ member in struct:fio_option
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h245 /// inverse - Return a new range that is the logical not of the current set.
247 ConstantRange inverse() const;
/external/webp/src/enc/
H A Dpicture_rescale_enc.c181 static void AlphaMultiplyARGB(WebPPicture* const pic, int inverse) { argument
184 pic->width, pic->height, inverse);
187 static void AlphaMultiplyY(WebPPicture* const pic, int inverse) { argument
190 pic->width, pic->height, inverse);
/external/eigen/unsupported/test/
H A Dmatrix_function.cpp38 return QRofA.householderQ().inverse() * diag * QRofA.householderQ();
72 return QRofA.householderQ().inverse() * diag * QRofA.householderQ();
93 return QRofA.householderQ().inverse() * diag * QRofA.householderQ();
/external/skia/tests/
H A DMatrixTest.cpp822 SkMatrix mat, inverse, iden1, iden2; local
826 REPORTER_ASSERT(reporter, mat.invert(&inverse));
827 iden1.setConcat(mat, inverse);
831 REPORTER_ASSERT(reporter, mat.invert(&inverse));
832 iden1.setConcat(mat, inverse);
837 REPORTER_ASSERT(reporter, mat.invert(&inverse));
838 iden1.setConcat(mat, inverse);
845 REPORTER_ASSERT(reporter, mat.invert(&inverse));
846 iden1.setConcat(mat, inverse);
848 iden2.setConcat(inverse, ma
[all...]
/external/eigen/demos/opengl/
H A Dquaternion_demo.cpp305 currentFrame.orientation = currentFrame.orientation.inverse();
486 mInitFrame.orientation = mCamera.orientation().inverse();
516 aux0.orientation = aux0.orientation.inverse();
525 aux1.orientation = aux1.orientation.inverse();
533 aux1.orientation = aux1.orientation.inverse();
539 aux1.orientation = aux1.orientation.inverse();

Completed in 1152 milliseconds

1234567891011>>