|
iLLD_TC27xD
1.0
|
|
Macros | |
| #define | __sqrf(X) ((X) * (X)) |
| #define | __sqrtf(X) sqrtf(X) |
| #define | __checkrange(X, Min, Max) (((X) >= (Min)) && ((X) <= (Max))) |
| #define | __roundf(X) ((((X) - (sint32)(X)) > 0.5) ? (1 + (sint32)(X)) : ((sint32)(X))) |
| #define | __absf(X) ( ((X) < 0.0) ? -(X) : (X) ) |
| #define | __minf(X, Y) ( ((X) < (Y)) ? (X) : (Y) ) |
| #define | __maxf(X, Y) ( ((X) > (Y)) ? (X) : (Y) ) |
| #define | __saturatef(X, Min, Max) ( __minf(__maxf(X, Min), Max) ) |
| #define | __checkrangef(X, Min, Max) (((X) >= (Min)) && ((X) <= (Max))) |
| #define | __abs_stdreal(X) ( ((X) > 0.0) ? (X) : -(X) ) |
| #define | __min_stdreal(X, Y) ( ((X) < (Y)) ? (X) : (Y) ) |
| #define | __max_stdreal(X, Y) ( ((X) > (Y)) ? (X) : (Y) ) |
| #define | __saturate_stdreal(X, Min, Max) ( __min_stdreal(__max_stdreal(X, Min), Max) ) |
| #define | __neqf(X, Y) ( ((X) > (Y)) || ((X) < (Y)) ) |
| #define | __leqf(X, Y) ( !((X) > (Y)) ) |
| #define | __geqf(X, Y) ( !((X) < (Y)) ) |
| #define __abs_stdreal | ( | X) | ( ((X) > 0.0) ? (X) : -(X) ) |
Definition at line 163 of file IfxCpu_IntrinsicsGnuc.h.
| #define __absf | ( | X) | ( ((X) < 0.0) ? -(X) : (X) ) |
Definition at line 157 of file IfxCpu_IntrinsicsGnuc.h.
| #define __checkrange | ( | X, | |
| Min, | |||
| Max | |||
| ) | (((X) >= (Min)) && ((X) <= (Max))) |
Definition at line 154 of file IfxCpu_IntrinsicsGnuc.h.
| #define __checkrangef | ( | X, | |
| Min, | |||
| Max | |||
| ) | (((X) >= (Min)) && ((X) <= (Max))) |
Definition at line 161 of file IfxCpu_IntrinsicsGnuc.h.
| #define __geqf | ( | X, | |
| Y | |||
| ) | ( !((X) < (Y)) ) |
X >= Y
Definition at line 170 of file IfxCpu_IntrinsicsGnuc.h.
| #define __leqf | ( | X, | |
| Y | |||
| ) | ( !((X) > (Y)) ) |
X <= Y
Definition at line 169 of file IfxCpu_IntrinsicsGnuc.h.
| #define __max_stdreal | ( | X, | |
| Y | |||
| ) | ( ((X) > (Y)) ? (X) : (Y) ) |
Definition at line 165 of file IfxCpu_IntrinsicsGnuc.h.
| #define __maxf | ( | X, | |
| Y | |||
| ) | ( ((X) > (Y)) ? (X) : (Y) ) |
Definition at line 159 of file IfxCpu_IntrinsicsGnuc.h.
| #define __min_stdreal | ( | X, | |
| Y | |||
| ) | ( ((X) < (Y)) ? (X) : (Y) ) |
Definition at line 164 of file IfxCpu_IntrinsicsGnuc.h.
| #define __minf | ( | X, | |
| Y | |||
| ) | ( ((X) < (Y)) ? (X) : (Y) ) |
Definition at line 158 of file IfxCpu_IntrinsicsGnuc.h.
| #define __neqf | ( | X, | |
| Y | |||
| ) | ( ((X) > (Y)) || ((X) < (Y)) ) |
X != Y
Definition at line 168 of file IfxCpu_IntrinsicsGnuc.h.
Definition at line 156 of file IfxCpu_IntrinsicsGnuc.h.
| #define __saturate_stdreal | ( | X, | |
| Min, | |||
| Max | |||
| ) | ( __min_stdreal(__max_stdreal(X, Min), Max) ) |
Definition at line 166 of file IfxCpu_IntrinsicsGnuc.h.
Definition at line 160 of file IfxCpu_IntrinsicsGnuc.h.
| #define __sqrf | ( | X) | ((X) * (X)) |
Definition at line 152 of file IfxCpu_IntrinsicsGnuc.h.
| #define __sqrtf | ( | X) | sqrtf(X) |
Definition at line 153 of file IfxCpu_IntrinsicsGnuc.h.