Project Ne10
An Open Optimized Software Library Project for the ARM Architecture
Loading...
Searching...
No Matches
Functions | Variables
Matrix Invertible

Functions

ne10_result_t ne10_invmat_4x4f_c (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_invmat_4x4f_neon (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count) asm("ne10_invmat_4x4f_neon")
 
ne10_result_t ne10_invmat_4x4f_asm (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_invmat_3x3f_c (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_invmat_3x3f_neon (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count) asm("ne10_invmat_3x3f_neon")
 
ne10_result_t ne10_invmat_3x3f_asm (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_invmat_2x2f_c (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_invmat_2x2f_neon (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count) asm("ne10_invmat_2x2f_neon")
 
ne10_result_t ne10_invmat_2x2f_asm (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 

Variables

ne10_result_t(* ne10_invmat_4x4f )(ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count)
 Calculate the invertible matrix of a 4x4 matrix.
 
ne10_result_t(* ne10_invmat_3x3f )(ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count)
 Calculate the invertible matrix of a 3x3 matrix.
 
ne10_result_t(* ne10_invmat_2x2f )(ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count)
 Calculate the invertible matrix of a 2x2 matrix.
 

Detailed Description

These functions implement matrix invertible operation for float data type.

Function Documentation

◆ ne10_invmat_2x2f_c()

ne10_result_t ne10_invmat_2x2f_c ( ne10_mat2x2f_t *  dst,
ne10_mat2x2f_t *  src,
ne10_uint32_t  count 
)
extern

Definition at line 42 of file NE10_invmat.c.

◆ ne10_invmat_3x3f_c()

ne10_result_t ne10_invmat_3x3f_c ( ne10_mat3x3f_t *  dst,
ne10_mat3x3f_t *  src,
ne10_uint32_t  count 
)
extern

Definition at line 63 of file NE10_invmat.c.

◆ ne10_invmat_4x4f_c()

ne10_result_t ne10_invmat_4x4f_c ( ne10_mat4x4f_t *  dst,
ne10_mat4x4f_t *  src,
ne10_uint32_t  count 
)
extern

Definition at line 123 of file NE10_invmat.c.

Variable Documentation

◆ ne10_invmat_2x2f

ne10_result_t(* ne10_invmat_2x2f) (ne10_mat2x2f_t *dst, ne10_mat2x2f_t *src, ne10_uint32_t count) ( ne10_mat2x2f_t *  dst,
ne10_mat2x2f_t *  src,
ne10_uint32_t  count 
)
extern

Calculate the invertible matrix of a 2x2 matrix.

This function point could be pointed to one of ne10_invmat_2x2f_c, ne10_invmat_2x2f_neon and ne10_invmat_2x2f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of items in the input array

Definition at line 301 of file NE10_init_math.c.

◆ ne10_invmat_3x3f

ne10_result_t(* ne10_invmat_3x3f) (ne10_mat3x3f_t *dst, ne10_mat3x3f_t *src, ne10_uint32_t count) ( ne10_mat3x3f_t *  dst,
ne10_mat3x3f_t *  src,
ne10_uint32_t  count 
)
extern

Calculate the invertible matrix of a 3x3 matrix.

This function point could be pointed to one of ne10_invmat_3x3f_c, ne10_invmat_3x3f_neon and ne10_invmat_3x3f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of items in the input array

Definition at line 300 of file NE10_init_math.c.

◆ ne10_invmat_4x4f

ne10_result_t(* ne10_invmat_4x4f) (ne10_mat4x4f_t *dst, ne10_mat4x4f_t *src, ne10_uint32_t count) ( ne10_mat4x4f_t *  dst,
ne10_mat4x4f_t *  src,
ne10_uint32_t  count 
)
extern

Calculate the invertible matrix of a 4x4 matrix.

This function point could be pointed to one of ne10_invmat_4x4f_c, ne10_invmat_4x4f_neon and ne10_invmat_4x4f_asm.

Parameters
[out]dstPointer to the destination array
[in]srcPointer to the source array
[in]countThe number of items in the input array

Definition at line 299 of file NE10_init_math.c.