Project Ne10
An open, optimized software library for the ARM architecture.
|
Variables | |
ne10_result_t(* | ne10_len_vec2f )(ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 2D vectors within an input array, storing the results in an output array. More... | |
ne10_result_t(* | ne10_len_vec3f )(ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 3D vectors within an input array, storing the results in an output array. More... | |
ne10_result_t(* | ne10_len_vec4f )(ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 4D vectors within an input array, storing the results in an output array. More... | |
ne10_result_t ne10_len_vec2f_asm | ( | ne10_float32_t * | dst, |
ne10_vec2f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec2f using NEON assembly.
ne10_result_t ne10_len_vec2f_c | ( | ne10_float32_t * | dst, |
ne10_vec2f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec2f using plain C code.
Definition at line 39 of file NE10_len.c.
ne10_result_t ne10_len_vec2f_neon | ( | ne10_float32_t * | dst, |
ne10_vec2f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec2f using NEON intrinsics.
ne10_result_t ne10_len_vec3f_asm | ( | ne10_float32_t * | dst, |
ne10_vec3f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec3f using NEON assembly.
ne10_result_t ne10_len_vec3f_c | ( | ne10_float32_t * | dst, |
ne10_vec3f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec3f using plain C code.
Definition at line 50 of file NE10_len.c.
ne10_result_t ne10_len_vec3f_neon | ( | ne10_float32_t * | dst, |
ne10_vec3f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec3f using NEON intrinsics.
ne10_result_t ne10_len_vec4f_asm | ( | ne10_float32_t * | dst, |
ne10_vec4f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec4f using NEON assembly.
ne10_result_t ne10_len_vec4f_c | ( | ne10_float32_t * | dst, |
ne10_vec4f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec4f using plain C code.
Definition at line 62 of file NE10_len.c.
ne10_result_t ne10_len_vec4f_neon | ( | ne10_float32_t * | dst, |
ne10_vec4f_t * | src, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_len_vec4f using NEON intrinsics.
ne10_result_t(* ne10_len_vec2f) (ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 2D vectors within an input array, storing the results in an output array.
Points to ne10_len_vec2f_c, ne10_len_vec2f_neon, or ne10_len_vec2f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | count | The number of vectors to be processed |
Definition at line 254 of file NE10_init_math.c.
ne10_result_t(* ne10_len_vec3f) (ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 3D vectors within an input array, storing the results in an output array.
Points to ne10_len_vec3f_c, ne10_len_vec3f_neon, or ne10_len_vec3f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | count | The number of vectors to be processed |
Definition at line 255 of file NE10_init_math.c.
ne10_result_t(* ne10_len_vec4f) (ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count) |
Calculates the magnitude of 4D vectors within an input array, storing the results in an output array.
Points to ne10_len_vec4f_c, ne10_len_vec4f_neon, or ne10_len_vec4f_asm.
[out] | dst | Pointer to the destination array |
[in] | src | Pointer to the source array |
[in] | count | The number of vectors to be processed |
Definition at line 256 of file NE10_init_math.c.