Home
last modified time | relevance | path

Searched refs:unaryOp (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseCwiseUnaryOp.h56 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer)
57 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)
106 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer)
107 : Base(unaryOp.m_argImpl,outer), m_functor(unaryOp.m_functor)
DSparseTranspose.h69 EIGEN_STRONG_INLINE InnerIterator(const unary_evaluator& unaryOp, Index outer)
70 : EvalIterator(unaryOp.m_argImpl,outer)
/external/python/cpython2/Lib/compiler/
Dpycodegen.py1211 def unaryOp(self, node, op): member in CodeGenerator
1216 return self.unaryOp(node, 'UNARY_INVERT')
1219 return self.unaryOp(node, 'UNARY_NEGATIVE')
1222 return self.unaryOp(node, 'UNARY_POSITIVE')
1225 return self.unaryOp(node, 'UNARY_INVERT')
1228 return self.unaryOp(node, 'UNARY_NOT')
1231 return self.unaryOp(node, 'UNARY_CONVERT')
/external/deqp-deps/glslang/SPIRV/
DGlslangToSpv.cpp5053 spv::Op unaryOp = spv::OpNop; local
5062 unaryOp = spv::OpFNegate;
5064 return createUnaryMatrixOperation(unaryOp, decorations, typeId, operand, typeProxy);
5066 unaryOp = spv::OpSNegate;
5071 unaryOp = spv::OpLogicalNot;
5074 unaryOp = spv::OpNot;
5084 unaryOp = spv::OpTranspose;
5177 unaryOp = spv::OpIsNan;
5180 unaryOp = spv::OpIsInf;
5183 unaryOp = spv::OpIsFinite;
[all …]
/external/deqp-deps/glslang/hlsl/
DhlslGrammar.cpp3037 TOperator unaryOp = HlslOpMap::preUnary(peek()); in acceptUnaryExpression() local
3040 if (unaryOp == EOpNull) in acceptUnaryExpression()
3050 if (unaryOp == EOpAdd) in acceptUnaryExpression()
3053 node = intermediate.addUnaryMath(unaryOp, node, loc); in acceptUnaryExpression()
3056 if (unaryOp == EOpPreIncrement || unaryOp == EOpPreDecrement) in acceptUnaryExpression()
/external/clang/lib/Sema/
DSemaLookup.cpp2760 if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg)) in FindAssociatedClassesAndNamespaces() local
2761 if (unaryOp->getOpcode() == UO_AddrOf) in FindAssociatedClassesAndNamespaces()
2762 Arg = unaryOp->getSubExpr(); in FindAssociatedClassesAndNamespaces()