| 1923 | }; |
| 1924 | |
| 1925 | static |
| 1926 | inline |
| 1927 | std::uint32_t |
| 1928 | reverse_bytes(std::uint32_t i) |
| 1929 | { |
| 1930 | return |
| 1931 | (i & 0xff000000u) >> 24 | |
| 1932 | (i & 0x00ff0000u) >> 8 | |
| 1933 | (i & 0x0000ff00u) << 8 | |
| 1934 | (i & 0x000000ffu) << 24; |
| 1935 | } |
| 1936 | |
| 1937 | static |
| 1938 | inline |
no outgoing calls
no test coverage detected