Project Ne10
An open, optimized software library for the ARM architecture.
|
Functions | |
ne10_result_t | ne10_cross_vec3f_c (ne10_vec3f_t *dst, ne10_vec3f_t *src1, ne10_vec3f_t *src2, ne10_uint32_t count) |
Specific implementation of ne10_cross_vec3f using plain C code. More... | |
ne10_result_t | ne10_cross_vec3f_neon (ne10_vec3f_t *dst, ne10_vec3f_t *src1, ne10_vec3f_t *src2, ne10_uint32_t count) asm("ne10_cross_vec3f_neon") |
Specific implementation of ne10_cross_vec3f using NEON intrinsics. More... | |
ne10_result_t | ne10_cross_vec3f_asm (ne10_vec3f_t *dst, ne10_vec3f_t *src1, ne10_vec3f_t *src2, ne10_uint32_t count) |
Specific implementation of ne10_cross_vec3f using NEON assembly. More... | |
Variables | |
ne10_result_t(* | ne10_cross_vec3f )(ne10_vec3f_t *dst, ne10_vec3f_t *src1, ne10_vec3f_t *src2, ne10_uint32_t count) |
Calculate the cross product of 3D vectors from one input array with those of the same index in another, storing the results in an output array. More... | |
ne10_result_t ne10_cross_vec3f_asm | ( | ne10_vec3f_t * | dst, |
ne10_vec3f_t * | src1, | ||
ne10_vec3f_t * | src2, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_cross_vec3f using NEON assembly.
ne10_result_t ne10_cross_vec3f_c | ( | ne10_vec3f_t * | dst, |
ne10_vec3f_t * | src1, | ||
ne10_vec3f_t * | src2, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_cross_vec3f using plain C code.
Definition at line 37 of file NE10_cross.c.
ne10_result_t ne10_cross_vec3f_neon | ( | ne10_vec3f_t * | dst, |
ne10_vec3f_t * | src1, | ||
ne10_vec3f_t * | src2, | ||
ne10_uint32_t | count | ||
) |
Specific implementation of ne10_cross_vec3f using NEON intrinsics.
ne10_result_t(* ne10_cross_vec3f) (ne10_vec3f_t *dst, ne10_vec3f_t *src1, ne10_vec3f_t *src2, ne10_uint32_t count) |
Calculate the cross product of 3D vectors from one input array with those of the same index in another, storing the results in an output array.
Points to ne10_cross_vec3f_c, ne10_cross_vec3f_neon, or ne10_cross_vec3f_asm. This operation cannot be performed in-place.
[out] | dst | Pointer to the destination array |
[in] | src1 | Pointer to the first source array |
[in] | src2 | Pointer to the second source array |
[in] | count | The number of dot products to be performed (i.e. the length of the source arrays) |
Definition at line 282 of file NE10_init_math.c.