LemonBoy 41f244bd2f std: Make the DEFLATE decompression routine 3x faster
A profiler run showed that the main bottleneck was the naive decoding of
the Huffman codes, replacing it with a nice trick borrowed by Zlib gave
a substantial speedup.
Replacing a `%` with a `and (mask-1)` gave another significant
improvement (yay for low hanging fruits).

A few numbers obtained by decompressing a 22M file:

Before:
```
./decompress  2,39s user 0,00s system 99% cpu 2,400 total
```

After:
```
./decompress  0,79s user 0,00s system 99% cpu 0,798 total
````
2020-09-11 21:00:15 +02:00
..
2020-09-04 10:17:00 +02:00
2020-09-08 13:04:14 -04:00
2020-09-07 20:44:01 +03:00
2020-09-08 13:00:07 -04:00
2020-09-03 15:05:47 +03:00
2020-09-04 05:15:03 +03:00
2020-08-22 12:45:29 -07:00
2020-09-04 12:48:36 +02:00
2020-09-04 22:49:14 +03:00
2020-08-20 16:07:04 -04:00
2020-09-04 05:22:26 +03:00