Project Ne10
An open, optimized software library for the ARM architecture.
|
Variables | |
ne10_result_t(* | ne10_setc_float )(ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count) |
Sets the scalar elements of an array to a constant value. More... | |
ne10_result_t(* | ne10_setc_vec2f )(ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count) |
Sets the 2D vector elements of an array to a constant vector. More... | |
ne10_result_t(* | ne10_setc_vec3f )(ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count) |
Sets the 3D vector elements of an array to a constant vector. More... | |
ne10_result_t(* | ne10_setc_vec4f )(ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count) |
Sets the 4D vector elements of an array to a constant vector. More... | |
ne10_result_t ne10_setc_float_asm | ( | ne10_float32_t * | dst, |
const ne10_float32_t | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_float using NEON assembly.
ne10_result_t ne10_setc_float_c | ( | ne10_float32_t * | dst, |
const ne10_float32_t | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_float using plain C code.
Definition at line 37 of file NE10_setc.c.
ne10_result_t ne10_setc_float_neon | ( | ne10_float32_t * | dst, |
const ne10_float32_t | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_float using NEON intrinsics.
Definition at line 39 of file NE10_setc.neon.c.
ne10_result_t ne10_setc_vec2f_asm | ( | ne10_vec2f_t * | dst, |
const ne10_vec2f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec2f using NEON assembly.
ne10_result_t ne10_setc_vec2f_c | ( | ne10_vec2f_t * | dst, |
const ne10_vec2f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec2f using plain C code.
Definition at line 47 of file NE10_setc.c.
ne10_result_t ne10_setc_vec2f_neon | ( | ne10_vec2f_t * | dst, |
const ne10_vec2f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec2f using NEON intrinsics.
Definition at line 49 of file NE10_setc.neon.c.
ne10_result_t ne10_setc_vec3f_asm | ( | ne10_vec3f_t * | dst, |
const ne10_vec3f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec3f using NEON assembly.
ne10_result_t ne10_setc_vec3f_c | ( | ne10_vec3f_t * | dst, |
const ne10_vec3f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec3f using plain C code.
Definition at line 58 of file NE10_setc.c.
ne10_result_t ne10_setc_vec3f_neon | ( | ne10_vec3f_t * | dst, |
const ne10_vec3f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec3f using NEON intrinsics.
Definition at line 59 of file NE10_setc.neon.c.
ne10_result_t ne10_setc_vec4f_asm | ( | ne10_vec4f_t * | dst, |
const ne10_vec4f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec4f using NEON assembly.
ne10_result_t ne10_setc_vec4f_c | ( | ne10_vec4f_t * | dst, |
const ne10_vec4f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec4f using plain C code.
Definition at line 70 of file NE10_setc.c.
ne10_result_t ne10_setc_vec4f_neon | ( | ne10_vec4f_t * | dst, |
const ne10_vec4f_t * | cst, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_setc_vec4f using NEON intrinsics.
Definition at line 69 of file NE10_setc.neon.c.
ne10_result_t(* ne10_setc_float) (ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count) |
Sets the scalar elements of an array to a constant value.
Points to ne10_setc_float_c, ne10_setc_float_neon, or ne10_setc_float_asm.
[out] | dst | Pointer to the destination array |
[in] | cst | The constant to set the elements of the destination to |
[in] | count | The number of elements to set |
Definition at line 240 of file NE10_init_math.c.
ne10_result_t(* ne10_setc_vec2f) (ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count) |
Sets the 2D vector elements of an array to a constant vector.
Points to ne10_setc_vec2f_c, ne10_setc_vec2f_neon, or ne10_setc_vec2f_asm.
[out] | dst | Pointer to the destination array |
[in] | cst | The constant to set the elements of the destination to |
[in] | count | The number of elements to set |
Definition at line 241 of file NE10_init_math.c.
ne10_result_t(* ne10_setc_vec3f) (ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count) |
Sets the 3D vector elements of an array to a constant vector.
Points to ne10_setc_vec3f_c, ne10_setc_vec3f_neon, or ne10_setc_vec3f_asm.
[out] | dst | Pointer to the destination array |
[in] | cst | The constant to set the elements of the destination to |
[in] | count | The number of elements to set |
Definition at line 242 of file NE10_init_math.c.
ne10_result_t(* ne10_setc_vec4f) (ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count) |
Sets the 4D vector elements of an array to a constant vector.
Points to ne10_setc_vec4f_c, ne10_setc_vec4f_neon, or ne10_setc_vec4f_asm.
[out] | dst | Pointer to the destination array |
[in] | cst | The constant to set the elements of the destination to |
[in] | count | The number of elements to set |
Definition at line 243 of file NE10_init_math.c.