Home
last modified time | relevance | path

Searched defs:_AL_SINCOS (Results 1 – 1 of 1) sorted by relevance

/dports/devel/allegro/allegro-4.4.3.1/include/allegro/internal/
H A Dalconfig.h135 #define _AL_SINCOS(x, s, c) __asm__ ("fsincos" : "=t" (c), "=u" (s) : "0" (x)) macro
142 #define _AL_SINCOS(x, s, c) __asm__ ("fsincos" : "=t" (c), "=u" (s) : "0" (x)) macro
193 #define _AL_SINCOS(x, s, c) do { (c) = cos(x); (s) = sin(x); } while (0) macro