├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── benchmark.c ├── rset.c ├── rset.h └── tests.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | tests 3 | benchmark 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/benchmark.c -------------------------------------------------------------------------------- /rset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/rset.c -------------------------------------------------------------------------------- /rset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/rset.h -------------------------------------------------------------------------------- /tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chriso/roaring-bitmap/HEAD/tests.c --------------------------------------------------------------------------------