MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_sqrt

Function SDL_sqrt

deps/SDL2/src/stdlib/SDL_stdlib.c:389–397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

387}
388
389double
390SDL_sqrt(double x)
391{
392#if defined(HAVE_SQRT)
393 return sqrt(x);
394#else
395 return SDL_uclibc_sqrt(x);
396#endif
397}
398
399float
400SDL_sqrtf(float x)

Callers 9

drawCircleFunction · 0.85
rotate_matrixFunction · 0.85
kaiser_and_sincFunction · 0.85
SDL_acosFunction · 0.85
SDL_sqrtfFunction · 0.85
dollarDifferenceFunction · 0.85
dollarNormalizeFunction · 0.85
SDL_GestureProcessEventFunction · 0.85
SDL_ComputeDiagonalDPIFunction · 0.85

Calls 1

sqrtFunction · 0.50

Tested by 2

drawCircleFunction · 0.68
rotate_matrixFunction · 0.68