I think you misunderstand how big the byte in your release is - 8 bits require a full representation of two hexadecimal digits. One of the int from your example:
0001 0000
You might want to display as 32-bit data (or 8-bit data) rather than 16. Which makes your landfill weird.
I duplicated your binary and ran od several ways. I hope you find an example that can educate:
$ od -t x4 example 0000000 00000001 00000002 00000003 00000004 0000020 00000005 00000006 0000030 $ od -t x2 example 0000000 0001 0000 0002 0000 0003 0000 0004 0000 0000020 0005 0000 0006 0000 0000030 $ od -t x1 example 0000000 01 00 00 00 02 00 00 00 03 00 00 00 04 00 00 00 0000020 05 00 00 00 06 00 00 00 0000030
As you can see best from the 1- and 4-byte examples, I am also on a small machine, just like you.
source share