Interprets rawVarint as a ZigZag-encoded signed 64-bit integer.
rawVarint
Applies ZigZag decoding to recover the original signed value.
int decodeAsSint64(int rawVarint) { return decodeZigZag(rawVarint); }