HomeSort by: relevance | last modified time | path
    Searched refs:Sgl_exponent (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/arch/hppa/spmath/
sfcmp.c 66 if( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
67 || (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) )
72 if( ( (Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
76 ( (Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
90 else if( ((Sgl_exponent(left) == SGL_INFINITY_EXPONENT)
93 ((Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
sfrem.c 66 if ((opnd1_exponent = Sgl_exponent(opnd1)) == SGL_INFINITY_EXPONENT) {
113 if ((opnd2_exponent = Sgl_exponent(opnd2)) == SGL_INFINITY_EXPONENT) {
sgl_float.h 56 #define Sgl_exponent(object) Sexponent(object)
131 (Sgl_exponent(sgl_value)==SGL_INFINITY_EXPONENT)
133 (Sgl_exponent(sgl_value)!=SGL_INFINITY_EXPONENT)
135 (Sgl_exponent(sgl_value)==SGL_INFINITY_EXPONENT && \
138 (Sgl_exponent(sgl_value)==SGL_INFINITY_EXPONENT && \
141 (Sgl_exponent(sgl_value)!=SGL_INFINITY_EXPONENT || \
fcnvfxt.c 65 src_exponent = Sgl_exponent(src) - SGL_BIAS;
126 src_exponent = Sgl_exponent(src) - SGL_BIAS;
sfsqrt.c 67 if ((src_exponent = Sgl_exponent(src)) == SGL_INFINITY_EXPONENT) {
sfadd.c 77 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT)
176 result_exponent = Sgl_exponent(left);
180 if((right_exponent = Sgl_exponent(right)) == 0)
sfsub.c 75 if ((result_exponent = Sgl_exponent(left)) == SGL_INFINITY_EXPONENT)
175 result_exponent = Sgl_exponent(left);
180 if((right_exponent = Sgl_exponent(right)) == 0)
sfdiv.c 177 dest_exponent = Sgl_exponent(opnd1) - Sgl_exponent(opnd2) + SGL_BIAS;
sfmpy.c 168 dest_exponent = Sgl_exponent(opnd1) + Sgl_exponent(opnd2) - SGL_BIAS;
fcnvff.c 64 src_exponent = Sgl_exponent(src);
frnd.c 70 if ((src_exponent = Sgl_exponent(src)) == SGL_INFINITY_EXPONENT) {
fcnvfx.c 64 src_exponent = Sgl_exponent(src) - SGL_BIAS;
160 src_exponent = Sgl_exponent(src) - SGL_BIAS;

Completed in 18 milliseconds