32 #include "NE10_types.h" 34 #include "NE10_detmat.c.h" 38 ne10_result_t ne10_detmat_2x2f_c (ne10_float32_t * dst, ne10_mat2x2f_t * src, ne10_uint32_t count)
40 NE10_DETMAT_OPERATION_X_C
42 dst[ itr ] = DET2x2 (&src[ itr ]);
46 ne10_result_t ne10_detmat_3x3f_c (ne10_float32_t * dst, ne10_mat3x3f_t * src, ne10_uint32_t count)
48 NE10_DETMAT_OPERATION_X_C
50 dst[ itr ] = DET3x3 (& (src[ itr ]));
55 ne10_result_t ne10_detmat_4x4f_c (ne10_float32_t * dst, ne10_mat4x4f_t * src, ne10_uint32_t count)
57 NE10_DETMAT_OPERATION_X_C
59 dst[ itr ] = DET4x4 (&src[ itr ]);