From 0c6ac2f761a2a8ddcde91a1afc80eeadfe2f0bc1 Mon Sep 17 00:00:00 2001 From: Tom Schouten Date: Fri, 25 Aug 2006 22:38:42 +0000 Subject: creb: removed garbage system/ and include/ files svn path=/trunk/externals/creb/; revision=5742 --- include/dspi/DSPI.h | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 include/dspi/DSPI.h (limited to 'include/dspi/DSPI.h') diff --git a/include/dspi/DSPI.h b/include/dspi/DSPI.h deleted file mode 100644 index d9e2acf..0000000 --- a/include/dspi/DSPI.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef DSPI_h -#define DSPI_h - -#define DSPImin(x,y) (((x)<(y)) ? (x) : (y)) -#define DSPImax(x,y) (((x)>(y)) ? (x) : (y)) -#define DSPIclip(min, x, max) (DSPImin(DSPImax((min), (x)), max)) - - -// test if floating point number is denormal -#define DSPI_IS_DENORMAL(f) (((*(unsigned int *)&(f))&0x7f800000) == 0) - -// test if almost denormal, choose whichever is fastest -#define DSPI_IS_ALMOST_DENORMAL(f) (((*(unsigned int *)&(f))&0x7f800000) < 0x08000000) -//#define DSPI_IS_ALMOST_DENORMAL(f) (fabs(f) < 3.e-34) - -#endif -- cgit v1.2.1