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

Functions

ne10_result_t ne10_setc_float_c (ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_float_neon (ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_float_asm (ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec2f_c (ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec2f_neon (ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec2f_asm (ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec3f_c (ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec3f_neon (ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec3f_asm (ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec4f_c (ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec4f_neon (ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count)
 
ne10_result_t ne10_setc_vec4f_asm (ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count)
 

Variables

ne10_result_t(* ne10_setc_float )(ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count)
 Sets the elements of an input array to a constant scalar and stores the results in an output array. More...
 
ne10_result_t(* ne10_setc_vec2f )(ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count)
 Sets the components of 2D vectors in an input array to the components of a constant 2D vector and stores the results in an output array. More...
 
ne10_result_t(* ne10_setc_vec3f )(ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count)
 Sets the components of 3D vectors in an input array to the components of a constant 3D vector and stores the results in an output array. More...
 
ne10_result_t(* ne10_setc_vec4f )(ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count)
 Sets the components of 4D vectors in an input array to the components of a constant 3D vector and stores the results in an output array. More...
 

Detailed Description

These functions implement vector setc operation for float data type.

Variable Documentation

◆ ne10_setc_float

ne10_result_t(* ne10_setc_float) (ne10_float32_t *dst, const ne10_float32_t cst, ne10_uint32_t count) ( ne10_float32_t *  dst,
const ne10_float32_t  cst,
ne10_uint32_t  count 
)
extern

Sets the elements of an input array to a constant scalar and stores the results in an output array.

This function point could be pointed to one of ne10_setc_float_c, ne10_setc_float_neon and ne10_setc_float_asm.

Parameters
[out]dstPointer to the destination array
[in]cstThe constant scalar to set the input values to
[in]countThe number of items in the input array

Definition at line 240 of file NE10_init_math.c.

◆ ne10_setc_vec2f

ne10_result_t(* ne10_setc_vec2f) (ne10_vec2f_t *dst, const ne10_vec2f_t *cst, ne10_uint32_t count) ( ne10_vec2f_t dst,
const ne10_vec2f_t cst,
ne10_uint32_t  count 
)
extern

Sets the components of 2D vectors in an input array to the components of a constant 2D vector and stores the results in an output array.

This function point could be pointed to one of ne10_setc_vec2f_c, ne10_setc_vec2f_neon and ne10_setc_vec2f_asm.

Parameters
[out]dstPointer to the destination array
[in]cstPointer to the 2D vector to set the input values to
[in]countThe number of items in the input array

Definition at line 241 of file NE10_init_math.c.

◆ ne10_setc_vec3f

ne10_result_t(* ne10_setc_vec3f) (ne10_vec3f_t *dst, const ne10_vec3f_t *cst, ne10_uint32_t count) ( ne10_vec3f_t dst,
const ne10_vec3f_t cst,
ne10_uint32_t  count 
)
extern

Sets the components of 3D vectors in an input array to the components of a constant 3D vector and stores the results in an output array.

This function point could be pointed to one of ne10_setc_vec3f_c, ne10_setc_vec3f_neon and ne10_setc_vec3f_asm.

Parameters
[out]dstPointer to the destination array
[in]cstPointer to the 3D vector to set the input values to
[in]countThe number of items in the input array

Definition at line 242 of file NE10_init_math.c.

◆ ne10_setc_vec4f

ne10_result_t(* ne10_setc_vec4f) (ne10_vec4f_t *dst, const ne10_vec4f_t *cst, ne10_uint32_t count) ( ne10_vec4f_t dst,
const ne10_vec4f_t cst,
ne10_uint32_t  count 
)
extern

Sets the components of 4D vectors in an input array to the components of a constant 3D vector and stores the results in an output array.

This function point could be pointed to one of ne10_setc_vec4f_c, ne10_setc_vec4f_neon and ne10_setc_vec4f_asm.

Parameters
[out]dstPointer to the destination array
[in]cstPointer to the 4D vector to set the input values to
[in]countThe number of items in the input array

Definition at line 243 of file NE10_init_math.c.