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

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

static __inline double _log2(double vx)
{
  return spu_extract(_log2d2(spu_promote(vx, 0)), 0);
}