Project Ne10
An Open Optimized Software Library Project for the ARM Architecture
Functions | Variables
Matrix Div

Functions

ne10_result_t ne10_divmat_4x4f_c (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src1, ne10_mat4x4f_t *src2, ne10_uint32_t count)
 
ne10_result_t ne10_divmat_4x4f_neon (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src1, ne10_mat4x4f_t *src2, ne10_uint32_t count) asm("ne10_divmat_4x4f_neon")
 
ne10_result_t ne10_divmat_4x4f_asm (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src1, ne10_mat4x4f_t *src2, ne10_uint32_t count)
 
ne10_result_t ne10_divmat_3x3f_c (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src1, ne10_mat3x3f_t *src2, ne10_uint32_t count)
 
ne10_result_t ne10_divmat_3x3f_neon (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src1, ne10_mat3x3f_t *src2, ne10_uint32_t count) asm("ne10_divmat_3x3f_neon")
 
ne10_result_t ne10_divmat_3x3f_asm (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src1, ne10_mat3x3f_t *src2, ne10_uint32_t count)
 
ne10_result_t ne10_divmat_2x2f_c (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src1, ne10_mat2x2f_t *src2, ne10_uint32_t count)
 
ne10_result_t ne10_divmat_2x2f_neon (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src1, ne10_mat2x2f_t *src2, ne10_uint32_t count) asm("ne10_divmat_2x2f_neon")
 
ne10_result_t ne10_divmat_2x2f_asm (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src1, ne10_mat2x2f_t *src2, ne10_uint32_t count)
 

Variables

ne10_result_t(* ne10_divmat_4x4f )(ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src1, ne10_mat4x4f_t *src2, ne10_uint32_t count)
 Divides the components of a 4x4 matrix with the corresponding components of another. More...
 
ne10_result_t(* ne10_divmat_3x3f )(ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src1, ne10_mat3x3f_t *src2, ne10_uint32_t count)
 Divides the components of a 3x3 matrix with the corresponding components of another. More...
 
ne10_result_t(* ne10_divmat_2x2f )(ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src1, ne10_mat2x2f_t *src2, ne10_uint32_t count)
 Divides the components of a 2x2 matrix with the corresponding components of another. More...
 

Detailed Description

These functions implement the matrix division operation for float data type.

Variable Documentation

§ ne10_divmat_2x2f

ne10_result_t(* ne10_divmat_2x2f) (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src1, ne10_mat2x2f_t *src2, ne10_uint32_t count)

Divides the components of a 2x2 matrix with the corresponding components of another.

This function point could be pointed to one of ne10_divmat_2x2f_c, ne10_divmat_2x2f_neon and ne10_divmat_2x2f_asm.

Parameters
[out]dstPointer to the destination array
[in]src1Pointer to the nominators' source array
[in]src2Pointer to the denominators' source array
[in]countThe number of items in the input arrays

§ ne10_divmat_3x3f

ne10_result_t(* ne10_divmat_3x3f) (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src1, ne10_mat3x3f_t *src2, ne10_uint32_t count)

Divides the components of a 3x3 matrix with the corresponding components of another.

This function point could be pointed to one of ne10_divmat_3x3f_c, ne10_divmat_3x3f_neon and ne10_divmat_3x3f_asm.

Parameters
[out]dstPointer to the destination array
[in]src1Pointer to the nominators' source array
[in]src2Pointer to the denominators' source array
[in]countThe number of items in the input arrays

§ ne10_divmat_4x4f

ne10_result_t(* ne10_divmat_4x4f) (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src1, ne10_mat4x4f_t *src2, ne10_uint32_t count)

Divides the components of a 4x4 matrix with the corresponding components of another.

This function point could be pointed to one of ne10_divmat_4x4f_c, ne10_divmat_4x4f_neon and ne10_divmat_4x4f_asm.

Parameters
[out]dstPointer to the destination array
[in]src1Pointer to the nominators' source array
[in]src2Pointer to the denominators' source array
[in]countThe number of items in the input arrays