HomeSort by: relevance | last modified time | path
    Searched defs:TRUNC (Results 1 - 15 of 15) sorted by relevancy

  /src/lib/libm/noieee_src/
n_pow.c 112 #define TRUNC(x) x = (double) (float) x
117 #define TRUNC(x) *(((int *) &x)+endian) &= 0xf8000000
220 TRUNC(t.a);
n_log.c 87 #define TRUNC(x) x = (double) (float) (x)
91 #define TRUNC(x) *(((int *) &x) + endian) &= 0xf8000000
430 u1 = u, TRUNC(u1);
476 u1 = u, TRUNC(u1);
484 TRUNC(r.a);
n_gamma.c 124 * TRUNC sets trailing bits in a floating-point number to zero.
129 #define TRUNC(x) x = (double) (float) (x)
133 #define TRUNC(x) *(((int *) &x) + endian) &= 0xf8000000
187 TRUNC(v.a);
214 TRUNC(r.a);
223 TRUNC(r.a);
241 t = x, TRUNC(t);
244 xx.a = (t + x), TRUNC(xx.a);
250 xx.a = x, TRUNC(xx.a);
256 d = r.a/x, TRUNC(d)
    [all...]
n_lgamma.c 74 #define TRUNC(x) x = (double) (float) (x)
78 #define TRUNC(x) *(((int *) &x) + endian) &= 0xf8000000
188 TRUNC(v.a);
204 TRUNC(v.a); /* truncate v.a to 26 bits. */
n_erf.c 149 #define TRUNC(x) (x) = (float)(x)
152 #define TRUNC(x) *(((int *) &x) + 1) &= 0xf8000000
374 TRUNC(z);
  /src/external/gpl3/gcc/dist/libgfortran/intrinsics/
erfc_scaled_inc.c 35 # define TRUNC(x) truncf(x)
40 # define TRUNC(x) trunc(x)
48 # define TRUNC(x) truncl(x)
57 #if defined(EXP) && defined(TRUNC)
172 ysq = TRUNC (x*((TYPE) 16))/((TYPE) 16);
184 #undef TRUNC
  /src/external/gpl3/gcc.old/dist/libgfortran/intrinsics/
erfc_scaled_inc.c 35 # define TRUNC(x) truncf(x)
40 # define TRUNC(x) trunc(x)
48 # define TRUNC(x) truncl(x)
57 #if defined(EXP) && defined(TRUNC)
172 ysq = TRUNC (x*((TYPE) 16))/((TYPE) 16);
184 #undef TRUNC
  /src/sys/arch/hpc/stand/hpcboot/
memory.h 48 TRUNC(const T v, const T x) {
100 uint32_t truncPage(uint32_t v) { return TRUNC(v, _page_size); }
104 { return TRUNC(v, uint32_t(WCE_REGION_SIZE)); }
  /src/lib/libm/src/
math_private.h 689 * TRUNC() is a macro that sets the trailing 27 bits in the significand of an
695 #define TRUNC(d) (_b_trunc(&(d)))
  /src/external/gpl3/gcc/dist/libgcc/
libgcc2.c 2721 # define TRUNC(x)
2723 # define TRUNC(x) __asm__ ("" : "=m"(x) : "m"(x))
2740 TRUNC (ac);
2741 TRUNC (bd);
2742 TRUNC (ad);
2743 TRUNC (bc);
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcc2.c 1977 # define TRUNC(x)
1979 # define TRUNC(x) __asm__ ("" : "=m"(x) : "m"(x))
1996 TRUNC (ac);
1997 TRUNC (bd);
1998 TRUNC (ad);
1999 TRUNC (bc);
  /src/external/gpl3/binutils/dist/gas/config/
tc-m68k.c 944 #define TRUNC(X) ((valueT) (X) & 0xffffffff)
945 #define SEXT(X) ((TRUNC (X) ^ 0x80000000) - 0x80000000)
948 #define isubyte(x) ((valueT) TRUNC (x) < 0x100)
950 #define isuword(x) ((valueT) TRUNC (x) < 0x10000)
2023 || TRUNC (opP->disp.exp.X_add_number) - 1 > 7)
2069 || TRUNC (opP->disp.exp.X_add_number) > 7)
2082 || (TRUNC (opP->disp.exp.X_add_number) != 0xffffffff
2083 && TRUNC (opP->disp.exp.X_add_number) - 1 > 6))
2091 || TRUNC (opP->disp.exp.X_add_number) - 1 > 7)
2099 || TRUNC (opP->disp.exp.X_add_number) > 511
    [all...]
tc-tic6x.c 34 #define TRUNC(X) ((valueT) (X) & 0xffffffffU)
35 #define SEXT(X) ((TRUNC (X) ^ 0x80000000U) - 0x80000000U)
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-m68k.c 944 #define TRUNC(X) ((valueT) (X) & 0xffffffff)
945 #define SEXT(X) ((TRUNC (X) ^ 0x80000000) - 0x80000000)
948 #define isubyte(x) ((valueT) TRUNC (x) < 0x100)
950 #define isuword(x) ((valueT) TRUNC (x) < 0x10000)
2023 || TRUNC (opP->disp.exp.X_add_number) - 1 > 7)
2069 || TRUNC (opP->disp.exp.X_add_number) > 7)
2082 || (TRUNC (opP->disp.exp.X_add_number) != 0xffffffff
2083 && TRUNC (opP->disp.exp.X_add_number) - 1 > 6))
2091 || TRUNC (opP->disp.exp.X_add_number) - 1 > 7)
2099 || TRUNC (opP->disp.exp.X_add_number) > 511
    [all...]
tc-tic6x.c 34 #define TRUNC(X) ((valueT) (X) & 0xffffffffU)
35 #define SEXT(X) ((TRUNC (X) ^ 0x80000000U) - 0x80000000U)

Completed in 63 milliseconds