| 33 | static const int32_t SIZE_OF_LONG = 8; |
| 34 | |
| 35 | static std::string toHex(uint64_t val) { |
| 36 | std::ostringstream out; |
| 37 | out << "0x" << std::hex << val; |
| 38 | return out.str(); |
| 39 | } |
| 40 | |
| 41 | static std::string toString(int64_t val) { |
| 42 | std::ostringstream out; |