Mateusz Guzik 0569bc9ca9 cache: depessimize hashing macros/inlines
All hash sizes are power-of-2, but the compiler does not know that for sure
and 'foo % size' forces doing a division.

Store the size - 1 and use 'foo & hash' instead which allows mere shift.
2016-12-29 08:41:25 +00:00
..
2016-12-27 20:22:17 +00:00
2016-12-29 07:10:25 +00:00
2016-12-28 16:16:36 +00:00
2016-12-21 01:39:11 +00:00
2016-12-29 07:10:25 +00:00
2016-12-26 11:06:41 +00:00
2016-11-26 23:15:11 +00:00
2016-12-10 03:31:38 +00:00
2016-12-27 20:22:17 +00:00