Searched refs:InputType (Results 1 - 25 of 86) sorted by relevance

1234

/external/swiftshader/src/Renderer/
H A DETC_Decoder.hpp18 enum InputType enum in class:ETC_Decoder
40 static bool Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType);
/external/skia/src/gpu/glsl/
H A DGrGLSLGeometryShaderBuilder.cpp12 static const char* input_type_name(GrGLSLGeometryBuilder::InputType in) {
13 using InputType = GrGLSLGeometryBuilder::InputType;
15 case InputType::kPoints: return "points";
16 case InputType::kLines: return "lines";
17 case InputType::kLinesAdjacency: return "lines_adjacency";
18 case InputType::kTriangles: return "triangles";
19 case InputType::kTrianglesAdjacency: return "triangles_adjacency";
41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices,
H A DGrGLSLGeometryShaderBuilder.h19 enum class InputType { class in class:GrGLSLGeometryBuilder
33 void configure(InputType, OutputType, int maxVertices, int numInvocations = 1);
/external/gemmlowp/internal/
H A Doutput.h77 // returning OutputType. The OutputType typically depends on the InputType.
88 // InputType's.
89 template <typename OutputStageType, typename InputType>
93 std::is_same<InputType, void>::value,
105 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
111 OutputType Eval(InputType input, int, int) const {
128 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
135 OutputType Eval(InputType input, int row, int col) const {
152 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
159 OutputType Eval(InputType inpu
176 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
192 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
212 typedef FragmentInt32x1x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
230 typedef tInputType InputType; typedef in struct:gemmlowp::OutputStageTanhEvalImpl
[all...]
H A Doutput_neon.h44 typedef NEONFragmentInt32x16x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
50 OutputType Eval(InputType input, int row, int col) const {
68 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
74 OutputType Eval(InputType input, int, int) const {
95 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
102 OutputType Eval(InputType input, int row, int col) const {
125 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
132 OutputType Eval(InputType input, int row, int col) const {
153 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
159 OutputType Eval(InputType inpu
174 typedef NEONFragmentInt32x16x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
194 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
216 typedef NEONFragmentInt32x4x1 InputType; typedef in struct:gemmlowp::OutputStageEvalImpl
[all...]
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffJacobian.h35 typedef typename Functor::InputType InputType; typedef in class:Eigen::AutoDiffJacobian
40 InputsAtCompileTime = InputType::RowsAtCompileTime,
57 void operator() (const InputType& x, ValueType* v) const
62 void operator() (const InputType& x, ValueType* v, JacobianType* _jac,
65 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMethodDescriptor.cs53 public MessageDescriptor InputType { get { return inputType; } } property in class:Google.Protobuf.Reflection.MethodDescriptor
88 IDescriptor lookup = File.DescriptorPool.LookupSymbol(Proto.InputType, this);
91 throw new DescriptorValidationException(this, "\"" + Proto.InputType + "\" is not a message type.");
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
H A DAlertDialogTask.java48 private InputType mInputType;
58 private enum InputType { enum in class:AlertDialogTask
65 mInputType = InputType.DEFAULT;
97 mInputType = InputType.MENU;
112 mInputType = InputType.SINGLE_CHOICE;
132 mInputType = InputType.MULTI_CHOICE;
144 mInputType = InputType.PLAIN_TEXT;
159 mEditInputType = android.text.InputType.TYPE_CLASS_TEXT;
164 mInputType = InputType.PASSWORD;
229 mEditText.setInputType(android.text.InputType
[all...]
/external/eigen/unsupported/Eigen/src/NumericalDiff/
H A DNumericalDiff.h41 typedef typename Functor::InputType InputType; typedef in class:Eigen::NumericalDiff
64 int df(const InputType& _x, JacobianType &jac) const
71 const typename InputType::Index n = _x.size();
74 InputType x = _x;
/external/deqp/modules/glshared/
H A DglsDrawTest.hpp56 enum InputType enum in struct:deqp::gls::DrawTestSpec
177 static std::string inputTypeToString (InputType type);
184 static int inputTypeSize (InputType type);
189 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
190 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
192 InputType inputType;
H A DglsVertexArrayTests.hpp65 enum InputType enum in class:deqp::gls::Array
144 static std::string inputTypeToString (InputType type);
149 static int inputTypeSize (InputType type);
154 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride) = 0;
160 virtual InputType getInputType (void) const = 0;
176 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride);
183 virtual Array::InputType getInputType (void) const { return m_inputType; }
194 static deUint32 inputTypeToGL (Array::InputType type);
209 Array::InputType m_inputType;
399 static GLValue getMaxValue (Array::InputType typ
[all...]
/external/deqp/modules/gles3/stress/
H A Des3sVertexArrayTests.cpp78 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE};
149 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
158 Array::InputType m_type;
161 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type)
244 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, /*Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE,*/ Array::INPUTTYPE_FIXED, Array::INPUTTYPE_INT_2_10_10_10 };
255 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
263 Array::InputType m_type;
266 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type)
348 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_INT_2_10_10_10 };
359 SingleVertexArrayOffsetGroup (Context& context, Array::InputType typ
[all...]
/external/eigen/unsupported/test/
H A Dforward_adolc.cpp31 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef in struct:TestFunc1
63 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
101 typename Func::InputType x = Func::InputType::Random(f.inputs());
H A Dautodiff.cpp40 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef in struct:TestFunc1
72 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
114 typedef Matrix<Scalar, 2, 1> InputType; typedef in struct:integratorFunctor
161 typedef typename Func::InputType InputType; typedef
164 InputType x = InputType::Random(InputType::RowsAtCompileTime);
193 typename Func::InputType x = Func::InputType
[all...]
/external/eigen/Eigen/src/Eigenvalues/
H A DRealSchur_LAPACKE.h41 template<> template<typename InputType> inline \
43 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
H A DSelfAdjointEigenSolver_LAPACKE.h41 template<> template<typename InputType> inline \
43 SelfAdjointEigenSolver<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, int options) \
H A DComplexEigenSolver.h125 template<typename InputType>
126 explicit ComplexEigenSolver(const EigenBase<InputType>& matrix, bool computeEigenvectors = true)
212 template<typename InputType>
213 ComplexEigenSolver& compute(const EigenBase<InputType>& matrix, bool computeEigenvectors = true);
259 template<typename InputType>
261 ComplexEigenSolver<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeEigenvectors)
H A DComplexSchur.h112 template<typename InputType>
113 explicit ComplexSchur(const EigenBase<InputType>& matrix, bool computeU = true)
190 template<typename InputType>
191 ComplexSchur& compute(const EigenBase<InputType>& matrix, bool computeU = true);
318 template<typename InputType>
319 ComplexSchur<MatrixType>& ComplexSchur<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeU)
H A DComplexSchur_LAPACKE.h41 template<> template<typename InputType> inline \
43 ComplexSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
/external/eigen/Eigen/src/LU/
H A DPartialPivLU.h115 template<typename InputType>
116 explicit PartialPivLU(const EigenBase<InputType>& matrix);
125 template<typename InputType>
126 explicit PartialPivLU(EigenBase<InputType>& matrix);
128 template<typename InputType>
129 PartialPivLU& compute(const EigenBase<InputType>& matrix) {
314 template<typename InputType>
315 PartialPivLU<MatrixType>::PartialPivLU(const EigenBase<InputType>& matrix)
327 template<typename InputType>
328 PartialPivLU<MatrixType>::PartialPivLU(EigenBase<InputType>
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayTest.cpp75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE};
146 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
155 Array::InputType m_type;
158 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type)
241 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE, /*Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE,*/ Array::INPUTTYPE_FIXED, Array::INPUTTYPE_INT_2_10_10_10 };
252 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
260 Array::InputType m_type;
263 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type)
345 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_INT_2_10_10_10 };
356 SingleVertexArrayOffsetGroup (Context& context, Array::InputType typ
[all...]
H A Des3fShaderMatrixTests.cpp206 enum InputType enum in namespace:deqp::gles3::Functional::MatrixCaseUtils
217 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_)
224 InputType inputType;
884 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type);
892 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
905 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
918 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Typ
[all...]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderMatrixTests.cpp201 enum InputType enum in namespace:vkt::sr::__anon3908::MatrixCaseUtils
212 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_)
219 InputType inputType;
879 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type);
887 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
900 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
913 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Typ
[all...]
/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h96 template<typename InputType>
97 explicit HouseholderQR(const EigenBase<InputType>& matrix)
114 template<typename InputType>
115 explicit HouseholderQR(EigenBase<InputType>& matrix)
169 template<typename InputType>
170 HouseholderQR& compute(const EigenBase<InputType>& matrix) {
H A DColPivHouseholderQR.h123 template<typename InputType>
124 explicit ColPivHouseholderQR(const EigenBase<InputType>& matrix)
144 template<typename InputType>
145 explicit ColPivHouseholderQR(EigenBase<InputType>& matrix)
210 template<typename InputType>
211 ColPivHouseholderQR& compute(const EigenBase<InputType>& matrix);
471 template<typename InputType>
472 ColPivHouseholderQR<MatrixType>& ColPivHouseholderQR<MatrixType>::compute(const EigenBase<InputType>& matrix)

Completed in 511 milliseconds

1234