├── .github └── workflows │ └── lint.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── bench ├── Cargo.toml └── benches │ ├── decode.rs │ └── encode.rs └── crates ├── five8 ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src │ ├── avx.rs │ ├── bits_find_lsb.rs │ ├── decode.rs │ ├── encode.rs │ ├── lib.rs │ └── unlikely.rs ├── five8_const ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src │ └── lib.rs └── five8_core ├── CHANGELOG.md ├── Cargo.toml ├── README.md └── src └── lib.rs /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/README.md -------------------------------------------------------------------------------- /bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/bench/Cargo.toml -------------------------------------------------------------------------------- /bench/benches/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/bench/benches/decode.rs -------------------------------------------------------------------------------- /bench/benches/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/bench/benches/encode.rs -------------------------------------------------------------------------------- /crates/five8/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/CHANGELOG.md -------------------------------------------------------------------------------- /crates/five8/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/Cargo.toml -------------------------------------------------------------------------------- /crates/five8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/README.md -------------------------------------------------------------------------------- /crates/five8/src/avx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/avx.rs -------------------------------------------------------------------------------- /crates/five8/src/bits_find_lsb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/bits_find_lsb.rs -------------------------------------------------------------------------------- /crates/five8/src/decode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/decode.rs -------------------------------------------------------------------------------- /crates/five8/src/encode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/encode.rs -------------------------------------------------------------------------------- /crates/five8/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/lib.rs -------------------------------------------------------------------------------- /crates/five8/src/unlikely.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8/src/unlikely.rs -------------------------------------------------------------------------------- /crates/five8_const/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_const/CHANGELOG.md -------------------------------------------------------------------------------- /crates/five8_const/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_const/Cargo.toml -------------------------------------------------------------------------------- /crates/five8_const/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_const/README.md -------------------------------------------------------------------------------- /crates/five8_const/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_const/src/lib.rs -------------------------------------------------------------------------------- /crates/five8_core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_core/CHANGELOG.md -------------------------------------------------------------------------------- /crates/five8_core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_core/Cargo.toml -------------------------------------------------------------------------------- /crates/five8_core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_core/README.md -------------------------------------------------------------------------------- /crates/five8_core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinheavey/five8/HEAD/crates/five8_core/src/lib.rs --------------------------------------------------------------------------------