URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libm/] [machine/] [spu/] [headers/] [acosf.h] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
#include "headers/acosf4.h" #include "headers/dom_chkf_negone_one.h" static __inline float _acosf(float x) { float res; vector float vx; vx = spu_splats(x); res = spu_extract(_acosf4(vx), 0); #ifndef _IEEE_LIBM /* * Domain error if not in the interval [-1, +1] */ dom_chkf_negone_one(vx); #endif return res; }
Go to most recent revision | Compare with Previous | Blame | View Log