OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libm/] [mathfp/] [sf_isinf.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 56 joel
 
2
/* @(#)z_isinff.c 1.0 98/08/13 */
3
/******************************************************************
4
 * isinff
5
 *
6
 * Input:
7
 *   x - pointer to a floating point value
8
 *
9
 * Output:
10
 *   An integer that indicates if the number is infinite.
11
 *
12
 * Description:
13
 *   This routine returns an integer that indicates if the number
14
 *   passed in is infinite (1) or is finite (0).
15
 *
16
 *****************************************************************/
17
 
18
#include "fdlibm.h"
19
#include "zmath.h"
20
 
21
int isinff (float x)
22
{
23
  __uint32_t wx;
24
  int exp;
25
 
26
  GET_FLOAT_WORD (wx, x);
27
  exp = (wx & 0x7f800000) >> 23;
28
 
29
  if ((exp == 0x7f8) && !(wx & 0xf0000))
30
    return (1);
31
  else
32
    return (0);
33
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.