├── .gitignore ├── Makefile ├── README.md ├── __logs ├── 180112-gcloud-a.png ├── 180112-gcloud.tgz ├── 180112-plot.gp ├── 180929-gcloud-a.png ├── 180929-gcloud-f.png ├── 180929-gcloud.tgz ├── 180929-plot.gp ├── 180929-server-a.png ├── 180929-server-f.png ├── 180929-server.tgz ├── 191228-server-del.png ├── 191228-server-ins.png ├── 191228-server.tgz ├── 231212-M1-del.png ├── 231212-M1.tgz ├── 231212-plot.gp ├── 231213-M1-del.png ├── 231213-M1-ins.png ├── 231213-M1.tgz └── 231213-plot.gp ├── _absl ├── CMakeLists.txt ├── Makefile └── test.cpp ├── _boost ├── Makefile └── test.cpp ├── _gcc_ext ├── Makefile ├── test-1.cpp ├── test-2.cpp └── test.cpp ├── _glib ├── Makefile ├── test-1.c └── test.c ├── bkthomps-hashmap ├── Makefile ├── test-1a.c ├── test.c ├── unordered_map.c └── unordered_map.h ├── c++11 ├── Makefile ├── test-1.cpp └── test.cpp ├── common-block.c ├── common.c ├── emilib ├── Makefile ├── hash_map.hpp └── test.cpp ├── kavl ├── Makefile ├── kavl.h └── test.c ├── kbtree ├── Makefile ├── kbtree.h └── test.c ├── khash ├── Makefile ├── khash.h ├── test-1.c └── test.c ├── khashl ├── Makefile ├── khashl.h ├── test-block.c └── test.c ├── khashlmpp ├── Makefile ├── khashlm.hpp └── test.cpp ├── khashlpp ├── Makefile ├── khashl.hpp └── test.cpp ├── khashpp ├── Makefile ├── khash.hpp └── test.cpp ├── libcuckoo ├── Makefile ├── cuckoohash_config.hh ├── cuckoohash_map.hh ├── cuckoohash_util.hh ├── libcuckoo_bucket_container.hh └── test.cpp ├── map ├── Makefile └── test.cpp ├── mlib ├── Makefile ├── m-array.h ├── m-core.h ├── m-dict.h ├── m-list.h ├── m-tuple.h └── test.c ├── phmap ├── Makefile ├── meminfo.h ├── phmap.h ├── phmap_base.h ├── phmap_bits.h ├── phmap_config.h ├── phmap_dump.h ├── phmap_fwd_decl.h ├── phmap_utils.h └── test.cpp ├── robin_hood ├── Makefile ├── robin_hood.h └── test.cpp ├── ska_bytell_hash_map ├── Makefile ├── bytell_hash_map.hpp ├── flat_hash_map.hpp └── test.cpp ├── ska_flat_hash_map ├── Makefile ├── flat_hash_map.hpp └── test.cpp ├── sparsehash ├── Makefile ├── sparsehash │ ├── dense_hash_map │ ├── dense_hash_set │ ├── internal │ │ ├── densehashtable.h │ │ ├── hashtable-common.h │ │ ├── libc_allocator_with_realloc.h │ │ ├── sparseconfig.h │ │ └── sparsehashtable.h │ ├── sparse_hash_map │ ├── sparse_hash_set │ ├── sparsetable │ ├── template_util.h │ └── type_traits.h ├── test-1.cpp └── test.cpp ├── sparsepp ├── Makefile ├── sparsepp │ ├── spp.h │ ├── spp_config.h │ ├── spp_dlalloc.h │ ├── spp_memory.h │ ├── spp_smartptr.h │ ├── spp_stdint.h │ ├── spp_timer.h │ ├── spp_traits.h │ └── spp_utils.h ├── test-1.cpp └── test.cpp ├── stb ├── Makefile ├── stb.h └── test.c ├── tommyds ├── Makefile ├── test-1.c ├── test.c ├── tommy.c ├── tommy.h ├── tommyalloc.c ├── tommyalloc.h ├── tommyarray.c ├── tommyarray.h ├── tommyarrayblk.c ├── tommyarrayblk.h ├── tommyarrayblkof.c ├── tommyarrayblkof.h ├── tommyarrayof.c ├── tommyarrayof.h ├── tommychain.h ├── tommyhash.c ├── tommyhash.h ├── tommyhashdyn.c ├── tommyhashdyn.h ├── tommyhashlin.c ├── tommyhashlin.h ├── tommyhashtbl.c ├── tommyhashtbl.h ├── tommylist.c ├── tommylist.h ├── tommytree.c ├── tommytree.h ├── tommytrie.c ├── tommytrie.h ├── tommytrieinp.c ├── tommytrieinp.h └── tommytypes.h ├── tsl_hopscotch_map ├── Makefile ├── bhopscotch_map.h ├── hopscotch_growth_policy.h ├── hopscotch_hash.h ├── hopscotch_map.h ├── test-1.cpp └── test.cpp ├── tsl_robin_map ├── Makefile ├── robin_growth_policy.h ├── robin_hash.h ├── robin_map.h └── test.cpp ├── unordered_dense ├── Makefile ├── test.cpp └── unordered_dense.h ├── uthash ├── Makefile ├── test.c └── uthash.h └── verstable ├── Makefile ├── test.c └── verstable.h /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | run-test* 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/README.md -------------------------------------------------------------------------------- /__logs/180112-gcloud-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180112-gcloud-a.png -------------------------------------------------------------------------------- /__logs/180112-gcloud.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180112-gcloud.tgz -------------------------------------------------------------------------------- /__logs/180112-plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180112-plot.gp -------------------------------------------------------------------------------- /__logs/180929-gcloud-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-gcloud-a.png -------------------------------------------------------------------------------- /__logs/180929-gcloud-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-gcloud-f.png -------------------------------------------------------------------------------- /__logs/180929-gcloud.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-gcloud.tgz -------------------------------------------------------------------------------- /__logs/180929-plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-plot.gp -------------------------------------------------------------------------------- /__logs/180929-server-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-server-a.png -------------------------------------------------------------------------------- /__logs/180929-server-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-server-f.png -------------------------------------------------------------------------------- /__logs/180929-server.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/180929-server.tgz -------------------------------------------------------------------------------- /__logs/191228-server-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/191228-server-del.png -------------------------------------------------------------------------------- /__logs/191228-server-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/191228-server-ins.png -------------------------------------------------------------------------------- /__logs/191228-server.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/191228-server.tgz -------------------------------------------------------------------------------- /__logs/231212-M1-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231212-M1-del.png -------------------------------------------------------------------------------- /__logs/231212-M1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231212-M1.tgz -------------------------------------------------------------------------------- /__logs/231212-plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231212-plot.gp -------------------------------------------------------------------------------- /__logs/231213-M1-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231213-M1-del.png -------------------------------------------------------------------------------- /__logs/231213-M1-ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231213-M1-ins.png -------------------------------------------------------------------------------- /__logs/231213-M1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231213-M1.tgz -------------------------------------------------------------------------------- /__logs/231213-plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/__logs/231213-plot.gp -------------------------------------------------------------------------------- /_absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_absl/CMakeLists.txt -------------------------------------------------------------------------------- /_absl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_absl/Makefile -------------------------------------------------------------------------------- /_absl/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_absl/test.cpp -------------------------------------------------------------------------------- /_boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_boost/Makefile -------------------------------------------------------------------------------- /_boost/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_boost/test.cpp -------------------------------------------------------------------------------- /_gcc_ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_gcc_ext/Makefile -------------------------------------------------------------------------------- /_gcc_ext/test-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_gcc_ext/test-1.cpp -------------------------------------------------------------------------------- /_gcc_ext/test-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_gcc_ext/test-2.cpp -------------------------------------------------------------------------------- /_gcc_ext/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_gcc_ext/test.cpp -------------------------------------------------------------------------------- /_glib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_glib/Makefile -------------------------------------------------------------------------------- /_glib/test-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_glib/test-1.c -------------------------------------------------------------------------------- /_glib/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/_glib/test.c -------------------------------------------------------------------------------- /bkthomps-hashmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/bkthomps-hashmap/Makefile -------------------------------------------------------------------------------- /bkthomps-hashmap/test-1a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/bkthomps-hashmap/test-1a.c -------------------------------------------------------------------------------- /bkthomps-hashmap/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/bkthomps-hashmap/test.c -------------------------------------------------------------------------------- /bkthomps-hashmap/unordered_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/bkthomps-hashmap/unordered_map.c -------------------------------------------------------------------------------- /bkthomps-hashmap/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/bkthomps-hashmap/unordered_map.h -------------------------------------------------------------------------------- /c++11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/c++11/Makefile -------------------------------------------------------------------------------- /c++11/test-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/c++11/test-1.cpp -------------------------------------------------------------------------------- /c++11/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/c++11/test.cpp -------------------------------------------------------------------------------- /common-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/common-block.c -------------------------------------------------------------------------------- /common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/common.c -------------------------------------------------------------------------------- /emilib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/emilib/Makefile -------------------------------------------------------------------------------- /emilib/hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/emilib/hash_map.hpp -------------------------------------------------------------------------------- /emilib/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/emilib/test.cpp -------------------------------------------------------------------------------- /kavl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kavl/Makefile -------------------------------------------------------------------------------- /kavl/kavl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kavl/kavl.h -------------------------------------------------------------------------------- /kavl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kavl/test.c -------------------------------------------------------------------------------- /kbtree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kbtree/Makefile -------------------------------------------------------------------------------- /kbtree/kbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kbtree/kbtree.h -------------------------------------------------------------------------------- /kbtree/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/kbtree/test.c -------------------------------------------------------------------------------- /khash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khash/Makefile -------------------------------------------------------------------------------- /khash/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khash/khash.h -------------------------------------------------------------------------------- /khash/test-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khash/test-1.c -------------------------------------------------------------------------------- /khash/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khash/test.c -------------------------------------------------------------------------------- /khashl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashl/Makefile -------------------------------------------------------------------------------- /khashl/khashl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashl/khashl.h -------------------------------------------------------------------------------- /khashl/test-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashl/test-block.c -------------------------------------------------------------------------------- /khashl/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashl/test.c -------------------------------------------------------------------------------- /khashlmpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlmpp/Makefile -------------------------------------------------------------------------------- /khashlmpp/khashlm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlmpp/khashlm.hpp -------------------------------------------------------------------------------- /khashlmpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlmpp/test.cpp -------------------------------------------------------------------------------- /khashlpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlpp/Makefile -------------------------------------------------------------------------------- /khashlpp/khashl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlpp/khashl.hpp -------------------------------------------------------------------------------- /khashlpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashlpp/test.cpp -------------------------------------------------------------------------------- /khashpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashpp/Makefile -------------------------------------------------------------------------------- /khashpp/khash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashpp/khash.hpp -------------------------------------------------------------------------------- /khashpp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/khashpp/test.cpp -------------------------------------------------------------------------------- /libcuckoo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/Makefile -------------------------------------------------------------------------------- /libcuckoo/cuckoohash_config.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/cuckoohash_config.hh -------------------------------------------------------------------------------- /libcuckoo/cuckoohash_map.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/cuckoohash_map.hh -------------------------------------------------------------------------------- /libcuckoo/cuckoohash_util.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/cuckoohash_util.hh -------------------------------------------------------------------------------- /libcuckoo/libcuckoo_bucket_container.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/libcuckoo_bucket_container.hh -------------------------------------------------------------------------------- /libcuckoo/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/libcuckoo/test.cpp -------------------------------------------------------------------------------- /map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/map/Makefile -------------------------------------------------------------------------------- /map/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/map/test.cpp -------------------------------------------------------------------------------- /mlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/Makefile -------------------------------------------------------------------------------- /mlib/m-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/m-array.h -------------------------------------------------------------------------------- /mlib/m-core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/m-core.h -------------------------------------------------------------------------------- /mlib/m-dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/m-dict.h -------------------------------------------------------------------------------- /mlib/m-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/m-list.h -------------------------------------------------------------------------------- /mlib/m-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/m-tuple.h -------------------------------------------------------------------------------- /mlib/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/mlib/test.c -------------------------------------------------------------------------------- /phmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/Makefile -------------------------------------------------------------------------------- /phmap/meminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/meminfo.h -------------------------------------------------------------------------------- /phmap/phmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap.h -------------------------------------------------------------------------------- /phmap/phmap_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_base.h -------------------------------------------------------------------------------- /phmap/phmap_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_bits.h -------------------------------------------------------------------------------- /phmap/phmap_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_config.h -------------------------------------------------------------------------------- /phmap/phmap_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_dump.h -------------------------------------------------------------------------------- /phmap/phmap_fwd_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_fwd_decl.h -------------------------------------------------------------------------------- /phmap/phmap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/phmap_utils.h -------------------------------------------------------------------------------- /phmap/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/phmap/test.cpp -------------------------------------------------------------------------------- /robin_hood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/robin_hood/Makefile -------------------------------------------------------------------------------- /robin_hood/robin_hood.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/robin_hood/robin_hood.h -------------------------------------------------------------------------------- /robin_hood/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/robin_hood/test.cpp -------------------------------------------------------------------------------- /ska_bytell_hash_map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_bytell_hash_map/Makefile -------------------------------------------------------------------------------- /ska_bytell_hash_map/bytell_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_bytell_hash_map/bytell_hash_map.hpp -------------------------------------------------------------------------------- /ska_bytell_hash_map/flat_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_bytell_hash_map/flat_hash_map.hpp -------------------------------------------------------------------------------- /ska_bytell_hash_map/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_bytell_hash_map/test.cpp -------------------------------------------------------------------------------- /ska_flat_hash_map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_flat_hash_map/Makefile -------------------------------------------------------------------------------- /ska_flat_hash_map/flat_hash_map.hpp: -------------------------------------------------------------------------------- 1 | ../ska_bytell_hash_map/flat_hash_map.hpp -------------------------------------------------------------------------------- /ska_flat_hash_map/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/ska_flat_hash_map/test.cpp -------------------------------------------------------------------------------- /sparsehash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/Makefile -------------------------------------------------------------------------------- /sparsehash/sparsehash/dense_hash_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/dense_hash_map -------------------------------------------------------------------------------- /sparsehash/sparsehash/dense_hash_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/dense_hash_set -------------------------------------------------------------------------------- /sparsehash/sparsehash/internal/densehashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/internal/densehashtable.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/internal/hashtable-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/internal/hashtable-common.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/internal/libc_allocator_with_realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/internal/libc_allocator_with_realloc.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/internal/sparseconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/internal/sparseconfig.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/internal/sparsehashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/internal/sparsehashtable.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/sparse_hash_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/sparse_hash_map -------------------------------------------------------------------------------- /sparsehash/sparsehash/sparse_hash_set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/sparse_hash_set -------------------------------------------------------------------------------- /sparsehash/sparsehash/sparsetable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/sparsetable -------------------------------------------------------------------------------- /sparsehash/sparsehash/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/template_util.h -------------------------------------------------------------------------------- /sparsehash/sparsehash/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/sparsehash/type_traits.h -------------------------------------------------------------------------------- /sparsehash/test-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/test-1.cpp -------------------------------------------------------------------------------- /sparsehash/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsehash/test.cpp -------------------------------------------------------------------------------- /sparsepp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/Makefile -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_config.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_dlalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_dlalloc.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_memory.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_smartptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_smartptr.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_stdint.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_timer.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_traits.h -------------------------------------------------------------------------------- /sparsepp/sparsepp/spp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/sparsepp/spp_utils.h -------------------------------------------------------------------------------- /sparsepp/test-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/test-1.cpp -------------------------------------------------------------------------------- /sparsepp/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/sparsepp/test.cpp -------------------------------------------------------------------------------- /stb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/stb/Makefile -------------------------------------------------------------------------------- /stb/stb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/stb/stb.h -------------------------------------------------------------------------------- /stb/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/stb/test.c -------------------------------------------------------------------------------- /tommyds/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/Makefile -------------------------------------------------------------------------------- /tommyds/test-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/test-1.c -------------------------------------------------------------------------------- /tommyds/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/test.c -------------------------------------------------------------------------------- /tommyds/tommy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommy.c -------------------------------------------------------------------------------- /tommyds/tommy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommy.h -------------------------------------------------------------------------------- /tommyds/tommyalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyalloc.c -------------------------------------------------------------------------------- /tommyds/tommyalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyalloc.h -------------------------------------------------------------------------------- /tommyds/tommyarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarray.c -------------------------------------------------------------------------------- /tommyds/tommyarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarray.h -------------------------------------------------------------------------------- /tommyds/tommyarrayblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayblk.c -------------------------------------------------------------------------------- /tommyds/tommyarrayblk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayblk.h -------------------------------------------------------------------------------- /tommyds/tommyarrayblkof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayblkof.c -------------------------------------------------------------------------------- /tommyds/tommyarrayblkof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayblkof.h -------------------------------------------------------------------------------- /tommyds/tommyarrayof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayof.c -------------------------------------------------------------------------------- /tommyds/tommyarrayof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyarrayof.h -------------------------------------------------------------------------------- /tommyds/tommychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommychain.h -------------------------------------------------------------------------------- /tommyds/tommyhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhash.c -------------------------------------------------------------------------------- /tommyds/tommyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhash.h -------------------------------------------------------------------------------- /tommyds/tommyhashdyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashdyn.c -------------------------------------------------------------------------------- /tommyds/tommyhashdyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashdyn.h -------------------------------------------------------------------------------- /tommyds/tommyhashlin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashlin.c -------------------------------------------------------------------------------- /tommyds/tommyhashlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashlin.h -------------------------------------------------------------------------------- /tommyds/tommyhashtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashtbl.c -------------------------------------------------------------------------------- /tommyds/tommyhashtbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommyhashtbl.h -------------------------------------------------------------------------------- /tommyds/tommylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommylist.c -------------------------------------------------------------------------------- /tommyds/tommylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommylist.h -------------------------------------------------------------------------------- /tommyds/tommytree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytree.c -------------------------------------------------------------------------------- /tommyds/tommytree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytree.h -------------------------------------------------------------------------------- /tommyds/tommytrie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytrie.c -------------------------------------------------------------------------------- /tommyds/tommytrie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytrie.h -------------------------------------------------------------------------------- /tommyds/tommytrieinp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytrieinp.c -------------------------------------------------------------------------------- /tommyds/tommytrieinp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytrieinp.h -------------------------------------------------------------------------------- /tommyds/tommytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tommyds/tommytypes.h -------------------------------------------------------------------------------- /tsl_hopscotch_map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/Makefile -------------------------------------------------------------------------------- /tsl_hopscotch_map/bhopscotch_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/bhopscotch_map.h -------------------------------------------------------------------------------- /tsl_hopscotch_map/hopscotch_growth_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/hopscotch_growth_policy.h -------------------------------------------------------------------------------- /tsl_hopscotch_map/hopscotch_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/hopscotch_hash.h -------------------------------------------------------------------------------- /tsl_hopscotch_map/hopscotch_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/hopscotch_map.h -------------------------------------------------------------------------------- /tsl_hopscotch_map/test-1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/test-1.cpp -------------------------------------------------------------------------------- /tsl_hopscotch_map/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_hopscotch_map/test.cpp -------------------------------------------------------------------------------- /tsl_robin_map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_robin_map/Makefile -------------------------------------------------------------------------------- /tsl_robin_map/robin_growth_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_robin_map/robin_growth_policy.h -------------------------------------------------------------------------------- /tsl_robin_map/robin_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_robin_map/robin_hash.h -------------------------------------------------------------------------------- /tsl_robin_map/robin_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_robin_map/robin_map.h -------------------------------------------------------------------------------- /tsl_robin_map/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/tsl_robin_map/test.cpp -------------------------------------------------------------------------------- /unordered_dense/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/unordered_dense/Makefile -------------------------------------------------------------------------------- /unordered_dense/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/unordered_dense/test.cpp -------------------------------------------------------------------------------- /unordered_dense/unordered_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/unordered_dense/unordered_dense.h -------------------------------------------------------------------------------- /uthash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/uthash/Makefile -------------------------------------------------------------------------------- /uthash/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/uthash/test.c -------------------------------------------------------------------------------- /uthash/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/uthash/uthash.h -------------------------------------------------------------------------------- /verstable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/verstable/Makefile -------------------------------------------------------------------------------- /verstable/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/verstable/test.c -------------------------------------------------------------------------------- /verstable/verstable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attractivechaos/udb2/HEAD/verstable/verstable.h --------------------------------------------------------------------------------