sizeToStrength function

int sizeToStrength(
  1. int size
)

Implementation

int sizeToStrength(int size) {
  return size * 32 ~/ 3 ~/ 8;
}