Home
last modified time | relevance | path

Searched refs:InputType (Results 1 – 25 of 123) sorted by relevance

12345

/external/gemmlowp/internal/
Doutput.h42 template <typename OutputStage, typename InputType>
44 static constexpr int kRows = InputType::kRows;
45 static constexpr int kCols = InputType::kCols;
46 using InputBufferType = typename InputType::BufferType;
55 OutputType Eval(InputType input, int, int) const { in Eval()
67 using InputType = RegisterBuffer<std::int32_t, Size>;
74 OutputType Eval(InputType input) const {
77 using RegisterType = typename InputType::RegisterType;
81 for (int i = 0; i < InputType::kRegisterCount; i++) {
94 typedef RegisterBlock<std::int32_t, Rows, Cols> InputType;
[all …]
Doutput_sse.h29 typedef RegBufferInt32<4> InputType;
36 OutputType Eval(InputType input) const {
48 typedef RegBufferInt32<8> InputType;
55 OutputType Eval(InputType input) const {
68 typedef RegBufferInt32<16> InputType;
75 OutputType Eval(InputType input) const {
87 typedef RegBufferInt32<32> InputType;
94 OutputType Eval(InputType input) const {
109 typedef RegBufferInt32<4> InputType;
116 OutputType Eval(InputType input) const {
[all …]
Doutput_msa.h29 typedef RegBufferInt32<4> InputType;
36 OutputType Eval(InputType input) const {
62 typedef RegBufferInt32<8> InputType;
69 OutputType Eval(InputType input) const {
119 typedef RegBufferInt32<16> InputType;
126 OutputType Eval(InputType input) const {
137 typedef RegBufferInt32<32> InputType;
144 OutputType Eval(InputType input) const {
159 typedef RegBufferInt32<4> InputType;
166 OutputType Eval(InputType input) const {
[all …]
Doutput_neon.h29 typedef RegBufferInt32<4> InputType;
36 OutputType Eval(InputType input) const {
48 typedef RegBufferInt32<8> InputType;
55 OutputType Eval(InputType input) const {
67 typedef RegBufferInt32<16> InputType;
74 OutputType Eval(InputType input) const {
89 typedef RegBufferInt32<32> InputType;
96 OutputType Eval(InputType input) const {
113 typedef RegBufferInt32<4> InputType;
120 OutputType Eval(InputType input) const {
[all …]
/external/deqp/external/openglcts/modules/glesext/texture_border_clamp/
DesextcTextureBorderClampSamplingTexture.cpp40 template <typename InputType, typename OutputType>
41 const glw::GLuint TextureBorderClampSamplingTexture<InputType, OutputType>::m_texture_unit = 0;
61 template <typename InputType, typename OutputType>
62 TestConfiguration<InputType, OutputType>::TestConfiguration( in TestConfiguration()
65 …glw::GLuint width, glw::GLuint height, glw::GLuint depth, InputType initValue, InputType initBorde… in TestConfiguration()
92 template <typename InputType, typename OutputType>
93 TestConfiguration<InputType, OutputType>::TestConfiguration(const TestConfiguration& configuration) in TestConfiguration()
120 template <typename InputType, typename OutputType>
121 TextureBorderClampSamplingTexture<InputType, OutputType>::TextureBorderClampSamplingTexture( in TextureBorderClampSamplingTexture()
123 const TestConfiguration<InputType, OutputType>& configuration) in TextureBorderClampSamplingTexture() argument
[all …]
DesextcTextureBorderClampSamplingTexture.hpp41 template <typename InputType, typename OutputType>
49 glw::GLuint depth, InputType initValue, InputType initBorderColor, OutputType expectedValue,
102 inline InputType get_init_value(void) const in get_init_value()
106 inline InputType get_init_border_color(void) const in get_init_border_color()
140 InputType m_init_value;
141 InputType m_init_border_color;
291 template <typename InputType, typename OutputType>
298 const TestConfiguration<InputType, OutputType>& configuration);
310 void setInitData(std::vector<InputType>& buffer);
330 TestConfiguration<InputType, OutputType> m_test_configuration;
/external/skia/src/gpu/glsl/
DGrGLSLVertexGeoBuilder.cpp46 static const char* input_type_name(GrGLSLGeometryBuilder::InputType in) { in input_type_name()
47 using InputType = GrGLSLGeometryBuilder::InputType; in input_type_name() typedef
49 case InputType::kPoints: return "points"; in input_type_name()
50 case InputType::kLines: return "lines"; in input_type_name()
51 case InputType::kLinesAdjacency: return "lines_adjacency"; in input_type_name()
52 case InputType::kTriangles: return "triangles"; in input_type_name()
53 case InputType::kTrianglesAdjacency: return "triangles_adjacency"; in input_type_name()
70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, in configure()
/external/skqp/src/gpu/glsl/
DGrGLSLVertexGeoBuilder.cpp46 static const char* input_type_name(GrGLSLGeometryBuilder::InputType in) { in input_type_name()
47 using InputType = GrGLSLGeometryBuilder::InputType; in input_type_name() typedef
49 case InputType::kPoints: return "points"; in input_type_name()
50 case InputType::kLines: return "lines"; in input_type_name()
51 case InputType::kLinesAdjacency: return "lines_adjacency"; in input_type_name()
52 case InputType::kTriangles: return "triangles"; in input_type_name()
53 case InputType::kTrianglesAdjacency: return "triangles_adjacency"; in input_type_name()
70 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices, in configure()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
DAlertDialogTask.java48 private InputType mInputType;
58 private enum InputType { enum in AlertDialogTask
65 mInputType = InputType.DEFAULT; in AlertDialogTask()
97 mInputType = InputType.MENU; in setItems()
112 mInputType = InputType.SINGLE_CHOICE; in setSingleChoiceItems()
132 mInputType = InputType.MULTI_CHOICE; in setMultiChoiceItems()
144 mInputType = InputType.PLAIN_TEXT; in setTextInput()
159 mEditInputType = android.text.InputType.TYPE_CLASS_TEXT; in setEditInputType()
164 mInputType = InputType.PASSWORD; in setPasswordInput()
229 mEditText.setInputType(android.text.InputType.TYPE_TEXT_VARIATION_PASSWORD); in onCreate()
[all …]
/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffJacobian.h35 typedef typename Functor::InputType InputType; typedef
40 InputsAtCompileTime = InputType::RowsAtCompileTime,
57 void operator() (const InputType& x, ValueType* v) const in operator()
62 void operator() (const InputType& x, ValueType* v, JacobianType* _jac, in operator()
65 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const in operator()
/external/deqp/modules/gles3/functional/
Des3fShaderMatrixTests.cpp206 enum InputType enum
217 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_) in ShaderInput()
224 InputType inputType;
870 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1T…
878 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
891 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
904 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
917 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
930 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
943 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
[all …]
Des3fVertexArrayTest.cpp75 …Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_… in init()
146 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
155 Array::InputType m_type;
158 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type) in SingleVertexArrayStrideGroup()
241 …Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_… in init()
252 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
260 Array::InputType m_type;
263 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type) in SingleVertexArrayFirstGroup()
345 …Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_I… in init()
356 SingleVertexArrayOffsetGroup (Context& context, Array::InputType type);
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp201 enum InputType enum
212 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_) in ShaderInput()
219 InputType inputType;
865 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1T…
873 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
886 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
899 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
912 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
925 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
938 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type) in evaluate()
[all …]
/external/deqp/modules/gles3/stress/
Des3sVertexArrayTests.cpp78 …Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_… in init()
149 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
158 Array::InputType m_type;
161 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type) in SingleVertexArrayStrideGroup()
244 …Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, /*Array::INPUTTYP… in init()
255 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
263 Array::InputType m_type;
266 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type) in SingleVertexArrayFirstGroup()
348 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_INT_2_10_10_10 }; in init()
359 SingleVertexArrayOffsetGroup (Context& context, Array::InputType type);
[all …]
/external/deqp/modules/glshared/
DglsDrawTest.hpp61 enum InputType enum
182 static std::string inputTypeToString (InputType type);
189 static int inputTypeSize (InputType type);
194 …static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage sto…
195 …static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int compo…
197 InputType inputType;
DglsVertexArrayTests.hpp65 enum InputType enum in 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, …
160 virtual InputType getInputType (void) const = 0;
176 …virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType…
183 virtual Array::InputType getInputType (void) const { return m_inputType; } in getInputType()
194 static deUint32 inputTypeToGL (Array::InputType type);
209 Array::InputType m_inputType;
399 static GLValue getMaxValue (Array::InputType type);
[all …]
/external/eigen/unsupported/Eigen/src/NumericalDiff/
DNumericalDiff.h41 typedef typename Functor::InputType InputType; typedef
64 int df(const InputType& _x, JacobianType &jac) const in df()
71 const typename InputType::Index n = _x.size(); in df()
74 InputType x = _x; in df()
/external/eigen/unsupported/test/
Dautodiff.cpp40 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef
72 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
114 typedef Matrix<Scalar, 2, 1> InputType; typedef
161 typedef typename Func::InputType InputType; in forward_jacobian_cpp11() typedef
164 InputType x = InputType::Random(InputType::RowsAtCompileTime); in forward_jacobian_cpp11()
193 typename Func::InputType x = Func::InputType::Random(f.inputs()); in forward_jacobian()
Dforward_adolc.cpp31 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; typedef
63 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const in operator ()()
101 typename Func::InputType x = Func::InputType::Random(f.inputs()); in adolc_forward_jacobian()
/external/eigen/Eigen/src/Eigenvalues/
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 computeEigenvector… in compute()
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, boo…
/external/eigen/Eigen/src/LU/
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>& matrix)
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DMethodDescriptor.cs53 public MessageDescriptor InputType { get { return inputType; } } property in Google.Protobuf.Reflection.MethodDescriptor
88 IDescriptor lookup = File.DescriptorPool.LookupSymbol(Proto.InputType, this); in CrossLink()
91 …throw new DescriptorValidationException(this, "\"" + Proto.InputType + "\" is not a message type."… in CrossLink()
/external/eigen/Eigen/src/QR/
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
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Ddynamic_slice_ops.cc37 DataType index_type = ctx->InputType("indices"); in Compile()
71 DataType index_type = ctx->InputType("start_indices"); in Compile()
73 CHECK(index_type == ctx->InputType("size_indices")); in Compile()

12345