forked from TeoIzAwezome/rtemu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qdict-test-data.txt
4999 lines (4999 loc) · 88.4 KB
/
qdict-test-data.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
00-INDEX: 333
07: 4096
1040.bin.ihex: 92633
11d.c: 17874
11d.h: 2386
1200.bin.ihex: 14717
12160.bin.ihex: 77829
1232ea962bbaf0e909365f4964f6cceb2ba8ce: 298
1280.bin.ihex: 88220
15562512ca6cf14c1b8f08e09d5907118deaf0: 297
17: 4096
1d: 4096
1.Intro: 14968
21142.c: 8591
21285.c: 11721
2860_main_dev.c: 33854
2860_rtmp_init.c: 26170
2870_main_dev.c: 39352
2870_rtmp_init.c: 51247
2.Process: 22356
300vtbl.h: 43771
310vtbl.h: 59655
3270.ChangeLog: 1889
3270.txt: 10964
3550.bin.ihex: 13916
3780i.c: 21485
3780i.h: 14180
38C0800.bin.ihex: 14772
38C1600.bin.ihex: 17504
3C359.bin.ihex: 69044
3c359.c: 60161
3c359.h: 7264
3c359.txt: 2463
3c501.c: 23869
3c501.h: 2623
3c503.c: 22491
3c503.h: 3880
3c505.c: 48605
3c505.h: 6535
3c505.txt: 1831
3c507.c: 28758
3c509.c: 42879
3c509.txt: 9006
3c515.c: 49671
3c523.c: 39251
3c523.h: 11169
3c527.c: 43065
3c527.h: 1482
3c574_cs.c: 35859
3c589_cs.c: 30110
3c59x.c: 103272
3CCFEM556.cis.ihex: 469
3com: 4096
3CXEM556.cis.ihex: 463
3.Early-stage: 9993
3w-9xxx.c: 77318
3w-9xxx.h: 26357
3w-xxxx.c: 85227
3w-xxxx.h: 16846
40x: 4096
40x_mmu.c: 4082
42: 4096
44x: 4096
44x.c: 3615
44x_emulate.c: 4512
44x.h: 448
44x_mmu.c: 2966
44x_tlb.c: 13997
44x_tlb.h: 2465
4.Coding: 20212
4level-fixup.h: 1028
4xx: 4096
4xx.c: 16297
4xx.h: 1174
512x: 4096
5206: 4096
5206e: 4096
520x: 4096
523x: 4096
5249: 4096
5272: 4096
527x: 4096
528x: 4096
52xx: 4096
5307: 4096
532x: 4096
53c700.c: 71188
53c700_d.h_shipped: 28887
53c700.h: 16652
53c700.scr: 10894
53c700.txt: 5042
5407: 4096
57xx_iscsi_constants.h: 7004
57xx_iscsi_hsi.h: 36895
5d: 4096
5.Posting: 15211
66b00c9dc3e1e071bde0ebfeadc40bbc1e8316: 298
68328: 4096
68328fb.c: 13570
68328serial.c: 35841
68328serial.h: 6237
68360: 4096
68360serial.c: 76262
68EZ328: 4096
68VZ328: 4096
6c5e45fe4f1c83df9429b7c2668b41446baac2: 297
6.Followthrough: 11745
6pack.c: 24715
6pack.txt: 7940
6xx-suspend.S: 1086
712_defconfig: 25531
7206: 4096
73: 4096
7343: 4096
770x: 4096
7721: 4096
7722: 4096
7724: 4096
7751: 4096
7780: 4096
7990.c: 22036
7990.h: 10421
7.AdvancedTopics: 9648
7c: 4096
7segled.c: 2698
802: 4096
80211core: 4096
80211hdr.h: 12326
80211mgr.c: 28179
80211mgr.h: 23006
8021q: 4096
8139cp.c: 56138
8139too.c: 71384
8250_accent.c: 1071
8250_acorn.c: 3194
8250_boca.c: 1301
8250.c: 83003
8250_early.c: 6636
8250_exar_st16c554.c: 1191
8250_fourport.c: 1216
8250_gsc.c: 3620
8250.h: 2432
8250_hp300.c: 7797
8250_hub6.c: 1224
8250_mca.c: 1375
8250_pci.c: 93521
8250_pci.h: 999
8250-platform.c: 1091
8250_pnp.c: 14783
8253.h: 10999
8253pit.h: 48
8255.c: 10692
8255.h: 1805
82571.c: 48377
82596.c: 41209
82xx: 4096
8390.c: 2094
8390.h: 9629
8390p.c: 2248
83xx: 4096
83xx-512x-pci.txt: 1323
85xx: 4096
86xx: 4096
87: 4096
8b: 4096
8.Conclusion: 3137
8xx: 4096
8xx_immap.h: 14089
8xxx_gpio.txt: 1343
941a7798a5169ee0dd69a9e8d5c40ceb702023: 298
9600.bin.ihex: 14715
9p: 4096
9p.h: 13443
9p.txt: 5113
a100u2w.c: 36919
a100u2w.h: 16936
a2065.c: 20730
a2065.h: 5135
a2091.c: 6445
a2091.h: 1712
a20.c: 3548
a20r.c: 5261
a3000.c: 6528
a3000.h: 1807
a3d.c: 11335
a4000t.c: 3579
a500_defconfig: 31440
a800.c: 5950
aachba.c: 84424
aaci.c: 27297
aaci.h: 7022
aacraid: 4096
aacraid.h: 53671
aacraid.txt: 6849
aaec2000.h: 8936
aaed2000.c: 2298
aaed2000.h: 1354
aaed2000_kbd.c: 5059
aarp.c: 25379
ab3100-core.c: 22600
ab3100.h: 3510
abdac.c: 15469
ABI: 4096
abi.h: 782
abituguru: 3731
abituguru3: 2493
abituguru3.c: 41974
abituguru.c: 53440
abituguru-datasheet: 12294
abi.txt: 1413
ABI.txt: 1413
ablkcipher.c: 9484
abort-ev4.S: 882
abort-ev4t.S: 913
abort-ev5tj.S: 987
abort-ev5t.S: 912
abort-ev6.S: 1320
abort-ev7.S: 774
abort-lv4t.S: 6546
abort-macro.S: 1144
abort-nommu.S: 462
abs_addr.h: 1800
abspath.c: 2808
abs.S: 238
abyss.c: 11197
abyss.h: 1550
ac3200.c: 11838
ac97: 4096
ac97_bus.c: 1681
ac97.c: 4489
ac97c.c: 26095
ac97c.h: 2045
ac97_codec.c: 36925
ac97_codec.h: 15115
ac97.h: 507
ac97_id.h: 2422
ac97_local.h: 1689
ac97_patch.c: 128568
ac97_patch.h: 4386
ac97_pcm.c: 21244
ac97_proc.c: 18243
acadia_defconfig: 23272
acadia.dts: 5188
ac.c: 9202
accel.c: 8625
accel.h: 5627
access.c: 10521
accessibility: 4096
access_ok.h: 1305
accommon.h: 2825
acconfig.h: 7688
accounting: 4096
acct.c: 17700
acct.h: 5949
acdebug.h: 6836
acdispat.h: 10988
acecad.c: 7982
acenic: 4096
acenic.c: 88166
acenic.h: 16029
acenv.h: 11821
acerhdf.c: 14909
acer-wmi.c: 30530
acer-wmi.txt: 6480
acevents.h: 6692
acexcep.h: 12764
acgcc.h: 2843
acglobal.h: 14485
achware.h: 4355
acinterp.h: 16329
ackvec.c: 12985
ackvec.h: 3426
acl7225b.c: 3794
acl.c: 5321
acl.h: 1548
aclinux.h: 5049
aclocal.h: 34614
acmacros.h: 22966
acm.txt: 4974
acnames.h: 3482
acnamesp.h: 10211
acobject.h: 16573
acopcode.h: 22365
acorn.c: 12206
acornfb.c: 35783
acornfb.h: 4809
acorn.h: 623
acornscsi.c: 87770
acornscsi.h: 9694
acornscsi-io.S: 3320
acoutput.h: 10925
acparser.h: 7436
acpi: 4096
acpi_bus.h: 11195
acpi.c: 6529
acpica: 12288
acpi-cpufreq.c: 21588
acpi_drivers.h: 5322
acpi-ext.c: 2774
acpi-ext.h: 590
acpi.h: 4768
acpi_memhotplug.c: 14832
acpi_numa.h: 471
acpiosxf.h: 7880
acpi_pcihp.c: 14898
acpiphp_core.c: 10949
acpiphp_glue.c: 44065
acpiphp.h: 6325
acpiphp_ibm.c: 14740
acpi_pm.c: 6723
acpi_pmtmr.h: 672
acpi-processor.c: 1893
acpixf.h: 12045
acpredef.h: 18909
acquirewdt.c: 8920
acresrc.h: 11064
acrestyp.h: 11267
acs5k_defconfig: 28786
acs5k_tiny_defconfig: 21413
acstruct.h: 7738
act2000: 4096
act2000.h: 6271
act2000_isa.c: 11978
act2000_isa.h: 7615
act200l-sir.c: 7142
actables.h: 3945
act_api.c: 23712
act_api.h: 4195
actbl1.h: 35761
actbl.h: 15492
act_gact.c: 5493
action.c: 40
action.h: 40
act_ipt.c: 7564
actisys-sir.c: 7692
active_mm.txt: 3805
act_mirred.c: 6285
act_nat.c: 7265
act_pedit.c: 6148
act_police.c: 9833
act_simple.c: 5238
act_skbedit.c: 5510
actypes.h: 34263
acutils.h: 16898
acx.c: 16590
acx.h: 33552
ad1816a: 4096
ad1816a.c: 8825
ad1816a.h: 5363
ad1816a_lib.c: 30656
ad1843.c: 16402
ad1843.h: 1516
ad1848: 4096
ad1848.c: 75959
ad1848.h: 982
ad1848_mixer.h: 10957
ad1889.c: 27048
ad1889.h: 8073
ad1980.c: 8427
ad1980.h: 468
ad73311.c: 2765
ad73311.h: 2404
ad7414.c: 7164
ad7418.c: 8304
ad7877.c: 20856
ad7877.h: 796
ad7879.c: 19019
ad7879.h: 1004
adaptec: 4096
adapter.h: 400
adb.c: 19706
adb.h: 2770
adbhid.c: 35627
adb-iop.c: 6325
adb_iop.h: 1081
adc.c: 8573
adc.h: 886
ADC-LH7-Touchscreen: 2187
adcxx.c: 8256
adder875.c: 3142
adder875_defconfig: 21956
adder875-redboot.dts: 4102
adder875-uboot.dts: 4072
addi_amcc_S5920.c: 7563
addi_amcc_S5920.h: 1016
addi_amcc_s5933.h: 13296
addi_apci_035.c: 128
addi_apci_1032.c: 63
addi_apci_1500.c: 63
addi_apci_1516.c: 63
addi_apci_1564.c: 63
addi_apci_16xx.c: 63
addi_apci_1710.c: 63
addi_apci_2016.c: 63
addi_apci_2032.c: 63
addi_apci_2200.c: 63
addi_apci_3001.c: 63
addi_apci_3120.c: 63
addi_apci_3200.c: 63
addi_apci_3300.c: 63
addi_apci_3501.c: 63
addi_apci_3xxx.c: 63
addi_apci_all.c: 468
addi_common.c: 57084
addi_common.h: 15536
addi-data: 4096
addi_eeprom.c: 35657
addinitrd.c: 3837
addnote.c: 5117
addon_cpuid_features.c: 3269
addRamDisk.c: 9120
addr.c: 13176
addrconf.c: 112491
addrconf_core.c: 2484
addrconf.h: 7261
address.c: 10451
addr.h: 615
addrlabel.c: 14012
addr-map.c: 3725
addr-map.h: 1054
addrs.h: 14810
addrspace.h: 4233
adfs: 4096
adfs_fs.h: 1337
adfs.h: 5064
adfs.txt: 1816
adi.c: 14310
adlib.c: 3006
adl_pci6208.c: 11803
adl_pci7296.c: 4671
adl_pci7432.c: 5617
adl_pci8164.c: 9991
adl_pci9111.c: 38266
adl_pci9118.c: 69079
adm1021: 4184
adm1021.c: 14057
adm1025: 2364
adm1025.c: 19865
adm1026: 4578
adm1026.c: 60096
adm1029.c: 13774
adm1031: 1193
adm1031.c: 31209
adm8211.c: 56115
adm8211.h: 18093
adm9240: 6804
adm9240.c: 24112
adma.c: 5497
adma.h: 13803
adq12b.c: 12147
ads7828: 1146
ads7828.c: 8084
ads7846.c: 31008
ads7846.h: 1844
ADSBitsy: 1396
adssphere.c: 1810
adt7462: 2515
adt7462.c: 60645
adt7470: 2759
adt7470.c: 42397
adt7473: 2757
adt7473.c: 35779
adt7475: 2578
adt7475.c: 35318
adummy.c: 3035
adutux.c: 25427
adv7170.c: 9645
adv7175.c: 10457
adv7343.c: 12608
adv7343.h: 730
adv7343_regs.h: 5764
advansys: 4096
advansys.c: 382572
advansys.txt: 9492
advantechwdt.c: 8222
adv_pci1710.c: 46220
adv_pci1723.c: 12975
adv_pci_dio.c: 34130
ae7400074d449189d41fceb6d6f871490d7842: 298
aead.c: 12873
aead.h: 2027
aec62xx.c: 9392
aedsp16.c: 36369
ael1002.c: 41054
aer: 4096
aerdrv_acpi.c: 1347
aerdrv.c: 8935
aerdrv_core.c: 22958
aerdrv_errprint.c: 5915
aerdrv.h: 3468
aer.h: 773
aer_inject.c: 10715
aes.c: 11973
aes_ccm.c: 3589
aes_ccm.h: 810
aes_ccmp.c: 14024
aes_ccmp.h: 1469
aes_cmac.c: 2737
aes_cmac.h: 587
aes_generic.c: 63316
aes_glue.c: 1691
aes.h: 279
aes-i586-asm_32.S: 10637
aesni-intel_asm.S: 21991
aesni-intel_glue.c: 19525
aes_s390.c: 13814
aes-x86_64-asm_64.S: 4820
af802154.h: 1271
af9005.c: 28215
af9005-fe.c: 36514
af9005.h: 120579
af9005-remote.c: 4403
af9005-script.h: 5193
af9013.c: 38083
af9013.h: 3095
af9013_priv.h: 21508
af9015.c: 43153
af9015.h: 28439
af_ax25.c: 45160
af_bluetooth.c: 10089
af_can.c: 23294
af_can.h: 4053
af_decnet.c: 54945
afeb9260_defconfig: 29783
af_econet.c: 25853
affs: 4096
affs.h: 10590
affs_hardblocks.h: 1481
affs.txt: 8188
af_ieee802154.c: 8683
af_ieee802154.h: 1620
af_inet6.c: 29847
af_inet.c: 40041
af_ipx.c: 50967
af_irda.c: 67827
af_irda.h: 2964
af_iucv.c: 41285
af_iucv.h: 2495
af_key.c: 102229
af_llc.c: 29863
af_netlink.c: 46590
af_netrom.c: 33634
af_packet.c: 55964
af_phonet.c: 10845
af_rds.c: 14309
af_rose.c: 39337
af_rxrpc.c: 20908
af_rxrpc.h: 2017
afs: 4096
afs.c: 6434
afs_cm.h: 1213
afs_fs.h: 2342
afs.h: 6110
afs.txt: 7976
afs_vl.h: 3680
af_unix.c: 53673
af_unix.h: 1891
af_x25.c: 38538
agent.c: 6214
agent.h: 2106
agg-rx.c: 10061
agg-tx.c: 19983
agnx: 4096
agnx.h: 4414
agp: 4096
agp_backend.h: 909
agpgart.h: 6567
agp.h: 11594
ah4.c: 7802
ah6.c: 13438
aha152x.c: 100462
aha152x_core.c: 61
aha152x.h: 10175
aha152x_stub.c: 7843
aha152x.txt: 6540
aha1542.c: 50376
aha1542.h: 4776
aha1740.c: 19608
aha1740.h: 4954
ahash.c: 5607
ahb.c: 4740
ah.c: 3493
ahci.c: 82058
ah.h: 894
aic7770.c: 9851
aic7770_osm.c: 4437
aic79xx_core.c: 299904
aic79xx.h: 46803
aic79xx_inline.h: 5997
aic79xx_osm.c: 79947
aic79xx_osm.h: 21300
aic79xx_osm_pci.c: 10626
aic79xx_pci.c: 27694
aic79xx_pci.h: 3106
aic79xx_proc.c: 10559
aic79xx.reg: 73912
aic79xx_reg.h_shipped: 71718
aic79xx_reg_print.c_shipped: 19691
aic79xx.seq: 72735
aic79xx_seq.h_shipped: 29327
aic79xx.txt: 24091
aic7xxx: 4096
aic7xxx_93cx6.c: 9761
aic7xxx_93cx6.h: 3670
aic7xxx_core.c: 216583
aic7xxx.h: 42160
aic7xxx_inline.h: 3774
aic7xxx_old: 4096
aic7xxx_old.c: 366880
aic7xxx_old.txt: 24500
aic7xxx_osm.c: 73118
aic7xxx_osm.h: 21353
aic7xxx_osm_pci.c: 12355
aic7xxx_pci.c: 61842
aic7xxx_pci.h: 5296
aic7xxx_proc.c: 10950
aic7xxx.reg: 38137
aic7xxx_reg.h: 15305
aic7xxx_reg.h_shipped: 23099
aic7xxx_reg_print.c_shipped: 10818
aic7xxx.seq: 70499
aic7xxx_seq.c: 20747
aic7xxx_seq.h_shipped: 32908
aic7xxx.txt: 19701
aic94xx: 4096
aic94xx_dev.c: 11236
aic94xx_dump.c: 36929
aic94xx_dump.h: 1451
aic94xx.h: 3007
aic94xx_hwi.c: 38875
aic94xx_hwi.h: 10646
aic94xx_init.c: 28607
aic94xx_reg.c: 10895
aic94xx_reg_def.h: 74147
aic94xx_reg.h: 10470
aic94xx_sas.h: 22044
aic94xx_scb.c: 27220
aic94xx_sds.c: 37304
aic94xx_sds.h: 4644
aic94xx_seq.c: 47415
aic94xx_seq.h: 2011
aic94xx_task.c: 17414
aic94xx_tmf.c: 20129
aica.c: 18912
aica.h: 2322
aicasm: 4096
aicasm.c: 20235
aicasm_gram.y: 41937
aicasm.h: 3213
aicasm_insformat.h: 5394
aicasm_macro_gram.y: 4072
aicasm_macro_scan.l: 4166
aicasm_scan.l: 15538
aicasm_symbol.c: 16089
aicasm_symbol.h: 4889
aiclib.c: 1599
aiclib.h: 6327
aio_abi.h: 3060
aio_aio12_8.c: 5597
aio.c: 9345
aio.h: 530
aio_iiro_16.c: 4521
aiptek.c: 63719
aircable.c: 16905
airo.c: 224549
airo_cs.c: 16214
airo.h: 272
aironet.c: 38
aironet.h: 31
airport.c: 6741
airq.c: 3567
airq.h: 530
ak4104.c: 8783
ak4104.h: 143
ak4114.c: 18943
ak4114.h: 10191
ak4117.c: 16871
ak4117.h: 9193
ak4396.h: 1065
ak4531_codec.c: 17543
ak4531_codec.h: 3161
ak4535.c: 18361
ak4535.h: 1042
ak4xxx-adda.c: 25308
ak4xxx-adda.h: 3333
ak4xxx.c: 5039
aki3068net: 4096
alauda.c: 34485
alaw_main.csp.ihex: 3714
alchemy: 4096
alchemy-flash.c: 4191
algapi.c: 16668
algapi.h: 8721
algboss.c: 6296
algos: 4096
ali14xx.c: 6564
ali5451: 4096
ali5451.c: 59400
ali-agp.c: 10369
alias.c: 1447
aliasing-test.c: 6103
aliasing.txt: 8753
alias.txt: 1181
align.c: 24429
alignment.c: 23757
align.S: 11650
ali-ircc.c: 57570
ali-ircc.h: 7748
alim1535_wdt.c: 10224
alim15x3.c: 14978
alim7101_wdt.c: 11048
allocator.c: 10151
alloc.c: 10261
alloc.h: 9219
allocpercpu.c: 4150
alpaca.h: 1209
alpha: 4096
alpha-agp.c: 5476
alpha_ksyms.c: 2696
alphatrack.c: 23326
alphatrack.h: 2005
alps.c: 15813
alps.h: 1047
ALS: 3770
als100.c: 9384
als300.c: 23789
als4000.c: 32136
alsa: 4096
alsa.c: 2430
ALSA-Configuration.txt: 75006
alsa-driver-api.tmpl: 3216
alsa.h: 370
alternative-asm.h: 289
alternative.c: 14237
alternative.h: 5895
altpciechdma: 4096
altpciechdma.c: 37598
am200epd.c: 9652
am200epdkit_defconfig: 26949
am300epd.c: 6564
am79c961a.c: 18502
am79c961a.h: 3109
am9513.h: 1940
amba: 4096
amba-clcd.c: 12494
ambakmi.c: 4554
amba-pl010.c: 19490
amba-pl011.c: 21509
amba-pl022.c: 53346
ambassador.c: 68387
ambassador.h: 16192
amcc: 4096
amcc_s5933_58.h: 14263
amcc_s5933.h: 6603
amd5536udc.c: 86854
amd5536udc.h: 17276
amd64-agp.c: 20128
amd64_edac.c: 98492
amd64_edac_dbg.c: 5401
amd64_edac_err_types.c: 3628
amd64_edac.h: 19221
amd64_edac_inj.c: 4304
amd74xx.c: 10198
amd76x_edac.c: 9371
amd76xrom.c: 9404
amd7930.c: 31102
amd7930_fn.c: 23626
amd7930_fn.h: 1162
amd8111e.c: 53690
amd8111_edac.c: 16756
amd8111_edac.h: 4244
amd8111e.h: 21006
amd8131_edac.c: 10985
amd8131_edac.h: 3772
amd_bus.c: 13843
amd.c: 3180
amd_iommu.c: 52618
amd_iommu.h: 1421
amd_iommu_init.c: 34814
amd_iommu_types.h: 13377
amd-k7-agp.c: 15673
amd-powernow.txt: 1673
amd-rng.c: 3458
amifb.c: 103212
amifd.h: 1995
amifdreg.h: 2674
amiflop.c: 46962
amiga: 4096
amiga.c: 3445
amiga_defconfig: 28613
amigaffs.c: 11549
amigaffs.h: 2927
amiga.h: 116
amigahw.h: 11232
amigaints.h: 3583
amigaone: 4096
amigaone_defconfig: 40433
amigaone.dts: 4189
amigayle.h: 3135
amiints.c: 6489
amijoy.c: 4591
amijoy.txt: 7701
amikbd.c: 6468
amimouse.c: 3296
amipcmcia.h: 2568
amiserial.c: 54254
amisound.c: 2828
amix86.c: 23331
amlcode.h: 18976
aml_nfw.c: 5630
amlresrc.h: 9975
amon.h: 141
amp.c: 2736
amp.h: 1594
amplc_dio200.c: 38731
amplc_pc236.c: 16962
amplc_pc263.c: 11680
amplc_pci224.c: 44174
amplc_pci230.c: 92910
ams: 4096
ams-core.c: 6046
ams-delta.c: 5974
ams_delta_defconfig: 28481
amsdu.c: 5428
ams.h: 1354
ams-i2c.c: 6365
ams-input.c: 3542
amso1100: 4096
ams-pmu.c: 4469
analog.c: 20366
anchor.h: 3882
anchors.txt: 2625
android: 4096
ani.c: 23441
ani.h: 4062
anode.c: 14491
anomaly.h: 11228
anon_inodes.c: 5477
anon_inodes.h: 312
ansi_cprng.c: 10011
ansidecl.h: 4393
ans-lcd.c: 3847
ans-lcd.h: 206
anubis.c: 28484
anubis-cpld.h: 652
anubis-irq.h: 596
anubis-map.h: 1219
anycast.c: 11884
anysee.c: 15434
anysee.h: 14174
aoa: 4096
aoa-gpio.h: 2434
aoa.h: 3816
aoe: 4096
aoeblk.c: 7321
aoechr.c: 6092
aoecmd.c: 23023
aoedev.c: 5392
aoe.h: 4748
aoemain.c: 2032
aoenet.c: 3237
aoe.txt: 4600
aops.c: 49318
aops.h: 4017
a.out-core.h: 2444
a.out.h: 2438
ap325rxa_defconfig: 31462
apanel.c: 8043
apb.h: 1043
ap_bus.c: 45317
ap_bus.h: 6091
apc.c: 4412
apc.h: 1682
APCI1710_82x54.c: 55614
APCI1710_82x54.h: 2408
APCI1710_Chrono.c: 75530
APCI1710_Chrono.h: 2397
APCI1710_Dig_io.c: 35243
APCI1710_Dig_io.h: 1437
APCI1710_INCCPT.c: 206966
APCI1710_INCCPT.h: 10615
APCI1710_Inp_cpt.c: 32511
APCI1710_Inp_cpt.h: 1414
APCI1710_Pwm.c: 110859
APCI1710_Pwm.h: 2722
APCI1710_Ssi.c: 30348
APCI1710_Ssi.h: 1343
APCI1710_Tor.c: 70692
APCI1710_Tor.h: 1684
APCI1710_Ttl.c: 35072
APCI1710_Ttl.h: 1338
apdbg.c: 12729
aperture_64.c: 13850
ap.h: 26
apic: 4096
api.c: 4766
apic.c: 56323
apicdef.h: 10790
apic_flat_64.c: 9680
apic.h: 48
apicnum.h: 229
API.html: 738
api-intro.txt: 6569
apm_32.c: 71310
apm-acpi.txt: 1541
apm_bios.h: 5647
apm.c: 1961
apm_emu.c: 3225
apm-emulation.c: 17959
apm-emulation.h: 1575
apm.h: 1722
apm_power.c: 10334
apm-power.c: 2659
apne.c: 17115
apollo: 4096
apollo_defconfig: 25574
apollodma.h: 9409
apollohw.h: 2876
appldata: 4096
appldata_base.c: 16414
appldata.h: 2269
appldata_mem.c: 4196
appldata_net_sum.c: 4240
appldata_os.c: 6134
appledisplay.c: 9793
applesmc.c: 46139
appletalk: 4096
appletouch.c: 25051
appletouch.txt: 3199
applicom.c: 24465
applicom.h: 2558
applying-patches.txt: 19961
applypatch-msg.sample: 452
aq100x.c: 8974
ar7: 4096
ar7_defconfig: 29419
ar7.h: 4432
ar7part.c: 4186
ar7_wdt.c: 8576
ar9170: 4096
ar9170.h: 7335
ar-accept.c: 12406
ar-ack.c: 33274
arbiter.c: 11549
arbiter.h: 607
arc: 4096
arc4.c: 2066
ar-call.c: 21724
arc_con.c: 973
arcdevice.h: 12708
arcfb.c: 16908
arcfb.h: 150
arch: 4096
arch_checks.c: 3045
arches_defconfig: 19397
arches.dts: 7694
arch.h: 1650
arch-kev7a400.c: 2933
arch-lpd7a40x.c: 10208
archparam.h: 246
archsetjmp.h: 363
arch-v10: 4096
arch-v32: 4096
arcmsr: 4096
arcmsr_attr.c: 12953
arcmsr.h: 22540
arcmsr_hba.c: 68471
arcmsr_spec.txt: 22891
arcnet: 4096
arcnet.c: 30476
arcnet-hardware.txt: 112635
arcnet.txt: 23983
arcofi.c: 3664
arcofi.h: 721
ar-connection.c: 23383
ar-connevent.c: 9295
arc-rawmode.c: 5274
arc-rimi.c: 10949
ar-error.c: 5949
argv_split.c: 1893
ariadne.c: 24224
ariadne.h: 15566
ar-input.c: 20380
ar-internal.h: 28881
ark3116.c: 12365
ar-key.c: 8236
arkfb.c: 31427
arkfb.txt: 2024
arlan.h: 16773
arlan-main.c: 51969
arlan-proc.c: 30009
ar-local.c: 7670
arm: 4096
armadillo5x0.c: 7149
ARM-gcc.h: 4503
armksyms.c: 4758
arm_timer.h: 576
ar-output.c: 18343
arp.c: 35296
ar-peer.c: 7599