Home
last modified time | relevance | path

Searched refs:DBL_INFINITY_EXPONENT (Results 1 – 11 of 11) sorted by relevance

/openbsd/sys/arch/hppa/spmath/
H A Ddfcmp.c38 if( (Dbl_exponent(leftp1) == DBL_INFINITY_EXPONENT)
39 || (Dbl_exponent(rightp1) == DBL_INFINITY_EXPONENT) )
44 if( ((Dbl_exponent(leftp1) == DBL_INFINITY_EXPONENT)
48 ((Dbl_exponent(rightp1) == DBL_INFINITY_EXPONENT)
62 else if( ((Dbl_exponent(leftp1) == DBL_INFINITY_EXPONENT)
65 ((Dbl_exponent(rightp1) == DBL_INFINITY_EXPONENT)
H A Ddbl_float.h157 (Dexponent(dbl_value)==DBL_INFINITY_EXPONENT)
159 (Dexponent(dbl_value)!=DBL_INFINITY_EXPONENT)
161 (Dexponent(dbl_valueA)==DBL_INFINITY_EXPONENT && \
164 (Dexponent(dbl_valueA)==DBL_INFINITY_EXPONENT && \
167 (Dexponent(dbl_valueA)!=DBL_INFINITY_EXPONENT || \
267 Deposit_dexponent(dbl_value,DBL_INFINITY_EXPONENT)
270 (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH)))); \
274 = (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH))); \
278 (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH))); \
282 (DBL_INFINITY_EXPONENT << (32-(1+DBL_EXP_LENGTH))); \
[all …]
H A Ddfrem.c38 if ((opnd1_exponent = Dbl_exponent(opnd1p1)) == DBL_INFINITY_EXPONENT) {
85 if ((opnd2_exponent = Dbl_exponent(opnd2p1)) == DBL_INFINITY_EXPONENT) {
H A Ddfadd.c48 if ((result_exponent = Dbl_exponent(leftp1)) == DBL_INFINITY_EXPONENT)
471 if(result_exponent == DBL_INFINITY_EXPONENT)
H A Ddfsub.c47 if ((result_exponent = Dbl_exponent(leftp1)) == DBL_INFINITY_EXPONENT)
469 if(result_exponent == DBL_INFINITY_EXPONENT)
H A Ddfsqrt.c38 if ((src_exponent = Dbl_exponent(srcp1)) == DBL_INFINITY_EXPONENT) {
H A Dfcnvff.c128 if (src_exponent == DBL_INFINITY_EXPONENT) {
H A Dfrnd.c142 if ((src_exponent = Dbl_exponent(srcp1)) == DBL_INFINITY_EXPONENT) {
H A Ddfmpy.c259 if (dest_exponent >= DBL_INFINITY_EXPONENT) {
H A Ddfdiv.c267 if (dest_exponent >= DBL_INFINITY_EXPONENT) {
H A Dfloat.h319 #define DBL_INFINITY_EXPONENT (DBL_EMAX+DBL_BIAS+1) macro