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

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
floatuntisf.c 35 if (sd > FLT_MANT_DIG)
41 * P = bit FLT_MANT_DIG-1 bits to the right of 1
42 * Q = bit FLT_MANT_DIG bits to the right of 1
47 case FLT_MANT_DIG + 1:
50 case FLT_MANT_DIG + 2:
53 a = (a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
60 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
61 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
floatdisf.c 35 if (sd > FLT_MANT_DIG)
41 * P = bit FLT_MANT_DIG-1 bits to the right of 1
42 * Q = bit FLT_MANT_DIG bits to the right of 1
47 case FLT_MANT_DIG + 1:
50 case FLT_MANT_DIG + 2:
53 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
60 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
61 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
floattisf.c 37 if (sd > FLT_MANT_DIG)
43 * P = bit FLT_MANT_DIG-1 bits to the right of 1
44 * Q = bit FLT_MANT_DIG bits to the right of 1
49 case FLT_MANT_DIG + 1:
52 case FLT_MANT_DIG + 2:
55 a = ((tu_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((tu_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
62 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
63 if (a & ((tu_int)1 << FLT_MANT_DIG))
    [all...]
floatundisf.c 33 if (sd > FLT_MANT_DIG)
39 * P = bit FLT_MANT_DIG-1 bits to the right of 1
40 * Q = bit FLT_MANT_DIG bits to the right of 1
45 case FLT_MANT_DIG + 1:
48 case FLT_MANT_DIG + 2:
51 a = (a >> (sd - (FLT_MANT_DIG+2))) |
52 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
58 /* a is now rounded to FLT_MANT_DIG or FLT_MANT_DIG+1 bits */
59 if (a & ((du_int)1 << FLT_MANT_DIG))
    [all...]
  /src/lib/libc/gen/
fixunssfsi_ieee754.c 65 FLT_MANT_DIG,
  /src/sys/arch/vax/include/
float.h 58 #define FLT_MANT_DIG 24 /* p */
  /src/sys/sys/
float_ieee754.h 76 #define FLT_MANT_DIG __FLT_MANT_DIG__
98 #define FLT_MANT_DIG 24 /* p */
  /src/tests/lib/libm/
t_log.c 446 { FLT_DENORM_MIN, FLT_MIN_EXP - FLT_MANT_DIG },
455 { 1 << FLT_MANT_DIG, FLT_MANT_DIG },
456 { (float)(1 << FLT_MANT_DIG) * (1 << FLT_MANT_DIG),
457 2*FLT_MANT_DIG },
t_hypot.c 460 __CTASSERT(FLT_MANT_DIG >= 24);
513 s < FLT_MAX_EXP - FLT_MANT_DIG;
514 s += (FLT_MAX_EXP - FLT_MANT_DIG - FLT_MIN_EXP)/5) {
  /src/tests/lib/libc/gen/
t_fpclassify.c 65 for (int i = 1; i < FLT_MANT_DIG; i++) {
  /src/lib/libm/complex/
catrigf.c 338 #define CUTOFF (FLT_MANT_DIG / 2 + 1)

Completed in 32 milliseconds