/src/sys/arch/hppa/spmath/ |
dfdiv.c | 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fdiv 265 stickybit = Dbl_allp1(opnd1p1) || Dbl_allp2(opnd1p2); 267 inexact = guardbit | stickybit; 284 if (guardbit && (stickybit || 358 if (guardbit && (stickybit || 372 stickybit = inexact; 374 stickybit,inexact); 390 if (guardbit && (stickybit ||
|
dfmpy.c | 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fmpy 219 stickybit |= Dlow4p2(opnd3p2); 254 stickybit |= Dallp2(opnd3p2) << 25; 256 inexact = guardbit | stickybit; 277 (stickybit || Dbl_isone_lowmantissap2(opnd3p2))) 350 if (guardbit && (stickybit || 364 stickybit = inexact; 366 stickybit,inexact); 382 if (guardbit && (stickybit ||
|
fcnvff.c | 146 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_to_sgl_fcnvff 195 stickybit,lsb_odd); 205 guardbit,stickybit,lsb_odd); 212 dest_mantissa,inexact,guardbit,stickybit,lsb_odd, 229 if (stickybit || lsb_odd) dest_mantissa++;
|
sfdiv.c | 59 register int inexact = false, guardbit = false, stickybit = false; local in function:sgl_fdiv 258 stickybit = Sgl_all(opnd1); 260 inexact = guardbit | stickybit; 278 (stickybit || Sgl_isone_lowmantissa(opnd3))) 348 if (guardbit && (stickybit || 362 stickybit = inexact; 363 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact); 379 if (guardbit && (stickybit ||
|
sfmpy.c | 59 register int inexact = false, guardbit = false, stickybit = false; local in function:sgl_fmpy 215 stickybit |= Slow4(opnd3); 239 stickybit |= Sgl_all(opnd3) << (SGL_BITLENGTH - SGL_EXP_LENGTH + 1); 241 inexact = guardbit | stickybit; 262 (stickybit || Sgl_isone_lowmantissa(opnd3))) 333 if (guardbit && (stickybit || 347 stickybit = inexact; 348 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact); 362 if (guardbit && (stickybit ||
|