Constructs an Int32 from an int. Only the low 32 bits of the input are used.
Int32([int i = 0]) : _i = (i & 0x7fffffff) - (i & 0x80000000);