Lines Matching refs:Map
24 Map<VectorType, Aligned>(array1, size) = VectorType::Random(size); in map_class_vector()
25 Map<VectorType>(array2, size) = Map<VectorType>(array1, size); in map_class_vector()
26 …Map<VectorType>(array3unaligned, size) = Map<VectorType>((const Scalar*)array1, size); // test non… in map_class_vector()
27 VectorType ma1 = Map<VectorType>(array1, size); in map_class_vector()
28 VectorType ma2 = Map<VectorType, Aligned>(array2, size); in map_class_vector()
29 VectorType ma3 = Map<VectorType>(array3unaligned, size); in map_class_vector()
52 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols); in map_class_matrix()
53 …Map<MatrixType>(array2, rows, cols) = Map<MatrixType>((const Scalar*)array1, rows, cols); // test … in map_class_matrix()
54 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols); in map_class_matrix()
55 MatrixType ma1 = Map<MatrixType>(array1, rows, cols); in map_class_matrix()
56 MatrixType ma2 = Map<MatrixType, Aligned>(array2, rows, cols); in map_class_matrix()
58 MatrixType ma3 = Map<MatrixType>(array3unaligned, rows, cols); in map_class_matrix()
79 VectorType::Map(array2, size) = VectorType::Map(array1, size); in map_static_methods()
80 VectorType::Map(array3unaligned, size) = VectorType::Map(array1, size); in map_static_methods()
81 VectorType ma1 = VectorType::Map(array1, size); in map_static_methods()
83 VectorType ma3 = VectorType::Map(array3unaligned, size); in map_static_methods()