Project Ne10
An Open Optimized Software Library Project for the ARM Architecture
Functions | Variables
Vector Len

Functions

ne10_result_t ne10_len_vec2f_c (ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_len_vec2f_neon (ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count) asm("ne10_len_vec2f_neon")
 
ne10_result_t ne10_len_vec2f_asm (ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_len_vec3f_c (ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_len_vec3f_neon (ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count) asm("ne10_len_vec3f_neon")
 
ne10_result_t ne10_len_vec3f_asm (ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_len_vec4f_c (ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count)
 
ne10_result_t ne10_len_vec4f_neon (ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count) asm("ne10_len_vec4f_neon")
 
ne10_result_t ne10_len_vec4f_asm (ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count)
 

Variables

ne10_result_t(* ne10_len_vec2f )(ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count)
 Returns length of 2D vectors in corresponding elements of the output array. More...
 
ne10_result_t(* ne10_len_vec3f )(ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count)
 Returns length of 3D vectors in corresponding elements of the output array. More...
 
ne10_result_t(* ne10_len_vec4f )(ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count)
 Returns length of 4D vectors in corresponding elements of the output array. More...
 

Detailed Description

These functions implement vector len operation for float data type.

Variable Documentation

◆ ne10_len_vec2f

ne10_result_t(* ne10_len_vec2f) (ne10_float32_t *dst, ne10_vec2f_t *src, ne10_uint32_t count)

Returns length of 2D vectors in corresponding elements of the output array.

This function point could be pointed to one of ne10_len_vec2f_c, ne10_len_vec2f_neon and ne10_len_vec2f_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 254 of file NE10_init_math.c.

◆ ne10_len_vec3f

ne10_result_t(* ne10_len_vec3f) (ne10_float32_t *dst, ne10_vec3f_t *src, ne10_uint32_t count)

Returns length of 3D vectors in corresponding elements of the output array.

This function point could be pointed to one of ne10_len_vec3f_c, ne10_len_vec3f_neon and ne10_len_vec3f_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 255 of file NE10_init_math.c.

◆ ne10_len_vec4f

ne10_result_t(* ne10_len_vec4f) (ne10_float32_t *dst, ne10_vec4f_t *src, ne10_uint32_t count)

Returns length of 4D vectors in corresponding elements of the output array.

This function point could be pointed to one of ne10_len_vec4f_c, ne10_len_vec4f_neon and ne10_len_vec4f_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 256 of file NE10_init_math.c.