(x uint32)
| 82 | } |
| 83 | |
| 84 | func uint32InExpectedOrder(x uint32) uint32 { |
| 85 | /* |
| 86 | if !little { |
| 87 | return bswap32(x) |
| 88 | } |
| 89 | */ |
| 90 | |
| 91 | return x |
| 92 | } |
| 93 | |
| 94 | func uint64InExpectedOrder(x uint64) uint64 { |
| 95 | /* |
nothing calls this directly
no outgoing calls
no test coverage detected