![]() |
Project Ne10
An Open Optimized Software Library Project for the ARM Architecture
|
Functions | |
ne10_result_t | ne10_rsbc_float_c (ne10_float32_t *dst, ne10_float32_t *src, const ne10_float32_t cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_float_neon (ne10_float32_t *dst, ne10_float32_t *src, const ne10_float32_t cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_float_asm (ne10_float32_t *dst, ne10_float32_t *src, const ne10_float32_t cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec2f_c (ne10_vec2f_t *dst, ne10_vec2f_t *src, const ne10_vec2f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec2f_neon (ne10_vec2f_t *dst, ne10_vec2f_t *src, const ne10_vec2f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec2f_asm (ne10_vec2f_t *dst, ne10_vec2f_t *src, const ne10_vec2f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec3f_c (ne10_vec3f_t *dst, ne10_vec3f_t *src, const ne10_vec3f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec3f_neon (ne10_vec3f_t *dst, ne10_vec3f_t *src, const ne10_vec3f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec3f_asm (ne10_vec3f_t *dst, ne10_vec3f_t *src, const ne10_vec3f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec4f_c (ne10_vec4f_t *dst, ne10_vec4f_t *src, const ne10_vec4f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec4f_neon (ne10_vec4f_t *dst, ne10_vec4f_t *src, const ne10_vec4f_t *cst, ne10_uint32_t count) |
ne10_result_t | ne10_rsbc_vec4f_asm (ne10_vec4f_t *dst, ne10_vec4f_t *src, const ne10_vec4f_t *cst, ne10_uint32_t count) |
Variables | |
ne10_result_t(* | ne10_rsbc_float )(ne10_float32_t *dst, ne10_float32_t *src, const ne10_float32_t cst, ne10_uint32_t count) |
Subtracts the elements of an input array from a constant scalar and stores the results in an output array. | |
ne10_result_t(* | ne10_rsbc_vec2f )(ne10_vec2f_t *dst, ne10_vec2f_t *src, const ne10_vec2f_t *cst, ne10_uint32_t count) |
Subtracts the vectors in an input array from a constant 2D vector and stores the results in an output array. | |
ne10_result_t(* | ne10_rsbc_vec3f )(ne10_vec3f_t *dst, ne10_vec3f_t *src, const ne10_vec3f_t *cst, ne10_uint32_t count) |
Subtracts the vectors in an input array from a constant 3D vector and stores the results in an output array. | |
ne10_result_t(* | ne10_rsbc_vec4f )(ne10_vec4f_t *dst, ne10_vec4f_t *src, const ne10_vec4f_t *cst, ne10_uint32_t count) |
Subtracts the vectors in an input array from a constant 4D vector and stores the results in an output array. | |
|
extern |
Definition at line 37 of file NE10_rsbc.c.
|
extern |
Definition at line 39 of file NE10_rsbc.neon.c.
|
extern |
Definition at line 45 of file NE10_rsbc.c.
|
extern |
Definition at line 49 of file NE10_rsbc.neon.c.
|
extern |
Definition at line 54 of file NE10_rsbc.c.
|
extern |
Definition at line 59 of file NE10_rsbc.neon.c.
|
extern |
Definition at line 64 of file NE10_rsbc.c.
|
extern |
Definition at line 73 of file NE10_rsbc.neon.c.
|
extern |
Subtracts the elements of an input array from a constant scalar and stores the results in an output array.
This function point could be pointed to one of ne10_rsbc_float_c, ne10_rsbc_float_neon and ne10_rsbc_float_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | cst | The constant scalar to subtract the input values from |
[in] | count | The number of items in the input array |
Definition at line 228 of file NE10_init_math.c.
|
extern |
Subtracts the vectors in an input array from a constant 2D vector and stores the results in an output array.
This function point could be pointed to one of ne10_rsbc_vec2f_c, ne10_rsbc_vec2f_neon and ne10_rsbc_vec2f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | cst | Pointer to the 2D vector to subtract the input values from |
[in] | count | The number of items in the input array |
Definition at line 229 of file NE10_init_math.c.
|
extern |
Subtracts the vectors in an input array from a constant 3D vector and stores the results in an output array.
This function point could be pointed to one of ne10_rsbc_vec3f_c, ne10_rsbc_vec3f_neon and ne10_rsbc_vec3f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | cst | Pointer to the 3D vector to subtract the input values from |
[in] | count | The number of items in the input array |
Definition at line 230 of file NE10_init_math.c.
|
extern |
Subtracts the vectors in an input array from a constant 4D vector and stores the results in an output array.
This function point could be pointed to one of ne10_rsbc_vec4f_c, ne10_rsbc_vec4f_neon and ne10_rsbc_vec4f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | cst | Pointer to the 4D vector to subtract the input values from |
[in] | count | The number of items in the input array |
Definition at line 231 of file NE10_init_math.c.