about summary refs log tree commit diff
path: root/src/libcore/benches/ascii.rs
AgeCommit message (Expand)AuthorLines
2020-07-27mv std libs to library/mark-351/+0
2020-07-06Remove pointless `black_box` call, add a comment about the `unaligned_` bench...Thom Chiovoloni-1/+1
2020-07-05Add 'unrolled' is_ascii_align_to benchmark, and move is_ascii benchmarks into...Thom Chiovoloni-76/+2
2020-07-05Benchmark the unaligned case for is_ascii, and add missing SAFETYThom Chiovoloni-3/+21
2020-07-05Add benchmark for slice is_ascii using align_toThom Chiovoloni-1/+24
2020-07-05Avoid `vec!` allocation in `is_ascii_slice_*` benchesThom Chiovoloni-9/+36
2020-07-05Optimize is_ascii for &str and &[u8]Thom Chiovoloni-0/+8
2019-12-06Format libcore with rustfmt (including tests and benches)David Tolnay-12/+8
2019-12-06Exclude manually arranged ascii tables from rustfmtDavid Tolnay-0/+2
2019-11-06Have tidy ensure that we document all `unsafe` blocks in libcoreOliver Scherer-0/+2
2019-06-14Change `...` to `..=` where applicableAaron Kutch-4/+4
2019-04-06Tiny docs fixTobias Bucher-1/+1
2019-03-19ASCII uppercase: add "subtract multiplied bool" benchmarkSimon Sapin-0/+12
2019-03-19ASCII uppercase: add "subtract shifted bool" benchmarkSimon Sapin-0/+12
2019-03-19Simplify u8::to_ascii_{upp,low}ercase while keeping it fastSimon Sapin-1/+23
2019-03-19Benchmark more possibles impls of [u8]::make_ascii_uppercaseSimon Sapin-1/+83
2019-03-18Add benchmarks for `u8::is_ascii*`Simon Sapin-17/+32
2019-03-18Rename src/libcore/benches/ascii_case.rs to ascii.rsSimon Sapin-0/+206