Searched defs:Inverse (Results 1 - 25 of 27) sorted by relevance

12

/external/llvm/include/llvm/ADT/
H A DGraphTraits.h13 // This file also defines the marker class Inverse that is used to iterate over
64 // Inverse - This class is used as a little marker class to tell the graph
65 // iterator to iterate over the graph in a graph defined "Inverse" ordering.
74 // df_iterator<Inverse<Method*> > I = idf_begin(M), E = idf_end(M);
78 struct Inverse { struct in namespace:llvm
81 inline Inverse(const GraphType &G) : Graph(G) {} function in struct:llvm::Inverse
87 struct GraphTraits<Inverse<Inverse<T> > > {
91 static NodeType *getEntryNode(Inverse<Inverse<
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DGraphTraits.h13 // This file also defines the marker class Inverse that is used to iterate over
61 // Inverse - This class is used as a little marker class to tell the graph
62 // iterator to iterate over the graph in a graph defined "Inverse" ordering.
71 // df_iterator<Inverse<Method*> > I = idf_begin(M), E = idf_end(M);
75 struct Inverse { struct in namespace:llvm
78 inline Inverse(const GraphType &G) : Graph(G) {} function in struct:llvm::Inverse
84 struct GraphTraits<Inverse<Inverse<T> > > {
88 static NodeType *getEntryNode(Inverse<Inverse<
[all...]
/external/webrtc/webrtc/common_audio/
H A Dreal_fourier_ooura.cc64 void RealFourierOoura::Inverse(const complex<float>* src, float* dest) const { function in class:webrtc::RealFourierOoura
H A Dreal_fourier_openmax.cc61 void RealFourierOpenmax::Inverse(const complex<float>* src, float* dest) const { function in class:webrtc::RealFourierOpenmax
/external/eigen/Eigen/src/Core/
H A DInverse.h20 struct traits<Inverse<XprType> >
32 /** \class Inverse
43 class Inverse : public InverseImpl<XprType,typename internal::traits<XprType>::StorageKind> class in namespace:Eigen
51 typedef typename internal::ref_selector<Inverse>::type Nested;
54 explicit EIGEN_DEVICE_FUNC Inverse(const XprType &xpr) function in class:Eigen::Inverse
70 : public internal::generic_xpr_base<Inverse<XprType> >::type
73 typedef typename internal::generic_xpr_base<Inverse<XprType> >::type Base;
84 * \brief Default evaluator for Inverse expression.
86 * This default evaluator for Inverse expression simply evaluate the inverse into a temporary
88 * Therefore, inverse implementers only have to specialize Assignment<Dst,Inverse<
[all...]
/external/pdfium/xfa/fxbarcode/common/reedsolomon/
H A DBC_ReedSolomonGF256.cpp115 int32_t CBC_ReedSolomonGF256::Inverse(int32_t a, int32_t& e) { function in class:CBC_ReedSolomonGF256
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableBiMap.java247 return (result == null) ? inverse = new Inverse() : result;
250 private final class Inverse extends ImmutableBiMap<V, K> { class in class:RegularImmutableBiMap
285 return Inverse.this;
H A DAbstractBiMap.java95 inverse = new Inverse<V, K>(backward, this);
353 private static class Inverse<K, V> extends AbstractBiMap<K, V> { class in class:AbstractBiMap
354 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) { method in class:AbstractBiMap.Inverse
H A DHashBiMap.java483 return (inverse == null) ? inverse = new Inverse() : inverse;
486 private final class Inverse extends AbstractMap<V, K> implements BiMap<V, K>, Serializable { class in class:HashBiMap
545 super(Inverse.this);
580 return Inverse.this;
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractBiMap.java91 inverse = new Inverse<V, K>(backward, this);
349 private static class Inverse<K, V> extends AbstractBiMap<K, V> { class in class:AbstractBiMap
350 private Inverse(Map<K, V> backward, AbstractBiMap<V, K> forward) { method in class:AbstractBiMap.Inverse
/external/pdfium/core/fxcrt/
H A Dfx_basic_util.cpp208 CFX_Matrix_3by3 CFX_Matrix_3by3::Inverse() { function in class:CFX_Matrix_3by3
/external/pdfium/xfa/fxbarcode/pdf417/
H A DBC_PDF417HighLevelEncoder.cpp53 Inverse();
131 void CBC_PDF417HighLevelEncoder::Inverse() { function in class:CBC_PDF417HighLevelEncoder
/external/llvm/lib/IR/
H A DConstantFold.cpp1964 Constant *Inverse = ConstantExpr::getBitCast(C1, CE2Op0->getType()); local
1965 return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstantFold.cpp2116 Constant *Inverse = ConstantExpr::getBitCast(C1, CE2Op0->getType()); local
2117 return ConstantExpr::getICmp(pred, Inverse, CE2Op0);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1492 bool Inverse = (N1C->isNullValue() && Cond == ISD::SETEQ) || local
1495 if (!Inverse)
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2876 bool Inverse = false; local
2881 Inverse = true;
2887 Inverse = true;
2893 Inverse = true;
2898 if (Inverse) {
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp3609 template<int Size> class Inverse;
3614 return app<Inverse<Size> >(mat);
3618 class Inverse<2> : public DerivedFunc<Signature<Mat2, Mat2> > class in namespace:vkt::shaderexecutor::Functions
3638 class Inverse<3> : public DerivedFunc<Signature<Mat3, Mat3> > class in namespace:vkt::shaderexecutor::Functions
3680 class Inverse<4> : public DerivedFunc<Signature<Mat4, Mat4> > class in namespace:vkt::shaderexecutor::Functions
5177 funcs->addFactory(SharedPtr<const CaseFactory>(new SquareMatrixFuncCaseFactory<Inverse>()));
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp3660 template<int Size> class Inverse;
3665 return app<Inverse<Size> >(mat);
3669 class Inverse<2> : public DerivedFunc<Signature<Mat2, Mat2> > class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
3689 class Inverse<3> : public DerivedFunc<Signature<Mat3, Mat3> > class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
3731 class Inverse<4> : public DerivedFunc<Signature<Mat4, Mat4> > class in namespace:deqp::gls::BuiltinPrecisionTests::Functions
5277 funcs->addFactory(SharedPtr<const CaseFactory>(new SquareMatrixFuncCaseFactory<Inverse>()));
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/guice/extensions/persist/lib/
H A Dcommons-collections.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt META-INF/NOTICE ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/dagger2/lib/
H A Dauto-value-1.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...

Completed in 801 milliseconds

12