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

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

static __inline double _pow(double x, double y)
{
  return spu_extract(_powd2(spu_promote(x, 0), spu_promote(y, 0)), 0);
}