| 16 | #endif |
| 17 | |
| 18 | FORCE_INLINE char *writeDecimal(char *out, uint64_t x) |
| 19 | { |
| 20 | char buff[64], *end = buff + 32, *p = end; |
| 21 | do { *(--p) = (x % 10) + 48; } while (x /= 10); |
| 22 | memcpy(out, p, 32); |
| 23 | return out + (end - p); |
| 24 | } |
| 25 | |
| 26 | FORCE_INLINE std::string functionSelectorToHex(uint32_t x) |
| 27 | { |