Home
last modified time | relevance | path

Searched refs:HALF_BITS (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/boot/libsa/
H A Dquad.h83 #define HALF_BITS (sizeof(int) * CHAR_BIT / 2) macro
94 #define HHALF(x) ((x) >> HALF_BITS)
95 #define LHALF(x) ((x) & ((1 << HALF_BITS) - 1))
96 #define LHUP(x) ((x) << HALF_BITS)
H A Dqdivrem.c46 #define B (1 << HALF_BITS) /* digit base */
49 #define COMBINE(a, b) (((u_int)(a) << HALF_BITS) | (b))
68 p[i] = LHALF(p[i] << sh) | (p[i + 1] >> (HALF_BITS - sh)); in shl()
263 LHALF(u[i - 1] << (HALF_BITS - d)); in __udivmoddi4()
/illumos-gate/usr/src/lib/libc/port/fp/
H A Dquadint.h102 #define HALF_BITS (sizeof (long) * CHAR_BIT / 2) macro
114 #define HHALF(x) ((x) >> HALF_BITS)
115 #define LHALF(x) ((x) & ((1 << HALF_BITS) - 1))
116 #define LHUP(x) ((x) << HALF_BITS)
H A Dfloatundidf.c42 d *= (1 << HALF_BITS); in ___floatundidf()
43 d *= (1 << HALF_BITS); in ___floatundidf()
H A Dfloatundisf.c42 d *= (1 << HALF_BITS); in ___floatundisf()
43 d *= (1 << HALF_BITS); in ___floatundisf()
H A Dfloatdisf.c42 d *= (1 << HALF_BITS); in ___floatdisf()
43 d *= (1 << HALF_BITS); in ___floatdisf()
H A Dfloatdidf.c42 d *= (1 << HALF_BITS); in ___floatdidf()
43 d *= (1 << HALF_BITS); in ___floatdidf()
H A Dqdivrem.c45 #define B (1 << HALF_BITS) /* digit base */
48 #define COMBINE(a, b) (((ulong_t)(a) << HALF_BITS) | (b))
68 p[i] = LHALF(p[i] << sh) | (p[i + 1] >> (HALF_BITS - sh)); in shl()
263 LHALF(u[i - 1] << (HALF_BITS - d)); in ___qdivrem()