Searched refs:du (Results 1 – 1 of 1) sorted by relevance
197 union double_int du = { d }; in double_to_string() local199 uint32_t exponent = (du.i >> 52) & 0x7ff; in double_to_string()200 uint64_t fraction = (du.i & ((1ULL << 52) - 1)); in double_to_string()201 bool neg = !!(du.i & (1ULL << 63)); in double_to_string()
Completed in 3 milliseconds