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

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

static __inline float _log1pf(float x)
{
  return spu_extract(_log1pf4(spu_promote(x, 0)), 0);
}