#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "internals.h"
#include "specialize.h"
#include "softfloat.h"
Go to the source code of this file.
◆ f128M_lt_quiet()
Definition at line 55 of file f128M_lt_quiet.c.
56{
59 bool signA, signB;
61
67 }
68 return false;
69 }
74 if ( signA != signB ) {
75 if ( signB ) return false;
76 if ( (uiA96 | uiB96) & 0x7FFFFFFF ) return true;
79 if ( wordA | wordB ) return true;
82 if ( wordA | wordB ) return true;
85 return ((wordA | wordB) != 0);
86 }
87 if ( signA ) {
90 }
92
93}
bool f128M_isSignalingNaN(const float128_t *aPtr)
void softfloat_raiseFlags(uint_fast8_t flags)
bool softfloat_isNaNF128M(const uint32_t *)
#define signF128UI96(a96)
#define indexWord(total, n)
#define indexWordHi(total)
int_fast8_t softfloat_compare128M(const uint32_t *aPtr, const uint32_t *bPtr)