#include <stdbool.h>
#include <stdint.h>
#include "platform.h"
#include "internals.h"
#include "softfloat.h"
Go to the source code of this file.
◆ f128M_le()
Definition at line 54 of file f128M_le.c.
55{
58 bool signA, signB;
60
65 return false;
66 }
71 if ( signA != signB ) {
72 if ( signA ) return true;
73 if ( (uiA96 | uiB96) & 0x7FFFFFFF ) return false;
76 if ( wordA | wordB ) return false;
79 if ( wordA | wordB ) return false;
82 return ((wordA | wordB) == 0);
83 }
84 if ( signA ) {
87 }
89
90}
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)