Welcome to mirror list, hosted at ThFree Co, Russian Federation.

exp2.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fe22972f19985266e4b249268f0868a12f44964 (plain)
1
2
3
4
5
6
#include "headers/exp2d2.h"

static __inline double _exp2(double vx)
{
  return spu_extract(_exp2d2(spu_promote(vx, 0)), 0);
}