not32 function

int not32(
  1. int x
)

Implementation

int not32(int x) {
  assert((x >= 0) && (x <= mask32));
  return (~x & mask32);
}