| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 /// A bitmask that limits an integer to 32 bits. |
| 6 const mask32 = 0xFFFFFFFF; |
| 7 |
| 8 /// The number of bits in a byte. |
| 9 const bitsPerByte = 8; |
| 10 |
| 11 /// The number of bytes in a 32-bit word. |
| 12 const bytesPerWord = 4; |
| 13 |
| 14 /// Adds [x] and [y] with 32-bit overflow semantics. |
| 15 int add32(int x, int y) => (x + y) & mask32; |
| 16 |
| 17 /// Bitwise rotates [val] to the left by [shift], obeying 32-bit overflow |
| 18 /// semantics. |
| 19 int rotl32(int val, int shift) { |
| 20 var modShift = shift & 31; |
| 21 return ((val << modShift) & mask32) | ((val & mask32) >> (32 - modShift)); |
| 22 } |
| OLD | NEW |