syncSafe32 method

int syncSafe32()

Implementation

int syncSafe32() {
  _require(4);
  final int a = _bytes[_pos] & 0x7F;
  final int b = _bytes[_pos + 1] & 0x7F;
  final int c = _bytes[_pos + 2] & 0x7F;
  final int d = _bytes[_pos + 3] & 0x7F;
  _pos += 4;
  return (a << 21) | (b << 14) | (c << 7) | d;
}