├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── test ├── benchmark.c ├── bh-utf8.h ├── decode-simd.s ├── decode.s ├── simd-assist.c ├── tests.c └── utf8-encode.h └── utf8.h /.gitignore: -------------------------------------------------------------------------------- 1 | tests 2 | benchmark 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/UNLICENSE -------------------------------------------------------------------------------- /test/benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/benchmark.c -------------------------------------------------------------------------------- /test/bh-utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/bh-utf8.h -------------------------------------------------------------------------------- /test/decode-simd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/decode-simd.s -------------------------------------------------------------------------------- /test/decode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/decode.s -------------------------------------------------------------------------------- /test/simd-assist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/simd-assist.c -------------------------------------------------------------------------------- /test/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/tests.c -------------------------------------------------------------------------------- /test/utf8-encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/test/utf8-encode.h -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdonlan/branchless-utf8/HEAD/utf8.h --------------------------------------------------------------------------------