# File lib/beefcake/buffer/encode.rb, line 72 def append_sint64(n) append_uint64((n << 1) ^ (n >> 63)) end