/src/sys/arch/hppa/spmath/ |
sfsqrt.c | 61 register int guardbit = false, even_exponent; local in function:sgl_fsqrt 155 guardbit = Sgl_lowmantissa(result); 164 /* stickybit is always true, so guardbit 166 if (guardbit) {
|
dfdiv.c | 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fdiv 264 if (Dbl_iszero_sign(opnd1p1)) guardbit = true; 267 inexact = guardbit | stickybit; 284 if (guardbit && (stickybit || 358 if (guardbit && (stickybit || 373 Dbl_denormalize(opnd3p1,opnd3p2,dest_exponent,guardbit, 390 if (guardbit && (stickybit ||
|
dfmpy.c | 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fmpy 255 guardbit = (Dallp2(opnd3p2) << 24) >> 31; 256 inexact = guardbit | stickybit; 276 if (guardbit && 350 if (guardbit && (stickybit || 365 Dbl_denormalize(opnd3p1,opnd3p2,dest_exponent,guardbit, 382 if (guardbit && (stickybit ||
|
dfsqrt.c | 62 register int guardbit = false, even_exponent; local in function:dbl_fsqrt 164 guardbit = Dbl_lowmantissap2(resultp2); 173 /* stickybit is always true, so guardbit 175 if (guardbit) {
|
fcnvff.c | 146 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_to_sgl_fcnvff 194 Dbl_to_sgl_mantissa(srcp1,srcp2,dest_mantissa,inexact,guardbit, 205 guardbit,stickybit,lsb_odd); 212 dest_mantissa,inexact,guardbit,stickybit,lsb_odd, 228 if (guardbit) {
|
sfdiv.c | 59 register int inexact = false, guardbit = false, stickybit = false; local in function:sgl_fdiv 257 if (Sgl_iszero_sign(opnd1)) guardbit = true; 260 inexact = guardbit | stickybit; 277 if (guardbit && 348 if (guardbit && (stickybit || 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 240 guardbit = Sbit24(opnd3); 241 inexact = guardbit | stickybit; 261 if (guardbit && 333 if (guardbit && (stickybit || 348 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact); 362 if (guardbit && (stickybit ||
|