SDL 2.0
|
Go to the source code of this file.
Functions | |
double | SDL_atan (double x) |
float | SDL_atanf (float x) |
double | SDL_atan2 (double x, double y) |
float | SDL_atan2f (float x, float y) |
double | SDL_acos (double val) |
float | SDL_acosf (float val) |
double | SDL_asin (double val) |
float | SDL_asinf (float val) |
double | SDL_ceil (double x) |
float | SDL_ceilf (float x) |
double | SDL_copysign (double x, double y) |
float | SDL_copysignf (float x, float y) |
double | SDL_cos (double x) |
float | SDL_cosf (float x) |
double | SDL_exp (double x) |
float | SDL_expf (float x) |
double | SDL_fabs (double x) |
float | SDL_fabsf (float x) |
double | SDL_floor (double x) |
float | SDL_floorf (float x) |
double | SDL_fmod (double x, double y) |
float | SDL_fmodf (float x, float y) |
double | SDL_log (double x) |
float | SDL_logf (float x) |
double | SDL_log10 (double x) |
float | SDL_log10f (float x) |
double | SDL_pow (double x, double y) |
float | SDL_powf (float x, float y) |
double | SDL_scalbn (double x, int n) |
float | SDL_scalbnf (float 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 429 of file SDL_stdlib.c.
double SDL_acos | ( | double | val | ) |
Definition at line 75 of file SDL_stdlib.c.
References SDL_atan(), and SDL_sqrt().
Referenced by SDL_acosf(), and SDL_asin().
float SDL_acosf | ( | float | val | ) |
Definition at line 95 of file SDL_stdlib.c.
References SDL_acos().
double SDL_asin | ( | double | val | ) |
Definition at line 105 of file SDL_stdlib.c.
References SDL_acos().
Referenced by SDL_asinf().
float SDL_asinf | ( | float | val | ) |
Definition at line 121 of file SDL_stdlib.c.
References SDL_asin().
double SDL_atan | ( | double | x | ) |
Definition at line 35 of file SDL_stdlib.c.
References atan(), and SDL_uclibc_atan().
Referenced by SDL_acos(), and SDL_atanf().
double SDL_atan2 | ( | double | x, |
double | y | ||
) |
Definition at line 55 of file SDL_stdlib.c.
References SDL_uclibc_atan2().
Referenced by SDL_atan2f().
float SDL_atan2f | ( | float | x, |
float | y | ||
) |
Definition at line 65 of file SDL_stdlib.c.
References SDL_atan2().
float SDL_atanf | ( | float | x | ) |
Definition at line 45 of file SDL_stdlib.c.
References SDL_atan().
double SDL_ceil | ( | double | x | ) |
Definition at line 131 of file SDL_stdlib.c.
References SDL_floor().
Referenced by SDL_ceilf().
float SDL_ceilf | ( | float | x | ) |
Definition at line 146 of file SDL_stdlib.c.
References SDL_ceil().
double SDL_copysign | ( | double | x, |
double | y | ||
) |
Definition at line 156 of file SDL_stdlib.c.
References copysign(), and SDL_uclibc_copysign().
Referenced by SDL_copysignf().
float SDL_copysignf | ( | float | x, |
float | y | ||
) |
Definition at line 174 of file SDL_stdlib.c.
References SDL_copysign().
double SDL_cos | ( | double | x | ) |
Definition at line 184 of file SDL_stdlib.c.
References cos(), and SDL_uclibc_cos().
Referenced by SDL_cosf().
float SDL_cosf | ( | float | x | ) |
Definition at line 194 of file SDL_stdlib.c.
References SDL_cos().
double SDL_exp | ( | double | x | ) |
Definition at line 204 of file SDL_stdlib.c.
References SDL_uclibc_exp().
Referenced by SDL_expf().
float SDL_expf | ( | float | x | ) |
Definition at line 214 of file SDL_stdlib.c.
References SDL_exp().
double SDL_fabs | ( | double | x | ) |
Definition at line 224 of file SDL_stdlib.c.
References fabs(), and SDL_uclibc_fabs().
Referenced by SDL_fabsf().
float SDL_fabsf | ( | float | x | ) |
Definition at line 234 of file SDL_stdlib.c.
References SDL_fabs().
double SDL_floor | ( | double | x | ) |
Definition at line 244 of file SDL_stdlib.c.
References floor(), and SDL_uclibc_floor().
Referenced by SDL_ceil(), and SDL_floorf().
float SDL_floorf | ( | float | x | ) |
Definition at line 254 of file SDL_stdlib.c.
References SDL_floor().
double SDL_fmod | ( | double | x, |
double | y | ||
) |
Definition at line 264 of file SDL_stdlib.c.
References SDL_uclibc_fmod().
Referenced by SDL_fmodf().
float SDL_fmodf | ( | float | x, |
float | y | ||
) |
Definition at line 274 of file SDL_stdlib.c.
References SDL_fmod().
int SDL_isdigit | ( | int | x | ) |
Definition at line 444 of file SDL_stdlib.c.
int SDL_isspace | ( | int | x | ) |
double SDL_log | ( | double | x | ) |
Definition at line 284 of file SDL_stdlib.c.
References SDL_uclibc_log().
Referenced by SDL_logf().
double SDL_log10 | ( | double | x | ) |
Definition at line 304 of file SDL_stdlib.c.
References SDL_uclibc_log10().
Referenced by SDL_log10f().
float SDL_log10f | ( | float | x | ) |
Definition at line 314 of file SDL_stdlib.c.
References SDL_log10().
float SDL_logf | ( | float | x | ) |
Definition at line 294 of file SDL_stdlib.c.
References SDL_log().
double SDL_pow | ( | double | x, |
double | y | ||
) |
Definition at line 324 of file SDL_stdlib.c.
References SDL_uclibc_pow().
Referenced by SDL_powf().
float SDL_powf | ( | float | x, |
float | y | ||
) |
Definition at line 334 of file SDL_stdlib.c.
References SDL_pow().
double SDL_scalbn | ( | double | x, |
int | n | ||
) |
Definition at line 344 of file SDL_stdlib.c.
References scalbn, and SDL_uclibc_scalbn().
Referenced by SDL_scalbnf().
float SDL_scalbnf | ( | float | x, |
int | n | ||
) |
Definition at line 360 of file SDL_stdlib.c.
References SDL_scalbn().
double SDL_sin | ( | double | x | ) |
Definition at line 370 of file SDL_stdlib.c.
References SDL_uclibc_sin(), and sin().
Referenced by SDL_sinf().
float SDL_sinf | ( | float | x | ) |
Definition at line 380 of file SDL_stdlib.c.
References SDL_sin().
double SDL_sqrt | ( | double | x | ) |
Definition at line 390 of file SDL_stdlib.c.
References SDL_uclibc_sqrt().
Referenced by SDL_acos(), and SDL_sqrtf().
float SDL_sqrtf | ( | float | x | ) |
Definition at line 400 of file SDL_stdlib.c.
References SDL_sqrt().
double SDL_tan | ( | double | x | ) |
Definition at line 410 of file SDL_stdlib.c.
References SDL_uclibc_tan(), and tan().
Referenced by SDL_tanf().
float SDL_tanf | ( | float | x | ) |
Definition at line 420 of file SDL_stdlib.c.
References SDL_tan().
int SDL_tolower | ( | int | x | ) |