-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbenchmarks.txt
1335 lines (1335 loc) · 126 KB
/
benchmarks.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
goos: linux
goarch: amd64
pkg: github.com/zRedShift/mimemagic
BenchmarkMatchGlob/2001_compression_overview.djvu-8 1000000 1337 ns/op
BenchmarkMatchGlob/32x-rom.32x-8 2000000 776 ns/op
BenchmarkMatchGlob/4jsno.669-8 2000000 677 ns/op
BenchmarkMatchGlob/560051.xml-8 2000000 744 ns/op
BenchmarkMatchGlob/adf-test.adf-8 2000000 856 ns/op
BenchmarkMatchGlob/aero_alt.cur-8 2000000 843 ns/op
BenchmarkMatchGlob/all_w.m3u8-8 2000000 922 ns/op
BenchmarkMatchGlob/Anaphraseus-1.21-beta.oxt-8 1000000 1289 ns/op
BenchmarkMatchGlob/ancp.pcap-8 2000000 690 ns/op
BenchmarkMatchGlob/androide.k7-8 2000000 793 ns/op
BenchmarkMatchGlob/aportis.pdb-8 1000000 1019 ns/op
BenchmarkMatchGlob/archive.7z-8 2000000 745 ns/op
BenchmarkMatchGlob/archive.lrz-8 2000000 791 ns/op
BenchmarkMatchGlob/archive.tar-8 2000000 790 ns/op
BenchmarkMatchGlob/ascii.stl-8 2000000 687 ns/op
BenchmarkMatchGlob/atari-2600-test.A26-8 1000000 1277 ns/op
BenchmarkMatchGlob/atari-7800-test.A78-8 1000000 1277 ns/op
BenchmarkMatchGlob/atari-lynx-chips-challenge.lnx-8 1000000 1149 ns/op
BenchmarkMatchGlob/attachment.tif-8 2000000 942 ns/op
BenchmarkMatchGlob/balloon.j2c-8 2000000 819 ns/op
BenchmarkMatchGlob/balloon.jp2-8 2000000 787 ns/op
BenchmarkMatchGlob/balloon.jpf-8 2000000 784 ns/op
BenchmarkMatchGlob/balloon.jpm-8 2000000 785 ns/op
BenchmarkMatchGlob/balloon.mj2-8 2000000 782 ns/op
BenchmarkMatchGlob/bathead.sk-8 2000000 732 ns/op
BenchmarkMatchGlob/bbc.ram-8 3000000 603 ns/op
BenchmarkMatchGlob/bibtex.bib-8 2000000 731 ns/op
BenchmarkMatchGlob/binary.stl-8 2000000 718 ns/op
BenchmarkMatchGlob/blitz.m7-8 2000000 637 ns/op
BenchmarkMatchGlob/bluerect.mdi-8 2000000 836 ns/op
BenchmarkMatchGlob/bluish.icc-8 2000000 756 ns/op
BenchmarkMatchGlob/break.mtm-8 2000000 699 ns/op
BenchmarkMatchGlob/bug106330.iso-8 1000000 1218 ns/op
BenchmarkMatchGlob/bug-30656-xchat.conf-8 2000000 956 ns/op
BenchmarkMatchGlob/bug39126-broken.ppm-8 1000000 1103 ns/op
BenchmarkMatchGlob/bug39126-working.ppm-8 1000000 1116 ns/op
BenchmarkMatchGlob/build.gradle-8 2000000 844 ns/op
BenchmarkMatchGlob/ccfilm.axv-8 2000000 729 ns/op
BenchmarkMatchGlob/classiq1.hfe-8 2000000 859 ns/op
BenchmarkMatchGlob/colormapped.tga-8 2000000 990 ns/op
BenchmarkMatchGlob/combined.karbon-8 2000000 1001 ns/op
BenchmarkMatchGlob/comics.cb7-8 2000000 738 ns/op
BenchmarkMatchGlob/comics.cbt-8 2000000 738 ns/op
BenchmarkMatchGlob/COPYING.asc-8 1000000 1085 ns/op
BenchmarkMatchGlob/copying.cab-8 2000000 801 ns/op
BenchmarkMatchGlob/COPYING-clearsign.asc-8 1000000 1564 ns/op
BenchmarkMatchGlob/COPYING-encrypted.asc-8 1000000 1471 ns/op
BenchmarkMatchGlob/core-8 5000000 459 ns/op
BenchmarkMatchGlob/Core-8 5000000 336 ns/op
BenchmarkMatchGlob/ct_faac-adts.aac-8 1000000 1205 ns/op
BenchmarkMatchGlob/cube.igs-8 3000000 650 ns/op
BenchmarkMatchGlob/cube.wrl-8 2000000 677 ns/op
BenchmarkMatchGlob/cyborg.med-8 2000000 732 ns/op
BenchmarkMatchGlob/dbus-comment.service-8 1000000 1288 ns/op
BenchmarkMatchGlob/dbus.service-8 1000000 1027 ns/op
BenchmarkMatchGlob/debian-goodies_0.63_all.deb-8 1000000 1121 ns/op
BenchmarkMatchGlob/dia.shape-8 2000000 704 ns/op
BenchmarkMatchGlob/disk.img-8 2000000 647 ns/op
BenchmarkMatchGlob/disk.img.xz-8 2000000 1031 ns/op
BenchmarkMatchGlob/disk.raw-disk-image-8 1000000 1109 ns/op
BenchmarkMatchGlob/disk.raw-disk-image.xz-8 1000000 1386 ns/op
BenchmarkMatchGlob/dns.cap-8 2000000 605 ns/op
BenchmarkMatchGlob/editcopy.png-8 2000000 856 ns/op
BenchmarkMatchGlob/Elephants_Dream-360p-Stereo.webm-8 1000000 1265 ns/op
BenchmarkMatchGlob/Empty.chrt-8 2000000 831 ns/op
BenchmarkMatchGlob/en_US.zip.meta4-8 1000000 1088 ns/op
BenchmarkMatchGlob/esm.mjs-8 3000000 594 ns/op
BenchmarkMatchGlob/evolution.eml-8 2000000 876 ns/op
BenchmarkMatchGlob/example_42_all.snap-8 1000000 1111 ns/op
BenchmarkMatchGlob/example.heic-8 2000000 839 ns/op
BenchmarkMatchGlob/example.heif-8 2000000 801 ns/op
BenchmarkMatchGlob/feed2-8 5000000 322 ns/op
BenchmarkMatchGlob/feed.atom-8 2000000 697 ns/op
BenchmarkMatchGlob/feed.rss-8 2000000 629 ns/op
BenchmarkMatchGlob/feeds.opml-8 2000000 747 ns/op
BenchmarkMatchGlob/foo-0.1-1.fc18.src.rpm-8 1000000 1366 ns/op
BenchmarkMatchGlob/foo.doc-8 2000000 837 ns/op
BenchmarkMatchGlob/fuji.themepack-8 2000000 931 ns/op
BenchmarkMatchGlob/game-boy-color-test.gbc-8 1000000 1139 ns/op
BenchmarkMatchGlob/game-boy-test.gb-8 1000000 1069 ns/op
BenchmarkMatchGlob/game-gear-test.gg-8 1000000 1075 ns/op
BenchmarkMatchGlob/GammaChart.exr-8 1000000 1009 ns/op
BenchmarkMatchGlob/gedit.flatpakref-8 1000000 1045 ns/op
BenchmarkMatchGlob/genesis1.bin-8 1000000 1050 ns/op
BenchmarkMatchGlob/genesis2.bin-8 1000000 1027 ns/op
BenchmarkMatchGlob/gnome.flatpakrepo-8 1000000 1069 ns/op
BenchmarkMatchGlob/good-1-delta-lzma2.tiff.xz-8 1000000 1130 ns/op
BenchmarkMatchGlob/googleearth.kml-8 2000000 988 ns/op
BenchmarkMatchGlob/gtk-builder.ui-8 1000000 1173 ns/op
BenchmarkMatchGlob/hbo-playlist.qtl-8 1000000 1040 ns/op
BenchmarkMatchGlob/hello.flatpak-8 2000000 879 ns/op
BenchmarkMatchGlob/hello.pack-8 2000000 899 ns/op
BenchmarkMatchGlob/helloworld.groovy-8 1000000 1104 ns/op
BenchmarkMatchGlob/helloworld.java-8 2000000 974 ns/op
BenchmarkMatchGlob/helloworld.xpi-8 2000000 944 ns/op
BenchmarkMatchGlob/hello.xdgapp-8 2000000 820 ns/op
BenchmarkMatchGlob/hereyes_remake.mo3-8 1000000 1138 ns/op
BenchmarkMatchGlob/html4.css-8 2000000 706 ns/op
BenchmarkMatchGlob/html5.css-8 2000000 679 ns/op
BenchmarkMatchGlob/image.sqsh-8 2000000 749 ns/op
BenchmarkMatchGlob/img_5304.jpg-8 2000000 842 ns/op
BenchmarkMatchGlob/internet.ez-8 2000000 819 ns/op
BenchmarkMatchGlob/isdir.m-8 2000000 843 ns/op
BenchmarkMatchGlob/ISOcyr1.ent-8 2000000 896 ns/op
BenchmarkMatchGlob/iso-file.iso-8 1000000 1196 ns/op
BenchmarkMatchGlob/IWAD.WAD-8 2000000 923 ns/op
BenchmarkMatchGlob/javascript-without-extension-8 2000000 975 ns/op
BenchmarkMatchGlob/jc-win.ani-8 2000000 735 ns/op
BenchmarkMatchGlob/json_array.json-8 2000000 986 ns/op
BenchmarkMatchGlob/json-ld-full-iri.jsonld-8 1000000 1132 ns/op
BenchmarkMatchGlob/json_object.json-8 1000000 1020 ns/op
BenchmarkMatchGlob/layersupdatesignals.flw-8 1000000 1146 ns/op
BenchmarkMatchGlob/Leafpad-0.8.17-x86_64.AppImage-8 1000000 1469 ns/op
BenchmarkMatchGlob/Leafpad-0.8.18.1.glibc2.4-x86_64.AppImage-8 1000000 1525 ns/op
BenchmarkMatchGlob/libcompat.a-8 2000000 795 ns/op
BenchmarkMatchGlob/libcompat.ar-8 2000000 815 ns/op
BenchmarkMatchGlob/LiberationSans-Regular.ttf-8 1000000 1320 ns/op
BenchmarkMatchGlob/LiberationSans-Regular.woff-8 1000000 1262 ns/op
BenchmarkMatchGlob/linguist.ts-8 2000000 969 ns/op
BenchmarkMatchGlob/list-8 5000000 289 ns/op
BenchmarkMatchGlob/live-streaming.m3u-8 1000000 1323 ns/op
BenchmarkMatchGlob/lucid-tab-bg.xcf-8 1000000 1054 ns/op
BenchmarkMatchGlob/m64p_test_rom.n64-8 1000000 1095 ns/op
BenchmarkMatchGlob/m64p_test_rom.v64-8 1000000 1064 ns/op
BenchmarkMatchGlob/m64p_test_rom.z64-8 1000000 1079 ns/op
BenchmarkMatchGlob/Makefile-8 2000000 692 ns/op
BenchmarkMatchGlob/Makefile.gnu-8 2000000 946 ns/op
BenchmarkMatchGlob/markdown.md-8 2000000 813 ns/op
BenchmarkMatchGlob/mega-drive-rom.gen-8 1000000 1120 ns/op
BenchmarkMatchGlob/menu.ini-8 3000000 503 ns/op
BenchmarkMatchGlob/meson.build-8 2000000 791 ns/op
BenchmarkMatchGlob/meson_options.txt-8 1000000 1341 ns/op
BenchmarkMatchGlob/Metroid_japan.fds-8 1000000 1174 ns/op
BenchmarkMatchGlob/msg0001.gsm-8 2000000 790 ns/op
BenchmarkMatchGlob/msx2-metal-gear.msx-8 1000000 1116 ns/op
BenchmarkMatchGlob/msx-penguin-adventure.msx-8 1000000 1127 ns/op
BenchmarkMatchGlob/my-data.json-patch-8 1000000 1130 ns/op
BenchmarkMatchGlob/mypaint.ora-8 2000000 794 ns/op
BenchmarkMatchGlob/mysum.m-8 2000000 812 ns/op
BenchmarkMatchGlob/neo-geo-pocket-color-test.ngc-8 1000000 1145 ns/op
BenchmarkMatchGlob/neo-geo-pocket-test.ngp-8 1000000 1123 ns/op
BenchmarkMatchGlob/newtonme.pict-8 2000000 892 ns/op
BenchmarkMatchGlob/nrl.trig-8 2000000 667 ns/op
BenchmarkMatchGlob/ocf10-20060911.epub-8 1000000 1147 ns/op
BenchmarkMatchGlob/office.doc-8 2000000 905 ns/op
BenchmarkMatchGlob/one-file.tnef-8 2000000 903 ns/op
BenchmarkMatchGlob/ooo25876-2.pct-8 2000000 944 ns/op
BenchmarkMatchGlob/ooo-6.0.doc-8 2000000 973 ns/op
BenchmarkMatchGlob/ooo-95.doc-8 2000000 941 ns/op
BenchmarkMatchGlob/ooo.doc-8 2000000 805 ns/op
BenchmarkMatchGlob/ooo.rtf-8 2000000 585 ns/op
BenchmarkMatchGlob/ooo.sdw-8 2000000 617 ns/op
BenchmarkMatchGlob/ooo.stw-8 2000000 600 ns/op
BenchmarkMatchGlob/ooo.sxw-8 2000000 610 ns/op
BenchmarkMatchGlob/ooo-test.fodg-8 2000000 889 ns/op
BenchmarkMatchGlob/ooo-test.fodp-8 2000000 904 ns/op
BenchmarkMatchGlob/ooo-test.fods-8 2000000 879 ns/op
BenchmarkMatchGlob/ooo-test.fodt-8 2000000 867 ns/op
BenchmarkMatchGlob/ooo-test.odg-8 2000000 867 ns/op
BenchmarkMatchGlob/ooo-test.odp-8 2000000 881 ns/op
BenchmarkMatchGlob/ooo-test.ods-8 2000000 864 ns/op
BenchmarkMatchGlob/ooo-test.odt-8 2000000 866 ns/op
BenchmarkMatchGlob/ooo.vor-8 2000000 607 ns/op
BenchmarkMatchGlob/ooo-xp.doc-8 2000000 912 ns/op
BenchmarkMatchGlob/Oriental_tattoo_by_daftpunk22.eps-8 1000000 1309 ns/op
BenchmarkMatchGlob/panasonic_lumix_dmc_fz38_05.rw2-8 1000000 1139 ns/op
BenchmarkMatchGlob/pdf-not-matlab-8 2000000 794 ns/op
BenchmarkMatchGlob/petite-ouverture-a-danser.ly-8 1000000 1144 ns/op
BenchmarkMatchGlob/pico-rom.bin-8 1000000 1042 ns/op
BenchmarkMatchGlob/playlist.asx-8 2000000 833 ns/op
BenchmarkMatchGlob/playlist.mrl-8 2000000 883 ns/op
BenchmarkMatchGlob/playlist.wpl-8 2000000 835 ns/op
BenchmarkMatchGlob/plugins.qmltypes-8 1000000 1053 ns/op
BenchmarkMatchGlob/pocket-word.psw-8 2000000 1012 ns/op
BenchmarkMatchGlob/pom.xml-8 2000000 874 ns/op
BenchmarkMatchGlob/Presentation.kpt-8 1000000 1141 ns/op
BenchmarkMatchGlob/project.glade-8 2000000 895 ns/op
BenchmarkMatchGlob/PWAD.WAD-8 2000000 861 ns/op
BenchmarkMatchGlob/pyside.py-8 2000000 890 ns/op
BenchmarkMatchGlob/raw-mjpeg.mjpeg-8 1000000 1006 ns/op
BenchmarkMatchGlob/README.pdf-8 1000000 1053 ns/op
BenchmarkMatchGlob/rectangle.qml-8 2000000 889 ns/op
BenchmarkMatchGlob/registry-nt.reg-8 2000000 1021 ns/op
BenchmarkMatchGlob/registry.reg-8 2000000 850 ns/op
BenchmarkMatchGlob/reStructuredText.rst-8 1000000 1286 ns/op
BenchmarkMatchGlob/rgb-reference.ktx-8 1000000 1095 ns/op
BenchmarkMatchGlob/ringtone.ime-8 2000000 828 ns/op
BenchmarkMatchGlob/ringtone.m4r-8 2000000 832 ns/op
BenchmarkMatchGlob/ringtone.mmf-8 2000000 838 ns/op
BenchmarkMatchGlob/ripoux.sap-8 2000000 755 ns/op
BenchmarkMatchGlob/sample1.nzb-8 2000000 794 ns/op
BenchmarkMatchGlob/sample2.amr-8 2000000 813 ns/op
BenchmarkMatchGlob/sample.docx-8 2000000 805 ns/op
BenchmarkMatchGlob/sample.png.lzma-8 2000000 980 ns/op
BenchmarkMatchGlob/sample.ppsx-8 2000000 796 ns/op
BenchmarkMatchGlob/sample.pptx-8 2000000 803 ns/op
BenchmarkMatchGlob/sample.vsdx-8 2000000 794 ns/op
BenchmarkMatchGlob/sample.xlsx-8 2000000 785 ns/op
BenchmarkMatchGlob/saturn-test.bin-8 1000000 1172 ns/op
BenchmarkMatchGlob/SConscript-8 2000000 828 ns/op
BenchmarkMatchGlob/SConscript.buildinfo-8 1000000 1257 ns/op
BenchmarkMatchGlob/SConstruct-8 2000000 844 ns/op
BenchmarkMatchGlob/sega-cd-test.iso-8 1000000 1384 ns/op
BenchmarkMatchGlob/serafettin.rar-8 2000000 925 ns/op
BenchmarkMatchGlob/settings.xml-8 1000000 1072 ns/op
BenchmarkMatchGlob/settopbox.ts-8 1000000 1029 ns/op
BenchmarkMatchGlob/sg1000-test.sg-8 2000000 958 ns/op
BenchmarkMatchGlob/shebang.qml-8 2000000 780 ns/op
BenchmarkMatchGlob/simon.669-8 2000000 678 ns/op
BenchmarkMatchGlob/simple-obj-c.m-8 1000000 1131 ns/op
BenchmarkMatchGlob/small_wav.mxf-8 2000000 884 ns/op
BenchmarkMatchGlob/sms-test.sms-8 2000000 851 ns/op
BenchmarkMatchGlob/spinboxes-0.1.1-Linux.tar.xz-8 1000000 1516 ns/op
BenchmarkMatchGlob/sqlite2.kexi-8 1000000 1008 ns/op
BenchmarkMatchGlob/sqlite3.kexi-8 1000000 1054 ns/op
BenchmarkMatchGlob/ssh-public-key.txt-8 1000000 1149 ns/op
BenchmarkMatchGlob/Stallman_Richard_-_The_GNU_Manifesto.fb2-8 1000000 1375 ns/op
BenchmarkMatchGlob/Stallman_Richard_-_The_GNU_Manifesto.fb2.zip-8 1000000 1535 ns/op
BenchmarkMatchGlob/stream.nsc-8 2000000 753 ns/op
BenchmarkMatchGlob/stream.sdp-8 2000000 923 ns/op
BenchmarkMatchGlob/subshapes.swf-8 2000000 927 ns/op
BenchmarkMatchGlob/subtitle-microdvd.sub-8 1000000 1366 ns/op
BenchmarkMatchGlob/subtitle-mpsub.sub-8 1000000 1376 ns/op
BenchmarkMatchGlob/subtitle.smi-8 1000000 1088 ns/op
BenchmarkMatchGlob/subtitle.srt-8 2000000 851 ns/op
BenchmarkMatchGlob/subtitle.ssa-8 2000000 837 ns/op
BenchmarkMatchGlob/subtitle-subviewer.sub-8 1000000 1385 ns/op
BenchmarkMatchGlob/survey.js-8 2000000 684 ns/op
BenchmarkMatchGlob/systemd.automount-8 1000000 1075 ns/op
BenchmarkMatchGlob/systemd.device-8 2000000 933 ns/op
BenchmarkMatchGlob/systemd.mount-8 2000000 897 ns/op
BenchmarkMatchGlob/systemd.path-8 2000000 859 ns/op
BenchmarkMatchGlob/systemd.scope-8 2000000 894 ns/op
BenchmarkMatchGlob/systemd.service-8 1000000 1198 ns/op
BenchmarkMatchGlob/systemd.slice-8 2000000 909 ns/op
BenchmarkMatchGlob/systemd.socket-8 2000000 950 ns/op
BenchmarkMatchGlob/systemd.swap-8 2000000 848 ns/op
BenchmarkMatchGlob/systemd.target-8 2000000 942 ns/op
BenchmarkMatchGlob/systemd.timer-8 2000000 918 ns/op
BenchmarkMatchGlob/tb-from-sentbox.eml-8 1000000 1117 ns/op
BenchmarkMatchGlob/tb-saved.eml-8 2000000 841 ns/op
BenchmarkMatchGlob/test10.gpx-8 2000000 731 ns/op
BenchmarkMatchGlob/test1.pcf-8 2000000 895 ns/op
BenchmarkMatchGlob/test2.pcf-8 2000000 888 ns/op
BenchmarkMatchGlob/test2.ppm-8 2000000 712 ns/op
BenchmarkMatchGlob/test2.tga-8 2000000 692 ns/op
BenchmarkMatchGlob/test3.py-8 2000000 838 ns/op
BenchmarkMatchGlob/test.aa-8 3000000 588 ns/op
BenchmarkMatchGlob/test.aax-8 2000000 646 ns/op
BenchmarkMatchGlob/test.aiff-8 2000000 694 ns/op
BenchmarkMatchGlob/test.alz-8 2000000 633 ns/op
BenchmarkMatchGlob/test.avf-8 2000000 665 ns/op
BenchmarkMatchGlob/test.avi-8 2000000 632 ns/op
BenchmarkMatchGlob/test.bflng-8 2000000 603 ns/op
BenchmarkMatchGlob/test.bmp-8 2000000 638 ns/op
BenchmarkMatchGlob/test.bsdiff-8 2000000 785 ns/op
BenchmarkMatchGlob/testcase.is-really-a-pdf-8 2000000 989 ns/op
BenchmarkMatchGlob/testcases.ksp-8 2000000 905 ns/op
BenchmarkMatchGlob/test.cbl-8 2000000 629 ns/op
BenchmarkMatchGlob/test.ccmx-8 2000000 686 ns/op
BenchmarkMatchGlob/test-cdda.toc-8 2000000 886 ns/op
BenchmarkMatchGlob/test-cdrom.toc-8 2000000 960 ns/op
BenchmarkMatchGlob/test.cel-8 3000000 502 ns/op
BenchmarkMatchGlob/test.cl-8 3000000 608 ns/op
BenchmarkMatchGlob/test.class-8 2000000 759 ns/op
BenchmarkMatchGlob/test.cmake-8 2000000 725 ns/op
BenchmarkMatchGlob/test.coffee-8 2000000 771 ns/op
BenchmarkMatchGlob/testcompress.z-8 2000000 930 ns/op
BenchmarkMatchGlob/test.cs-8 2000000 596 ns/op
BenchmarkMatchGlob/test.csvs-8 2000000 686 ns/op
BenchmarkMatchGlob/test.d-8 3000000 532 ns/op
BenchmarkMatchGlob/test.dcm-8 2000000 645 ns/op
BenchmarkMatchGlob/test.djvu-8 2000000 876 ns/op
BenchmarkMatchGlob/test.dot-8 2000000 826 ns/op
BenchmarkMatchGlob/test.dts-8 2000000 653 ns/op
BenchmarkMatchGlob/test.dtshd-8 2000000 740 ns/op
BenchmarkMatchGlob/test-en.mo-8 2000000 965 ns/op
BenchmarkMatchGlob/test-en.po-8 2000000 730 ns/op
BenchmarkMatchGlob/test.eps-8 2000000 633 ns/op
BenchmarkMatchGlob/test.ext,v-8 2000000 748 ns/op
BenchmarkMatchGlob/test.feature-8 2000000 828 ns/op
BenchmarkMatchGlob/test.fit-8 3000000 491 ns/op
BenchmarkMatchGlob/test.fl-8 2000000 613 ns/op
BenchmarkMatchGlob/test.flac-8 2000000 674 ns/op
BenchmarkMatchGlob/test.fli-8 2000000 668 ns/op
BenchmarkMatchGlob/test.gbr-8 2000000 641 ns/op
BenchmarkMatchGlob/test.gcode-8 2000000 742 ns/op
BenchmarkMatchGlob/test.geo.json-8 1000000 1128 ns/op
BenchmarkMatchGlob/test.geojson-8 2000000 846 ns/op
BenchmarkMatchGlob/test-gettext.c-8 2000000 944 ns/op
BenchmarkMatchGlob/test.gif-8 2000000 659 ns/op
BenchmarkMatchGlob/test.gih-8 2000000 666 ns/op
BenchmarkMatchGlob/test.gnd-8 2000000 641 ns/op
BenchmarkMatchGlob/test.go-8 2000000 609 ns/op
BenchmarkMatchGlob/test.gpx-8 2000000 641 ns/op
BenchmarkMatchGlob/test.gs-8 2000000 610 ns/op
BenchmarkMatchGlob/test.h5-8 2000000 597 ns/op
BenchmarkMatchGlob/test.hdf4-8 2000000 686 ns/op
BenchmarkMatchGlob/test.hlp-8 2000000 652 ns/op
BenchmarkMatchGlob/test.ico-8 2000000 646 ns/op
BenchmarkMatchGlob/test.ilbm-8 2000000 696 ns/op
BenchmarkMatchGlob/test.im1-8 3000000 483 ns/op
BenchmarkMatchGlob/test.iptables-8 2000000 877 ns/op
BenchmarkMatchGlob/test.ipynb-8 2000000 747 ns/op
BenchmarkMatchGlob/test.it87-8 2000000 682 ns/op
BenchmarkMatchGlob/test.jar-8 2000000 642 ns/op
BenchmarkMatchGlob/test.jceks-8 2000000 758 ns/op
BenchmarkMatchGlob/test.jks-8 2000000 647 ns/op
BenchmarkMatchGlob/test.jnlp-8 2000000 691 ns/op
BenchmarkMatchGlob/test.jpg-8 2000000 648 ns/op
BenchmarkMatchGlob/test.kdc-8 2000000 648 ns/op
BenchmarkMatchGlob/test.key-8 2000000 638 ns/op
BenchmarkMatchGlob/test-kounavail2.kwd-8 1000000 1138 ns/op
BenchmarkMatchGlob/test.lwp-8 2000000 648 ns/op
BenchmarkMatchGlob/test.lz-8 2000000 584 ns/op
BenchmarkMatchGlob/test.lz4-8 2000000 646 ns/op
BenchmarkMatchGlob/test.lzo-8 2000000 658 ns/op
BenchmarkMatchGlob/test.manifest-8 2000000 865 ns/op
BenchmarkMatchGlob/test.metalink-8 2000000 887 ns/op
BenchmarkMatchGlob/test.mml-8 2000000 648 ns/op
BenchmarkMatchGlob/test.mng-8 2000000 650 ns/op
BenchmarkMatchGlob/test.mo-8 2000000 797 ns/op
BenchmarkMatchGlob/test.mobi-8 2000000 703 ns/op
BenchmarkMatchGlob/test.mof-8 2000000 651 ns/op
BenchmarkMatchGlob/test.msi-8 2000000 651 ns/op
BenchmarkMatchGlob/test-noid3.mp3-8 2000000 924 ns/op
BenchmarkMatchGlob/test.ogg-8 2000000 997 ns/op
BenchmarkMatchGlob/test.ooc-8 2000000 652 ns/op
BenchmarkMatchGlob/test.opus-8 2000000 875 ns/op
BenchmarkMatchGlob/test.owx-8 2000000 655 ns/op
BenchmarkMatchGlob/test.p12-8 2000000 634 ns/op
BenchmarkMatchGlob/test-p6.ppm-8 2000000 816 ns/op
BenchmarkMatchGlob/test.p7b-8 2000000 850 ns/op
BenchmarkMatchGlob/test.pat-8 2000000 637 ns/op
BenchmarkMatchGlob/test.pbm-8 2000000 671 ns/op
BenchmarkMatchGlob/test.pcx-8 2000000 644 ns/op
BenchmarkMatchGlob/test.pdf.lz-8 1000000 1054 ns/op
BenchmarkMatchGlob/test.pdf.xz-8 1000000 1039 ns/op
BenchmarkMatchGlob/test.pgm-8 2000000 631 ns/op
BenchmarkMatchGlob/test.pgn-8 2000000 643 ns/op
BenchmarkMatchGlob/test.php-8 2000000 640 ns/op
BenchmarkMatchGlob/test.pix-8 3000000 498 ns/op
BenchmarkMatchGlob/test.pkipath-8 2000000 870 ns/op
BenchmarkMatchGlob/test.pl-8 2000000 611 ns/op
BenchmarkMatchGlob/test.pm-8 2000000 807 ns/op
BenchmarkMatchGlob/test.pmd-8 2000000 654 ns/op
BenchmarkMatchGlob/test.png-8 2000000 643 ns/op
BenchmarkMatchGlob/test.por-8 2000000 665 ns/op
BenchmarkMatchGlob/test.pot-8 2000000 854 ns/op
BenchmarkMatchGlob/test.ppm-8 2000000 647 ns/op
BenchmarkMatchGlob/test.ps-8 2000000 605 ns/op
BenchmarkMatchGlob/test.psd-8 2000000 652 ns/op
BenchmarkMatchGlob/test-public-key.asc-8 1000000 1347 ns/op
BenchmarkMatchGlob/test.py-8 2000000 833 ns/op
BenchmarkMatchGlob/test.py3-8 2000000 641 ns/op
BenchmarkMatchGlob/test.pyx-8 2000000 670 ns/op
BenchmarkMatchGlob/test.qp-8 2000000 605 ns/op
BenchmarkMatchGlob/test.qti-8 2000000 658 ns/op
BenchmarkMatchGlob/test.raml-8 2000000 683 ns/op
BenchmarkMatchGlob/test.random-8 2000000 632 ns/op
BenchmarkMatchGlob/test-reordered.ipynb-8 1000000 1123 ns/op
BenchmarkMatchGlob/test.rs-8 2000000 598 ns/op
BenchmarkMatchGlob/test.sass-8 2000000 705 ns/op
BenchmarkMatchGlob/test.sav-8 2000000 665 ns/op
BenchmarkMatchGlob/test.scala-8 2000000 752 ns/op
BenchmarkMatchGlob/test.scm-8 2000000 668 ns/op
BenchmarkMatchGlob/test.scss-8 2000000 689 ns/op
BenchmarkMatchGlob/test-secret-key.asc-8 1000000 1404 ns/op
BenchmarkMatchGlob/test-secret-key.skr-8 1000000 1141 ns/op
BenchmarkMatchGlob/test.sgi-8 2000000 649 ns/op
BenchmarkMatchGlob/test.sqlite2-8 2000000 826 ns/op
BenchmarkMatchGlob/test.sqlite3-8 2000000 876 ns/op
BenchmarkMatchGlob/test.ss-8 2000000 615 ns/op
BenchmarkMatchGlob/test.sv-8 3000000 598 ns/op
BenchmarkMatchGlob/test.svh-8 2000000 628 ns/op
BenchmarkMatchGlob/test.t-8 2000000 735 ns/op
BenchmarkMatchGlob/test.tar.lz-8 2000000 1053 ns/op
BenchmarkMatchGlob/test.tar.lz4-8 1000000 1114 ns/op
BenchmarkMatchGlob/test-template.dot-8 1000000 1263 ns/op
BenchmarkMatchGlob/test.tex-8 2000000 625 ns/op
BenchmarkMatchGlob/test.tga-8 2000000 655 ns/op
BenchmarkMatchGlob/test.tif-8 2000000 668 ns/op
BenchmarkMatchGlob/test.ts-8 2000000 783 ns/op
BenchmarkMatchGlob/test.ttl-8 2000000 647 ns/op
BenchmarkMatchGlob/test.ttx-8 2000000 643 ns/op
BenchmarkMatchGlob/test.twig-8 2000000 679 ns/op
BenchmarkMatchGlob/test.url-8 2000000 632 ns/op
BenchmarkMatchGlob/test.uue-8 2000000 627 ns/op
BenchmarkMatchGlob/test.v-8 3000000 533 ns/op
BenchmarkMatchGlob/test.vala-8 2000000 671 ns/op
BenchmarkMatchGlob/test.vcf-8 2000000 640 ns/op
BenchmarkMatchGlob/test-vpn.pcf-8 1000000 1036 ns/op
BenchmarkMatchGlob/test.vsd-8 2000000 640 ns/op
BenchmarkMatchGlob/test.wav-8 2000000 646 ns/op
BenchmarkMatchGlob/test.webp-8 2000000 891 ns/op
BenchmarkMatchGlob/test.wim-8 2000000 638 ns/op
BenchmarkMatchGlob/test.wps-8 2000000 638 ns/op
BenchmarkMatchGlob/test.xar-8 2000000 651 ns/op
BenchmarkMatchGlob/test.xbm-8 2000000 631 ns/op
BenchmarkMatchGlob/test.xcf-8 2000000 640 ns/op
BenchmarkMatchGlob/test.xht-8 2000000 633 ns/op
BenchmarkMatchGlob/test.xhtml-8 2000000 740 ns/op
BenchmarkMatchGlob/test.xlr-8 2000000 620 ns/op
BenchmarkMatchGlob/test.xml.in-8 2000000 635 ns/op
BenchmarkMatchGlob/test.xpm-8 2000000 659 ns/op
BenchmarkMatchGlob/test.xsl-8 2000000 645 ns/op
BenchmarkMatchGlob/test.xwd-8 2000000 670 ns/op
BenchmarkMatchGlob/test.yaml-8 2000000 680 ns/op
BenchmarkMatchGlob/test.zip-8 2000000 659 ns/op
BenchmarkMatchGlob/test.zz-8 2000000 594 ns/op
BenchmarkMatchGlob/text-iso8859-15.txt-8 1000000 1098 ns/op
BenchmarkMatchGlob/text.pdf-8 2000000 627 ns/op
BenchmarkMatchGlob/text.ps-8 3000000 609 ns/op
BenchmarkMatchGlob/text.ps.gz-8 2000000 1003 ns/op
BenchmarkMatchGlob/text.PS.gz-8 1000000 1130 ns/op
BenchmarkMatchGlob/text.qmlproject-8 2000000 996 ns/op
BenchmarkMatchGlob/text-utf8.txt-8 2000000 886 ns/op
BenchmarkMatchGlob/text.wwf-8 2000000 653 ns/op
BenchmarkMatchGlob/tree-list-8 3000000 536 ns/op
BenchmarkMatchGlob/TS010082249.pub-8 1000000 1074 ns/op
BenchmarkMatchGlob/upc-video-subtitles-en.vtt-8 1000000 1129 ns/op
BenchmarkMatchGlob/Utils.jsm-8 2000000 797 ns/op
BenchmarkMatchGlob/virtual-boy-wario-land.vb-8 1000000 1142 ns/op
BenchmarkMatchGlob/weather_sun.xcf-8 2000000 976 ns/op
BenchmarkMatchGlob/webfinger.jrd-8 2000000 889 ns/op
BenchmarkMatchGlob/white_640x480.kra-8 1000000 1049 ns/op
BenchmarkMatchGlob/wii.wad-8 2000000 779 ns/op
BenchmarkMatchGlob/wonderswan-color-chocobo.wsc-8 1000000 1135 ns/op
BenchmarkMatchGlob/wonderswan-rockman-forte.ws-8 1000000 1139 ns/op
BenchmarkMatchGlob/xml-in-mp3.mp3-8 2000000 930 ns/op
BenchmarkMatchMagic/2001_compression_overview.djvu-8 1000000 1357 ns/op
BenchmarkMatchMagic/32x-rom.32x-8 200000 7381 ns/op
BenchmarkMatchMagic/4jsno.669-8 100000 15440 ns/op
BenchmarkMatchMagic/560051.xml-8 50000 34361 ns/op
BenchmarkMatchMagic/adf-test.adf-8 200000 11577 ns/op
BenchmarkMatchMagic/aero_alt.cur-8 200000 9897 ns/op
BenchmarkMatchMagic/all_w.m3u8-8 500000 2200 ns/op
BenchmarkMatchMagic/Anaphraseus-1.21-beta.oxt-8 300000 4700 ns/op
BenchmarkMatchMagic/ancp.pcap-8 100000 13292 ns/op
BenchmarkMatchMagic/androide.k7-8 100000 16353 ns/op
BenchmarkMatchMagic/aportis.pdb-8 200000 6544 ns/op
BenchmarkMatchMagic/archive.7z-8 500000 3116 ns/op
BenchmarkMatchMagic/archive.lrz-8 500000 3411 ns/op
BenchmarkMatchMagic/archive.tar-8 300000 4429 ns/op
BenchmarkMatchMagic/ascii.stl-8 100000 13026 ns/op
BenchmarkMatchMagic/atari-2600-test.A26-8 100000 14836 ns/op
BenchmarkMatchMagic/atari-7800-test.A78-8 200000 7299 ns/op
BenchmarkMatchMagic/atari-lynx-chips-challenge.lnx-8 100000 12685 ns/op
BenchmarkMatchMagic/attachment.tif-8 100000 15781 ns/op
BenchmarkMatchMagic/balloon.j2c-8 100000 16162 ns/op
BenchmarkMatchMagic/balloon.jp2-8 200000 10807 ns/op
BenchmarkMatchMagic/balloon.jpf-8 200000 6778 ns/op
BenchmarkMatchMagic/balloon.jpm-8 200000 6932 ns/op
BenchmarkMatchMagic/balloon.mj2-8 200000 6340 ns/op
BenchmarkMatchMagic/bathead.sk-8 200000 9938 ns/op
BenchmarkMatchMagic/bbc.ram-8 100000 14996 ns/op
BenchmarkMatchMagic/bibtex.bib-8 300000 4071 ns/op
BenchmarkMatchMagic/binary.stl-8 100000 14068 ns/op
BenchmarkMatchMagic/blitz.m7-8 100000 14127 ns/op
BenchmarkMatchMagic/bluerect.mdi-8 100000 12660 ns/op
BenchmarkMatchMagic/bluish.icc-8 100000 14310 ns/op
BenchmarkMatchMagic/break.mtm-8 100000 15885 ns/op
BenchmarkMatchMagic/bug106330.iso-8 100000 14898 ns/op
BenchmarkMatchMagic/bug-30656-xchat.conf-8 50000 27157 ns/op
BenchmarkMatchMagic/bug39126-broken.ppm-8 100000 12764 ns/op
BenchmarkMatchMagic/bug39126-working.ppm-8 100000 13057 ns/op
BenchmarkMatchMagic/build.gradle-8 100000 16430 ns/op
BenchmarkMatchMagic/ccfilm.axv-8 200000 7802 ns/op
BenchmarkMatchMagic/classiq1.hfe-8 200000 7692 ns/op
BenchmarkMatchMagic/colormapped.tga-8 100000 14391 ns/op
BenchmarkMatchMagic/combined.karbon-8 300000 4691 ns/op
BenchmarkMatchMagic/comics.cb7-8 500000 3092 ns/op
BenchmarkMatchMagic/comics.cbt-8 500000 3294 ns/op
BenchmarkMatchMagic/COPYING.asc-8 300000 4768 ns/op
BenchmarkMatchMagic/copying.cab-8 200000 6885 ns/op
BenchmarkMatchMagic/COPYING-clearsign.asc-8 50000 35110 ns/op
BenchmarkMatchMagic/COPYING-encrypted.asc-8 200000 8268 ns/op
BenchmarkMatchMagic/core-8 100000000 12.5 ns/op
BenchmarkMatchMagic/Core-8 100000000 12.4 ns/op
BenchmarkMatchMagic/ct_faac-adts.aac-8 100000 16617 ns/op
BenchmarkMatchMagic/cube.igs-8 200000 7866 ns/op
BenchmarkMatchMagic/cube.wrl-8 100000 20716 ns/op
BenchmarkMatchMagic/cyborg.med-8 100000 14832 ns/op
BenchmarkMatchMagic/dbus-comment.service-8 200000 6411 ns/op
BenchmarkMatchMagic/dbus.service-8 300000 5247 ns/op
BenchmarkMatchMagic/debian-goodies_0.63_all.deb-8 200000 9048 ns/op
BenchmarkMatchMagic/dia.shape-8 100000 15481 ns/op
BenchmarkMatchMagic/disk.img-8 100000000 12.4 ns/op
BenchmarkMatchMagic/disk.img.xz-8 500000 2656 ns/op
BenchmarkMatchMagic/disk.raw-disk-image-8 100000000 12.3 ns/op
BenchmarkMatchMagic/disk.raw-disk-image.xz-8 500000 2659 ns/op
BenchmarkMatchMagic/dns.cap-8 100000 13638 ns/op
BenchmarkMatchMagic/editcopy.png-8 100000 13331 ns/op
BenchmarkMatchMagic/Elephants_Dream-360p-Stereo.webm-8 200000 9358 ns/op
BenchmarkMatchMagic/Empty.chrt-8 300000 4506 ns/op
BenchmarkMatchMagic/en_US.zip.meta4-8 100000 18130 ns/op
BenchmarkMatchMagic/esm.mjs-8 100000 12050 ns/op
BenchmarkMatchMagic/evolution.eml-8 100000 18707 ns/op
BenchmarkMatchMagic/example_42_all.snap-8 100000 12402 ns/op
BenchmarkMatchMagic/example.heic-8 100000 20398 ns/op
BenchmarkMatchMagic/example.heif-8 100000 20445 ns/op
BenchmarkMatchMagic/feed2-8 200000 7545 ns/op
BenchmarkMatchMagic/feed.atom-8 200000 7138 ns/op
BenchmarkMatchMagic/feed.rss-8 200000 7654 ns/op
BenchmarkMatchMagic/feeds.opml-8 200000 6285 ns/op
BenchmarkMatchMagic/foo-0.1-1.fc18.src.rpm-8 100000 14140 ns/op
BenchmarkMatchMagic/foo.doc-8 500000 3555 ns/op
BenchmarkMatchMagic/fuji.themepack-8 500000 3368 ns/op
BenchmarkMatchMagic/game-boy-color-test.gbc-8 300000 5051 ns/op
BenchmarkMatchMagic/game-boy-test.gb-8 300000 4437 ns/op
BenchmarkMatchMagic/game-gear-test.gg-8 100000 16209 ns/op
BenchmarkMatchMagic/GammaChart.exr-8 100000 14703 ns/op
BenchmarkMatchMagic/gedit.flatpakref-8 200000 9205 ns/op
BenchmarkMatchMagic/genesis1.bin-8 200000 10529 ns/op
BenchmarkMatchMagic/genesis2.bin-8 200000 10164 ns/op
BenchmarkMatchMagic/gnome.flatpakrepo-8 200000 6617 ns/op
BenchmarkMatchMagic/good-1-delta-lzma2.tiff.xz-8 500000 3700 ns/op
BenchmarkMatchMagic/googleearth.kml-8 100000 22175 ns/op
BenchmarkMatchMagic/gtk-builder.ui-8 100000 18940 ns/op
BenchmarkMatchMagic/hbo-playlist.qtl-8 300000 5158 ns/op
BenchmarkMatchMagic/hello.flatpak-8 200000 9380 ns/op
BenchmarkMatchMagic/hello.pack-8 500000 3485 ns/op
BenchmarkMatchMagic/helloworld.groovy-8 200000 9748 ns/op
BenchmarkMatchMagic/helloworld.java-8 200000 10311 ns/op
BenchmarkMatchMagic/helloworld.xpi-8 300000 4805 ns/op
BenchmarkMatchMagic/hello.xdgapp-8 200000 6812 ns/op
BenchmarkMatchMagic/hereyes_remake.mo3-8 100000 16894 ns/op
BenchmarkMatchMagic/html4.css-8 100000 23681 ns/op
BenchmarkMatchMagic/html5.css-8 50000 25294 ns/op
BenchmarkMatchMagic/image.sqsh-8 100000 13665 ns/op
BenchmarkMatchMagic/img_5304.jpg-8 100000 14960 ns/op
BenchmarkMatchMagic/internet.ez-8 50000 29674 ns/op
BenchmarkMatchMagic/isdir.m-8 100000 19305 ns/op
BenchmarkMatchMagic/ISOcyr1.ent-8 100000 21952 ns/op
BenchmarkMatchMagic/iso-file.iso-8 100000 14727 ns/op
BenchmarkMatchMagic/IWAD.WAD-8 200000 11284 ns/op
BenchmarkMatchMagic/javascript-without-extension-8 200000 6729 ns/op
BenchmarkMatchMagic/jc-win.ani-8 200000 8244 ns/op
BenchmarkMatchMagic/json_array.json-8 100000 16676 ns/op
BenchmarkMatchMagic/json-ld-full-iri.jsonld-8 100000 15034 ns/op
BenchmarkMatchMagic/json_object.json-8 100000 16570 ns/op
BenchmarkMatchMagic/layersupdatesignals.flw-8 300000 4535 ns/op
BenchmarkMatchMagic/Leafpad-0.8.17-x86_64.AppImage-8 200000 8469 ns/op
BenchmarkMatchMagic/Leafpad-0.8.18.1.glibc2.4-x86_64.AppImage-8 200000 8569 ns/op
BenchmarkMatchMagic/libcompat.a-8 100000 15984 ns/op
BenchmarkMatchMagic/libcompat.ar-8 100000 15748 ns/op
BenchmarkMatchMagic/LiberationSans-Regular.ttf-8 100000 13650 ns/op
BenchmarkMatchMagic/LiberationSans-Regular.woff-8 100000 15044 ns/op
BenchmarkMatchMagic/linguist.ts-8 100000 21560 ns/op
BenchmarkMatchMagic/list-8 50000 37289 ns/op
BenchmarkMatchMagic/live-streaming.m3u-8 1000000 1866 ns/op
BenchmarkMatchMagic/lucid-tab-bg.xcf-8 200000 8585 ns/op
BenchmarkMatchMagic/m64p_test_rom.n64-8 100000 15178 ns/op
BenchmarkMatchMagic/m64p_test_rom.v64-8 100000 15079 ns/op
BenchmarkMatchMagic/m64p_test_rom.z64-8 100000 15081 ns/op
BenchmarkMatchMagic/Makefile-8 100000 14252 ns/op
BenchmarkMatchMagic/Makefile.gnu-8 100000 13832 ns/op
BenchmarkMatchMagic/markdown.md-8 100000 14971 ns/op
BenchmarkMatchMagic/mega-drive-rom.gen-8 200000 10418 ns/op
BenchmarkMatchMagic/menu.ini-8 100000 20352 ns/op
BenchmarkMatchMagic/meson.build-8 100000 14111 ns/op
BenchmarkMatchMagic/meson_options.txt-8 100000 14247 ns/op
BenchmarkMatchMagic/Metroid_japan.fds-8 200000 5699 ns/op
BenchmarkMatchMagic/msg0001.gsm-8 100000 17875 ns/op
BenchmarkMatchMagic/msx2-metal-gear.msx-8 100000 14645 ns/op
BenchmarkMatchMagic/msx-penguin-adventure.msx-8 100000 17773 ns/op
BenchmarkMatchMagic/my-data.json-patch-8 100000 15929 ns/op
BenchmarkMatchMagic/mypaint.ora-8 500000 3038 ns/op
BenchmarkMatchMagic/mysum.m-8 200000 7379 ns/op
BenchmarkMatchMagic/neo-geo-pocket-color-test.ngc-8 300000 4961 ns/op
BenchmarkMatchMagic/neo-geo-pocket-test.ngp-8 300000 4319 ns/op
BenchmarkMatchMagic/newtonme.pict-8 200000 8311 ns/op
BenchmarkMatchMagic/nrl.trig-8 50000 31712 ns/op
BenchmarkMatchMagic/ocf10-20060911.epub-8 500000 3228 ns/op
BenchmarkMatchMagic/office.doc-8 500000 3479 ns/op
BenchmarkMatchMagic/one-file.tnef-8 100000 13574 ns/op
BenchmarkMatchMagic/ooo25876-2.pct-8 200000 9300 ns/op
BenchmarkMatchMagic/ooo-6.0.doc-8 500000 3605 ns/op
BenchmarkMatchMagic/ooo-95.doc-8 500000 3518 ns/op
BenchmarkMatchMagic/ooo.doc-8 300000 3614 ns/op
BenchmarkMatchMagic/ooo.rtf-8 100000 13840 ns/op
BenchmarkMatchMagic/ooo.sdw-8 30000000 42.2 ns/op
BenchmarkMatchMagic/ooo.stw-8 500000 3360 ns/op
BenchmarkMatchMagic/ooo.sxw-8 300000 3399 ns/op
BenchmarkMatchMagic/ooo-test.fodg-8 30000 41330 ns/op
BenchmarkMatchMagic/ooo-test.fodp-8 50000 40049 ns/op
BenchmarkMatchMagic/ooo-test.fods-8 50000 39179 ns/op
BenchmarkMatchMagic/ooo-test.fodt-8 50000 38739 ns/op
BenchmarkMatchMagic/ooo-test.odg-8 500000 2988 ns/op
BenchmarkMatchMagic/ooo-test.odp-8 500000 2814 ns/op
BenchmarkMatchMagic/ooo-test.ods-8 500000 2923 ns/op
BenchmarkMatchMagic/ooo-test.odt-8 500000 3323 ns/op
BenchmarkMatchMagic/ooo.vor-8 30000000 43.3 ns/op
BenchmarkMatchMagic/ooo-xp.doc-8 500000 3565 ns/op
BenchmarkMatchMagic/Oriental_tattoo_by_daftpunk22.eps-8 20000000 75.7 ns/op
BenchmarkMatchMagic/panasonic_lumix_dmc_fz38_05.rw2-8 200000 9516 ns/op
BenchmarkMatchMagic/pdf-not-matlab-8 200000 9331 ns/op
BenchmarkMatchMagic/petite-ouverture-a-danser.ly-8 50000 23762 ns/op
BenchmarkMatchMagic/pico-rom.bin-8 200000 6827 ns/op
BenchmarkMatchMagic/playlist.asx-8 200000 7448 ns/op
BenchmarkMatchMagic/playlist.mrl-8 200000 11698 ns/op
BenchmarkMatchMagic/playlist.wpl-8 200000 5811 ns/op
BenchmarkMatchMagic/plugins.qmltypes-8 2000000 668 ns/op
BenchmarkMatchMagic/pocket-word.psw-8 200000 10004 ns/op
BenchmarkMatchMagic/pom.xml-8 50000 31552 ns/op
BenchmarkMatchMagic/Presentation.kpt-8 500000 2904 ns/op
BenchmarkMatchMagic/project.glade-8 200000 7410 ns/op
BenchmarkMatchMagic/PWAD.WAD-8 200000 11148 ns/op
BenchmarkMatchMagic/pyside.py-8 300000 5599 ns/op
BenchmarkMatchMagic/raw-mjpeg.mjpeg-8 100000 15079 ns/op
BenchmarkMatchMagic/README.pdf-8 100000 23467 ns/op
BenchmarkMatchMagic/rectangle.qml-8 2000000 604 ns/op
BenchmarkMatchMagic/registry-nt.reg-8 200000 8807 ns/op
BenchmarkMatchMagic/registry.reg-8 200000 10977 ns/op
BenchmarkMatchMagic/reStructuredText.rst-8 100000 20726 ns/op
BenchmarkMatchMagic/rgb-reference.ktx-8 3000000 541 ns/op
BenchmarkMatchMagic/ringtone.ime-8 300000 5574 ns/op
BenchmarkMatchMagic/ringtone.m4r-8 200000 8651 ns/op
BenchmarkMatchMagic/ringtone.mmf-8 100000 15304 ns/op
BenchmarkMatchMagic/ripoux.sap-8 300000 4202 ns/op
BenchmarkMatchMagic/sample1.nzb-8 500000 2427 ns/op
BenchmarkMatchMagic/sample2.amr-8 100000 12152 ns/op
BenchmarkMatchMagic/sample.docx-8 300000 4472 ns/op
BenchmarkMatchMagic/sample.png.lzma-8 100000 14516 ns/op
BenchmarkMatchMagic/sample.ppsx-8 300000 4940 ns/op
BenchmarkMatchMagic/sample.pptx-8 300000 4589 ns/op
BenchmarkMatchMagic/sample.vsdx-8 300000 4545 ns/op
BenchmarkMatchMagic/sample.xlsx-8 300000 4458 ns/op
BenchmarkMatchMagic/saturn-test.bin-8 300000 5564 ns/op
BenchmarkMatchMagic/SConscript-8 50000 36004 ns/op
BenchmarkMatchMagic/SConscript.buildinfo-8 100000 22926 ns/op
BenchmarkMatchMagic/SConstruct-8 50000 32020 ns/op
BenchmarkMatchMagic/sega-cd-test.iso-8 500000 2621 ns/op
BenchmarkMatchMagic/serafettin.rar-8 300000 4689 ns/op
BenchmarkMatchMagic/settings.xml-8 100000 17143 ns/op
BenchmarkMatchMagic/settopbox.ts-8 100000 11483 ns/op
BenchmarkMatchMagic/sg1000-test.sg-8 100000 14082 ns/op
BenchmarkMatchMagic/shebang.qml-8 2000000 631 ns/op
BenchmarkMatchMagic/simon.669-8 100000 17611 ns/op
BenchmarkMatchMagic/simple-obj-c.m-8 100000 14866 ns/op
BenchmarkMatchMagic/small_wav.mxf-8 200000 7418 ns/op
BenchmarkMatchMagic/sms-test.sms-8 100000 14504 ns/op
BenchmarkMatchMagic/spinboxes-0.1.1-Linux.tar.xz-8 300000 4062 ns/op
BenchmarkMatchMagic/sqlite2.kexi-8 300000 4649 ns/op
BenchmarkMatchMagic/sqlite3.kexi-8 200000 5703 ns/op
BenchmarkMatchMagic/ssh-public-key.txt-8 100000 16459 ns/op
BenchmarkMatchMagic/Stallman_Richard_-_The_GNU_Manifesto.fb2-8 2000000 911 ns/op
BenchmarkMatchMagic/Stallman_Richard_-_The_GNU_Manifesto.fb2.zip-8 500000 2942 ns/op
BenchmarkMatchMagic/stream.nsc-8 200000 8193 ns/op
BenchmarkMatchMagic/stream.sdp-8 100000 13304 ns/op
BenchmarkMatchMagic/subshapes.swf-8 100000 12666 ns/op
BenchmarkMatchMagic/subtitle-microdvd.sub-8 100000 14289 ns/op
BenchmarkMatchMagic/subtitle-mpsub.sub-8 200000 11429 ns/op
BenchmarkMatchMagic/subtitle.smi-8 100000 17898 ns/op
BenchmarkMatchMagic/subtitle.srt-8 200000 9475 ns/op
BenchmarkMatchMagic/subtitle.ssa-8 200000 8775 ns/op
BenchmarkMatchMagic/subtitle-subviewer.sub-8 200000 6661 ns/op
BenchmarkMatchMagic/survey.js-8 50000 26360 ns/op
BenchmarkMatchMagic/systemd.automount-8 200000 8007 ns/op
BenchmarkMatchMagic/systemd.device-8 200000 10972 ns/op
BenchmarkMatchMagic/systemd.mount-8 200000 9623 ns/op
BenchmarkMatchMagic/systemd.path-8 200000 7778 ns/op
BenchmarkMatchMagic/systemd.scope-8 200000 9352 ns/op
BenchmarkMatchMagic/systemd.service-8 200000 9060 ns/op
BenchmarkMatchMagic/systemd.slice-8 200000 7622 ns/op
BenchmarkMatchMagic/systemd.socket-8 200000 8066 ns/op
BenchmarkMatchMagic/systemd.swap-8 200000 8329 ns/op
BenchmarkMatchMagic/systemd.target-8 200000 7823 ns/op
BenchmarkMatchMagic/systemd.timer-8 200000 7865 ns/op
BenchmarkMatchMagic/tb-from-sentbox.eml-8 100000 14323 ns/op
BenchmarkMatchMagic/tb-saved.eml-8 100000 12488 ns/op
BenchmarkMatchMagic/test10.gpx-8 100000 17693 ns/op
BenchmarkMatchMagic/test1.pcf-8 100000 12382 ns/op
BenchmarkMatchMagic/test2.pcf-8 100000 14431 ns/op
BenchmarkMatchMagic/test2.ppm-8 100000 18695 ns/op
BenchmarkMatchMagic/test2.tga-8 200000 10245 ns/op
BenchmarkMatchMagic/test3.py-8 500000 3500 ns/op
BenchmarkMatchMagic/test.aa-8 100000 17516 ns/op
BenchmarkMatchMagic/test.aax-8 100000 13139 ns/op
BenchmarkMatchMagic/test.aiff-8 100000 13724 ns/op
BenchmarkMatchMagic/test.alz-8 100000 13050 ns/op
BenchmarkMatchMagic/test.avf-8 200000 10385 ns/op
BenchmarkMatchMagic/test.avi-8 200000 10402 ns/op
BenchmarkMatchMagic/test.bflng-8 100000 15231 ns/op
BenchmarkMatchMagic/test.bmp-8 100000 13186 ns/op
BenchmarkMatchMagic/test.bsdiff-8 200000 6697 ns/op
BenchmarkMatchMagic/testcase.is-really-a-pdf-8 100000 15687 ns/op
BenchmarkMatchMagic/testcases.ksp-8 500000 2965 ns/op
BenchmarkMatchMagic/test.cbl-8 100000 16547 ns/op
BenchmarkMatchMagic/test.ccmx-8 100000 14192 ns/op
BenchmarkMatchMagic/test-cdda.toc-8 100000 12433 ns/op
BenchmarkMatchMagic/test-cdrom.toc-8 200000 9027 ns/op
BenchmarkMatchMagic/test.cel-8 100000 15372 ns/op
BenchmarkMatchMagic/test.cl-8 100000 18573 ns/op
BenchmarkMatchMagic/test.class-8 100000 13864 ns/op
BenchmarkMatchMagic/test.cmake-8 100000 13857 ns/op
BenchmarkMatchMagic/test.coffee-8 100000 18664 ns/op
BenchmarkMatchMagic/testcompress.z-8 200000 10011 ns/op
BenchmarkMatchMagic/test.cs-8 100000 16591 ns/op
BenchmarkMatchMagic/test.csvs-8 100000 14436 ns/op
BenchmarkMatchMagic/test.d-8 100000 21639 ns/op
BenchmarkMatchMagic/test.dcm-8 100000 12141 ns/op
BenchmarkMatchMagic/test.djvu-8 2000000 781 ns/op
BenchmarkMatchMagic/test.dot-8 200000 9175 ns/op
BenchmarkMatchMagic/test.dts-8 100000 12819 ns/op
BenchmarkMatchMagic/test.dtshd-8 300000 4083 ns/op
BenchmarkMatchMagic/test-en.mo-8 100000 13198 ns/op
BenchmarkMatchMagic/test-en.po-8 100000 18138 ns/op
BenchmarkMatchMagic/test.eps-8 20000000 64.9 ns/op
BenchmarkMatchMagic/test.ext,v-8 50000 30905 ns/op
BenchmarkMatchMagic/test.feature-8 100000 15176 ns/op
BenchmarkMatchMagic/test.fit-8 200000 8183 ns/op
BenchmarkMatchMagic/test.fl-8 300000 4899 ns/op
BenchmarkMatchMagic/test.flac-8 100000 14441 ns/op
BenchmarkMatchMagic/test.fli-8 100000 16153 ns/op
BenchmarkMatchMagic/test.gbr-8 100000 12300 ns/op
BenchmarkMatchMagic/test.gcode-8 100000 19524 ns/op
BenchmarkMatchMagic/test.geo.json-8 100000 17470 ns/op
BenchmarkMatchMagic/test.geojson-8 100000 17508 ns/op
BenchmarkMatchMagic/test-gettext.c-8 100000 14867 ns/op
BenchmarkMatchMagic/test.gif-8 100000 14259 ns/op
BenchmarkMatchMagic/test.gih-8 100000 16202 ns/op
BenchmarkMatchMagic/test.gnd-8 100000 11810 ns/op
BenchmarkMatchMagic/test.go-8 100000 14022 ns/op
BenchmarkMatchMagic/test.gpx-8 100000 18934 ns/op
BenchmarkMatchMagic/test.gs-8 100000 11392 ns/op
BenchmarkMatchMagic/test.h5-8 100000 12253 ns/op
BenchmarkMatchMagic/test.hdf4-8 100000 13447 ns/op
BenchmarkMatchMagic/test.hlp-8 100000 13918 ns/op
BenchmarkMatchMagic/test.ico-8 200000 10252 ns/op
BenchmarkMatchMagic/test.ilbm-8 100000 12879 ns/op
BenchmarkMatchMagic/test.im1-8 100000 12856 ns/op
BenchmarkMatchMagic/test.iptables-8 200000 6508 ns/op
BenchmarkMatchMagic/test.ipynb-8 200000 7915 ns/op
BenchmarkMatchMagic/test.it87-8 200000 12168 ns/op
BenchmarkMatchMagic/test.jar-8 300000 4464 ns/op
BenchmarkMatchMagic/test.jceks-8 200000 10971 ns/op
BenchmarkMatchMagic/test.jks-8 200000 10369 ns/op
BenchmarkMatchMagic/test.jnlp-8 100000 16418 ns/op
BenchmarkMatchMagic/test.jpg-8 100000 13153 ns/op
BenchmarkMatchMagic/test.kdc-8 10000000 171 ns/op
BenchmarkMatchMagic/test.key-8 500000 2807 ns/op
BenchmarkMatchMagic/test-kounavail2.kwd-8 500000 3148 ns/op
BenchmarkMatchMagic/test.lwp-8 100000 13193 ns/op
BenchmarkMatchMagic/test.lz-8 500000 3203 ns/op
BenchmarkMatchMagic/test.lz4-8 500000 2971 ns/op
BenchmarkMatchMagic/test.lzo-8 500000 2904 ns/op
BenchmarkMatchMagic/test.manifest-8 300000 5098 ns/op
BenchmarkMatchMagic/test.metalink-8 200000 10658 ns/op
BenchmarkMatchMagic/test.mml-8 100000 14844 ns/op
BenchmarkMatchMagic/test.mng-8 200000 9281 ns/op
BenchmarkMatchMagic/test.mo-8 200000 9758 ns/op
BenchmarkMatchMagic/test.mobi-8 1000000 1518 ns/op
BenchmarkMatchMagic/test.mof-8 50000 26639 ns/op
BenchmarkMatchMagic/test.msi-8 50000 23667 ns/op
BenchmarkMatchMagic/test-noid3.mp3-8 100000 16630 ns/op
BenchmarkMatchMagic/test.ogg-8 2000000 659 ns/op
BenchmarkMatchMagic/test.ooc-8 100000 16715 ns/op
BenchmarkMatchMagic/test.opus-8 3000000 533 ns/op
BenchmarkMatchMagic/test.owx-8 200000 9928 ns/op
BenchmarkMatchMagic/test.p12-8 100000 13825 ns/op
BenchmarkMatchMagic/test-p6.ppm-8 100000 12037 ns/op
BenchmarkMatchMagic/test.p7b-8 100000 14901 ns/op
BenchmarkMatchMagic/test.pat-8 100000 12521 ns/op
BenchmarkMatchMagic/test.pbm-8 100000 12305 ns/op
BenchmarkMatchMagic/test.pcx-8 100000 13657 ns/op
BenchmarkMatchMagic/test.pdf.lz-8 300000 4245 ns/op
BenchmarkMatchMagic/test.pdf.xz-8 300000 3999 ns/op
BenchmarkMatchMagic/test.pgm-8 100000 14438 ns/op
BenchmarkMatchMagic/test.pgn-8 100000 12449 ns/op
BenchmarkMatchMagic/test.php-8 1000000 1597 ns/op
BenchmarkMatchMagic/test.pix-8 100000 15287 ns/op
BenchmarkMatchMagic/test.pkipath-8 100000 14831 ns/op
BenchmarkMatchMagic/test.pl-8 200000 8894 ns/op
BenchmarkMatchMagic/test.pm-8 200000 8889 ns/op
BenchmarkMatchMagic/test.pmd-8 100000 12661 ns/op
BenchmarkMatchMagic/test.png-8 100000 12640 ns/op
BenchmarkMatchMagic/test.por-8 300000 4890 ns/op
BenchmarkMatchMagic/test.pot-8 200000 5185 ns/op
BenchmarkMatchMagic/test.ppm-8 100000 14733 ns/op
BenchmarkMatchMagic/test.ps-8 100000 19253 ns/op
BenchmarkMatchMagic/test.psd-8 200000 8015 ns/op
BenchmarkMatchMagic/test-public-key.asc-8 100000 15240 ns/op
BenchmarkMatchMagic/test.py-8 200000 6504 ns/op
BenchmarkMatchMagic/test.py3-8 500000 3514 ns/op
BenchmarkMatchMagic/test.pyx-8 100000 17203 ns/op
BenchmarkMatchMagic/test.qp-8 500000 2702 ns/op
BenchmarkMatchMagic/test.qti-8 100000 13461 ns/op
BenchmarkMatchMagic/test.raml-8 200000 10940 ns/op
BenchmarkMatchMagic/test.random-8 100000 18556 ns/op
BenchmarkMatchMagic/test-reordered.ipynb-8 100000 17837 ns/op
BenchmarkMatchMagic/test.rs-8 100000 13545 ns/op
BenchmarkMatchMagic/test.sass-8 100000 18003 ns/op
BenchmarkMatchMagic/test.sav-8 200000 11229 ns/op
BenchmarkMatchMagic/test.scala-8 100000 13963 ns/op
BenchmarkMatchMagic/test.scm-8 100000 17340 ns/op
BenchmarkMatchMagic/test.scss-8 100000 16915 ns/op
BenchmarkMatchMagic/test-secret-key.asc-8 100000 16181 ns/op
BenchmarkMatchMagic/test-secret-key.skr-8 100000 15545 ns/op
BenchmarkMatchMagic/test.sgi-8 100000 14653 ns/op
BenchmarkMatchMagic/test.sqlite2-8 300000 4940 ns/op
BenchmarkMatchMagic/test.sqlite3-8 200000 6266 ns/op
BenchmarkMatchMagic/test.ss-8 100000 17058 ns/op
BenchmarkMatchMagic/test.sv-8 100000 15446 ns/op
BenchmarkMatchMagic/test.svh-8 100000 14468 ns/op
BenchmarkMatchMagic/test.t-8 100000 11163 ns/op
BenchmarkMatchMagic/test.tar.lz-8 500000 3349 ns/op
BenchmarkMatchMagic/test.tar.lz4-8 500000 3518 ns/op
BenchmarkMatchMagic/test-template.dot-8 300000 5402 ns/op
BenchmarkMatchMagic/test.tex-8 300000 5478 ns/op
BenchmarkMatchMagic/test.tga-8 100000 14695 ns/op
BenchmarkMatchMagic/test.tif-8 200000 11884 ns/op
BenchmarkMatchMagic/test.ts-8 200000 10338 ns/op
BenchmarkMatchMagic/test.ttl-8 100000 18539 ns/op
BenchmarkMatchMagic/test.ttx-8 300000 5787 ns/op
BenchmarkMatchMagic/test.twig-8 100000 20802 ns/op
BenchmarkMatchMagic/test.url-8 300000 5135 ns/op
BenchmarkMatchMagic/test.uue-8 200000 8347 ns/op
BenchmarkMatchMagic/test.v-8 100000 16564 ns/op
BenchmarkMatchMagic/test.vala-8 100000 16712 ns/op
BenchmarkMatchMagic/test.vcf-8 200000 6053 ns/op
BenchmarkMatchMagic/test-vpn.pcf-8 300000 5511 ns/op
BenchmarkMatchMagic/test.vsd-8 100000 11988 ns/op
BenchmarkMatchMagic/test.wav-8 100000 13465 ns/op
BenchmarkMatchMagic/test.webp-8 200000 7905 ns/op
BenchmarkMatchMagic/test.wim-8 200000 7546 ns/op
BenchmarkMatchMagic/test.wps-8 100000 15155 ns/op
BenchmarkMatchMagic/test.xar-8 300000 3872 ns/op
BenchmarkMatchMagic/test.xbm-8 100000 15555 ns/op
BenchmarkMatchMagic/test.xcf-8 200000 8286 ns/op
BenchmarkMatchMagic/test.xht-8 300000 4049 ns/op
BenchmarkMatchMagic/test.xhtml-8 300000 4103 ns/op
BenchmarkMatchMagic/test.xlr-8 100000 11910 ns/op
BenchmarkMatchMagic/test.xml.in-8 50000 37568 ns/op
BenchmarkMatchMagic/test.xpm-8 100000 14716 ns/op
BenchmarkMatchMagic/test.xsl-8 200000 7869 ns/op
BenchmarkMatchMagic/test.xwd-8 100000 15365 ns/op
BenchmarkMatchMagic/test.yaml-8 200000 8469 ns/op
BenchmarkMatchMagic/test.zip-8 300000 3965 ns/op
BenchmarkMatchMagic/test.zz-8 100000 11504 ns/op
BenchmarkMatchMagic/text-iso8859-15.txt-8 100000 13954 ns/op
BenchmarkMatchMagic/text.pdf-8 100000 23622 ns/op
BenchmarkMatchMagic/text.ps-8 50000 28784 ns/op
BenchmarkMatchMagic/text.ps.gz-8 100000 16336 ns/op
BenchmarkMatchMagic/text.PS.gz-8 100000 16206 ns/op
BenchmarkMatchMagic/text.qmlproject-8 2000000 842 ns/op
BenchmarkMatchMagic/text-utf8.txt-8 100000 13554 ns/op
BenchmarkMatchMagic/text.wwf-8 100000 16803 ns/op
BenchmarkMatchMagic/tree-list-8 100000 18387 ns/op
BenchmarkMatchMagic/TS010082249.pub-8 100000 12272 ns/op
BenchmarkMatchMagic/upc-video-subtitles-en.vtt-8 100000 13104 ns/op
BenchmarkMatchMagic/Utils.jsm-8 100000 23066 ns/op
BenchmarkMatchMagic/virtual-boy-wario-land.vb-8 100000 15359 ns/op
BenchmarkMatchMagic/weather_sun.xcf-8 200000 9004 ns/op
BenchmarkMatchMagic/webfinger.jrd-8 100000 15613 ns/op
BenchmarkMatchMagic/white_640x480.kra-8 300000 4571 ns/op
BenchmarkMatchMagic/wii.wad-8 200000 11480 ns/op
BenchmarkMatchMagic/wonderswan-color-chocobo.wsc-8 100000 16433 ns/op
BenchmarkMatchMagic/wonderswan-rockman-forte.ws-8 100000 15350 ns/op
BenchmarkMatchMagic/xml-in-mp3.mp3-8 100000 19470 ns/op
BenchmarkMatchAll/2001_compression_overview.djvu-8 500000 2765 ns/op
BenchmarkMatchAll/32x-rom.32x-8 200000 8663 ns/op
BenchmarkMatchAll/4jsno.669-8 100000 16628 ns/op
BenchmarkMatchAll/560051.xml-8 50000 36832 ns/op
BenchmarkMatchAll/adf-test.adf-8 100000 12901 ns/op
BenchmarkMatchAll/aero_alt.cur-8 200000 11218 ns/op
BenchmarkMatchAll/all_w.m3u8-8 300000 3701 ns/op
BenchmarkMatchAll/Anaphraseus-1.21-beta.oxt-8 200000 6083 ns/op
BenchmarkMatchAll/ancp.pcap-8 100000 14689 ns/op
BenchmarkMatchAll/androide.k7-8 100000 17707 ns/op
BenchmarkMatchAll/aportis.pdb-8 200000 7986 ns/op
BenchmarkMatchAll/archive.7z-8 300000 4433 ns/op
BenchmarkMatchAll/archive.lrz-8 300000 4701 ns/op
BenchmarkMatchAll/archive.tar-8 300000 5721 ns/op
BenchmarkMatchAll/ascii.stl-8 100000 14318 ns/op
BenchmarkMatchAll/atari-2600-test.A26-8 100000 16541 ns/op
BenchmarkMatchAll/atari-7800-test.A78-8 200000 8791 ns/op
BenchmarkMatchAll/atari-lynx-chips-challenge.lnx-8 100000 14109 ns/op
BenchmarkMatchAll/attachment.tif-8 100000 18018 ns/op
BenchmarkMatchAll/balloon.j2c-8 100000 17305 ns/op
BenchmarkMatchAll/balloon.jp2-8 100000 12029 ns/op
BenchmarkMatchAll/balloon.jpf-8 200000 8020 ns/op
BenchmarkMatchAll/balloon.jpm-8 200000 8329 ns/op
BenchmarkMatchAll/balloon.mj2-8 200000 7789 ns/op
BenchmarkMatchAll/bathead.sk-8 200000 11249 ns/op
BenchmarkMatchAll/bbc.ram-8 100000 19251 ns/op
BenchmarkMatchAll/bibtex.bib-8 300000 5324 ns/op
BenchmarkMatchAll/binary.stl-8 100000 15491 ns/op
BenchmarkMatchAll/blitz.m7-8 100000 15583 ns/op
BenchmarkMatchAll/bluerect.mdi-8 100000 13937 ns/op
BenchmarkMatchAll/bluish.icc-8 100000 15649 ns/op
BenchmarkMatchAll/break.mtm-8 100000 17223 ns/op
BenchmarkMatchAll/bug106330.iso-8 100000 16751 ns/op
BenchmarkMatchAll/bug-30656-xchat.conf-8 50000 28364 ns/op
BenchmarkMatchAll/bug39126-broken.ppm-8 100000 14280 ns/op
BenchmarkMatchAll/bug39126-working.ppm-8 100000 14409 ns/op
BenchmarkMatchAll/build.gradle-8 100000 17871 ns/op
BenchmarkMatchAll/ccfilm.axv-8 200000 9192 ns/op
BenchmarkMatchAll/classiq1.hfe-8 200000 8686 ns/op
BenchmarkMatchAll/colormapped.tga-8 100000 15617 ns/op
BenchmarkMatchAll/combined.karbon-8 200000 5734 ns/op
BenchmarkMatchAll/comics.cb7-8 300000 4318 ns/op
BenchmarkMatchAll/comics.cbt-8 300000 4640 ns/op
BenchmarkMatchAll/COPYING.asc-8 200000 6440 ns/op
BenchmarkMatchAll/copying.cab-8 200000 8174 ns/op
BenchmarkMatchAll/COPYING-clearsign.asc-8 50000 37867 ns/op
BenchmarkMatchAll/COPYING-encrypted.asc-8 200000 10072 ns/op
BenchmarkMatchAll/core-8 2000000 975 ns/op
BenchmarkMatchAll/Core-8 1000000 1114 ns/op
BenchmarkMatchAll/ct_faac-adts.aac-8 100000 17552 ns/op
BenchmarkMatchAll/cube.igs-8 200000 9022 ns/op
BenchmarkMatchAll/cube.wrl-8 100000 21701 ns/op
BenchmarkMatchAll/cyborg.med-8 100000 16066 ns/op
BenchmarkMatchAll/dbus-comment.service-8 200000 7863 ns/op
BenchmarkMatchAll/dbus.service-8 200000 6841 ns/op
BenchmarkMatchAll/debian-goodies_0.63_all.deb-8 200000 10308 ns/op
BenchmarkMatchAll/dia.shape-8 100000 16763 ns/op
BenchmarkMatchAll/disk.img-8 1000000 1116 ns/op
BenchmarkMatchAll/disk.img.xz-8 300000 4180 ns/op
BenchmarkMatchAll/disk.raw-disk-image-8 1000000 1120 ns/op
BenchmarkMatchAll/disk.raw-disk-image.xz-8 300000 4284 ns/op
BenchmarkMatchAll/dns.cap-8 100000 15009 ns/op
BenchmarkMatchAll/editcopy.png-8 100000 14608 ns/op
BenchmarkMatchAll/Elephants_Dream-360p-Stereo.webm-8 200000 10982 ns/op
BenchmarkMatchAll/Empty.chrt-8 200000 5910 ns/op
BenchmarkMatchAll/en_US.zip.meta4-8 100000 19598 ns/op
BenchmarkMatchAll/esm.mjs-8 100000 13207 ns/op
BenchmarkMatchAll/evolution.eml-8 100000 20144 ns/op
BenchmarkMatchAll/example_42_all.snap-8 100000 13406 ns/op
BenchmarkMatchAll/example.heic-8 100000 21652 ns/op
BenchmarkMatchAll/example.heif-8 100000 21727 ns/op
BenchmarkMatchAll/feed2-8 200000 8787 ns/op
BenchmarkMatchAll/feed.atom-8 200000 8440 ns/op
BenchmarkMatchAll/feed.rss-8 200000 8785 ns/op
BenchmarkMatchAll/feeds.opml-8 200000 7534 ns/op
BenchmarkMatchAll/foo-0.1-1.fc18.src.rpm-8 100000 15358 ns/op
BenchmarkMatchAll/foo.doc-8 300000 4901 ns/op
BenchmarkMatchAll/fuji.themepack-8 300000 4719 ns/op
BenchmarkMatchAll/game-boy-color-test.gbc-8 200000 6281 ns/op
BenchmarkMatchAll/game-boy-test.gb-8 200000 5727 ns/op
BenchmarkMatchAll/game-gear-test.gg-8 100000 17365 ns/op
BenchmarkMatchAll/GammaChart.exr-8 100000 16220 ns/op
BenchmarkMatchAll/gedit.flatpakref-8 200000 10625 ns/op
BenchmarkMatchAll/genesis1.bin-8 100000 15948 ns/op
BenchmarkMatchAll/genesis2.bin-8 100000 15580 ns/op
BenchmarkMatchAll/gnome.flatpakrepo-8 200000 7872 ns/op
BenchmarkMatchAll/good-1-delta-lzma2.tiff.xz-8 300000 4918 ns/op
BenchmarkMatchAll/googleearth.kml-8 100000 23483 ns/op
BenchmarkMatchAll/gtk-builder.ui-8 100000 20282 ns/op
BenchmarkMatchAll/hbo-playlist.qtl-8 200000 6524 ns/op
BenchmarkMatchAll/hello.flatpak-8 200000 10564 ns/op
BenchmarkMatchAll/hello.pack-8 300000 4782 ns/op
BenchmarkMatchAll/helloworld.groovy-8 100000 15312 ns/op
BenchmarkMatchAll/helloworld.java-8 100000 16400 ns/op
BenchmarkMatchAll/helloworld.xpi-8 200000 5993 ns/op
BenchmarkMatchAll/hello.xdgapp-8 200000 8161 ns/op
BenchmarkMatchAll/hereyes_remake.mo3-8 100000 18620 ns/op
BenchmarkMatchAll/html4.css-8 50000 25179 ns/op
BenchmarkMatchAll/html5.css-8 50000 27124 ns/op
BenchmarkMatchAll/image.sqsh-8 100000 15028 ns/op
BenchmarkMatchAll/img_5304.jpg-8 100000 16636 ns/op
BenchmarkMatchAll/internet.ez-8 50000 31262 ns/op
BenchmarkMatchAll/isdir.m-8 100000 21533 ns/op
BenchmarkMatchAll/ISOcyr1.ent-8 50000 25373 ns/op
BenchmarkMatchAll/iso-file.iso-8 100000 16916 ns/op
BenchmarkMatchAll/IWAD.WAD-8 100000 12798 ns/op
BenchmarkMatchAll/javascript-without-extension-8 200000 7778 ns/op
BenchmarkMatchAll/jc-win.ani-8 200000 9550 ns/op
BenchmarkMatchAll/json_array.json-8 100000 18063 ns/op
BenchmarkMatchAll/json-ld-full-iri.jsonld-8 100000 16444 ns/op
BenchmarkMatchAll/json_object.json-8 100000 18034 ns/op
BenchmarkMatchAll/layersupdatesignals.flw-8 300000 5789 ns/op
BenchmarkMatchAll/Leafpad-0.8.17-x86_64.AppImage-8 200000 10245 ns/op
BenchmarkMatchAll/Leafpad-0.8.18.1.glibc2.4-x86_64.AppImage-8 200000 10349 ns/op
BenchmarkMatchAll/libcompat.a-8 100000 17032 ns/op
BenchmarkMatchAll/libcompat.ar-8 100000 17097 ns/op
BenchmarkMatchAll/LiberationSans-Regular.ttf-8 100000 15315 ns/op
BenchmarkMatchAll/LiberationSans-Regular.woff-8 100000 16668 ns/op
BenchmarkMatchAll/linguist.ts-8 100000 22974 ns/op
BenchmarkMatchAll/list-8 50000 38601 ns/op
BenchmarkMatchAll/live-streaming.m3u-8 500000 3364 ns/op
BenchmarkMatchAll/lucid-tab-bg.xcf-8 200000 9996 ns/op
BenchmarkMatchAll/m64p_test_rom.n64-8 100000 16267 ns/op
BenchmarkMatchAll/m64p_test_rom.v64-8 100000 16624 ns/op
BenchmarkMatchAll/m64p_test_rom.z64-8 100000 16254 ns/op
BenchmarkMatchAll/Makefile-8 100000 14773 ns/op
BenchmarkMatchAll/Makefile.gnu-8 100000 14907 ns/op
BenchmarkMatchAll/markdown.md-8 100000 16001 ns/op
BenchmarkMatchAll/mega-drive-rom.gen-8 200000 11580 ns/op
BenchmarkMatchAll/menu.ini-8 100000 20975 ns/op
BenchmarkMatchAll/meson.build-8 100000 15042 ns/op
BenchmarkMatchAll/meson_options.txt-8 100000 15325 ns/op
BenchmarkMatchAll/Metroid_japan.fds-8 200000 7148 ns/op
BenchmarkMatchAll/msg0001.gsm-8 100000 18844 ns/op
BenchmarkMatchAll/msx2-metal-gear.msx-8 100000 15700 ns/op
BenchmarkMatchAll/msx-penguin-adventure.msx-8 100000 18972 ns/op
BenchmarkMatchAll/my-data.json-patch-8 100000 17033 ns/op