Home
last modified time | relevance | path

Searched refs:SGL_P (Results 1 – 8 of 8) sorted by relevance

/netbsd/src/sys/arch/hppa/spmath/
Dfrnd.c90 if ((src_exponent -= SGL_BIAS) >= SGL_P - 1) { in sgl_frnd()
100 Sgl_rightshift(result,(SGL_P-1) - (src_exponent)); in sgl_frnd()
119 Sgl_leftshift(result,(SGL_P-1) - (src_exponent)); in sgl_frnd()
Dsfdiv.c227 for (count=1;count<=SGL_P && Sgl_all(opnd1);count++) { in sgl_fdiv()
236 if (count <= SGL_P) { in sgl_fdiv()
239 Sgl_leftshift(opnd3,SGL_P-count); in sgl_fdiv()
Dcnv_float.h75 ((exponent < (SGL_P - 1)) ? \
105 (exponent < (SGL_P - 2) ? \
182 if (exp > (1 - SGL_P)) { \
193 if (exp == (1 - SGL_P)) { \
Dsfsqrt.c135 newbit = 1 << SGL_P; in sgl_fsqrt()
Dsfrem.c283 if (dest_exponent >= (1 - SGL_P)) { in sgl_frem()
Dsfmpy.c214 for (count=1;count<SGL_P;count+=4) { in sgl_fmpy()
Dsgl_float.h325 if (exponent >= (1 - SGL_P)) { \
Dfloat.h342 #define SGL_P 24 macro