snappy-c icon indicating copy to clipboard operation
snappy-c copied to clipboard

C port of the snappy compressor

Results 5 snappy-c issues
Sort by recently updated
recently updated
newest added

Fixes unused variable warning: ``` snappy-c/snappy.c:1306:9: error: variable 'written' set but not used [-Werror,-Wunused-but-set-variable] size_t written = 0; ^ ```

recipe for target 'snappy.html' failed When I run **make html**, it shows: /home/sysy007uuu/Downloads/snappy/kernel-doc -html snappy.c > snappy.html Makefile:32: recipe for target 'snappy.html' failed make: *** [snappy.html] Error 1

When updating librdkafka's copy of snappy-c from 711c52b7ef94c8e5c600571987fbe5769070b884 to 8015f2d28739b9a6076ebaa6c53fe27bc238d219 snappy compression stopped working for me. Since librdkafka uses the SG/iovec interface I turned to sgverify to see if there's...

On ARM (and probably other platforms) unaligned 64-bit access is really slow. Instead of using 'STORE64(p, LOAD64(src))' macro, it is better to have special function for that. Logic was copied...