# File lib/beefcake/buffer/decode.rb, line 25
    def read_fixed64
      bytes = read(8)
      x, y = bytes.unpack("VV")
      x + (y << 32)
    end