reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2667 p = dst; 2669 *dst++ = '-'; 2673 memcpy (dst, upperCase ? infinityU: infinityL, sizeof infinityU - 1); 2674 dst += sizeof infinityL - 1; 2678 memcpy (dst, upperCase ? NaNU: NaNL, sizeof NaNU - 1); 2679 dst += sizeof NaNU - 1; 2683 *dst++ = '0'; 2684 *dst++ = upperCase ? 'X': 'x'; 2685 *dst++ = '0'; 2687 *dst++ = '.'; 2688 memset (dst, '0', hexDigits - 1); 2689 dst += hexDigits - 1; 2691 *dst++ = upperCase ? 'P': 'p'; 2692 *dst++ = '0'; 2696 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); 2696 dst = convertNormalToHexString (dst, hexDigits, upperCase, rounding_mode); 2700 *dst = 0; 2702 return static_cast<unsigned int>(dst - p);