SDL
2.0
|
Go to the source code of this file.
Functions | |
double | SDL_atan (double x) |
double | SDL_atan2 (double x, double y) |
double | SDL_acos (double val) |
double | SDL_asin (double val) |
double | SDL_ceil (double x) |
double | SDL_copysign (double x, double y) |
double | SDL_cos (double x) |
float | SDL_cosf (float x) |
double | SDL_fabs (double x) |
double | SDL_floor (double x) |
double | SDL_log (double x) |
double | SDL_pow (double x, double y) |
double | SDL_scalbn (double x, int n) |
double | SDL_sin (double x) |
float | SDL_sinf (float x) |
double | SDL_sqrt (double x) |
float | SDL_sqrtf (float x) |
double | SDL_tan (double x) |
float | SDL_tanf (float x) |
int | SDL_abs (int x) |
int | SDL_isdigit (int x) |
int | SDL_isspace (int x) |
int | SDL_toupper (int x) |
int | SDL_tolower (int x) |
int SDL_abs | ( | int | x | ) |
Definition at line 259 of file SDL_stdlib.c.
double SDL_acos | ( | double | val | ) |
Definition at line 55 of file SDL_stdlib.c.
References SDL_atan(), and SDL_sqrt().
Referenced by SDL_asin().
double SDL_asin | ( | double | val | ) |
double SDL_atan | ( | double | x | ) |
Definition at line 35 of file SDL_stdlib.c.
References atan(), and SDL_uclibc_atan().
Referenced by SDL_acos().
double SDL_atan2 | ( | double | x, |
double | y | ||
) |
Definition at line 45 of file SDL_stdlib.c.
References SDL_uclibc_atan2().
double SDL_ceil | ( | double | x | ) |
double SDL_copysign | ( | double | x, |
double | y | ||
) |
Definition at line 106 of file SDL_stdlib.c.
References copysign, and SDL_uclibc_copysign().
double SDL_cos | ( | double | x | ) |
Definition at line 124 of file SDL_stdlib.c.
References cos, and SDL_uclibc_cos().
Referenced by SDL_cosf().
float SDL_cosf | ( | float | x | ) |
double SDL_fabs | ( | double | x | ) |
Definition at line 144 of file SDL_stdlib.c.
References fabs, and SDL_uclibc_fabs().
double SDL_floor | ( | double | x | ) |
Definition at line 154 of file SDL_stdlib.c.
References floor, and SDL_uclibc_floor().
Referenced by SDL_ceil().
int SDL_isdigit | ( | int | x | ) |
Definition at line 274 of file SDL_stdlib.c.
int SDL_isspace | ( | int | x | ) |
Definition at line 275 of file SDL_stdlib.c.
double SDL_log | ( | double | x | ) |
Definition at line 164 of file SDL_stdlib.c.
References SDL_uclibc_log().
double SDL_pow | ( | double | x, |
double | y | ||
) |
Definition at line 174 of file SDL_stdlib.c.
References SDL_uclibc_pow().
double SDL_scalbn | ( | double | x, |
int | n | ||
) |
Definition at line 184 of file SDL_stdlib.c.
References scalbn, and SDL_uclibc_scalbn().
double SDL_sin | ( | double | x | ) |
Definition at line 200 of file SDL_stdlib.c.
References SDL_uclibc_sin(), and sin.
Referenced by SDL_sinf().
float SDL_sinf | ( | float | x | ) |
double SDL_sqrt | ( | double | x | ) |
Definition at line 220 of file SDL_stdlib.c.
References SDL_uclibc_sqrt().
Referenced by SDL_acos(), and SDL_sqrtf().
float SDL_sqrtf | ( | float | x | ) |
double SDL_tan | ( | double | x | ) |
Definition at line 240 of file SDL_stdlib.c.
References SDL_uclibc_tan(), and tan().
Referenced by SDL_tanf().
float SDL_tanf | ( | float | x | ) |
int SDL_tolower | ( | int | x | ) |
Definition at line 277 of file SDL_stdlib.c.
int SDL_toupper | ( | int | x | ) |
Definition at line 276 of file SDL_stdlib.c.