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