Home
last modified time | relevance | path

Searched defs:inverse (Results 1 – 25 of 243) sorted by relevance

12345678910

/external/sdv/vsomeip/third_party/boost/icl/include/boost/icl/
Dfunctors.hpp283 struct inverse<icl::inplace_plus<Type> > struct
284 { typedef icl::inplace_minus<Type> type; };
287 struct inverse<icl::inplace_minus<Type> > struct
288 { typedef icl::inplace_plus<Type> type; };
291 struct inverse<icl::inplace_bit_add<Type> > struct
292 { typedef icl::inplace_bit_subtract<Type> type; };
295 struct inverse<icl::inplace_bit_subtract<Type> > struct
296 { typedef icl::inplace_bit_add<Type> type; };
299 struct inverse<icl::inplace_et<Type> > struct
300 { typedef icl::inplace_caret<Type> type; };
[all …]
/external/guava/guava/src/com/google/common/math/
DLinearTransformation.java159 public abstract LinearTransformation inverse(); in inverse() method in LinearTransformation
166 @CheckForNull @LazyInit LinearTransformation inverse; field in LinearTransformation.RegularLinearTransformation
174 RegularLinearTransformation(double slope, double yIntercept, LinearTransformation inverse) { in RegularLinearTransformation()
201 public LinearTransformation inverse() { in inverse() method in LinearTransformation.RegularLinearTransformation
224 @CheckForNull @LazyInit LinearTransformation inverse; field in LinearTransformation.VerticalLinearTransformation
231 VerticalLinearTransformation(double x, LinearTransformation inverse) { in VerticalLinearTransformation()
257 public LinearTransformation inverse() { in inverse() method in LinearTransformation.VerticalLinearTransformation
297 public LinearTransformation inverse() { in inverse() method in LinearTransformation.NaNLinearTransformation
/external/guava/android/guava/src/com/google/common/math/
DLinearTransformation.java159 public abstract LinearTransformation inverse(); in inverse() method in LinearTransformation
166 @CheckForNull @LazyInit LinearTransformation inverse; field in LinearTransformation.RegularLinearTransformation
174 RegularLinearTransformation(double slope, double yIntercept, LinearTransformation inverse) { in RegularLinearTransformation()
201 public LinearTransformation inverse() { in inverse() method in LinearTransformation.RegularLinearTransformation
224 @CheckForNull @LazyInit LinearTransformation inverse; field in LinearTransformation.VerticalLinearTransformation
231 VerticalLinearTransformation(double x, LinearTransformation inverse) { in VerticalLinearTransformation()
257 public LinearTransformation inverse() { in inverse() method in LinearTransformation.VerticalLinearTransformation
297 public LinearTransformation inverse() { in inverse() method in LinearTransformation.NaNLinearTransformation
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DRegularImmutableBiMap.java35 private ImmutableBiMap<V, K> inverse; field in RegularImmutableBiMap
54 RegularImmutableBiMap(ImmutableMap<K, V> delegate, ImmutableBiMap<V, K> inverse) { in RegularImmutableBiMap() argument
60 public ImmutableBiMap<V, K> inverse() { in inverse() method in RegularImmutableBiMap
DSingletonImmutableBiMap.java41 @Nullable transient SingletonImmutableBiMap<V, K> inverse; field in SingletonImmutableBiMap
49 private SingletonImmutableBiMap(K key, V value, SingletonImmutableBiMap<V, K> inverse) { in SingletonImmutableBiMap()
57 public ImmutableBiMap<V, K> inverse() { in inverse() method in SingletonImmutableBiMap
DJdkBackedImmutableBiMap.java25 private JdkBackedImmutableBiMap(ImmutableMap<K, V> delegate, ImmutableBiMap<V, K> inverse) { in JdkBackedImmutableBiMap() argument
/external/guava/guava/src/com/google/common/collect/
DSingletonImmutableBiMap.java51 private SingletonImmutableBiMap(K singleKey, V singleValue, ImmutableBiMap<V, K> inverse) { in SingletonImmutableBiMap()
98 @CheckForNull private final transient ImmutableBiMap<V, K> inverse; field in SingletonImmutableBiMap
102 public ImmutableBiMap<V, K> inverse() { in inverse() method in SingletonImmutableBiMap
DJdkBackedImmutableBiMap.java73 @LazyInit @RetainedWith @CheckForNull private transient JdkBackedImmutableBiMap<V, K> inverse; field in JdkBackedImmutableBiMap
76 public ImmutableBiMap<V, K> inverse() { in inverse() method in JdkBackedImmutableBiMap
DRegularImmutableBiMap.java195 @LazyInit @RetainedWith @CheckForNull private transient ImmutableBiMap<V, K> inverse; field in RegularImmutableBiMap
198 public ImmutableBiMap<V, K> inverse() { in inverse() method in RegularImmutableBiMap
214 public ImmutableBiMap<K, V> inverse() { in inverse() method in RegularImmutableBiMap.Inverse
DBiMap.java120 BiMap<V, K> inverse(); in inverse() method
/external/guava/android/guava/src/com/google/common/collect/
DRegularImmutableBiMap.java41 private final transient RegularImmutableBiMap<V, K> inverse; field in RegularImmutableBiMap
72 RegularImmutableBiMap<V, K> inverse) { in RegularImmutableBiMap()
86 public ImmutableBiMap<V, K> inverse() { in inverse() method in RegularImmutableBiMap
DBiMap.java120 BiMap<V, K> inverse(); in inverse() method
/external/sdv/vsomeip/third_party/boost/move/include/boost/move/algo/
Dpredicate.hpp78 class inverse class
81 inverse() in inverse() function in boost::movelib::inverse
84 explicit inverse(Comp comp) in inverse() function in boost::movelib::inverse
/external/webp/src/dsp/
Dalpha_processing.c128 static WEBP_INLINE uint32_t GetScale(uint32_t a, int inverse) { in GetScale()
134 static WEBP_INLINE uint32_t GetScale(uint32_t a, int inverse) { in GetScale()
140 void WebPMultARGBRow_C(uint32_t* const ptr, int width, int inverse) { in WebPMultARGBRow_C()
162 int width, int inverse) { in WebPMultRow_C()
190 int inverse) { in WebPMultARGBRows()
200 int width, int num_rows, int inverse) { in WebPMultRows()
/external/eigen/test/
Dinverse.cpp65 template<typename MatrixType> void inverse(const MatrixType& m) in inverse() function
124 EIGEN_DECLARE_TEST(inverse) in EIGEN_DECLARE_TEST() argument
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/mutation/combinator/
DPostComposedMutator.java36 private final Function<R, T> inverse; field in PostComposedMutator
38 PostComposedMutator(SerializingMutator<T> mutator, Function<T, R> map, Function<R, T> inverse) { in PostComposedMutator() argument
/external/guava/android/guava-tests/test/com/google/common/collect/
DSynchronizedBiMapTest.java120 public BiMap<V, K> inverse() { in inverse() method in SynchronizedBiMapTest.TestBiMap
140 BiMap<Integer, String> inverse = bimap.inverse(); in testInverse() local
/external/eigen/doc/snippets/
DMatrixBase_computeInverseWithCheck.cpp3 Matrix3d inverse; variable
DMatrixBase_computeInverseAndDetWithCheck.cpp3 Matrix3d inverse; variable
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedBiMapTest.java121 public BiMap<V, K> inverse() { in inverse() method in SynchronizedBiMapTest.TestBiMap
147 BiMap<Integer, String> inverse = bimap.inverse(); in testInverse() local
/external/icu/icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/
DWriteIndicCharts.java303 Transliterator inverse = trans.getInverse(); in writeCharts() local
320 Transliterator inverse = trans.getInverse(); in writeIICharts() local
349 Transliterator inverse = trans.getInverse(); in writeCharts() local
/external/skia/src/core/
DSkDrawShadowInfo.cpp175 SkMatrix inverse; in GetLocalBounds() local
208 SkMatrix inverse; in GetLocalBounds() local
/external/eigen/Eigen/src/Geometry/
DRotationBase.h53 EIGEN_DEVICE_FUNC inline Derived inverse() const { return derived().inverse(); } in inverse() function
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestCollationMapMaker.java48 Relation<String, String> inverse = new Relation(new TreeMap(c), TreeSet.class); in main() local
/external/dagger2/java/dagger/android/processor/
DBaseProcessingStep.java71 private ImmutableMap<XElement, ImmutableSet<ClassName>> inverse( in inverse() method in BaseProcessingStep

12345678910