imul32 static method

int imul32(
  1. int a,
  2. int b
)

Implementation

static int imul32(int a, int b) {
  return (a * b) & 0xffffffff;
}