()
| 131 | |
| 132 | // See BitReader.LOG_BITNESS |
| 133 | static int getLogBintness() { |
| 134 | boolean isLongExpensive = Boolean.parseBoolean(System.getProperty("BROTLI_32_BIT_CPU")); |
| 135 | return isLongExpensive ? 5 : 6; |
| 136 | } |
| 137 | |
| 138 | static int shr32(int x, int y) { |
| 139 | return x >>> y; |