Lines Matching refs:memchr
1 memchr chapter
3 The `memchr` crate provides heavily optimized routines for searching bytes.
5 …tus](https://github.com/BurntSushi/rust-memchr/workflows/ci/badge.svg)](https://github.com/BurntSu…
6 [![](http://meritbadge.herokuapp.com/memchr)](https://crates.io/crates/memchr)
13 [https://docs.rs/memchr](https://docs.rs/memchr)
18 The `memchr` function is traditionally provided by libc, but its
26 `memchr` that should perform competitively with the one found in GNU's libc.
32 `memchr3`, `memrchr2` and `memrchr3`. The difference between `memchr` and
38 memchr links to the standard library by default, but you can disable the
43 memchr = { version = "2", default-features = false }
47 implementation of memchr will be used in compilers that support it. When
48 `std` is enabled, the AVX implementation of memchr will be used if the CPU
53 `memchr` is a routine that is part of libc, although this crate does not use
57 using `memchr` from libc is desirable and a vectorized routine is not otherwise
59 version of `memchr`.
65 `memchr`, as described above.