HomeSort by: relevance | last modified time | path
    Searched refs:inexact (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/sys/arch/hppa/spmath/
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,
204 Dbl_to_sgl_mantissa(srcp1,srcp2,dest_mantissa,inexact,
208 /* compute result, determine inexact info,
212 dest_mantissa,inexact,guardbit,stickybit,lsb_odd,
219 if (inexact) {
258 if (inexact) {
267 inexact = true;
287 if (inexact) {
298 if (inexact && is_tiny) Set_underflowflag()
    [all...]
frnd.c 64 register int inexact = false; local in function:sgl_frnd
101 /* check for inexact */
103 inexact = true;
127 /* check for inexact */
129 inexact = true;
148 if (inexact) {
166 register int inexact = false; local in function:dbl_frnd
204 /* check for inexact */
206 inexact = true;
232 /* check for inexact */
    [all...]
fcnvfx.c 61 register int inexact = false; local in function:sgl_to_sgl_fcnvfx
94 /* check for inexact */
96 inexact = true;
119 /* check for inexact */
121 inexact = true;
140 if (inexact) {
157 register int inexact = false; local in function:sgl_to_dbl_fcnvfx
200 /* check for inexact */
202 inexact = true;
232 /* check for inexact */
278 register int inexact = false; local in function:dbl_to_sgl_fcnvfx
397 register int inexact = false; local in function:dbl_to_dbl_fcnvfx
    [all...]
dfdiv.c 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fdiv
267 inexact = guardbit | stickybit;
272 if (inexact && (dest_exponent > 0 || Is_underflowtrap_enabled())) {
304 if (inexact) {
315 inexact = true;
328 if (inexact) {
339 if (dest_exponent == 0 && inexact) {
372 stickybit = inexact;
374 stickybit,inexact);
377 if (inexact) {
    [all...]
dfmpy.c 61 register int inexact = false, guardbit = false, stickybit = false; local in function:dbl_fmpy
252 * check for guard, sticky and inexact bits
256 inexact = guardbit | stickybit;
264 if (inexact && (dest_exponent>0 || Is_underflowtrap_enabled())) {
296 if (inexact) {
304 inexact = true;
320 if (inexact) {
331 if (dest_exponent == 0 && inexact) {
364 stickybit = inexact;
366 stickybit,inexact);
    [all...]
sfdiv.c 59 register int inexact = false, guardbit = false, stickybit = false; local in function:sgl_fdiv
260 inexact = guardbit | stickybit;
265 if (inexact && (dest_exponent > 0 || Is_underflowtrap_enabled())) {
296 if (inexact) {
306 inexact = true;
319 if (inexact) {
329 if (dest_exponent == 0 && inexact) {
362 stickybit = inexact;
363 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact);
366 if (inexact) {
    [all...]
sfmpy.c 59 register int inexact = false, guardbit = false, stickybit = false; local in function:sgl_fmpy
237 * check for guard, sticky and inexact bits
241 inexact = guardbit | stickybit;
249 if (inexact && (dest_exponent>0 || Is_underflowtrap_enabled())) {
281 if (inexact) {
288 inexact = true;
304 if (inexact) {
314 if (dest_exponent == 0 && inexact) {
347 stickybit = inexact;
348 Sgl_denormalize(opnd3,dest_exponent,guardbit,stickybit,inexact);
    [all...]
cnv_float.h 116 #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \
120 inexact = guard | sticky; \
123 #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \
128 inexact = Dallp2(srcB) << 3; \
129 guard = inexact >> 31; \
130 sticky = inexact << 1; \
133 if (inexact) { \
163 sticky = inexact; \
164 inexact |= guard; \
171 inexact = Dallp2(srcB) << (2 + exp);
    [all...]
dfadd.c 62 register int inexact = false; local in function:dbl_fadd
212 /* inexact = false */
264 /* inexact = false */
428 /* inexact = false */
432 * Since we cannot get an inexact denormalized result,
463 inexact = true;
506 if (inexact) {
516 inexact = true;
523 if(inexact) {
dfsub.c 63 register int inexact = false, underflowtrap; local in function:dbl_fsub
215 /* inexact = false */
267 /* inexact = false */
427 /* inexact = false */
431 * Since we cannot get an inexact denormalized result,
462 inexact = true;
505 if (inexact) {
515 inexact = true;
522 if(inexact) {
sfadd.c 63 register int inexact = false; local in function:sgl_fadd
423 /* inexact = false; */
427 * Since we cannot get an inexact denormalized result,
458 inexact = true;
501 if (inexact) {
511 inexact = true;
517 if(inexact) {
sfsub.c 62 register int inexact = false, underflowtrap; local in function:sgl_fsub
213 /* inexact = false */
263 /* inexact = false */
426 /* inexact = false */
430 * Since we cannot get an inexact denormalized result,
461 inexact = true;
504 if (inexact) {
514 inexact = true;
520 if(inexact) {
sgl_float.h 323 #define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
328 inexact = (guard) | (sticky); \
334 inexact = sticky; \
dbl_float.h 375 the end to properly set inexact. */ \
525 #define Dbl_denormalize(opndp1,opndp2,exponent,guard,sticky,inexact) \
547 inexact = guard | sticky; \
553 inexact = sticky; \
  /src/tests/lib/libm/
Makefile 8 COPTS+= -mfloat-ieee -mieee-with-inexact -mfp-trap-mode=sui -mtrap-precision=i
  /src/lib/libc/gdtoa/
dtoa.c 135 int inexact, oldinexact; local in function:dtoa
192 inexact = 1;
468 inexact = 0;
687 inexact = 0;
700 inexact = 0;
770 inexact = 0;
824 if (inexact) {
strtod.c 112 int inexact, oldinexact; local in function:_int_strtod_l
428 inexact = 1;
693 inexact = 0;
797 inexact = 0;
804 inexact = 0;
1067 if (inexact) {
1094 if (inexact && !(word0(&rv) & Exp_mask)) {
  /src/sys/arch/m68k/fpsp/
l_fpsp.h 193 inex2_bit equ 1 inexact result 2
194 inex1_bit equ 0 inexact result 1
200 ainex_bit equ 3 accrued inexact
222 ainex_mask equ $00000008 accrued inexact
  /src/sys/arch/m68k/060sp/dist/
fskeletn.s 172 # This is the exit point for the 060FPSP when an enabled inexact exception
174 # for enabled inexact exceptions. The exception stack frame is an inexact
fpsp.s 459 set inex2_bit, 1 # inexact result 2
460 set inex1_bit, 0 # inexact result 1
462 set aiop_bit, 7 # accrued inexact operation bit
466 set ainex_bit, 3 # accrued inexact bit
494 set ainex_mask, 0x00000008 # accrued inexact
544 set INEX_VEC, 0xc4 # inexact vector offset
605 # _real_inex() - "callout" for Inexact exception enabled code #
636 # but the inexact exception was enabled, this handler must exit #
638 # was inexact. #
732 # and inexact. and, the inexact is such that overflow occurred and was disable
    [all...]
pfpsp.s 459 set inex2_bit, 1 # inexact result 2
460 set inex1_bit, 0 # inexact result 1
462 set aiop_bit, 7 # accrued inexact operation bit
466 set ainex_bit, 3 # accrued inexact bit
494 set ainex_mask, 0x00000008 # accrued inexact
544 set INEX_VEC, 0xc4 # inexact vector offset
605 # _real_inex() - "callout" for Inexact exception enabled code #
636 # but the inexact exception was enabled, this handler must exit #
638 # was inexact. #
732 # and inexact. and, the inexact is such that overflow occurred and was disable
    [all...]
fplsp.s 439 set inex2_bit, 1 # inexact result 2
440 set inex1_bit, 0 # inexact result 1
442 set aiop_bit, 7 # accrued inexact operation bit
446 set ainex_bit, 3 # accrued inexact bit
474 set ainex_mask, 0x00000008 # accrued inexact
524 set INEX_VEC, 0xc4 # inexact vector offset
6673 #Returns PI and inexact exception
6716 # Notes: This will always generate one exception -- inexact. #
6835 # or underflow. The inexact exception is not generated in #
6836 # 6.4. Although one can argue that the inexact flag
    [all...]
  /src/sys/arch/atari/atari/
vectors.s 101 ASVECTOR(inex) | 49: FPCP inexact result
109 VECTOR(fpfault) | 49: FPCP inexact result
  /src/sys/arch/mips/mips/
fp.S 1927 move t2, zero # result is an inexact zero
1951 move t2, zero # result is an inexact zero
2038 * Handle inexact exception.
2055 * or generate an inexact trap (if enabled),
2063 bne v0, zero, inexact_w # inexact traps enabled?
2068 * or generate an inexact trap (if enabled),
2076 bne v0, zero, inexact_w # inexact traps enabled?
2304 bne t9, zero, inexact_s # is result inexact?
2310 * Handle inexact exception.
2331 * or generate an inexact trap (if enabled)
    [all...]
  /src/lib/libm/
Makefile 95 COPTS+= -mfloat-ieee -mieee-with-inexact -mfp-trap-mode=sui -mtrap-precision=i

Completed in 30 milliseconds

1 2