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

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

static __inline double _powf(float x, float y)
{
  return spu_extract(_powf4(spu_promote(x, 0), spu_promote(y, 0)), 0);
}