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

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

static __inline float _sqrtf(float in)
{
  return spu_extract(_sqrtf4(spu_promote(in, 0)), 0);
}