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

Go to the source code of this file.

Functions

bool f64_eq_signaling (float64_t a, float64_t b)
 

Function Documentation

◆ f64_eq_signaling()

bool f64_eq_signaling ( float64_t a,
float64_t b )

Definition at line 43 of file f64_eq_signaling.c.

44{
45 union ui64_f64 uA;
46 uint_fast64_t uiA;
47 union ui64_f64 uB;
48 uint_fast64_t uiB;
49
50 uA.f = a;
51 uiA = uA.ui;
52 uB.f = b;
53 uiB = uB.ui;
54 if ( isNaNF64UI( uiA ) || isNaNF64UI( uiB ) ) {
56 return false;
57 }
58 return (uiA == uiB) || ! ((uiA | uiB) & UINT64_C( 0x7FFFFFFFFFFFFFFF ));
59
60}
const GenericPointer< typename T::ValueType > T2 T::AllocatorType & a
Definition pointer.h:1181
void softfloat_raiseFlags(uint_fast8_t flags)
#define isNaNF64UI(a)
Definition internals.h:130
@ softfloat_flag_invalid
Definition softfloat.h:89
uint64_t uint_fast64_t
Definition stdint.h:157
#define UINT64_C(val)
Definition stdint.h:284
float64_t f
Definition internals.h:47
Here is the call graph for this function: