Home
last modified time | relevance | path

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

/openbsd/src/sys/arch/hppa/spmath/
Dfrnd.c60 if ((src_exponent -= SGL_BIAS) >= SGL_P - 1) {
70 Sgl_rightshift(result,(SGL_P-1) - (src_exponent));
89 Sgl_leftshift(result,(SGL_P-1) - (src_exponent));
Dsfdiv.c198 for (count=1;count<=SGL_P && Sgl_all(opnd1);count++) {
207 if (count <= SGL_P) {
210 Sgl_leftshift(opnd3,SGL_P-count);
Dcnv_float.h49 ((exponent < (SGL_P - 1)) ? \
79 (exponent < (SGL_P - 2) ? \
156 if (exp > (1 - SGL_P)) { \
167 if (exp == (1 - SGL_P)) { \
Dsfsqrt.c105 newbit = 1 << SGL_P;
Dsfrem.c254 if (dest_exponent >= (1 - SGL_P)) {
Dsfmpy.c185 for (count=1;count<SGL_P;count+=4) {
Dsgl_float.h299 if (exponent >= (1 - SGL_P)) { \
Dfloat.h313 #define SGL_P 24 macro