Searched refs:EXPONENT (Results 1 – 3 of 3) sorted by relevance
50 #define EXPONENT 0x7ff00000 macro52 if ((d0 & EXPONENT) != EXPONENT ) return 0; /* exponent wrong */53 if ((d0 & ~(EXPONENT|SIGN)) == 0 && d1 == 0 ) return 0; /* must have bits */
54 return ((EXPONENT(x) != MAXEXP)); in finite()66 if ((EXPONENT(x) == MAXEXP) && (HIFRACTION(x) || LOFRACTION(x))) in unordered()68 if ((EXPONENT(y) == MAXEXP) && (HIFRACTION(y) || LOFRACTION(y))) in unordered()83 exp = EXPONENT(x); in fpclass()
129 #define EXPONENT(X) (((_dval *)&(X))->fparts.exp) macro138 #define ISMAXEXP(X) ((EXPONENT(X)) == MAXEXP)