Searched refs:SREAL_PART_BITS (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dsreal.h23 #define SREAL_PART_BITS 31 macro
27 #define SREAL_MIN_SIG ((int64_t) 1 << (SREAL_PART_BITS - 2))
28 #define SREAL_MAX_SIG (((int64_t) 1 << (SREAL_PART_BITS - 1)) - 1)
31 #define SREAL_BITS SREAL_PART_BITS
204 int shift = SREAL_PART_BITS - 2 - floor_log2 (sig);
233 int shift = floor_log2 (sig) - SREAL_PART_BITS + 2;
H A Dsreal.c28 (for < 64-bit machines sig = sig_lo + sig_hi * 2 ^ SREAL_PART_BITS)
114 if (m_exp >= SREAL_PART_BITS)
244 * ((int64_t)SREAL_ABS (m_sig) << SREAL_PART_BITS) / other.m_sig,
245 m_exp - other.m_exp - SREAL_PART_BITS);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dsreal.h23 #define SREAL_PART_BITS 31 macro
27 #define SREAL_MIN_SIG ((int64_t) 1 << (SREAL_PART_BITS - 2))
28 #define SREAL_MAX_SIG (((int64_t) 1 << (SREAL_PART_BITS - 1)) - 1)
31 #define SREAL_BITS SREAL_PART_BITS
204 int shift = SREAL_PART_BITS - 2 - floor_log2 (sig);
233 int shift = floor_log2 (sig) - SREAL_PART_BITS + 2;
H A Dsreal.cc28 (for < 64-bit machines sig = sig_lo + sig_hi * 2 ^ SREAL_PART_BITS)
114 if (m_exp >= SREAL_PART_BITS)
244 * ((int64_t)SREAL_ABS (m_sig) << SREAL_PART_BITS) / other.m_sig,
245 m_exp - other.m_exp - SREAL_PART_BITS);

Completed in 290 milliseconds