qm-dsp 1.8
nan-inf.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define ISNAN(x)
#define ISINF(x)

Functions

static int ISNANf (float x)
static int ISNANd (double x)
static int ISINFf (float x)
static int ISINFd (double x)

Macro Definition Documentation

◆ ISNAN

#define ISNAN ( x)
Value:
(sizeof(x) == sizeof(double) ? ISNANd(x) : ISNANf(x))
static int ISNANd(double x)
Definition nan-inf.h:7
static int ISNANf(float x)
Definition nan-inf.h:6

Definition at line 5 of file nan-inf.h.

◆ ISINF

#define ISINF ( x)
Value:
(sizeof(x) == sizeof(double) ? ISINFd(x) : ISINFf(x))
static int ISINFf(float x)
Definition nan-inf.h:10
static int ISINFd(double x)
Definition nan-inf.h:11

Definition at line 9 of file nan-inf.h.

Function Documentation

◆ ISNANf()

int ISNANf ( float x)
inlinestatic

Definition at line 6 of file nan-inf.h.

Referenced by ISINFf().

◆ ISNANd()

int ISNANd ( double x)
inlinestatic

Definition at line 7 of file nan-inf.h.

Referenced by ISINFd().

◆ ISINFf()

int ISINFf ( float x)
inlinestatic

Definition at line 10 of file nan-inf.h.

References ISNANf().

◆ ISINFd()

int ISINFd ( double x)
inlinestatic

Definition at line 11 of file nan-inf.h.

References ISNANd().