Fixed Point Arithmetic
0
Fixed-point math library.
|
Go to the source code of this file.
Macros | |
#define | MAKE_VEC_VEC_F3(name, typeR, typeA, typeB, f) |
Macro to create functions with element by element operations between vectors. More... | |
#define | MAKE_VEC_VEC_F(name, type, f) MAKE_VEC_VEC_F3(name, type, type, type, f) |
Macro to create functions with element by element operations between vectors. More... | |
#define | MAKE_VEC_SCALAR_F2(name, typeR, typeA, typeB, f) |
Macro to create functions with function-operations between vectors and scalars. More... | |
#define | MAKE_VEC_SCALAR_F(name, typeA, typeB, f) MAKE_VEC_SCALAR_F2(name, typeA, typeA, typeB, f) |
Macro to create functions with function-operations between vectors and scalars. More... | |
#define | MAKE_VEC_ELEM_F(name, typeR, typeA, f) |
Macro to make a function that applies a scalar function to all elements of a vector. More... | |
#define | _FXP_INLINE_KW inline |
#define | _FXP_INLINE_PROTO_KW extern inline |
#define | FXP_DECLARATION FXP_DECLARATION_C99_HEADER |
Vector operations.
Definition in file vector.h.
#define FXP_DECLARATION FXP_DECLARATION_C99_HEADER |