HomeSort by relevance Sort by last modified time
    Searched refs:matType (Results 1 - 15 of 15) sorted by null

  /external/vulkan-validation-layers/libs/glm/detail/
func_matrix.hpp 125 /// @tparam matType Floating-point matrix types.
129 template <typename T, precision P, template <typename, precision> class matType>
130 GLM_FUNC_DECL matType<T, P> matrixCompMult(matType<T, P> const & x, matType<T, P> const & y);
136 /// @tparam matType Floating-point matrix types.
141 /// @todo Clarify the declaration to specify that matType doesn't have to be provided when used.
147 /// @tparam matType Floating-point matrix types.
152 template <typename T, precision P, template <typename, precision> class matType>
153 GLM_FUNC_DECL typename matType<T, P>::transpose_type transpose(matType<T, P> const & x)
    [all...]
type_mat.hpp 53 template <template <class, precision> class matType, typename T, precision P>
    [all...]
  /external/opencv3/modules/core/perf/
perf_minmaxloc.cpp 16 int matType = get<1>(GetParam());
18 Mat src(sz, matType);
22 if (matType == CV_8U)
24 else if (matType == CV_8S)
perf_reduce.cpp 11 typedef std::tr1::tuple<Size, MatType, ROp> Size_MatType_ROp_t;
24 int matType = get<1>(GetParam());
28 if( CV_MAT_DEPTH(matType) < CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
31 Mat src(sz, matType);
32 Mat vec(1, sz.width, ddepth < 0 ? matType : ddepth);
52 int matType = get<1>(GetParam());
56 if( CV_MAT_DEPTH(matType)< CV_32S && (reduceOp == CV_REDUCE_SUM || reduceOp == CV_REDUCE_AVG) )
59 Mat src(sz, matType);
60 Mat vec(sz.height, 1, ddepth < 0 ? matType : ddepth);
perf_norm.cpp 11 typedef std::tr1::tuple<Size, MatType, NormType> Size_MatType_NormType_t;
23 int matType = get<1>(GetParam());
26 Mat src(sz, matType);
45 int matType = get<1>(GetParam());
48 Mat src(sz, matType);
68 int matType = get<1>(GetParam());
71 Mat src1(sz, matType);
72 Mat src2(sz, matType);
91 int matType = get<1>(GetParam());
94 Mat src1(sz, matType);
    [all...]
perf_stat.cpp 58 int matType = get<1>(GetParam());
60 Mat src(sz, matType);
75 int matType = get<1>(GetParam());
77 Mat src(sz, matType);
93 int matType = get<1>(GetParam());
95 Mat src(sz, matType);
perf_compare.cpp 11 typedef std::tr1::tuple<Size, MatType, CmpType> Size_MatType_CmpType_t;
46 int matType = get<1>(GetParam());
49 Mat src1(sz, matType);
51 Mat dst(sz, CV_8UC(CV_MAT_CN(matType)));
  /external/opencv3/modules/imgproc/perf/
perf_pyramids.cpp 16 int matType = get<1>(GetParam());
17 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5;
18 perf::ERROR_TYPE error_type = CV_MAT_DEPTH(matType) <= CV_32S ? ERROR_ABSOLUTE : ERROR_RELATIVE;
20 Mat src(sz, matType);
21 Mat dst((sz.height + 1)/2, (sz.width + 1)/2, matType);
37 int matType = get<1>(GetParam());
38 const double eps = CV_MAT_DEPTH(matType) <= CV_32S ? 1 : 1e-5;
39 perf::ERROR_TYPE error_type = CV_MAT_DEPTH(matType) <= CV_32S ? ERROR_ABSOLUTE : ERROR_RELATIVE;
41 Mat src(sz, matType);
42 Mat dst(sz.height*2, sz.width*2, matType);
    [all...]
perf_resize.cpp 9 typedef tr1::tuple<MatType, Size, Size> MatInfo_Size_Size_t;
20 int matType = get<0>(GetParam());
24 cv::Mat src(from, matType), dst(to, matType);
47 int matType = get<0>(GetParam());
51 cv::Mat src(from, matType), dst(to, matType);
65 typedef tr1::tuple<MatType, Size, int> MatInfo_Size_Scale_t;
76 int matType = get<0>(GetParam());
83 cv::Mat src(from, matType);
    [all...]
perf_integral.cpp 9 typedef std::tr1::tuple<Size, MatType, MatDepth> Size_MatType_OutMatDepth_t;
21 int matType = get<1>(GetParam());
24 Mat src(sz, matType);
43 int matType = get<1>(GetParam());
46 Mat src(sz, matType);
68 int matType = get<1>(GetParam());
71 Mat src(sz, matType);
  /external/vulkan-validation-layers/libs/glm/gtx/
matrix_query.hpp 73 template<typename T, precision P, template <typename, precision> class matType>
74 GLM_FUNC_DECL bool isIdentity(matType<T, P> const & m, T const & epsilon);
93 template<typename T, precision P, template <typename, precision> class matType>
94 GLM_FUNC_DECL bool isOrthogonal(matType<T, P> const & m, T const & epsilon);
  /external/opencv3/modules/core/include/opencv2/core/
ippasync.hpp 117 int matType = CV_MAKETYPE(toCvType(type), cn);
123 dst.create((int)height, (int)width, (int)matType);
  /external/deqp/modules/gles2/functional/
es2fShaderMatrixTests.cpp 622 #define MAKE_MAT_MAT_CASES(OP, MATTYPE) \
623 OP(INPUTTYPE_CONST, MATTYPE, INPUTTYPE_CONST, MATTYPE); \
624 OP(INPUTTYPE_DYNAMIC, MATTYPE, INPUTTYPE_CONST, MATTYPE)
634 #define MAKE_UNARY_CASES(OP, MATTYPE) \
635 OP(INPUTTYPE_CONST, MATTYPE); \
636 OP(INPUTTYPE_DYNAMIC, MATTYPE)
644 #define MAKE_ASSIGNMENT_CASES(OP, MATTYPE) \
645 OP(INPUTTYPE_CONST, MATTYPE, INPUTTYPE_CONST, MATTYPE);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderMatrixTests.cpp     [all...]

Completed in 1497 milliseconds