Lines Matching refs:bench
8 fn to_unicode_puny_label(bench: &mut Bencher) { in to_unicode_puny_label()
11 bench.iter(|| config.to_unicode(black_box(encoded))); in to_unicode_puny_label()
14 fn to_unicode_ascii(bench: &mut Bencher) { in to_unicode_ascii()
17 bench.iter(|| config.to_unicode(black_box(encoded))); in to_unicode_ascii()
20 fn to_unicode_merged_label(bench: &mut Bencher) { in to_unicode_merged_label()
23 bench.iter(|| config.to_unicode(black_box(encoded))); in to_unicode_merged_label()
26 fn to_ascii_puny_label(bench: &mut Bencher) { in to_ascii_puny_label()
29 bench.iter(|| config.to_ascii(black_box(encoded))); in to_ascii_puny_label()
32 fn to_ascii_simple(bench: &mut Bencher) { in to_ascii_simple()
35 bench.iter(|| config.to_ascii(black_box(encoded))); in to_ascii_simple()
38 fn to_ascii_merged(bench: &mut Bencher) { in to_ascii_merged()
41 bench.iter(|| config.to_ascii(black_box(encoded))); in to_ascii_merged()