neg32 function

int neg32(
  1. int x
)

Implementation

int neg32(int x) {
  assert((x >= 0) && (x <= _MASK_32));
  return -x & _MASK_32;
}