Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
s_isNaNF128M.c File Reference
#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "primitives.h"
Include dependency graph for s_isNaNF128M.c:

Go to the source code of this file.

Functions

bool softfloat_isNaNF128M (const uint32_t *aWPtr)
 

Function Documentation

◆ softfloat_isNaNF128M()

bool softfloat_isNaNF128M ( const uint32_t * aWPtr)

Definition at line 44 of file s_isNaNF128M.c.

45{
46 uint32_t uiA96;
47
48 uiA96 = aWPtr[indexWordHi( 4 )];
49 if ( (~uiA96 & 0x7FFF0000) != 0 ) return false;
50 return
51 ((uiA96 & 0x0000FFFF) != 0)
52 || ((aWPtr[indexWord( 4, 2 )] | aWPtr[indexWord( 4, 1 )]
53 | aWPtr[indexWord( 4, 0 )])
54 != 0);
55
56}
#define indexWord(total, n)
#define indexWordHi(total)
unsigned int uint32_t
Definition stdint.h:126
Here is the caller graph for this function: