Home
last modified time | relevance | path

Searched refs:EXPONENT (Results 1 – 3 of 3) sorted by relevance

/titanic_50/usr/src/lib/libbc/libc/gen/common/sparc/
H A Disinf.c50 #define EXPONENT 0x7ff00000 macro
52 if ((d0 & EXPONENT) != EXPONENT ) return 0; /* exponent wrong */
53 if ((d0 & ~(EXPONENT|SIGN)) == 0 && d1 == 0 ) return 0; /* must have bits */
/titanic_50/usr/src/lib/libc/port/fp/
H A Dfinite.c54 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()
H A Dfpparts.h129 #define EXPONENT(X) (((_dval *)&(X))->fparts.exp) macro
138 #define ISMAXEXP(X) ((EXPONENT(X)) == MAXEXP)