# File lib/beefcake/buffer/encode.rb, line 64 def append_sint32(n) append_uint32((n << 1) ^ (n >> 31)) end