| 292 | } |
| 293 | |
| 294 | void Int::Get32Bytes(unsigned char *buff) { |
| 295 | |
| 296 | uint64_t *ptr = (uint64_t *)buff; |
| 297 | ptr[3] = _byteswap_uint64(bits64[0]); |
| 298 | ptr[2] = _byteswap_uint64(bits64[1]); |
| 299 | ptr[1] = _byteswap_uint64(bits64[2]); |
| 300 | ptr[0] = _byteswap_uint64(bits64[3]); |
| 301 | |
| 302 | } |
| 303 | |
| 304 | // ------------------------------------------------ |
| 305 |
no outgoing calls
no test coverage detected