summaryrefslogtreecommitdiff
path: root/test/manual/etags/ETAGS.good_2
blob: ddb8d19540badd43f58fcf187e51373e63e3ef4b (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851

ada-src/etags-test-for.ada,1969
   type LL_Task_Procedure_Access LL_Task_Procedure_Access/t1,0
   function Body_RequiredBody_Required/f3,78
   type Type_Specific_Data Type_Specific_Data/t11,280
   function "abs"abs/f19,504
   type Barrier_Function_Pointer Barrier_Function_Pointer/t21,577
   function "="=/f27,722
   type usfreelock_ptr usfreelock_ptr/t30,803
   function p p/f33,891
   procedure LL_Wrapper LL_Wrapper/p37,1054
function p p/f39,1094
package Pkg1 Pkg1/s44,1203
  type Private_T Private_T/t46,1220
  package Inner1 Inner1/s48,1250
    procedure Private_T;Private_T/p49,1270
  package Inner2 Inner2/s52,1310
    task Private_T;Private_T/k53,1330
  type Public_T Public_T/t56,1365
  procedure Pkg1_Proc1;Pkg1_Proc1/p62,1450
  procedure Pkg1_Proc2 Pkg1_Proc2/p64,1475
  function Pkg1_Func1 Pkg1_Func1/f66,1514
  function Pkg1_Func2 Pkg1_Func2/f68,1553
  package Pkg1_Pkg1 Pkg1_Pkg1/s71,1622
    procedure Pkg1_Pkg1_Proc1;Pkg1_Pkg1_Proc1/p72,1645
  task type Task_Type Task_Type/k75,1694
  type Private_T Private_T/t82,1786
package body Pkg1 Pkg1/b89,1882
  procedure Pkg1_Proc1 Pkg1_Proc1/p91,1904
  package body Inner1 Inner1/b96,1956
    procedure Private_T Private_T/p97,1981
  package body Inner2 Inner2/b103,2054
    task body Private_T Private_T/b104,2079
  task body Task_Type Task_Type/b112,2181
  procedure Pkg1_Proc2 Pkg1_Proc2/p126,2367
  function Pkg1_Func1 Pkg1_Func1/f132,2445
  function Pkg1_Func2 Pkg1_Func2/f134,2496
  package body Pkg1_Pkg1 Pkg1_Pkg1/b140,2596
package body Pkg1_Pkg1 Pkg1_Pkg1/b146,2663
  procedure Pkg1_Pkg1_Proc1 Pkg1_Pkg1_Proc1/p147,2689
function  Pkg1_Func1 Pkg1_Func1/f155,2778
package Truc Truc/s162,2887
package Truc.Bidule Truc.Bidule/s166,2929
  protected Bidule Bidule/t168,2953
  protected type Machin_T Machin_T/t172,3007
package body Truc.Bidule Truc.Bidule/b178,3087
  protected body Bidule Bidule/b179,3115
  protected Machin_T Machin_T/t186,3207

ada-src/2ataspri.adb,2190
package body System.Task_Primitives System.Task_Primitives/b64,2603
   package RTE RTE/s69,2712
   package TSL TSL/s70,2759
   function To_void_ptr To_void_ptr/f86,3287
   function To_TCB_Ptr To_TCB_Ptr/f89,3366
   function pthread_mutexattr_setprotocolpthread_mutexattr_setprotocol/f92,3444
   function pthread_mutexattr_setprio_ceilingpthread_mutexattr_setprio_ceiling/f99,3728
   procedure Abort_WrapperAbort_Wrapper/p115,4302
   procedure LL_Wrapper LL_Wrapper/p122,4526
   procedure Initialize_LL_Tasks Initialize_LL_Tasks/p131,4830
   function Self Self/f160,5586
   procedure Initialize_LockInitialize_Lock/p174,5958
   procedure Finalize_Lock Finalize_Lock/p210,6927
   procedure Write_Lock Write_Lock/p226,7338
   procedure Read_Lock Read_Lock/p239,7700
   procedure Unlock Unlock/p246,7850
   procedure Initialize_Cond Initialize_Cond/p258,8160
   procedure Finalize_Cond Finalize_Cond/p286,8979
   procedure Cond_Wait Cond_Wait/p300,9303
   procedure Cond_Timed_WaitCond_Timed_Wait/p312,9661
   procedure Cond_Signal Cond_Signal/p343,10510
   procedure Set_PrioritySet_Priority/p355,10836
   procedure Set_Own_Priority Set_Own_Priority/p372,11243
   function Get_Priority Get_Priority/f385,11598
   function Get_Own_Priority Get_Own_Priority/f398,12023
   procedure Create_LL_TaskCreate_LL_Task/p412,12438
      function To_Start_Addr To_Start_Addr/f426,12873
   procedure Exit_LL_Task Exit_LL_Task/p491,14995
   procedure Abort_Task Abort_Task/p500,15158
   procedure Test_Abort Test_Abort/p518,15716
   procedure Install_Abort_Handler Install_Abort_Handler/p527,15878
   procedure Abort_WrapperAbort_Wrapper/p557,16939
      function Address_To_Call_State Address_To_Call_State/f562,17062
   procedure Install_Error_Handler Install_Error_Handler/p573,17351
   procedure LL_Assert LL_Assert/p599,18146
   procedure LL_Wrapper LL_Wrapper/p608,18299
   procedure Initialize_TAS_Cell Initialize_TAS_Cell/p630,19010
   procedure Finalize_TAS_Cell Finalize_TAS_Cell/p635,19129
   procedure Clear Clear/p640,19236
   procedure Test_And_Set Test_And_Set/p645,19330
   function  Is_Set Is_Set/f659,19676

ada-src/2ataspri.ads,2313
package System.Task_Primitives System.Task_Primitives/s58,3169
   type LL_Task_Procedure_Access LL_Task_Procedure_Access/t62,3253
   type Pre_Call_State Pre_Call_State/t64,3331
   type Task_Storage_Size Task_Storage_Size/t66,3378
   type Machine_Exceptions Machine_Exceptions/t68,3433
   type Error_Information Error_Information/t70,3499
   type Lock Lock/t72,3569
   type Condition_Variable Condition_Variable/t73,3594
   type Task_Control_Block Task_Control_Block/t81,3955
   type TCB_Ptr TCB_Ptr/t89,4241
   function Address_To_TCB_Ptr Address_To_TCB_Ptr/f93,4333
   procedure Initialize_LL_Tasks Initialize_LL_Tasks/p96,4425
   function Self Self/f100,4602
   procedure Initialize_Lock Initialize_Lock/p103,4707
   procedure Finalize_Lock Finalize_Lock/p107,4879
   procedure Write_Lock Write_Lock/p111,5034
   procedure Read_Lock Read_Lock/p118,5428
   procedure Unlock Unlock/p128,5995
   procedure Initialize_Cond Initialize_Cond/p135,6300
   procedure Finalize_Cond Finalize_Cond/p138,6413
   procedure Cond_Wait Cond_Wait/p142,6591
   procedure Cond_Timed_WaitCond_Timed_Wait/p155,7396
   procedure Cond_Signal Cond_Signal/p164,7812
   procedure Set_Priority Set_Priority/p169,8040
   procedure Set_Own_Priority Set_Own_Priority/p173,8200
   function Get_Priority Get_Priority/f177,8348
   function Get_Own_Priority Get_Own_Priority/f181,8504
   procedure Create_LL_TaskCreate_LL_Task/p185,8647
   procedure Exit_LL_Task;Exit_LL_Task/p198,9282
   procedure Abort_Task Abort_Task/p203,9516
   procedure Test_Abort;Test_Abort/p210,9878
   type Abort_Handler_Pointer Abort_Handler_Pointer/t217,10233
   procedure Install_Abort_Handler Install_Abort_Handler/p219,10312
   procedure Install_Error_Handler Install_Error_Handler/p226,10741
   procedure LL_Assert LL_Assert/p231,10983
   type Proc Proc/t238,11240
   type TAS_Cell TAS_Cell/t242,11328
   procedure Initialize_TAS_Cell Initialize_TAS_Cell/p249,11670
   procedure Finalize_TAS_Cell Finalize_TAS_Cell/p255,11941
   procedure Clear Clear/p260,12157
   procedure Test_And_Set Test_And_Set/p267,12462
   function  Is_Set Is_Set/f275,12877
   type Lock Lock/t283,13155
   type Condition_Variable Condition_Variable/t288,13267
   type TAS_Cell TAS_Cell/t293,13389

ada-src/waroquiers.ada,1503
package Pkg1 Pkg1/s3,89
  type Private_T Private_T/t5,106
  package Inner1 Inner1/s7,136
    procedure Private_T;Private_T/p8,156
  package Inner2 Inner2/s11,196
    task Private_T;Private_T/k12,216
  type Public_T Public_T/t15,251
  procedure Pkg1_Proc1;Pkg1_Proc1/p21,336
  procedure Pkg1_Proc2 Pkg1_Proc2/p23,361
  function Pkg1_Func1 Pkg1_Func1/f25,400
  function Pkg1_Func2 Pkg1_Func2/f27,439
  package Pkg1_Pkg1 Pkg1_Pkg1/s30,508
    procedure Pkg1_Pkg1_Proc1;Pkg1_Pkg1_Proc1/p31,531
  task type Task_Type Task_Type/k34,580
  type Private_T Private_T/t40,671
package body Pkg1 Pkg1/b46,766
  procedure Pkg1_Proc1 Pkg1_Proc1/p48,788
  package body Inner1 Inner1/b53,840
    procedure Private_T Private_T/p54,865
  package body Inner2 Inner2/b60,938
    task body Private_T Private_T/b61,963
  task body Task_Type Task_Type/b68,1064
  procedure Pkg1_Proc2 Pkg1_Proc2/p82,1250
  function Pkg1_Func1 Pkg1_Func1/f88,1328
  function Pkg1_Func2 Pkg1_Func2/f90,1379
  package body Pkg1_Pkg1 Pkg1_Pkg1/b96,1479
package body Pkg1_Pkg1 Pkg1_Pkg1/b100,1544
  procedure Pkg1_Pkg1_Proc1 Pkg1_Pkg1_Proc1/p101,1570
function  Pkg1_Func1 Pkg1_Func1/f107,1657
package Truc Truc/s112,1764
package Truc.Bidule Truc.Bidule/s116,1816
  protected Bidule Bidule/t125,1964
  protected type Machin_T Machin_T/t131,2046
package body Truc.Bidule Truc.Bidule/b138,2153
  protected body Bidule Bidule/b139,2181
  protected body Machin_T Machin_T/b146,2281

c-src/abbrev.c,2072
Lisp_Object Vabbrev_table_name_list;43,1429
Lisp_Object Vglobal_abbrev_table;48,1574
Lisp_Object Vfundamental_mode_abbrev_table;52,1685
int abbrevs_changed;56,1786
int abbrev_all_caps;58,1808
Lisp_Object Vabbrev_start_location;63,1957
Lisp_Object Vabbrev_start_location_buffer;66,2046
Lisp_Object Vlast_abbrev;70,2155
Lisp_Object Vlast_abbrev_text;75,2324
int last_abbrev_point;79,2414
Lisp_Object Vpre_abbrev_expand_hook,83,2487
Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;83,2487
DEFUN ("make-abbrev-table", Fmake_abbrev_table,85,2551
DEFUN ("make-abbrev-table", Fmake_abbrev_table,make-abbrev-table85,2551
DEFUN ("clear-abbrev-table", Fclear_abbrev_table,92,2743
DEFUN ("clear-abbrev-table", Fclear_abbrev_table,clear-abbrev-table92,2743
DEFUN ("define-abbrev", Fdefine_abbrev,107,3124
DEFUN ("define-abbrev", Fdefine_abbrev,define-abbrev107,3124
DEFUN ("define-global-abbrev", Fdefine_global_abbrev,149,4443
DEFUN ("define-global-abbrev", Fdefine_global_abbrev,define-global-abbrev149,4443
DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,160,4814
DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,define-mode-abbrev160,4814
DEFUN ("abbrev-symbol", Fabbrev_symbol,174,5282
DEFUN ("abbrev-symbol", Fabbrev_symbol,abbrev-symbol174,5282
DEFUN ("abbrev-expansion", Fabbrev_expansion,202,6246
DEFUN ("abbrev-expansion", Fabbrev_expansion,abbrev-expansion202,6246
DEFUN ("expand-abbrev", Fexpand_abbrev,218,6761
DEFUN ("expand-abbrev", Fexpand_abbrev,expand-abbrev218,6761
DEFUN ("unexpand-abbrev", Funexpand_abbrev,389,11682
DEFUN ("unexpand-abbrev", Funexpand_abbrev,unexpand-abbrev389,11682
write_abbrev 426,12889
describe_abbrev 445,13324
DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,466,13839
DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,insert-abbrev-table-description466,13839
DEFUN ("define-abbrev-table", Fdefine_abbrev_table,506,14995
DEFUN ("define-abbrev-table", Fdefine_abbrev_table,define-abbrev-table506,14995
syms_of_abbrev 540,16072

c-src/torture.c,197
(*tag1 tag118,452
#define notag2 26,553
(*tag2 tag229,630
(*tag3 tag339,772
#define notag4 45,861
(*tag4 tag448,955
tag5 57,1081
tag6 66,1208
int pp1(74,1317
pp287,1419
pp3(100,1518

c-src/getopt.h,538
#define _GETOPT_H 19,799
extern char *optarg;optarg31,1107
extern int optind;45,1615
extern int opterr;50,1741
struct option73,2795
#define	no_argument	89,3122
#define required_argument	90,3145
#define optional_argument	91,3173
extern int getopt 98,3438
extern int getopt 100,3542
extern int getopt_long 102,3597
extern int getopt_long_only 104,3729
extern int _getopt_internal 109,3940
extern int getopt 114,4138
extern int getopt_long 115,4160
extern int getopt_long_only 116,4187
extern int _getopt_internal 118,4220

c-src/etags.c,12175
char pot_etags_version[pot_etags_version81,3471
#  undef DEBUG84,3553
#  define DEBUG 85,3568
#  define DEBUG 87,3595
#  define NDEBUG	88,3618
# define _GNU_SOURCE 94,3706
# undef MSDOS100,3877
# undef  WINDOWSNT101,3891
# define WINDOWSNT102,3910
# undef MSDOS106,3969
# define MSDOS 107,3983
# define MSDOS 110,4033
# define MAXPATHLEN 115,4112
# undef HAVE_NTGUI116,4142
# undef  DOS_NT117,4161
# define DOS_NT118,4177
# undef  assert	135,4483
# define assert(136,4542
# undef  CTAGS146,4858
# define CTAGS 147,4873
# define CTAGS 149,4899
#define streq(152,4928
#define strcaseeq(153,4997
#define strneq(154,5076
#define strncaseeq(155,5152
#define CHARS 157,5239
#define CHAR(158,5279
#define	iswhite(159,5330
#define notinname(160,5395
#define	begtoken(161,5470
#define	intoken(162,5543
#define	endtoken(163,5615
#define ISALNUM(165,5685
#define ISALPHA(166,5723
#define ISDIGIT(167,5761
#define ISLOWER(168,5799
#define lowcase(170,5838
#define xnew(179,6016
#define xrnew(180,6084
typedef void Lang_function 182,6165
} compressor;188,6366
} language;199,6836
typedef struct fdesc201,6849
} fdesc;212,7367
typedef struct node_st214,7377
} node;225,7895
} linebuffer;239,8249
    at_language,245,8345
    at_regexp,246,8394
    at_filename,247,8438
    at_stdin,248,8474
    at_end	249,8517
} argument;253,8699
typedef struct regexp256,8759
} regexp;268,9326
static void Ada_funcs 274,9429
static void Asm_labels 275,9461
static void C_entries 276,9494
static void default_C_entries 277,9537
static void plain_C_entries 278,9577
static void Cjava_entries 279,9615
static void Cobol_paragraphs 280,9651
static void Cplusplus_entries 281,9690
static void Cstar_entries 282,9730
static void Erlang_functions 283,9766
static void Forth_words 284,9805
static void Fortran_functions 285,9839
static void HTML_labels 286,9879
static void Lisp_functions 287,9913
static void Lua_functions 288,9950
static void Makefile_targets 289,9986
static void Pascal_functions 290,10025
static void Perl_functions 291,10064
static void PHP_functions 292,10101
static void PS_functions 293,10137
static void Prolog_functions 294,10172
static void Python_functions 295,10211
static void Scheme_functions 296,10250
static void TeX_commands 297,10289
static void Texinfo_nodes 298,10324
static void Yacc_entries 299,10360
static void just_read_file 300,10395
static language *get_language_from_langname get_language_from_langname302,10433
static void readline 303,10493
static long readline_internal 304,10538
static bool nocase_tail 305,10592
static void get_tag 306,10632
static void analyze_regex 308,10672
static void free_regexps 309,10708
static void regex_tag_multiline 310,10741
static void error 311,10781
# undef STDIN408,15074
#define STDIN 411,15096
static compressor compressors[compressors457,17665
static const char *Ada_suffixes Ada_suffixes473,17908
static const char Ada_help 475,17978
static const char *Asm_suffixes Asm_suffixes493,18581
static const char Asm_help 504,18977
static const char *default_C_suffixes default_C_suffixes512,19313
static const char default_C_help 515,19414
static const char default_C_help 523,19851
static const char *Cplusplus_suffixes Cplusplus_suffixes535,20461
static const char Cplusplus_help 540,20659
static const char *Cjava_suffixes Cjava_suffixes549,21114
static char Cjava_help 551,21173
static const char *Cobol_suffixes Cobol_suffixes556,21338
static char Cobol_help 558,21403
static const char *Cstar_suffixes Cstar_suffixes562,21544
static const char *Erlang_suffixes Erlang_suffixes565,21608
static const char Erlang_help 567,21674
const char *Forth_suffixes Forth_suffixes571,21800
static const char Forth_help 573,21858
static const char *Fortran_suffixes Fortran_suffixes577,22009
static const char Fortran_help 579,22086
static const char *HTML_suffixes HTML_suffixes582,22191
static const char HTML_help 584,22265
static const char *Lisp_suffixes Lisp_suffixes589,22453
static const char Lisp_help 591,22557
static const char *Lua_suffixes Lua_suffixes598,22872
static const char Lua_help 600,22935
static const char *Makefile_filenames Makefile_filenames603,23011
static const char Makefile_help 605,23134
static const char *Objc_suffixes Objc_suffixes609,23278
static const char Objc_help 613,23400
static const char *Pascal_suffixes Pascal_suffixes619,23715
static const char Pascal_help 621,23779
static const char *Perl_suffixes Perl_suffixes626,23967
static const char *Perl_interpreters Perl_interpreters628,24029
static const char Perl_help 630,24101
static const char *PHP_suffixes PHP_suffixes637,24452
static const char PHP_help 639,24524
static const char *plain_C_suffixes plain_C_suffixes643,24679
static const char *PS_suffixes PS_suffixes647,24763
static const char PS_help 649,24849
static const char *Prolog_suffixes Prolog_suffixes652,24932
static const char Prolog_help 654,24994
static const char *Python_suffixes Python_suffixes658,25108
static const char Python_help 660,25166
static const char *Scheme_suffixes Scheme_suffixes665,25348
static const char Scheme_help 667,25461
static const char *TeX_suffixes TeX_suffixes672,25684
static const char TeX_help 674,25782
static const char *Texinfo_suffixes Texinfo_suffixes686,26317
static const char Texinfo_help 688,26396
static const char *Yacc_suffixes Yacc_suffixes691,26493
static const char Yacc_help 693,26607
static const char auto_help 699,26857
static const char none_help 703,27021
static const char no_lang_help 707,27144
static language lang_names 718,27356
print_language_names 753,29533
# define EMACS_NAME 786,30756
# define VERSION 789,30812
print_version 792,30870
# define PRINT_UNDOCUMENTED_OPTIONS_HELP 804,31174
print_help 808,31251
main 981,37439
get_compressor_from_suffix 1319,46218
get_language_from_langname 1355,47159
get_language_from_interpreter 1377,47546
get_language_from_filename 1399,47977
process_file_name 1433,48835
process_file 1555,51666
init 1632,54151
find_entries 1656,54902
make_tag 1814,59708
pfnote 1856,60943
free_tree 1917,62745
free_fdesc 1935,63030
add_node 1955,63473
invalidate_nodes 2035,65538
static int total_size_of_entries 2067,66151
static int number_len 2068,66194
total_size_of_entries 2087,66695
put_entries 2107,67155
#define C_EXT	2193,68996
#define C_PLAIN 2194,69038
#define C_PLPL	2195,69071
#define C_STAR	2196,69105
#define C_JAVA	2197,69138
#define C_AUTO 2198,69173
#define YACC	2199,69243
enum sym_type2204,69313
  st_none,2206,69329
  st_C_objprot,2207,69340
  st_C_objprot, st_C_objimpl,2207,69340
  st_C_objprot, st_C_objimpl, st_C_objend,2207,69340
  st_C_gnumacro,2208,69383
  st_C_ignore,2209,69400
  st_C_ignore, st_C_attribute,2209,69400
  st_C_javastruct,2210,69431
  st_C_operator,2211,69450
  st_C_class,2212,69467
  st_C_class, st_C_template,2212,69467
  st_C_struct,2213,69496
  st_C_struct, st_C_extern,2213,69496
  st_C_struct, st_C_extern, st_C_enum,2213,69496
  st_C_struct, st_C_extern, st_C_enum, st_C_define,2213,69496
  st_C_struct, st_C_extern, st_C_enum, st_C_define, st_C_typedef2213,69496
struct C_stab_entry 2271,71279
hash 2275,71410
in_word_set 2321,72938
      TOTAL_KEYWORDS 2325,73019
      MIN_WORD_LENGTH 2326,73046
      MAX_WORD_LENGTH 2327,73073
      MIN_HASH_VALUE 2328,73101
      MAX_HASH_VALUE 2329,73127
C_symtype 2387,74986
static bool inattribute;2400,75235
  fvnone,2408,75436
  fdefunkey,2409,75467
  fdefunname,2410,75513
  foperator,2411,75557
  fvnameseen,2412,75614
  fstartlist,2413,75667
  finlist,2414,75723
  flistseen,2415,75766
  fignore,2416,75814
  vignore	2417,75857
} fvdef;2418,75902
static bool fvextern;2420,75912
  tnone,2428,76090
  tkeyseen,2429,76120
  ttypeseen,2430,76161
  tinbody,2431,76200
  tend,2432,76239
  tignore	2433,76280
} typdef;2434,76321
  snone,2443,76500
  skeyseen,2445,76576
  stagseen,2446,76621
  scolonseen	2447,76662
} structdef;2448,76716
static const char *objtag objtag2453,76810
  dnone,2460,76943
  dsharpseen,2461,76973
  ddefineseen,2462,77026
  dignorerest	2463,77071
} definedef;2464,77113
  onone,2472,77268
  oprotocol,2473,77298
  oimplementation,2474,77348
  otagseen,2475,77396
  oparenseen,2476,77432
  ocatseen,2477,77487
  oinbody,2478,77526
  omethodsign,2479,77569
  omethodtag,2480,77627
  omethodcolon,2481,77667
  omethodparm,2482,77710
  oignore	2483,77756
} objdef;2484,77788
static struct tok2491,77945
} token;2508,78627
static void pushclass_above 2514,78785
static void popclass_above 2515,78833
static void write_classname 2516,78867
} cstack;2523,79137
#define nestlev	2525,79265
#define instruct	2527,79370
pushclass_above 2531,79490
popclass_above 2550,79949
write_classname 2564,80163
static bool consider_token 2592,80762
static void make_C_tag 2593,80834
consider_token 2613,81342
} lbs[lbs2924,88533
#define current_lb_is_new 2926,88544
#define switch_line_buffers(2927,88589
#define curlb 2929,88642
#define newlb 2930,88673
#define curlinepos 2931,88704
#define newlinepos 2932,88745
#define plainc 2934,88787
#define cplpl 2935,88831
#define cjava 2936,88862
#define CNL_SAVE_DEFINEDEF(2938,88906
#define CNL(2947,89118
make_C_tag 2960,89376
C_entries 2986,90195
default_C_entries 3833,110157
plain_C_entries 3840,110277
Cplusplus_entries 3847,110365
Cjava_entries 3854,110461
Cstar_entries 3861,110551
Yacc_entries 3868,110643
#define LOOP_ON_INPUT_LINES(3875,110721
#define LOOKING_AT(3884,111057
#define LOOKING_AT_NOCASE(3891,111462
just_read_file 3901,111862
static void F_takeprec 3910,111966
static void F_getit 3911,111997
F_takeprec 3914,112040
F_getit 3937,112367
Fortran_functions 3961,112841
Ada_getit 4052,114670
Ada_funcs 4115,116045
Asm_labels 4228,118583
Perl_functions 4261,119550
Python_functions 4357,122058
PHP_functions 4387,122685
Cobol_paragraphs 4466,124472
Makefile_targets 4494,125030
Pascal_functions 4529,125951
static void L_getit 4706,130278
L_getit 4709,130319
Lisp_functions 4725,130665
Lua_functions 4785,131851
PS_functions 4811,132386
Forth_words 4841,133054
Scheme_functions 4877,134093
static linebuffer *TEX_toktab TEX_toktab4908,134782
static const char *TEX_defenv TEX_defenv4912,134975
static void TEX_mode 4917,135173
static void TEX_decode_env 4918,135204
static char TEX_esc 4920,135262
static char TEX_opgrp 4921,135290
static char TEX_clgrp 4922,135319
TeX_commands 4928,135396
#define TEX_LESC 4986,136653
#define TEX_SESC 4987,136675
TEX_mode 4992,136805
TEX_decode_env 5026,137510
Texinfo_nodes 5071,138555
HTML_labels 5094,139014
static size_t prolog_pr 5214,142193
static void prolog_skip_comment 5215,142235
static size_t prolog_atom 5216,142291
Prolog_functions 5219,142348
prolog_skip_comment 5255,143129
prolog_pr 5281,143737
prolog_atom 5319,144629
static int erlang_func 5374,145541
static void erlang_attribute 5375,145582
static int erlang_atom 5376,145621
Erlang_functions 5379,145667
erlang_func 5438,146966
erlang_attribute 5476,147643
erlang_atom 5496,148062
static char *scan_separators scan_separators5520,148488
static void add_regex 5521,148527
static char *substitute substitute5522,148571
scan_separators 5534,149081
analyze_regex 5586,150461
add_regex 5654,152051
substitute 5767,154798
free_regexps 5814,155838
regex_tag_multiline 5836,156292
nocase_tail 5913,158264
get_tag 5928,158520
readline_internal 5959,159456
readline 6037,161297
savestr 6230,167244
savenstr 6240,167474
skip_spaces 6249,167680
skip_non_spaces 6258,167834
skip_name 6267,167984
fatal 6277,168157
pfatal 6284,168254
suggest_asking_for_help 6291,168333
error 6300,168555
concat 6313,168847
etags_getcwd 6329,169260
relative_filename 6350,169726
absolute_filename 6389,170752
absolute_dirname 6453,172417
filename_is_absolute 6472,172846
canonicalize_filename 6484,173097
# define ISUPPER(6491,173236
linebuffer_init 6514,173657
linebuffer_setlen 6524,173888
xmalloc 6536,174149
xrealloc 6545,174315

c-src/exit.c,47
  } __libc_atexit;30,1022
DEFUN(exit,38,1263

c-src/exit.strange_suffix,47
  } __libc_atexit;30,1022
DEFUN(exit,38,1263

c-src/sysdep.h,491
#define	ENTRY(21,875
#define	PSEUDO(26,982
    movl $SYS_##syscall_nam$SYS_##syscall_na31,1142
    movl $SYS_##syscall_name, %eax;eax31,1142
    int $0x80;32,1190
    test %eax,eax33,1220
    test %eax, %eax;eax33,1220
    jl syscall_error;34,1255
#define	XCHG_0	47,1572
#define	XCHG_1	48,1616
#define	XCHG_2	49,1658
#define	XCHG_3	50,1701
#define	XCHG_4	51,1744
#define	XCHG_5	52,1787
#define	r0	54,1831
#define	r1	55,1885
#define scratch 56,1942
#define MOVE(57,2011

c-src/tab.c,196
static int		count_words(15,263
static char		*get_word(get_word35,553
void			tab_free(59,966
char			**tab_fill(tab_fill70,1129
int			tab_delete_first(91,1638
int			tab_count_words(103,1820

c-src/dostorture.c,198
(*tag1 tag118,468
#define notag2 26,577
(*tag2 tag229,657
(*tag3 tag339,809
#define notag4 45,904
(*tag4 tag448,1001
tag5 57,1136
tag6 66,1272
int pp1(74,1389
pp287,1504
pp3(100,1616

c-src/emacs/src/gmalloc.c,6643
#define USE_PTHREAD25,1003
#undef get_current_dir_name33,1127
extern void emacs_abort 47,1306
#undef malloc64,2111
#undef realloc65,2125
#undef calloc66,2140
#undef free67,2154
#define malloc 68,2166
#define realloc 69,2189
#define calloc 70,2214
#define aligned_alloc 71,2237
#define free 72,2274
extern void *bss_sbrk bss_sbrk76,2336
extern int bss_sbrk_did_unexec;77,2376
extern char bss_sbrk_buffer[bss_sbrk_buffer78,2408
extern void *bss_sbrk_buffer_end;bss_sbrk_buffer_end79,2439
#define DUMPED 80,2473
#define ALLOCATED_BEFORE_DUMPING(81,2508
extern void *malloc malloc94,2719
#define INT_BIT	124,3935
#define BLOCKLOG	125,3978
#define BLOCKSIZE	126,4019
#define BLOCKIFY(127,4053
#define HEAP	131,4216
#define FINAL_FREE_BLOCKS	135,4392
  } malloc_info;167,5389
extern char *_heapbase;_heapbase170,5450
extern malloc_info *_heapinfo;_heapinfo173,5542
#define BLOCK(176,5621
#define ADDRESS(177,5683
extern size_t _heapindex;180,5798
extern size_t _heaplimit;183,5867
struct list186,5940
extern struct list _fraghead[_fraghead193,6057
struct alignlist196,6154
extern struct alignlist *_aligned_blocks;_aligned_blocks202,6335
extern size_t _chunks_used;205,6402
extern size_t _bytes_used;206,6430
extern size_t _chunks_free;207,6457
extern size_t _bytes_free;208,6485
extern void *_malloc_internal _malloc_internal213,6674
extern void *_realloc_internal _realloc_internal214,6714
extern void _free_internal 215,6763
extern void *_malloc_internal_nolock _malloc_internal_nolock216,6800
extern void *_realloc_internal_nolock _realloc_internal_nolock217,6847
extern void _free_internal_nolock 218,6903
extern pthread_mutex_t _malloc_mutex,221,6967
extern pthread_mutex_t _malloc_mutex, _aligned_blocks_mutex;221,6967
extern int _malloc_thread_enabled_p;222,7028
#define LOCK(223,7065
#define UNLOCK(228,7196
#define LOCK_ALIGNED_BLOCKS(233,7330
#define UNLOCK_ALIGNED_BLOCKS(238,7485
#define LOCK(244,7650
#define UNLOCK(245,7665
#define LOCK_ALIGNED_BLOCKS(246,7682
#define UNLOCK_ALIGNED_BLOCKS(247,7712
extern void *malloc_find_object_address malloc_find_object_address252,7866
extern void *(*__morecore)__morecore256,8022
extern void *__default_morecore __default_morecore259,8106
extern void (*__after_morecore_hook)__after_morecore_hook263,8270
extern size_t __malloc_extra_blocks;267,8443
extern int __malloc_initialized;270,8553
extern int __malloc_initialize 272,8647
extern void (*__malloc_initialize_hook)__malloc_initialize_hook275,8724
extern void (*__free_hook)__free_hook276,8772
extern void *(*__malloc_hook)__malloc_hook277,8812
extern void *(*__realloc_hook)__realloc_hook278,8857
extern void *(*__memalign_hook)__memalign_hook279,8914
enum mcheck_status283,9093
    MCHECK_DISABLED 285,9116
    MCHECK_OK,286,9188
    MCHECK_FREE,287,9227
    MCHECK_HEAD,288,9271
    MCHECK_TAIL	289,9335
extern int mcheck 296,9702
extern enum mcheck_status mprobe 301,9953
extern void mtrace 304,10056
extern void muntrace 305,10083
struct mstats308,10154
extern struct mstats mstats 318,10519
extern void memory_warnings 321,10626
void *(*__malloc_hook)__malloc_hook352,11745
char *_heapbase;_heapbase355,11831
malloc_info *_heapinfo;_heapinfo358,11929
static size_t heapsize;361,11985
size_t _heapindex;364,12049
size_t _heaplimit;367,12111
struct list _fraghead[_fraghead370,12173
size_t _chunks_used;373,12231
size_t _bytes_used;374,12252
size_t _chunks_free;375,12272
size_t _bytes_free;376,12293
int __malloc_initialized;379,12342
size_t __malloc_extra_blocks;381,12369
void (*__malloc_initialize_hook)__malloc_initialize_hook383,12400
void (*__after_morecore_hook)__after_morecore_hook384,12441
static int state_protected_p;400,12914
static size_t last_state_size;401,12944
static malloc_info *last_heapinfo;last_heapinfo402,12975
protect_malloc_state 405,13016
#define PROTECT_MALLOC_STATE(426,13629
#define PROTECT_MALLOC_STATE(429,13699
align 435,13796
get_contiguous_space 466,14618
register_heapinfo 497,15327
pthread_mutex_t _malloc_mutex 517,15881
pthread_mutex_t _aligned_blocks_mutex 518,15940
int _malloc_thread_enabled_p;519,16007
malloc_atfork_handler_prepare 522,16050
malloc_atfork_handler_parent 529,16141
malloc_atfork_handler_child 536,16235
malloc_enable_thread 544,16377
malloc_initialize_1 563,16963
__malloc_initialize 594,17795
static int morecore_recursing;604,17928
morecore_nolock 609,18068
_malloc_internal_nolock 722,21586
_malloc_internal 920,28104
malloc 932,28249
extern void *_malloc _malloc956,29035
extern void _free 957,29066
extern void *_realloc _realloc958,29094
_malloc 961,29142
_free 967,29198
_realloc 973,29242
void (*__free_hook)__free_hook1001,30262
struct alignlist *_aligned_blocks _aligned_blocks1004,30348
_free_internal_nolock 1009,30477
_free_internal 1255,38479
free 1265,38606
weak_alias 1277,38802
#define min(1306,39817
void *(*__realloc_hook)__realloc_hook1310,39902
_realloc_internal_nolock 1319,40313
_realloc_internal 1435,43567
realloc 1447,43730
calloc 1478,44899
#define	__sbrk	1513,46048
extern void *__sbrk __sbrk1518,46253
__default_morecore 1525,46517
void *(*__memalign_hook)__memalign_hook1554,47463
aligned_alloc 1557,47529
memalign 1647,49711
posix_memalign 1656,49916
extern void *valloc valloc1695,51148
extern int getpagesize 1700,51286
static size_t pagesize;1703,51325
valloc 1706,51357
#undef malloc1715,51498
#undef realloc1716,51512
#undef calloc1717,51527
#undef aligned_alloc1718,51541
#undef free1719,51562
extern void *malloc malloc1722,51617
extern void *realloc realloc1723,51652
extern void *calloc calloc1724,51699
extern void free 1725,51748
extern void *aligned_alloc aligned_alloc1727,51804
extern int posix_memalign 1729,51898
hybrid_malloc 1736,52091
hybrid_calloc 1744,52196
hybrid_free 1752,52327
hybrid_aligned_alloc 1765,52634
hybrid_realloc 1780,52990
char *gget_current_dir_name gget_current_dir_name1808,53759
hybrid_get_current_dir_name 1811,53803
static void (*old_free_hook)old_free_hook1846,54928
static void *(*old_malloc_hook)old_malloc_hook1847,54970
static void *(*old_realloc_hook)old_realloc_hook1848,55017
static void (*abortfunc)abortfunc1851,55131
#define MAGICWORD	1854,55213
#define MAGICFREE	1855,55268
#define MAGICBYTE	1856,55323
#define MALLOCFLOOD	1857,55355
#define FREEFLOOD	1858,55389
struct hdr1860,55422
checkhdr 1867,55588
freehook 1891,56029
mallochook 1927,56811
reallochook 1944,57150
mabort 1978,57908
static int mcheck_used 2012,58593
mcheck 2015,58626
mprobe 2035,59145

c-src/emacs/src/regex.h,4576
#define _REGEX_H 21,837
typedef unsigned long reg_syntax_t;43,1578
#define RE_BACKSLASH_ESCAPE_IN_LISTS 47,1750
#define RE_BK_PLUS_QM 52,1970
#define RE_CHAR_CLASSES 58,2299
#define RE_CONTEXT_INDEP_ANCHORS 72,3033
#define RE_CONTEXT_INDEP_OPS 80,3459
#define RE_CONTEXT_INVALID_OPS 84,3659
#define RE_DOT_NEWLINE 88,3802
#define RE_DOT_NOT_NULL 92,3938
#define RE_HAT_LISTS_NOT_NEWLINE 96,4083
#define RE_INTERVALS 101,4293
#define RE_LIMITED_OPS 105,4442
#define RE_NEWLINE_ALT 109,4584
#define RE_NO_BK_BRACES 114,4774
#define RE_NO_BK_PARENS 118,4965
#define RE_NO_BK_REFS 122,5121
#define RE_NO_BK_VBAR 126,5317
#define RE_NO_EMPTY_RANGES 132,5611
#define RE_UNMATCHED_RIGHT_PAREN_ORD 136,5767
#define RE_NO_POSIX_BACKTRACKING 140,5938
#define RE_NO_GNU_OPS 144,6134
#define RE_FRUGAL 147,6254
#define RE_SHY_GROUPS 150,6361
#define RE_NO_NEWLINE_ANCHOR 153,6469
#define RE_DEBUG 161,6885
extern reg_syntax_t re_syntax_options;167,7171
extern Lisp_Object re_match_object;172,7345
extern size_t re_max_failures;176,7455
#define RE_SYNTAX_EMACS	183,7685
#define RE_SYNTAX_AWK	186,7781
#define RE_SYNTAX_GNU_AWK	193,8085
#define RE_SYNTAX_POSIX_AWK 197,8256
#define RE_SYNTAX_GREP	201,8394
#define RE_SYNTAX_EGREP	206,8550
#define RE_SYNTAX_POSIX_EGREP	212,8766
#define RE_SYNTAX_ED 216,8911
#define RE_SYNTAX_SED 218,8955
#define _RE_SYNTAX_POSIX_COMMON	221,9073
#define RE_SYNTAX_POSIX_BASIC	225,9216
#define RE_SYNTAX_POSIX_MINIMAL_BASIC	231,9509
#define RE_SYNTAX_POSIX_EXTENDED	234,9599
#define RE_SYNTAX_POSIX_MINIMAL_EXTENDED	242,9968
# undef RE_DUP_MAX253,10455
#define RE_DUP_MAX 256,10541
#define REG_EXTENDED 263,10763
#define REG_ICASE 267,10887
#define REG_NEWLINE 272,11071
#define REG_NOSUB 276,11249
#define REG_NOTBOL 286,11615
#define REG_NOTEOL 289,11689
  REG_ENOSYS 297,11860
  REG_NOERROR 300,11942
  REG_NOMATCH,301,11977
  REG_BADPAT,305,12124
  REG_ECOLLATE,306,12163
  REG_ECTYPE,307,12204
  REG_EESCAPE,308,12256
  REG_ESUBREG,309,12299
  REG_EBRACK,310,12346
  REG_EPAREN,311,12392
  REG_EBRACE,312,12437
  REG_BADBR,313,12473
  REG_ERANGE,314,12520
  REG_ESPACE,315,12561
  REG_BADRPT,316,12602
  REG_EEND,319,12694
  REG_ESIZE,320,12729
  REG_ERPAREN,321,12791
  REG_ERANGEX	322,12860
} reg_errcode_t;323,12912
# define RE_TRANSLATE_TYPE 332,13274
struct re_pattern_buffer335,13316
#define REGS_UNALLOCATED 376,14890
#define REGS_REALLOCATE 377,14917
#define REGS_FIXED 378,14943
typedef struct re_pattern_buffer regex_t;416,16099
typedef ssize_t regoff_t;423,16493
struct re_registers428,16653
# define RE_NREGS 440,16943
} regmatch_t;451,17318
extern reg_syntax_t re_set_syntax 457,17513
extern const char *re_compile_pattern re_compile_pattern462,17777
extern int re_compile_fastmap 469,18059
extern regoff_t re_search 477,18467
extern regoff_t re_search_2 485,18782
extern regoff_t re_match 495,19178
extern regoff_t re_match_2 501,19408
extern void re_set_registers 520,20198
extern char *re_comp re_comp528,20470
extern int re_exec 529,20507
#  define _Restrict_ 540,20887
#  define _Restrict_ 542,20980
#  define _Restrict_544,21019
#  define _Restrict_arr_ 555,21419
#  define _Restrict_arr_557,21462
extern reg_errcode_t regcomp 562,21531
extern reg_errcode_t regexec 566,21657
extern size_t regerror 571,21851
extern void regfree 574,21957
#  define CHAR_CLASS_MAX_LENGTH 593,22471
#  define CHAR_CLASS_MAX_LENGTH 597,22649
typedef wctype_t re_wctype_t;599,22693
typedef wchar_t re_wchar_t;600,22723
# define re_wctype 601,22751
# define re_iswctype 602,22777
# define re_wctype_to_bit(603,22807
# define CHAR_CLASS_MAX_LENGTH 605,22845
# define btowc(606,22907
typedef enum { RECC_ERROR 609,22954
	       RECC_ALNUM,610,22985
	       RECC_ALNUM, RECC_ALPHA,610,22985
	       RECC_ALNUM, RECC_ALPHA, RECC_WORD,610,22985
	       RECC_GRAPH,611,23028
	       RECC_GRAPH, RECC_PRINT,611,23028
	       RECC_LOWER,612,23060
	       RECC_LOWER, RECC_UPPER,612,23060
	       RECC_PUNCT,613,23092
	       RECC_PUNCT, RECC_CNTRL,613,23092
	       RECC_DIGIT,614,23124
	       RECC_DIGIT, RECC_XDIGIT,614,23124
	       RECC_BLANK,615,23157
	       RECC_BLANK, RECC_SPACE,615,23157
	       RECC_MULTIBYTE,616,23189
	       RECC_MULTIBYTE, RECC_NONASCII,616,23189
	       RECC_ASCII,617,23228
	       RECC_ASCII, RECC_UNIBYTE617,23228
} re_wctype_t;618,23261
extern char re_iswctype 620,23277
extern re_wctype_t re_wctype 621,23330
typedef int re_wchar_t;623,23388
extern void re_set_whitespace_regexp 625,23413

c-src/emacs/src/keyboard.c,17467
volatile int interrupt_input_blocked;76,1809
volatile bool pending_signals;80,1945
#define KBD_BUFFER_SIZE 82,1977
KBOARD *initial_kboard;initial_kboard84,2007
KBOARD *current_kboard;current_kboard85,2031
static KBOARD *all_kboards;all_kboards86,2055
static bool single_kboard;89,2155
#define NUM_RECENT_KEYS 91,2183
static int recent_keys_index;94,2270
static int total_keys;97,2358
static Lisp_Object recent_keys;100,2444
Lisp_Object this_command_keys;107,2778
ptrdiff_t this_command_key_count;108,2809
static bool this_command_key_count_reset;112,2923
static Lisp_Object raw_keybuf;116,3075
static int raw_keybuf_count;117,3106
#define GROW_RAW_KEYBUF	119,3136
static ptrdiff_t this_single_command_key_start;125,3351
static ptrdiff_t before_command_key_count;129,3499
static ptrdiff_t before_command_echo_length;130,3542
sigjmp_buf return_to_command_loop;135,3678
static Lisp_Object recover_top_level_message;138,3792
static Lisp_Object regular_top_level_message;143,3931
static sys_jmp_buf getcjmp;147,4032
bool waiting_for_input;150,4096
static bool echoing;154,4187
static struct kboard *ok_to_echo_at_next_pause;ok_to_echo_at_next_pause159,4329
struct kboard *echo_kboard;echo_kboard166,4633
Lisp_Object echo_message_buffer;171,4745
bool immediate_quit;174,4838
int quit_char;192,5624
EMACS_INT command_loop_level;195,5681
Lisp_Object unread_switch_frame;204,6109
static ptrdiff_t last_non_minibuf_size;207,6217
uintmax_t num_input_events;210,6335
static EMACS_INT last_auto_save;214,6429
static ptrdiff_t last_point_position;217,6524
Lisp_Object internal_last_event_frame;228,7029
static Lisp_Object read_key_sequence_cmd;232,7169
static Lisp_Object read_key_sequence_remapped;233,7211
static FILE *dribble;dribble236,7311
bool input_pending;239,7369
static bool input_was_pending;287,10023
static struct input_event kbd_buffer[kbd_buffer291,10108
static struct input_event *kbd_fetch_ptr;kbd_fetch_ptr297,10387
static struct input_event * volatile kbd_store_ptr;302,10602
static void recursive_edit_unwind 313,11089
static Lisp_Object command_loop 314,11145
static void echo_now 316,11186
static ptrdiff_t echo_length 317,11215
unsigned timers_run;320,11297
struct timespec *input_available_clear_time;input_available_clear_time324,11409
bool interrupt_input;328,11574
bool interrupts_deferred;331,11672
static struct timespec timer_idleness_start_time;335,11747
static struct timespec timer_last_idleness_start_time;340,11917
#define READABLE_EVENTS_DO_TIMERS_NOW	346,12047
#define READABLE_EVENTS_FILTER_EVENTS	347,12095
#define READABLE_EVENTS_IGNORE_SQUEEZABLES	348,12143
static void (*keyboard_init_hook)keyboard_init_hook351,12265
static bool get_input_pending 353,12308
static bool readable_events 354,12345
static Lisp_Object read_char_x_menu_prompt 355,12380
static Lisp_Object read_char_minibuf_menu_prompt 357,12503
static Lisp_Object make_lispy_event 358,12572
static Lisp_Object make_lispy_movement 359,12632
static Lisp_Object modify_event_symbol 363,12841
static Lisp_Object make_lispy_switch_frame 366,13051
static Lisp_Object make_lispy_focus_in 367,13109
static Lisp_Object make_lispy_focus_out 369,13189
static bool help_char_p 371,13276
static void save_getcjmp 372,13315
static void restore_getcjmp 373,13355
static Lisp_Object apply_modifiers 374,13398
static void clear_event 375,13453
static void restore_kboard_configuration 376,13501
static void deliver_input_available_signal 378,13569
static void handle_interrupt 380,13632
static _Noreturn void quit_throw_to_read_char 381,13669
static void process_special_events 382,13723
static void timer_start_idle 383,13766
static void timer_stop_idle 384,13803
static void timer_resume_idle 385,13839
static void deliver_user_signal 386,13877
static char *find_user_signal_name find_user_signal_name387,13916
static void store_user_signal_events 388,13958
kset_echo_string 392,14089
kset_kbd_queue 397,14185
kset_keyboard_translate_table 402,14277
kset_last_prefix_arg 407,14400
kset_last_repeatable_command 412,14505
kset_local_function_key_map 417,14626
kset_overriding_terminal_local_map 422,14745
kset_real_last_command 427,14878
kset_system_key_syms 432,14987
echo_add_key 443,15250
echo_char 527,17528
echo_dash 541,17814
echo_now 586,19141
cancel_echoing 635,20615
echo_length 648,20923
echo_truncate 660,21254
add_command_key 672,21583
recursive_edit_1 697,22407
record_auto_save 742,23849
force_auto_save_soon 751,24017
DEFUN ("recursive-edit", Frecursive_edit,759,24138
DEFUN ("recursive-edit", Frecursive_edit,recursive-edit759,24138
recursive_edit_unwind 804,25748
any_kboard_state 817,26014
single_kboard_state 838,26666
not_single_kboard_state 848,26804
struct kboard_stack858,27066
static struct kboard_stack *kboard_stack;kboard_stack864,27139
push_kboard 867,27187
pop_kboard 879,27376
temporarily_switch_to_single_kboard 914,28264
record_single_kboard_state 943,29438
restore_kboard_configuration 952,29622
cmd_error 970,30078
cmd_error_internal 1024,31511
DEFUN ("command-error-default-function", Fcommand_error_default_function,1043,32031
DEFUN ("command-error-default-function", Fcommand_error_default_function,command-error-default-function1043,32031
static Lisp_Object command_loop_2 1086,33638
static Lisp_Object top_level_1 1087,33687
command_loop 1094,33917
command_loop_2 1134,35136
top_level_2 1146,35340
top_level_1 1152,35418
DEFUN ("top-level", Ftop_level,1164,35788
DEFUN ("top-level", Ftop_level,top-level1164,35788
user_error 1183,36289
DEFUN ("exit-recursive-edit", Fexit_recursive_edit,1189,36430
DEFUN ("exit-recursive-edit", Fexit_recursive_edit,exit-recursive-edit1189,36430
DEFUN ("abort-recursive-edit", Fabort_recursive_edit,1201,36820
DEFUN ("abort-recursive-edit", Fabort_recursive_edit,abort-recursive-edit1201,36820
tracking_off 1216,37282
DEFUN ("internal--track-mouse", Ftrack_mouse,1234,37817
DEFUN ("internal--track-mouse", Ftrack_mouse,track-mouse1234,37817
bool ignore_mouse_drag_p;1256,38393
some_mouse_moved 1259,38442
static int read_key_sequence 1282,38800
static void adjust_point_for_property 1284,38918
Lisp_Object last_undo_boundary;1287,39033
command_loop_1 1294,39274
read_menu_command 1649,50890
adjust_point_for_property 1678,51618
safe_run_hooks_1 1831,57340
safe_run_hooks_error 1841,57570
safe_run_hook_funcall 1878,58577
safe_run_hooks 1893,59059
int poll_suppress_count;1908,59398
static struct atimer *poll_timer;poll_timer1915,59488
poll_for_input_1 1919,59590
poll_for_input 1930,59790
start_polling 1942,60054
input_polling_used 1979,61092
stop_polling 1994,61391
set_poll_suppress_count 2009,61760
bind_polling_period 2029,62142
make_ctrl_char 2048,62493
show_help_echo 2113,64456
static Lisp_Object kbd_buffer_get_event 2152,65485
static void record_char 2154,65597
static Lisp_Object help_form_saved_window_configs;2156,65639
read_char_help_form_unwind 2158,65702
#define STOP_POLLING	2166,65960
#define RESUME_POLLING	2170,66085
read_event_from_main_queue 2175,66230
read_decoded_event_from_main_queue 2249,68418
#define MAX_ENCODED_BYTES 2254,68665
echo_keystrokes_p 2342,71557
read_char 2376,72849
record_menu_key 3225,98950
help_char_p 3258,99675
record_char 3273,99954
save_getcjmp 3412,104236
restore_getcjmp 3418,104327
readable_events 3430,104698
int stop_character EXTERNALLY_VISIBLE;3497,106438
event_to_kboard 3500,106494
kbd_buffer_nr_stored 3522,107143
kbd_buffer_store_event 3534,107484
kbd_buffer_store_event_hold 3550,108026
kbd_buffer_unget_event 3684,111618
#define INPUT_EVENT_POS_MAX 3698,112019
#define INPUT_EVENT_POS_MIN 3701,112148
position_to_Time 3706,112288
Time_to_position 3716,112515
gen_help_event 3738,113172
kbd_buffer_store_help_event 3756,113612
discard_mouse_events 3773,113977
kbd_buffer_events_waiting 3803,114712
clear_event 3823,115069
kbd_buffer_get_event 3836,115409
process_special_events 4258,127882
swallow_events 4322,129706
timer_start_idle 4339,130099
timer_stop_idle 4355,130577
timer_resume_idle 4363,130721
struct input_event last_timer_event EXTERNALLY_VISIBLE;4372,130913
Lisp_Object pending_funcalls;4377,131173
decode_timer 4381,131294
timer_check_2 4414,132247
timer_check 4572,136818
DEFUN ("current-idle-time", Fcurrent_idle_time,4607,137663
DEFUN ("current-idle-time", Fcurrent_idle_time,current-idle-time4607,137663
static Lisp_Object accent_key_syms;4625,138240
static Lisp_Object func_key_syms;4626,138276
static Lisp_Object mouse_syms;4627,138310
static Lisp_Object wheel_syms;4628,138341
static Lisp_Object drag_n_drop_syms;4629,138372
static const int lispy_accent_codes[lispy_accent_codes4634,138517
static const char *const lispy_accent_keys[lispy_accent_keys4741,139879
#define FUNCTION_KEY_OFFSET 4766,140315
const char *const lispy_function_keys[lispy_function_keys4768,140348
static const char *const lispy_multimedia_keys[lispy_multimedia_keys4962,148902
static const char *const lispy_kana_keys[lispy_kana_keys5026,150136
#define FUNCTION_KEY_OFFSET 5061,151752
static const char *const lispy_function_keys[lispy_function_keys5065,151895
#define ISO_FUNCTION_KEY_OFFSET 5149,154430
static const char *const iso_lispy_function_keys[iso_lispy_function_keys5151,154470
static Lisp_Object Vlispy_mouse_stem;5172,155329
static const char *const lispy_wheel_names[lispy_wheel_names5174,155368
static const char *const lispy_drag_n_drop_names[lispy_drag_n_drop_names5181,155620
static short const scroll_bar_parts[scroll_bar_parts5189,155886
static Lisp_Object button_down_location;5210,156911
static int last_mouse_button;5215,157066
static int last_mouse_x;5216,157096
static int last_mouse_y;5217,157121
static Time button_down_time;5218,157146
static int double_click_count;5222,157230
make_lispy_position 5228,157391
toolkit_menubar_in_use 5456,163954
make_scroll_bar_position 5469,164322
make_lispy_event 5485,164968
make_lispy_movement 6104,183532
make_lispy_switch_frame 6131,184263
make_lispy_focus_in 6137,184370
make_lispy_focus_out 6145,184496
parse_modifiers_uncached 6163,184946
#define SINGLE_LETTER_MOD(6185,185466
#undef SINGLE_LETTER_MOD6212,185907
#define MULTI_LETTER_MOD(6214,185933
#undef MULTI_LETTER_MOD6231,186401
apply_modifiers_uncached 6273,187575
static const char *const modifier_names[modifier_names6319,189194
#define NUM_MOD_NAMES 6325,189400
static Lisp_Object modifier_symbols;6327,189450
lispy_modifier_list 6331,189587
#define KEY_TO_CHAR(6353,190253
parse_modifiers 6356,190329
DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,6399,191518
DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,event-symbol-parse-modifiers6399,191518
apply_modifiers 6422,192392
reorder_modifiers 6491,194721
modify_event_symbol 6536,196529
DEFUN ("event-convert-list", Fevent_convert_list,6628,199245
DEFUN ("event-convert-list", Fevent_convert_list,event-convert-list6628,199245
parse_solitary_modifier 6695,201136
#define SINGLE_LETTER_MOD(6701,201259
#define MULTI_LETTER_MOD(6705,201344
#undef SINGLE_LETTER_MOD6763,202642
#undef MULTI_LETTER_MOD6764,202667
lucid_event_type_list_p 6775,202890
get_input_pending 6814,203961
record_asynch_buffer_change 6834,204580
gobble_input 6872,205703
tty_read_avail_input 6967,208311
handle_async_input 7149,214040
process_pending_signals 7165,214360
unblock_input_to 7177,214646
unblock_input 7200,215278
totally_unblock_input 7209,215446
handle_input_available_signal 7217,215530
deliver_input_available_signal 7226,215701
struct user_signal_info7235,215866
static struct user_signal_info *user_signals user_signals7250,216091
add_user_signal 7253,216150
handle_user_signal 7275,216599
deliver_user_signal 7316,217559
find_user_signal_name 7322,217660
store_user_signal_events 7334,217842
static void menu_bar_item 7362,218342
static Lisp_Object menu_bar_one_keymap_changed_items;7363,218417
static Lisp_Object menu_bar_items_vector;7368,218631
static int menu_bar_items_index;7369,218673
static const char *separator_names[separator_names7372,218708
menu_separator_name_p 7393,219149
menu_bar_items 7426,219853
Lisp_Object item_properties;7568,224604
menu_bar_item 7571,224646
menu_item_eval_property_1 7647,227176
eval_dyn 7658,227466
menu_item_eval_property 7666,227676
parse_menu_item 7686,228342
static Lisp_Object tool_bar_items_vector;7965,236337
static Lisp_Object tool_bar_item_properties;7970,236511
static int ntool_bar_items;7974,236607
static void init_tool_bar_items 7978,236665
static void process_tool_bar_item 7979,236712
static bool parse_tool_bar_item 7981,236802
static void append_tool_bar_item 7982,236862
tool_bar_items 7990,237084
process_tool_bar_item 8075,239893
#define PROP(8112,240970
set_prop 8114,241039
parse_tool_bar_item 8167,242454
#undef PROP8379,248845
init_tool_bar_items 8387,248970
append_tool_bar_item 8401,249262
read_char_x_menu_prompt 8443,250772
read_char_minibuf_menu_prompt 8503,252446
#define PUSH_C_STR(8527,253015
follow_key 8726,258554
active_maps 8733,258696
typedef struct keyremap8742,259022
} keyremap;8754,259465
access_keymap_keyremap 8764,259809
keyremap_step 8811,261451
test_undefined 8867,262935
read_key_sequence 8916,264862
read_key_sequence_vs 9826,295822
DEFUN ("read-key-sequence", Fread_key_sequence,9885,297295
DEFUN ("read-key-sequence", Fread_key_sequence,read-key-sequence9885,297295
DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,9938,299983
DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,read-key-sequence-vector9938,299983
detect_input_pending 9950,300489
detect_input_pending_ignore_squeezables 9959,300655
detect_input_pending_run_timers 9967,300871
clear_input_pending 9985,301363
requeued_events_pending_p 9997,301733
DEFUN ("input-pending-p", Finput_pending_p,10002,301814
DEFUN ("input-pending-p", Finput_pending_p,input-pending-p10002,301814
DEFUN ("recent-keys", Frecent_keys,10024,302597
DEFUN ("recent-keys", Frecent_keys,recent-keys10024,302597
DEFUN ("this-command-keys", Fthis_command_keys,10055,303518
DEFUN ("this-command-keys", Fthis_command_keys,this-command-keys10055,303518
DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,10068,303959
DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,this-command-keys-vector10068,303959
DEFUN ("this-single-command-keys", Fthis_single_command_keys,10080,304381
DEFUN ("this-single-command-keys", Fthis_single_command_keys,this-single-command-keys10080,304381
DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,10096,304956
DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,this-single-command-raw-keys10096,304956
DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,10109,305496
DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,reset-this-command-lengths10109,305496
DEFUN ("clear-this-command-keys", Fclear_this_command_keys,10136,306511
DEFUN ("clear-this-command-keys", Fclear_this_command_keys,clear-this-command-keys10136,306511
DEFUN ("recursion-depth", Frecursion_depth,10158,307070
DEFUN ("recursion-depth", Frecursion_depth,recursion-depth10158,307070
DEFUN ("open-dribble-file", Fopen_dribble_file,10169,307407
DEFUN ("open-dribble-file", Fopen_dribble_file,open-dribble-file10169,307407
DEFUN ("discard-input", Fdiscard_input,10203,308448
DEFUN ("discard-input", Fdiscard_input,discard-input10203,308448
DEFUN ("suspend-emacs", Fsuspend_emacs,10225,308950
DEFUN ("suspend-emacs", Fsuspend_emacs,suspend-emacs10225,308950
stuff_buffered_input 10285,311046
set_waiting_for_input 10323,312017
clear_waiting_for_input 10337,312391
handle_interrupt_signal 10351,312755
deliver_interrupt_signal 10378,313643
static int volatile force_quit_count;10387,313933
handle_interrupt 10401,314415
quit_throw_to_read_char 10541,318712
DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,10562,319289
DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,set-input-interrupt-mode10562,319289
DEFUN ("set-output-flow-control", Fset_output_flow_control,10609,320517
DEFUN ("set-output-flow-control", Fset_output_flow_control,set-output-flow-control10609,320517
DEFUN ("set-input-meta-mode", Fset_input_meta_mode,10643,321433
DEFUN ("set-input-meta-mode", Fset_input_meta_mode,set-input-meta-mode10643,321433
DEFUN ("set-quit-char", Fset_quit_char,10694,322707
DEFUN ("set-quit-char", Fset_quit_char,set-quit-char10694,322707
DEFUN ("set-input-mode", Fset_input_mode,10729,323571
DEFUN ("set-input-mode", Fset_input_mode,set-input-mode10729,323571
DEFUN ("current-input-mode", Fcurrent_input_mode,10750,324460
DEFUN ("current-input-mode", Fcurrent_input_mode,current-input-mode10750,324460
DEFUN ("posn-at-x-y", Fposn_at_x_y,10787,325838
DEFUN ("posn-at-x-y", Fposn_at_x_y,posn-at-x-y10787,325838
DEFUN ("posn-at-point", Fposn_at_point,10824,327061
DEFUN ("posn-at-point", Fposn_at_point,posn-at-point10824,327061
init_kboard 10861,328215
allocate_kboard 10893,329285
wipe_kboard 10909,329638
delete_kboard 10917,329752
init_keyboard 10942,330282
struct event_head11021,332697
static const struct event_head head_table[head_table11027,332748
syms_of_keyboard 11045,333578
keys_of_keyboard 11841,367116
mark_kboards 11916,370435

c-src/emacs/src/lisp.h,33840
#define EMACS_LISP_H22,801
#define DECLARE_GDB_SYM(47,1422
# define DEFINE_GDB_SYMBOL_BEGIN(49,1509
# define DEFINE_GDB_SYMBOL_END(50,1579
# define DEFINE_GDB_SYMBOL_BEGIN(52,1626
# define DEFINE_GDB_SYMBOL_END(53,1703
#undef min57,1791
#undef max58,1802
#define max(59,1813
#define min(60,1855
#define ARRAYELTS(63,1937
#define GCTYPEBITS 67,2080
DEFINE_GDB_SYMBOL_BEGIN GCTYPEBITS66,2038
# define NONPOINTER_BITS 78,2568
# define NONPOINTER_BITS 80,2601
typedef int EMACS_INT;91,3024
typedef unsigned int EMACS_UINT;92,3047
#  define EMACS_INT_MAX 93,3080
#  define pI 94,3112
typedef long int EMACS_INT;96,3204
typedef unsigned long EMACS_UINT;97,3232
#  define EMACS_INT_MAX 98,3266
#  define pI 99,3299
typedef long long int EMACS_INT;103,3478
typedef unsigned long long int EMACS_UINT;104,3511
#  define EMACS_INT_MAX 105,3554
#  define pI 106,3588
enum {  BOOL_VECTOR_BITS_PER_CHAR 114,3805
#define BOOL_VECTOR_BITS_PER_CHAR 115,3841
typedef size_t bits_word;123,4166
# define BITS_WORD_MAX 124,4192
enum { BITS_PER_BITS_WORD 125,4224
typedef unsigned char bits_word;127,4291
# define BITS_WORD_MAX 128,4324
enum { BITS_PER_BITS_WORD 129,4387
verify 131,4451
    BITS_PER_CHAR 136,4571
    BITS_PER_SHORT 137,4606
    BITS_PER_LONG 138,4658
    BITS_PER_EMACS_INT 139,4713
typedef intmax_t printmax_t;148,5090
typedef uintmax_t uprintmax_t;149,5119
# define pMd 150,5150
# define pMu 151,5171
typedef EMACS_INT printmax_t;153,5198
typedef EMACS_UINT uprintmax_t;154,5228
# define pMd 155,5260
# define pMu 156,5279
# define pD 165,5665
# define pD 167,5710
# define pD 169,5757
# define pD 171,5780
# define eassert(200,7063
# define eassume(201,7141
extern _Noreturn void die 204,7207
extern bool suppress_checking EXTERNALLY_VISIBLE;206,7269
# define eassert(208,7320
# define eassume(212,7451
enum Lisp_Bits239,8520
#define GCALIGNMENT 243,8648
    VALBITS 246,8743
    INTTYPEBITS 249,8839
    FIXNUM_BITS 252,8946
#define VAL_MAX 263,9328
#define USE_LSB_TAG 271,9778
DEFINE_GDB_SYMBOL_BEGIN USE_LSB_TAG270,9734
# define alignas(281,10078
# define GCALIGNED 288,10228
# define GCALIGNED 290,10293
# define lisp_h_XLI(327,11643
# define lisp_h_XIL(328,11674
# define lisp_h_XLI(330,11725
# define lisp_h_XIL(331,11752
#define lisp_h_CHECK_LIST_CONS(333,11786
#define lisp_h_CHECK_NUMBER(334,11857
#define lisp_h_CHECK_SYMBOL(335,11928
#define lisp_h_CHECK_TYPE(336,11997
#define lisp_h_CONSP(338,12108
#define lisp_h_EQ(339,12157
#define lisp_h_FLOATP(340,12202
#define lisp_h_INTEGERP(341,12253
#define lisp_h_MARKERP(342,12334
#define lisp_h_MISCP(343,12409
#define lisp_h_NILP(344,12458
#define lisp_h_SET_SYMBOL_VAL(345,12494
#define lisp_h_SYMBOL_CONSTANT_P(347,12608
#define lisp_h_SYMBOL_VAL(348,12672
#define lisp_h_SYMBOLP(350,12773
#define lisp_h_VECTORLIKEP(351,12826
#define lisp_h_XCAR(352,12887
#define lisp_h_XCDR(353,12925
#define lisp_h_XCONS(354,12965
#define lisp_h_XHASH(356,13060
#define lisp_h_XPNTR(357,13094
# define lisp_h_check_cons_list(360,13222
# define lisp_h_make_number(363,13290
# define lisp_h_XFASTINT(365,13393
# define lisp_h_XINT(366,13430
# define lisp_h_XSYMBOL(367,13479
# define lisp_h_XTYPE(371,13632
# define lisp_h_XUNTAG(372,13697
# define XLI(381,14087
# define XIL(382,14118
# define CHECK_LIST_CONS(383,14149
# define CHECK_NUMBER(384,14210
# define CHECK_SYMBOL(385,14259
# define CHECK_TYPE(386,14308
# define CONSP(387,14383
# define EQ(388,14418
# define FLOATP(389,14453
# define INTEGERP(390,14490
# define MARKERP(391,14531
# define MISCP(392,14570
# define NILP(393,14605
# define SET_SYMBOL_VAL(394,14638
# define SYMBOL_CONSTANT_P(395,14701
# define SYMBOL_VAL(396,14764
# define SYMBOLP(397,14813
# define VECTORLIKEP(398,14852
# define XCAR(399,14899
# define XCDR(400,14932
# define XCONS(401,14965
# define XHASH(402,15000
# define XPNTR(403,15035
#  define check_cons_list(405,15098
#  define make_number(408,15177
#  define XFASTINT(409,15225
#  define XINT(410,15267
#  define XSYMBOL(411,15301
#  define XTYPE(412,15341
#  define XUNTAG(413,15377
#define LISP_MACRO_DEFUN(421,15673
#define LISP_MACRO_DEFUN_VOID(425,15846
#define INTMASK 437,16290
#define case_Lisp_Int 438,16343
#define ENUM_BF(445,16682
#define ENUM_BF(447,16723
enum Lisp_Type451,16764
    Lisp_Symbol 454,16852
    Lisp_Misc 458,16994
    Lisp_Int0 461,17068
    Lisp_Int1 462,17087
    Lisp_String 466,17265
    Lisp_Vectorlike 472,17544
    Lisp_Cons 475,17633
    Lisp_Float 477,17671
enum Lisp_Misc_Type485,18017
    Lisp_Misc_Free 487,18041
    Lisp_Misc_Marker,488,18070
    Lisp_Misc_Overlay,489,18092
    Lisp_Misc_Save_Value,490,18115
    Lisp_Misc_Finalizer,491,18141
    Lisp_Misc_Float,494,18276
    Lisp_Misc_Limit496,18360
enum Lisp_Fwd_Type502,18544
    Lisp_Fwd_Int,504,18567
    Lisp_Fwd_Bool,505,18620
    Lisp_Fwd_Obj,506,18671
    Lisp_Fwd_Buffer_Obj,507,18730
    Lisp_Fwd_Kboard_Obj	508,18801
typedef struct { EMACS_INT i; } Lisp_Object;567,21772
#define LISP_INITIALLY(569,21818
#undef CHECK_LISP_OBJECT_TYPE571,21849
enum CHECK_LISP_OBJECT_TYPE 572,21879
enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE 572,21879
typedef EMACS_INT Lisp_Object;577,22055
#define LISP_INITIALLY(578,22086
enum CHECK_LISP_OBJECT_TYPE 579,22116
enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE 579,22116
#define LISP_INITIALLY_ZERO 582,22217
INLINE bool BOOL_VECTOR_P 588,22341
INLINE bool BUFFER_OBJFWDP 589,22382
INLINE bool BUFFERP 590,22429
INLINE bool CHAR_TABLE_P 591,22464
INLINE Lisp_Object CHAR_TABLE_REF_ASCII 592,22504
INLINE bool 593,22570
INLINE bool 594,22605
INLINE bool functionp 595,22641
INLINE bool 596,22678
INLINE bool 597,22716
INLINE bool 598,22753
INLINE bool 599,22788
INLINE bool OVERLAYP 600,22822
INLINE bool PROCESSP 601,22858
INLINE bool PSEUDOVECTORP 602,22894
INLINE bool SAVE_VALUEP 603,22940
INLINE bool FINALIZERP 604,22979
INLINE void set_sub_char_table_contents 605,23017
INLINE bool STRINGP 607,23107
INLINE bool SUB_CHAR_TABLE_P 608,23142
INLINE bool SUBRP 609,23186
INLINE bool 610,23219
INLINE bool 611,23256
INLINE bool WINDOWP 612,23297
INLINE bool TERMINALP 613,23332
INLINE struct Lisp_Save_Value *XSAVE_VALUE XSAVE_VALUE614,23369
INLINE struct Lisp_Finalizer *XFINALIZER XFINALIZER615,23427
INLINE struct Lisp_Symbol *(XSYMBOL)616,23483
INLINE void 617,23535
extern Lisp_Object char_table_ref 620,23607
extern void char_table_set 621,23661
extern _Noreturn Lisp_Object wrong_type_argument 624,23748
extern _Noreturn void wrong_choice 625,23825
extern bool might_dump;628,23916
extern bool initialized;631,24052
extern double extract_float 634,24108
enum symbol_interned639,24190
  SYMBOL_UNINTERNED 641,24213
  SYMBOL_INTERNED 642,24238
  SYMBOL_INTERNED_IN_INITIAL_OBARRAY 643,24261
enum symbol_redirect646,24306
  SYMBOL_PLAINVAL 648,24329
  SYMBOL_VARALIAS 649,24353
  SYMBOL_LOCALIZED 650,24377
  SYMBOL_FORWARDED 651,24401
struct Lisp_Symbol654,24428
#define EXFUN(707,26243
#define DEFUN_ARGS_MANY	712,26437
#define DEFUN_ARGS_UNEVALLED	713,26489
#define DEFUN_ARGS_0	714,26532
#define DEFUN_ARGS_1	715,26560
#define DEFUN_ARGS_2	716,26595
#define DEFUN_ARGS_3	717,26643
#define DEFUN_ARGS_4	718,26704
#define DEFUN_ARGS_5	719,26778
#define DEFUN_ARGS_6	721,26871
#define DEFUN_ARGS_7	723,26977
#define DEFUN_ARGS_8	725,27096
#define TAG_PTR(729,27287
#define TAG_SYMOFFSET(734,27534
#define XLI_BUILTIN_LISPSYM(741,27833
#define DEFINE_LISP_SYMBOL(746,28092
# define DEFINE_NON_NIL_Q_SYMBOL_MACROS 755,28563
LISP_MACRO_DEFUN 762,28768
# define ARRAY_MARK_FLAG 768,29015
# define PSEUDOVECTOR_FLAG 774,29258
enum pvec_type780,29559
  PVEC_NORMAL_VECTOR,782,29576
  PVEC_FREE,783,29598
  PVEC_PROCESS,784,29611
  PVEC_FRAME,785,29627
  PVEC_WINDOW,786,29641
  PVEC_BOOL_VECTOR,787,29656
  PVEC_BUFFER,788,29676
  PVEC_HASH_TABLE,789,29691
  PVEC_TERMINAL,790,29710
  PVEC_WINDOW_CONFIGURATION,791,29727
  PVEC_SUBR,792,29756
  PVEC_OTHER,793,29769
  PVEC_COMPILED,795,29847
  PVEC_CHAR_TABLE,796,29864
  PVEC_SUB_CHAR_TABLE,797,29883
  PVEC_FONT 798,29906
enum More_Lisp_Bits801,29982
    PSEUDOVECTOR_SIZE_BITS 808,30373
    PSEUDOVECTOR_SIZE_MASK 809,30406
    PSEUDOVECTOR_REST_BITS 813,30616
    PSEUDOVECTOR_REST_MASK 814,30649
    PSEUDOVECTOR_AREA_BITS 818,30814
    PVEC_TYPE_MASK 819,30892
# define VALMASK 829,31293
DEFINE_GDB_SYMBOL_BEGIN VALMASK828,31248
#define MOST_POSITIVE_FIXNUM 834,31523
#define MOST_NEGATIVE_FIXNUM 835,31583
XINT 874,32675
XFASTINT 889,33026
XSYMBOL 899,33254
XTYPE 910,33472
XUNTAG 918,33652
LISP_MACRO_DEFUN 927,33848
LISP_MACRO_DEFUN 940,34233
#define FIXNUM_OVERFLOW_P(958,34846
LISP_MACRO_DEFUN FIXNUM_OVERFLOW_P952,34623
LISP_MACRO_DEFUN 970,35162
XSTRING 980,35382
#define SYMBOL_INDEX(988,35566
XFLOAT 991,35627
XPROCESS 1000,35769
XWINDOW 1007,35886
XTERMINAL 1014,36003
XSUBR 1021,36125
XBUFFER 1028,36236
XCHAR_TABLE 1035,36360
XSUB_CHAR_TABLE 1042,36497
XBOOL_VECTOR 1049,36639
make_lisp_ptr 1058,36818
make_lisp_symbol 1066,37004
builtin_lisp_symbol 1074,37188
#define XSETINT(1079,37270
#define XSETFASTINT(1080,37316
#define XSETCONS(1081,37366
#define XSETVECTOR(1082,37426
#define XSETSTRING(1083,37494
#define XSETSYMBOL(1084,37558
#define XSETFLOAT(1085,37612
#define XSETMISC(1086,37674
#define XSETPVECTYPE(1090,37763
#define XSETPVECTYPESIZE(1092,37879
#define XSETPSEUDOVECTOR(1099,38176
#define XSETTYPED_PSEUDOVECTOR(1105,38360
#define XSETWINDOW_CONFIGURATION(1110,38570
#define XSETPROCESS(1112,38666
#define XSETWINDOW(1113,38732
#define XSETTERMINAL(1114,38796
#define XSETSUBR(1115,38864
#define XSETCOMPILED(1116,38924
#define XSETBUFFER(1117,38992
#define XSETCHAR_TABLE(1118,39056
#define XSETBOOL_VECTOR(1119,39128
#define XSETSUB_CHAR_TABLE(1120,39202
XINTPTR 1128,39572
make_pointer_integer 1134,39652
LISP_MACRO_DEFUN_VOID 1143,39817
typedef struct interval *INTERVAL;INTERVAL1149,39978
xcar_addr 1174,40751
xcdr_addr 1179,40828
LISP_MACRO_DEFUN 1185,40922
XSETCDR 1198,41298
CAR 1205,41448
CDR 1212,41582
CAR_SAFE 1221,41782
CDR_SAFE 1226,41868
STRING_MULTIBYTE 1243,42241
#define STRING_BYTES_BOUND 1261,43048
#define STRING_SET_UNIBYTE(1265,43192
#define STRING_SET_MULTIBYTE(1275,43507
SDATA 1286,43821
SSDATA 1291,43899
SREF 1297,44028
SSET 1302,44119
SCHARS 1307,44233
extern ptrdiff_t string_bytes 1313,44328
STRING_BYTES 1316,44406
SBYTES 1326,44586
STRING_SET_CHARS 1331,44672
struct vectorlike_header1343,45223
struct Lisp_Vector1369,46473
    ALIGNOF_STRUCT_LISP_VECTOR1378,46672
struct Lisp_Bool_Vector1384,46855
bool_vector_size 1399,47376
bool_vector_data 1407,47514
bool_vector_uchar_data 1413,47608
bool_vector_words 1421,47794
bool_vector_bytes 1428,47989
bool_vector_bitref 1437,48229
bool_vector_ref 1445,48469
bool_vector_set 1453,48609
    header_size 1471,49038
    bool_header_size 1472,49097
    word_size 1473,49162
AREF 1479,49275
aref_addr 1485,49382
ASIZE 1491,49492
ASET 1497,49574
gc_aset 1504,49733
enum { NIL_IS_ZERO 1515,50260
memclear 1520,50455
#define VECSIZE(1531,50753
#define PSEUDOVECSIZE(1538,51038
#define UNSIGNED_CMP(1546,51471
#define ASCII_CHAR_P(1552,51725
enum CHARTAB_SIZE_BITS1565,52480
    CHARTAB_SIZE_BITS_0 1567,52507
    CHARTAB_SIZE_BITS_1 1568,52536
    CHARTAB_SIZE_BITS_2 1569,52565
    CHARTAB_SIZE_BITS_3 1570,52594
extern const int chartab_size[chartab_size1573,52628
struct Lisp_Char_Table1575,52663
struct Lisp_Sub_Char_Table1606,53743
CHAR_TABLE_REF_ASCII 1628,54557
CHAR_TABLE_REF 1648,55104
CHAR_TABLE_SET 1658,55393
struct Lisp_Subr1670,55777
enum char_table_specials1692,56789
    CHAR_TABLE_STANDARD_SLOTS 1697,56984
    SUB_CHAR_TABLE_OFFSET 1701,57205
CHAR_TABLE_EXTRA_SLOTS 1707,57368
verify 1714,57587
LISP_MACRO_DEFUN 1723,57912
SYMBOL_BLV 1732,58172
SYMBOL_FWD 1738,58307
LISP_MACRO_DEFUN_VOID 1744,58419
SET_SYMBOL_BLV 1754,58682
SET_SYMBOL_FWD 1760,58841
SYMBOL_NAME 1767,58992
SYMBOL_INTERNED_P 1775,59121
SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P 1783,59290
#define DEFSYM(1796,59800
LISP_MACRO_DEFUN DEFSYM1792,59621
struct hash_table_test1805,60053
struct Lisp_Hash_Table1823,60546
XHASH_TABLE 1880,62522
#define XSET_HASH_TABLE(1885,62593
HASH_TABLE_P 1889,62694
HASH_KEY 1896,62851
HASH_VALUE 1903,63031
HASH_NEXT 1911,63245
HASH_HASH 1918,63422
HASH_INDEX 1926,63668
HASH_TABLE_SIZE 1933,63817
enum DEFAULT_HASH_SIZE 1940,63947
enum DEFAULT_HASH_SIZE { DEFAULT_HASH_SIZE 1940,63947
static double const DEFAULT_REHASH_THRESHOLD 1946,64167
static double const DEFAULT_REHASH_SIZE 1950,64290
sxhash_combine 1956,64456
SXHASH_REDUCE 1964,64639
struct Lisp_Misc_Any	1971,64797
struct Lisp_Marker1978,64971
struct Lisp_Overlay2021,66832
    SAVE_UNUSED,2047,67635
    SAVE_INTEGER,2048,67652
    SAVE_FUNCPOINTER,2049,67670
    SAVE_POINTER,2050,67692
    SAVE_OBJECT2051,67710
enum { SAVE_SLOT_BITS 2055,67795
enum { SAVE_VALUE_SLOTS 2058,67892
enum { SAVE_TYPE_BITS 2062,68000
enum Lisp_Save_Type2064,68066
    SAVE_TYPE_INT_INT 2066,68090
    SAVE_TYPE_INT_INT_INT2067,68163
    SAVE_TYPE_OBJ_OBJ 2069,68253
    SAVE_TYPE_OBJ_OBJ_OBJ 2070,68324
    SAVE_TYPE_OBJ_OBJ_OBJ_OBJ2071,68405
    SAVE_TYPE_PTR_INT 2073,68500
    SAVE_TYPE_PTR_OBJ 2074,68573
    SAVE_TYPE_PTR_PTR 2075,68645
    SAVE_TYPE_FUNCPTR_PTR_OBJ2076,68718
    SAVE_TYPE_MEMORY 2080,68876
typedef void (*voidfuncptr)voidfuncptr2108,69830
struct Lisp_Save_Value2110,69867
save_type 2134,70746
XSAVE_POINTER 2143,70976
set_save_pointer 2149,71138
XSAVE_FUNCPOINTER 2155,71320
XSAVE_INTEGER 2164,71540
set_save_integer 2170,71702
XSAVE_OBJECT 2179,71923
struct Lisp_Finalizer2186,72100
struct Lisp_Free2201,72575
union Lisp_Misc2212,72876
XMISC 2223,73175
XMISCANY 2229,73264
XMISCTYPE 2236,73373
XMARKER 2242,73461
XOVERLAY 2249,73576
XSAVE_VALUE 2256,73697
XFINALIZER 2263,73826
struct Lisp_Intfwd2274,74111
struct Lisp_Boolfwd2284,74405
struct Lisp_Objfwd2294,74696
struct Lisp_Buffer_Objfwd2302,74928
struct Lisp_Buffer_Local_Value2334,76464
struct Lisp_Kboard_Objfwd2362,77723
union Lisp_Fwd2368,77832
XFWDTYPE 2378,78078
XBUFFER_OBJFWD 2384,78174
struct Lisp_Float2391,78310
XFLOAT_DATA 2401,78428
    IEEE_FLOATING_POINT2415,78937
#define _UCHAR_T2423,79260
typedef unsigned char UCHAR;2424,79277
enum Lisp_Compiled2429,79360
    COMPILED_ARGLIST 2431,79383
    COMPILED_BYTECODE 2432,79409
    COMPILED_CONSTANTS 2433,79436
    COMPILED_STACK_DEPTH 2434,79464
    COMPILED_DOC_STRING 2435,79494
    COMPILED_INTERACTIVE 2436,79523
enum char_bits2443,79825
    CHAR_ALT 2445,79844
    CHAR_SUPER 2446,79870
    CHAR_HYPER 2447,79898
    CHAR_SHIFT 2448,79926
    CHAR_CTL 2449,79954
    CHAR_META 2450,79980
    CHAR_MODIFIER_MASK 2452,80008
    CHARACTERBITS 2457,80203
LISP_MACRO_DEFUN 2462,80261
NATNUMP 2470,80403
RANGED_INTEGERP 2476,80484
#define TYPE_RANGED_INTEGERP(2481,80606
LISP_MACRO_DEFUN 2486,80791
VECTORP 2500,81264
OVERLAYP 2505,81367
SAVE_VALUEP 2510,81466
FINALIZERP 2516,81572
AUTOLOADP 2522,81676
BUFFER_OBJFWDP 2528,81767
PSEUDOVECTOR_TYPEP 2534,81865
PSEUDOVECTORP 2542,82118
WINDOW_CONFIGURATIONP 2558,82470
PROCESSP 2564,82580
WINDOWP 2570,82664
TERMINALP 2576,82746
SUBRP 2582,82832
COMPILEDP 2588,82910
BUFFERP 2594,82996
CHAR_TABLE_P 2600,83078
SUB_CHAR_TABLE_P 2606,83169
BOOL_VECTOR_P 2612,83268
FRAMEP 2618,83361
IMAGEP 2625,83478
ARRAYP 2632,83583
CHECK_LIST 2638,83702
LISP_MACRO_DEFUN_VOID 2643,83783
CHECK_STRING_CAR 2653,84080
CHECK_CONS 2658,84184
CHECK_VECTOR 2663,84264
CHECK_BOOL_VECTOR 2668,84350
CHECK_VECTOR_OR_STRING 2674,84527
CHECK_ARRAY 2683,84701
CHECK_BUFFER 2688,84809
CHECK_WINDOW 2693,84895
CHECK_PROCESS 2699,85001
CHECK_NATNUM 2705,85097
#define CHECK_RANGED_INTEGER(2710,85174
#define CHECK_TYPE_RANGED_INTEGER(2721,85557
#define CHECK_NUMBER_COERCE_MARKER(2729,85827
XFLOATINT 2738,86080
CHECK_NUMBER_OR_FLOAT 2744,86151
#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(2749,86250
CHECK_NUMBER_CAR 2760,86660
CHECK_NUMBER_CDR 2768,86782
#define DEFUN(2803,88377
#define DEFUN(2812,88845
FUNCTIONP 2822,89200
extern void defsubr 2829,89352
enum maxargs2831,89395
    MANY 2833,89412
    UNEVALLED 2834,89427
#define CALLMANY(2838,89530
#define CALLN(2844,89883
extern void defvar_lisp 2846,89953
extern void defvar_lisp_nopro 2847,90030
extern void defvar_bool 2848,90113
extern void defvar_int 2849,90184
extern void defvar_kboard 2850,90258
#define DEFVAR_LISP(2869,91088
#define DEFVAR_LISP_NOPRO(2874,91260
#define DEFVAR_BOOL(2879,91442
#define DEFVAR_INT(2884,91615
#define DEFVAR_BUFFER_DEFAULTS(2890,91786
#define DEFVAR_KBOARD(2896,91990
typedef jmp_buf sys_jmp_buf;2906,92314
# define sys_setjmp(2907,92343
# define sys_longjmp(2908,92378
typedef sigjmp_buf sys_jmp_buf;2910,92450
# define sys_setjmp(2911,92482
# define sys_longjmp(2912,92522
typedef jmp_buf sys_jmp_buf;2916,92681
# define sys_setjmp(2917,92710
# define sys_longjmp(2918,92744
enum specbind_tag 2943,93796
  SPECPDL_UNWIND,2944,93816
  SPECPDL_UNWIND_PTR,2945,93885
  SPECPDL_UNWIND_INT,2946,93936
  SPECPDL_UNWIND_VOID,2947,93984
  SPECPDL_BACKTRACE,2948,94038
  SPECPDL_LET,2949,94096
  SPECPDL_LET_LOCAL,2951,94226
  SPECPDL_LET_DEFAULT	2952,94283
union specbinding2955,94355
extern union specbinding *specpdl;specpdl2991,95256
extern union specbinding *specpdl_ptr;specpdl_ptr2992,95291
extern ptrdiff_t specpdl_size;2993,95330
SPECPDL_INDEX 2996,95379
enum handlertype 3021,96401
enum handlertype { CATCHER,3021,96401
enum handlertype { CATCHER, CONDITION_CASE 3021,96401
struct handler3023,96448
#define PUSH_HANDLER(3053,97437
extern Lisp_Object memory_signal_data;3075,98143
extern char *stack_bottom;stack_bottom3079,98276
extern void process_pending_signals 3097,99093
extern bool volatile pending_signals;3098,99137
extern void process_quit_flag 3100,99176
#define QUIT	3101,99214
#define QUITP 3112,99464
extern Lisp_Object Vascii_downcase_table;3114,99525
extern Lisp_Object Vascii_canon_table;3115,99567
extern struct gcpro *gcprolist;gcprolist3130,100274
struct gcpro3132,100307
#define GC_USE_GCPROS_AS_BEFORE	3171,101288
#define GC_MAKE_GCPROS_NOOPS	3172,101323
#define GC_MARK_STACK_CHECK_GCPROS	3173,101355
#define GC_USE_GCPROS_CHECK_ZOMBIES	3174,101392
#define GC_MARK_STACK 3177,101453
#define BYTE_MARK_STACK 3181,101553
#define GCPRO1(3190,101824
#define GCPRO2(3191,101864
#define GCPRO3(3192,101930
#define GCPRO4(3194,102025
#define GCPRO5(3196,102145
#define GCPRO6(3198,102290
#define GCPRO7(3201,102465
#define UNGCPRO 3202,102544
#define GCPRO1(3208,102644
#define GCPRO2(3212,102766
#define GCPRO3(3217,102958
#define GCPRO4(3223,103220
#define GCPRO5(3230,103551
#define GCPRO6(3238,103952
#define GCPRO7(3247,104422
#define UNGCPRO 3257,104962
extern int gcpro_level;3261,105031
#define GCPRO1(3263,105056
#define GCPRO2(3269,105290
#define GCPRO3(3278,105708
#define GCPRO4(3289,106265
#define GCPRO5(3302,106963
#define GCPRO6(3317,107803
#define GCPRO7(3334,108784
#define UNGCPRO	3353,109907
#define RETURN_UNGCPRO(3363,110174
void staticpro 3375,110447
vcopy 3384,110648
set_hash_key_slot 3393,110923
set_hash_value_slot 3399,111062
set_symbol_function 3408,111297
set_symbol_plist 3414,111412
set_symbol_next 3420,111515
blv_found 3428,111688
set_overlay_plist 3437,111871
string_intervals 3445,112022
set_string_intervals 3453,112144
set_char_table_defalt 3462,112346
set_char_table_purpose 3467,112458
set_char_table_extras 3475,112627
set_char_table_contents 3482,112836
set_sub_char_table_contents 3489,113031
extern Lisp_Object indirect_function 3495,113190
extern Lisp_Object find_symbol_value 3496,113242
enum Arith_Comparison 3497,113294
  ARITH_EQUAL,3498,113318
  ARITH_NOTEQUAL,3499,113333
  ARITH_LESS,3500,113351
  ARITH_GRTR,3501,113365
  ARITH_LESS_OR_EQUAL,3502,113379
  ARITH_GRTR_OR_EQUAL3503,113402
extern Lisp_Object arithcompare 3505,113427
#define INTEGER_TO_CONS(3511,113753
#define CONS_TO_INTEGER(3529,114616
extern intmax_t cons_to_signed 3533,114831
extern uintmax_t cons_to_unsigned 3534,114897
extern struct Lisp_Symbol *indirect_variable indirect_variable3536,114958
extern _Noreturn void args_out_of_range 3537,115027
extern _Noreturn void args_out_of_range_3 3538,115095
extern Lisp_Object do_symval_forwarding 3540,115186
extern void set_internal 3541,115246
extern void syms_of_data 3542,115318
extern void swap_in_global_binding 3543,115351
extern void syms_of_cmds 3546,115435
extern void keys_of_cmds 3547,115468
extern Lisp_Object detect_coding_system 3550,115530
extern void init_coding 3552,115683
extern void init_coding_once 3553,115715
extern void syms_of_coding 3554,115752
extern ptrdiff_t chars_in_text 3557,115819
extern ptrdiff_t multibyte_chars_in_text 3558,115886
extern void syms_of_character 3559,115963
extern void init_charset 3562,116031
extern void init_charset_once 3563,116064
extern void syms_of_charset 3564,116102
extern void init_syntax_once 3569,116222
extern void syms_of_syntax 3570,116259
enum { NEXT_ALMOST_PRIME_LIMIT 3573,116320
extern EMACS_INT next_almost_prime 3574,116359
enum constype 3739,123811
enum constype {CONSTYPE_HEAP,CONSTYPE_HEAP3739,123811
enum constype {CONSTYPE_HEAP, CONSTYPE_PURE}CONSTYPE_PURE3739,123811
extern Lisp_Object listn 3740,123857
list2i 3745,124001
list3i 3751,124110
list4i 3757,124249
extern Lisp_Object make_uninit_bool_vector 3763,124401
extern Lisp_Object bool_vector_fill 3764,124457
extern _Noreturn void string_overflow 3765,124521
extern Lisp_Object make_string 3766,124567
extern Lisp_Object make_formatted_string 3767,124625
extern Lisp_Object make_multibyte_string 3779,124979
extern Lisp_Object make_event_array 3780,125058
extern Lisp_Object make_uninit_string 3781,125122
extern Lisp_Object make_uninit_multibyte_string 3782,125173
extern Lisp_Object make_string_from_bytes 3783,125245
extern Lisp_Object make_specified_string 3784,125325
extern Lisp_Object make_pure_string 3786,125417
extern Lisp_Object make_pure_c_string 3787,125497
build_pure_c_string 3792,125653
build_string 3801,125858
extern Lisp_Object pure_cons 3806,125936
extern void make_byte_code 3807,125993
extern struct Lisp_Vector *allocate_vector allocate_vector3808,126044
make_uninit_vector 3820,126429
make_uninit_sub_char_table 3833,126648
extern struct Lisp_Vector *allocate_pseudovector allocate_pseudovector3844,126957
#define ALLOCATE_PSEUDOVECTOR(3850,127192
#define ALLOCATE_ZEROED_PSEUDOVECTOR(3858,127528
extern bool gc_in_progress;3863,127729
extern bool abort_on_gc;3864,127757
extern Lisp_Object make_float 3865,127782
extern void display_malloc_warning 3866,127822
extern ptrdiff_t inhibit_garbage_collection 3867,127865
extern Lisp_Object make_save_int_int_int 3868,127917
extern Lisp_Object make_save_obj_obj_obj_obj 3869,127993
extern Lisp_Object make_save_ptr 3871,128103
extern Lisp_Object make_save_ptr_int 3872,128146
extern Lisp_Object make_save_ptr_ptr 3873,128204
extern Lisp_Object make_save_funcptr_ptr_obj 3874,128259
extern Lisp_Object make_save_memory 3876,128355
extern void free_save_value 3877,128419
extern Lisp_Object build_overlay 3878,128462
extern void free_marker 3879,128536
extern void free_cons 3880,128575
extern void init_alloc_once 3881,128619
extern void init_alloc 3882,128655
extern void syms_of_alloc 3883,128686
extern struct buffer * allocate_buffer 3884,128720
extern int valid_lisp_object_p 3885,128767
extern int relocatable_string_data_p 3886,128813
extern void check_cons_list 3888,128892
INLINE void 3890,128934
extern void *r_alloc r_alloc3895,129055
#define FLOAT_TO_STRING_BUFSIZE 3927,130518
extern int openp 3957,131667
extern Lisp_Object string_to_number 3959,131777
extern void map_obarray 3960,131840
extern void dir_warning 3962,131954
extern void init_obarray 3963,132007
extern void init_lread 3964,132040
extern void syms_of_lread 3965,132071
intern 3968,132125
intern_c_string 3974,132213
extern EMACS_INT lisp_eval_depth;3980,132326
extern Lisp_Object Vautoload_queue;3981,132360
extern Lisp_Object Vrun_hooks;3982,132396
extern Lisp_Object Vsignaling_function;3983,132427
extern Lisp_Object inhibit_lisp_code;3984,132467
extern struct handler *handlerlist;handlerlist3985,132505
extern void run_hook 3994,132747
extern void run_hook_with_args_2 3995,132783
extern Lisp_Object run_hook_with_args 3996,132857
extern _Noreturn void xsignal 3999,133016
extern _Noreturn void xsignal0 4000,133074
extern _Noreturn void xsignal1 4001,133120
extern _Noreturn void xsignal2 4002,133179
extern _Noreturn void xsignal3 4003,133251
extern _Noreturn void signal_error 4005,133340
extern Lisp_Object eval_sub 4006,133404
extern Lisp_Object apply1 4007,133452
extern Lisp_Object call0 4008,133506
extern Lisp_Object call1 4009,133546
extern Lisp_Object call2 4010,133599
extern Lisp_Object call3 4011,133665
extern Lisp_Object call4 4012,133744
extern Lisp_Object call5 4013,133836
extern Lisp_Object call6 4014,133941
extern Lisp_Object call7 4015,134059
extern Lisp_Object internal_catch 4016,134190
extern Lisp_Object internal_lisp_condition_case 4017,134283
extern Lisp_Object internal_condition_case 4018,134372
extern Lisp_Object internal_condition_case_1 4019,134485
extern Lisp_Object internal_condition_case_2 4020,134620
extern Lisp_Object internal_condition_case_n4021,134781
extern void specbind 4024,134977
extern void record_unwind_protect 4025,135026
extern void record_unwind_protect_ptr 4026,135099
extern void record_unwind_protect_int 4027,135166
extern void record_unwind_protect_void 4028,135227
extern void record_unwind_protect_nothing 4029,135285
extern void clear_unwind_protect 4030,135335
extern void set_unwind_protect 4031,135381
extern void set_unwind_protect_ptr 4032,135462
extern Lisp_Object unbind_to 4033,135537
extern _Noreturn void error 4034,135592
fast_string_match_ignore_case 4136,140080
extern ptrdiff_t fast_c_string_match_ignore_case 4141,140230
extern ptrdiff_t fast_looking_at 4143,140327
extern ptrdiff_t find_newline 4145,140466
extern ptrdiff_t scan_newline 4147,140595
extern ptrdiff_t scan_newline_from_point 4149,140698
extern ptrdiff_t find_newline_no_quit 4150,140778
extern ptrdiff_t find_before_next_newline 4152,140875
extern void syms_of_search 4154,140973
extern void clear_regexp_cache 4155,141008
extern Lisp_Object Vminibuffer_list;4159,141078
extern Lisp_Object last_minibuf_string;4160,141115
extern Lisp_Object get_minibuffer 4161,141155
extern void init_minibuf_once 4162,141202
extern void syms_of_minibuf 4163,141240
extern void syms_of_callint 4167,141307
extern void syms_of_casefiddle 4171,141377
extern void keys_of_casefiddle 4172,141416
extern void init_casetab_once 4176,141486
extern void syms_of_casetab 4177,141524
extern Lisp_Object echo_message_buffer;4181,141592
extern struct kboard *echo_kboard;echo_kboard4182,141632
extern void cancel_echoing 4183,141667
extern Lisp_Object last_undo_boundary;4184,141702
extern bool input_pending;4185,141741
extern sigjmp_buf return_to_command_loop;4187,141804
extern Lisp_Object menu_bar_items 4189,141853
extern Lisp_Object tool_bar_items 4190,141902
extern void discard_mouse_events 4191,141958
void handle_input_available_signal 4193,142019
extern Lisp_Object pending_funcalls;4195,142068
extern bool detect_input_pending 4196,142105
extern bool detect_input_pending_ignore_squeezables 4197,142146
extern bool detect_input_pending_run_timers 4198,142206
extern void safe_run_hooks 4199,142258
extern void cmd_error_internal 4200,142300
extern Lisp_Object command_loop_1 4201,142360
extern Lisp_Object read_menu_command 4202,142402
extern Lisp_Object recursive_edit_1 4203,142447
extern void record_auto_save 4204,142491
extern void force_auto_save_soon 4205,142528
extern void init_keyboard 4206,142569
extern void syms_of_keyboard 4207,142603
extern void keys_of_keyboard 4208,142640
extern ptrdiff_t current_column 4211,142706
extern void invalidate_current_column 4212,142746
extern bool indented_beyond_p 4213,142792
extern void syms_of_indent 4214,142857
extern void store_frame_param 4217,142920
extern void store_in_alist 4218,142994
extern Lisp_Object do_switch_frame 4219,143064
extern Lisp_Object get_frame_param 4220,143137
extern void frames_discard_buffer 4221,143203
extern void syms_of_frame 4222,143252
extern char **initial_argv;initial_argv4225,143314
extern int initial_argc;4226,143342
extern bool display_arg;4228,143417
extern Lisp_Object decode_env_path 4230,143449
extern Lisp_Object empty_unibyte_string,4231,143520
extern Lisp_Object empty_unibyte_string, empty_multibyte_string;4231,143520
extern _Noreturn void terminate_due_to_signal 4232,143585
extern Lisp_Object Vlibrary_cache;4234,143660
void fixup_locale 4237,143721
void synchronize_system_messages_locale 4238,143747
void synchronize_system_time_locale 4239,143795
INLINE void fixup_locale 4241,143845
INLINE void synchronize_system_messages_locale 4242,143880
INLINE void synchronize_system_time_locale 4243,143937
extern void shut_down_emacs 4245,143997
extern bool noninteractive;4248,144123
extern bool no_site_lisp;4251,144215
extern int daemon_pipe[daemon_pipe4256,144383
#define IS_DAEMON 4257,144410
#define DAEMON_RUNNING 4258,144450
extern void *w32_daemon_event;w32_daemon_event4260,144518
#define IS_DAEMON 4261,144549
#define DAEMON_RUNNING 4262,144594
extern bool fatal_error_in_progress;4266,144715
extern bool inhibit_window_system;4269,144821
extern bool running_asynch_code;4271,144914
extern void kill_buffer_processes 4274,144977
extern int wait_reading_process_output 4275,145026
# define WAIT_READING_MAX 4281,145413
# define WAIT_READING_MAX 4283,145485
extern void add_timer_wait_descriptor 4286,145549
extern void add_keyboard_wait_descriptor 4288,145601
extern void delete_keyboard_wait_descriptor 4289,145649
extern void add_gpm_wait_descriptor 4291,145716
extern void delete_gpm_wait_descriptor 4292,145759
extern void init_process_emacs 4294,145812
extern void syms_of_process 4295,145851
extern void setup_process_coding_systems 4296,145887
extern int child_setup 4302,146007
extern void init_callproc_1 4303,146075
extern void init_callproc 4304,146111
extern void set_initial_environment 4305,146145
extern void syms_of_callproc 4306,146189
extern Lisp_Object read_doc_string 4309,146252
extern Lisp_Object get_doc_string 4310,146302
extern void syms_of_doc 4311,146363
extern int read_bytecode_char 4312,146395
extern void syms_of_bytecode 4315,146464
extern struct byte_stack *byte_stack_list;byte_stack_list4316,146501
extern void mark_byte_stack 4318,146564
extern void unmark_byte_stack 4320,146607
extern Lisp_Object exec_byte_code 4321,146645
extern void init_macros 4325,146795
extern void syms_of_macros 4326,146827
extern void truncate_undo_list 4329,146889
extern void record_insert 4330,146939
extern void record_delete 4331,146989
extern void record_first_change 4332,147047
extern void record_change 4333,147087
extern void record_property_change 4334,147137
extern void syms_of_undo 4337,147279
extern void report_interval_modification 4340,147343
extern void syms_of_menu 4343,147439
extern void syms_of_xmenu 4346,147500
extern char *get_current_dir_name get_current_dir_name4356,147702
extern void stuff_char 4358,147751
extern void init_foreground_group 4359,147784
extern void sys_subshell 4360,147826
extern void sys_suspend 4361,147859
extern void discard_tty_input 4362,147891
extern void init_sys_modes 4363,147929
extern void reset_sys_modes 4364,147985
extern void init_all_sys_modes 4365,148042
extern void reset_all_sys_modes 4366,148081
extern void child_setup_tty 4367,148121
extern void setup_pty 4368,148156
extern int set_window_size 4369,148185
extern EMACS_INT get_random 4370,148229
extern void seed_random 4371,148265
extern void init_random 4372,148310
extern void emacs_backtrace 4373,148342
extern _Noreturn void emacs_abort 4374,148377
extern void xputenv 4527,152691
extern char *egetenv_internal egetenv_internal4529,152728
egetenv 4532,152800
extern void init_system_name 4539,153003
#define eabs(4545,153296
#define make_fixnum_or_float(4550,153429
enum MAX_ALLOCA 4556,153680
enum MAX_ALLOCA { MAX_ALLOCA 4556,153680
extern void *record_xmalloc record_xmalloc4558,153725
#define USE_SAFE_ALLOCA	4560,153791
#define AVAIL_ALLOCA(4564,153924
#define SAFE_ALLOCA(4568,154035
#define SAFE_NALLOCA(4576,154376
#define SAFE_ALLOCA_STRING(4590,154852
#define SAFE_FREE(4598,155104
#define SAFE_ALLOCA_LISP(4625,155682
# define USE_STACK_LISP_OBJECTS 4652,156804
# undef USE_STACK_LISP_OBJECTS4658,156970
# define USE_STACK_LISP_OBJECTS 4659,157001
enum { defined_GC_CHECK_STRING_BYTES 4663,157076
enum { defined_GC_CHECK_STRING_BYTES 4665,157129
union Aligned_Cons4670,157263
union Aligned_String4676,157343
    USE_STACK_CONS 4689,157698
    USE_STACK_STRING 4691,157804
#define STACK_CONS(4699,158141
#define AUTO_CONS_EXPR(4701,158238
#define AUTO_CONS(4709,158601
#define AUTO_LIST1(4710,158672
#define AUTO_LIST2(4712,158780
#define AUTO_LIST3(4716,158935
#define AUTO_LIST4(4720,159110
extern const char *verify_ascii verify_ascii4730,159447
# define verify_ascii(4732,159501
#define AUTO_STRING(4740,159809
#define FOR_EACH_TAIL(4752,160273
#define FOR_EACH_ALIST_VALUE(4766,160764
maybe_gc 4774,161051
functionp 4784,161290

c-src/machsyscalls.c,23
#define	SYSCALL(6,113

c-src/machsyscalls.h,159
SYSCALL (mach_msg_trap,1,0
SYSCALL (mach_reply_port,13,314
SYSCALL (mach_thread_self,18,377
SYSCALL (mach_task_self,23,441
SYSCALL (mach_host_self,28,503

c-src/fail.c,30
void (*prt_call(prt_call1,0

c-src/h.h,1962
   ELEM_I/ELEM_I3,15
} Fails_t;5,85
typedef void Lang_function 6,96
void Asm_labels 7,127
typedef struct tpcmd8,147
#define ggg 10,170
tpcmd;15,209
typedef struct foobar2_ 16,216
} foobar2;20,307
    DEVICE_SWP,23,333
    DEVICE_LAST24,349
} bsp_DevId;25,365
  struct constant_args 27,394
} args;30,457
typedef int *regset;regset31,465
typedef int INT;32,486
typedef union abc33,503
} ghi1;36,534
typedef union abc 37,542
} ghi2;39,573
typedef struct a 40,581
} b;41,600
#define c(42,605
typedef struct an_extern_linkage *an_extern_linkage_ptr;an_extern_linkage_ptr43,619
typedef struct an_extern_linkage 44,676
} an_extern_linkage;56,1054
typedef struct pollfd   pfdset[pfdset57,1075
typedef union rtunion_def58,1119
  } womboid 63,1206
typedef union rtunion_def64,1220
womboid75,1330
enum {dog,dog81,1416
enum {dog, cat}cat81,1416
enum {dog, cat} animals;81,1416
typedef void (_CALLBACK_ *signal_handler)signal_handler82,1441
typedef void (_CALLBACK_ *signal_handler1)signal_handler183,1489
/* comment */ #define ANSIC84,1538
 #define ANSIC85,1566
typedef void (proc)87,1588
typedef void OperatorFun(88,1612
typedef int f(89,1648
struct my_struct 91,1691
typedef struct my_struct my_typedef;93,1713
typedef RETSIGTYPE (*signal_handler_t)signal_handler_t94,1750
  Date 04 May 87 235311 PDT 96,1802
typedef unsigned char unchar;99,1880
typedef int X,100,1910
typedef int X, Y,100,1910
typedef int X, Y, Z;100,1910
typedef mio mao;101,1931
extern void ab(102,1948
typedef struct a 103,1966
typedef struct a { } b;103,1966
typedef struct b104,1990
} c;106,2009
int	(*oldhup)oldhup107,2014
request (*oldhup)oldhup108,2031
int extvar;109,2053
#define tag1110,2065
#define aaaaaa 111,2078
#define bbbbbb\bbbbbb113,2102
#define cccccccccc115,2125
#define enter_critical_section	116,2144
#define exit_critical_to_previous	117,2199
#define UNDEFINED118,2259
struct re_pattern_buffer 119,2277

cp-src/c.C,2378
template <typename ipc3dIslandHierarchy,1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType,1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType, unsigned numOfChannels,1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType, unsigned numOfChannels, typename ipc3dLinkControl,1,0
class CMultiChannelCSC19_3D2,151
        void execute(11,493
static void my_function1(24,984
int main 25,1026
double base 26,1088
operator += operator +=29,1174
class TestRecord;31,1233
typedef struct s1 32,1251
} t1;34,1287
struct s2 35,1293
typedef struct s2 t2;38,1324
class A 39,1346
  enum { rosso,40,1356
  enum { rosso, giallo,40,1356
  enum { rosso, giallo, verde 40,1356
  const A& operator+(41,1396
const A& A::operator+(operator+43,1431
void operator+(44,1467
void operator -(operator -45,1495
void operator int(operator int46,1524
A<int>* f(48,1556
int f(49,1571
int A<int>::f(f50,1590
A<float,B<int> > A<B<float>,int>::f(f51,1618
template <class C, int n> class AT 52,1668
class AU 53,1716
class B<B54,1735
class B<int> { void f(54,1735
const A::B::T& abt 55,1766
class A 56,1792
class A { class B 56,1792
class A { class B { int f(56,1792
class A 57,1827
  int get_data(58,1837
  A operator+(59,1861
is_muldiv_operation(61,1888
domain foo 68,1956
     void f(69,1969
void A::A(A72,1990
struct A 73,2005
struct A { A(73,2005
struct B 74,2023
struct B { B(74,2023
void B::B(B75,2042
void BE_Node::BE_Node(BE_Node76,2057
class BE_Node 77,2084
struct foo 79,2103
class test 86,2157
  int f(87,2170
  int ff(89,2232
  int g(90,2255
class	AST_Root 92,2279
class	AST_Root;96,2328
AST_ConcreteType::AST_ConcreteType(99,2394
AST_Array::AST_Array(107,2533
     void f(115,2734
struct A 117,2754
    ~A(118,2765
A::~A(~A120,2778
struct B 122,2790
    ~B(123,2801
enum {dog,dog126,2818
enum {dog, cat}cat126,2818
enum {dog, cat} animals;126,2818
struct {int teats;} cow;127,2843
class Boo 129,2869
    enum {dog,dog130,2881
    enum {dog, cat}cat130,2881
    foo(133,2955
    Boo(137,2996
    Boo(138,3053
Boo::Boo(141,3071
typedef int should_see_this_one_enclosed_in_extern_C;149,3156
typedef int (*should_see_this_function_pointer)should_see_this_function_pointer153,3229
typedef int should_see_this_array_type[should_see_this_array_type156,3311

cp-src/x.cc,102
class XX1,0
     int foo(4,19
     void bar(5,35
XX::foo(foo9,60
XX::bar(bar15,95
main(21,126

cp-src/burton.cpp,124
::dummy::dummy test::dummy1(dummy11,0
::dummy::dummy test::dummy2(dummy26,64
::dummy::dummy test::dummy3(dummy311,143

cp-src/functions.cpp,778
void Date::setDate setDate5,148
void Date::plus plus32,938
void Date::minus minus42,1226
void Date::shift shift52,1404
Date & Date::operator = operator =62,1625
Date & Date::operator += operator +=69,1786
Date & Date::operator -= operator -=78,1935
Date & Date::operator ++ operator ++87,2076
Date & Date::operator -- operator --96,2212
int Date::operator - operator -104,2327
int Date::operator < operator <112,2479
int Date::operator > operator >116,2553
int Date::operator == operator ==120,2627
ostream& operator << operator <<124,2703
istream& operator >> operator >>133,2939
bool isLeap 159,3539
bool isHoliday 163,3625
void asort(173,3861
void ReadVacation 186,4060
void Debug 201,4519
int WorkingDays(211,4863
Date StartDay(226,5125

cp-src/MDiagArray2.h,1194
#define octave_MDiagArray2_h 29,870
#undef LTGT35,967
#define LTGT39,1031
#define LTGT 42,1051
class MDiagArray2;45,1087
operator += operator +=48,1145
operator -= operator -=51,1242
operator * operator *54,1339
operator / operator /57,1428
operator * operator *60,1517
operator + operator +63,1605
operator - operator -66,1707
product 69,1808
operator - operator -72,1907
class MDiagArray2 78,2022
  MDiagArray2 82,2077
  MDiagArray2 86,2154
  MDiagArray2 87,2198
  MDiagArray2 88,2254
  MDiagArray2 89,2329
  MDiagArray2 90,2387
  MDiagArray2 91,2450
  ~MDiagArray2 93,2515
  MDiagArray2<T>& operator = operator =95,2542
      DiagArray2<T>::operator = operator =97,2603
  operator MArray2<T> operator MArray2<T>101,2667
  operator += operator +=116,2966
  operator -= operator -=119,3057
  friend MDiagArray2<T> operator * operator *123,3174
  friend MDiagArray2<T> operator / operator /124,3253
  friend MDiagArray2<T> operator * operator *128,3384
  operator + operator +133,3544
  operator - operator -136,3640
  friend MDiagArray2<T> operator - operator -141,3803
#undef LTGT144,3874
#define INSTANTIATE_MDIAGARRAY_FRIENDS(146,3887

cp-src/Range.h,678
#define octave_Range_h 24,765
class istream;30,840
class ostream;31,855
class Matrix;32,870
Range35,891
  Range 39,909
  Range 42,995
  Range 46,1130
  Range 50,1248
  double base 54,1376
  double limit 55,1425
  double inc 56,1475
  int nelem 57,1523
  bool all_elements_are_ints 59,1571
  Matrix matrix_value 61,1615
  double min 63,1652
  double max 64,1679
  void sort 66,1707
  void set_base 68,1728
  void set_limit 69,1774
  void set_inc 70,1821
  friend ostream& operator << operator <<72,1867
  friend istream& operator >> operator >>73,1928
  void print_range 75,1984
  int nelem_internal 85,2099
extern Range operator - operator -88,2138

cp-src/screen.cpp,228
unsigned char cursor_x,15,548
unsigned char cursor_x, cursor_y;15,548
static union REGS regs;16,582
void goto_xy(18,607
void hide_cursor(27,774
void cursor_position(32,836
void clear_screen(41,997
void write_xyc(55,1247

cp-src/screen.hpp,538
#define __COLORS9,401
enum COLORS 11,419
    BLACK,12,433
    BLUE,13,471
    GREEN,14,481
    CYAN,15,492
    RED,16,502
    MAGENTA,17,511
    BROWN,18,524
    LIGHTGRAY,19,535
    DARKGRAY,20,550
    LIGHTBLUE,21,589
    LIGHTGREEN,22,604
    LIGHTCYAN,23,620
    LIGHTRED,24,635
    LIGHTMAGENTA,25,649
    YELLOW,26,667
    WHITE27,679
#define SCREEN_FP(31,700
#define SCREEN_START 33,795
void goto_xy(35,835
void hide_cursor(36,883
void cursor_position(37,907
void clear_screen(38,935
void write_xyc(39,960

cp-src/conway.cpp,288
#define max(12,357
#define min(13,393
const int num_rows 15,430
const int num_columns 16,470
class site *field_of_play[field_of_play18,499
int site::total_surrounding(total_surrounding20,550
void display(37,958
void glider(50,1239
void traffic_light(59,1478
void main(67,1633

cp-src/conway.hpp,215
class site:site5,235
    int total_surrounding(8,303
    site(10,344
    ~site(11,397
    char read(12,410
    void set(13,444
    void clear(14,478
    void compute_next_state(15,514
    void step(22,717

cp-src/clheir.cpp,359
const int max_num_generic_objects 9,298
generic_object * object_registry[object_registry10,340
void init_registry(12,400
void step_everybody(19,527
void discrete_location::clear_neighbors(clear_neighbors31,852
generic_object::generic_object(generic_object36,981
generic_object::~generic_object(~generic_object48,1255
void agent::move(move53,1353

cp-src/clheir.hpp,731
extern void init_registry(10,452
extern void step_everybody(11,485
class generic_object13,520
    generic_object(17,582
    ~generic_object(19,724
    virtual void compute_next_state(21,843
    virtual void step(22,889
const int max_num_directions 31,1220
class location:location33,1290
    location(43,1643
    ~location(44,1662
class irregular_location:irregular_location47,1687
    irregular_location(51,1763
    ~irregular_location(53,1855
class discrete_location:discrete_location56,1890
    void clear_neighbors(60,2005
    discrete_location(62,2045
    ~discrete_location(65,2155
    void assign_neighbor(66,2185
class agent:agent75,2509
    agent(79,2579
    ~agent(80,2592
    void move(81,2606

cp-src/fail.C,315
struct A 7,263
	   struct B 8,274
		   struct C 9,289
			   C(11,318
			   operator int(operator int12,342
		   typedef C T;14,389
	   typedef B T2;16,414
class String;20,437
class A 23,453
	class B 24,463
		class C 25,474
		int f(26,488
int A::B::f(f31,521
main(37,571
	class D 41,622
		D(43,659

el-src/TAGTEST.EL,179
(foo::defmumble bletch 1,0
(defun foo==bar foo==bar2,33
(defalias 'pending-delete-mode pending-delete-mode6,149
(defalias (quote explicitly-quoted-pending-delete-mode)9,222

el-src/emacs/lisp/progmodes/etags.el,5188
(defvar tags-file-name 34,1035
(defgroup etags 43,1499
(defcustom tags-case-fold-search 47,1567
(defcustom tags-table-list 59,2052
(defcustom tags-compression-info-list69,2450
(defcustom tags-add-tables 88,3232
(defcustom tags-revert-without-query 98,3628
(defvar tags-table-computed-list 103,3779
(defvar tags-table-computed-list-for 112,4263
(defvar tags-table-list-pointer 117,4511
(defvar tags-table-list-started-at 121,4702
(defvar tags-table-set-list 124,4822
(defcustom find-tag-hook 129,5001
(defcustom find-tag-default-function 137,5264
(define-obsolete-variable-alias 'find-tag-marker-ring-lengthfind-tag-marker-ring-length145,5603
(defcustom tags-tag-face 148,5700
(defcustom tags-apropos-verbose 154,5835
(defcustom tags-apropos-additional-actions 160,5999
(defvaralias 'find-tag-marker-ring find-tag-marker-ring183,6918
(defvar default-tags-table-function 189,7098
(defvar tags-location-ring 194,7324
(defvar tags-table-files 201,7600
(defvar tags-completion-table 206,7767
(defvar tags-included-tables 209,7859
(defvar next-file-list 212,7954
(defvar tags-table-format-functions 217,8060
(defvar file-of-tag-function 224,8441
(defvar tags-table-files-function 228,8635
(defvar tags-completion-table-function 230,8746
(defvar snarf-tag-function 232,8841
(defvar goto-tag-location-function 236,9050
(defvar find-tag-regexp-search-function 239,9223
(defvar find-tag-regexp-tag-order 241,9344
(defvar find-tag-regexp-next-line-after-failure-p 243,9453
(defvar find-tag-search-function 245,9573
(defvar find-tag-tag-order 247,9680
(defvar find-tag-next-line-after-failure-p 249,9775
(defvar list-tags-function 251,9881
(defvar tags-apropos-function 253,9969
(defvar tags-included-tables-function 255,10063
(defvar verify-tags-table-function 257,10182
(defun initialize-new-tags-table 260,10293
(defun tags-table-mode 276,10981
(defun visit-tags-table 285,11246
(defun tags-table-check-computed-list 321,12784
(defun tags-table-extend-computed-list 360,14655
(defun tags-expand-table-name 400,16368
(defun tags-table-list-member 409,16711
(defun tags-verify-table 421,17183
(defun tags-table-including 470,19303
(defun tags-next-table 522,21347
(defun visit-tags-table-buffer 543,22204
(defun tags-reset-tags-tables 712,28514
(defun file-of-tag 731,29171
(defun tags-table-files 740,29520
(defun tags-included-tables 749,29870
(defun tags-completion-table 755,30116
(defun tags-lazy-completion-table 783,31310
(defun tags-completion-at-point-function 799,31945
(defun find-tag-tag 818,32695
(defvar last-tag 837,33368
(defun find-tag-interactive 840,33427
(defvar find-tag-history 852,33842
(defvar etags-case-fold-search)855,33907
(defvar etags-syntax-table)856,33939
(defvar local-find-tag-hook)857,33967
(defun find-tag-noselect 860,34012
(defun find-tag 932,37126
(defun find-tag-other-window 959,38342
(defun find-tag-other-frame 1000,40270
(defun find-tag-regexp 1025,41444
(defalias 'pop-tag-mark pop-tag-mark1049,42606
(defvar tag-lines-already-matched 1052,42657
(defun find-tag-in-order 1055,42764
(defun tag-find-file-of-tag-noselect 1167,47110
(defun tag-find-file-of-tag 1200,48956
(defun etags-recognize-tags-table 1208,49182
(defun etags-verify-tags-table 1241,50813
(defun etags-file-of-tag 1246,51011
(defun etags-tags-completion-table 1256,51346
(defun etags-snarf-tag 1286,52552
(defun etags-goto-tag-location 1324,54121
(defun etags-list-tags 1388,56564
(defmacro tags-with-face 1423,57839
(defun etags-tags-apropos-additional 1431,58172
(defun etags-tags-apropos 1465,59409
(defun etags-tags-table-files 1527,61618
(defun etags-tags-included-tables 1542,62054
(defun tags-recognize-empty-tags-table 1559,62594
(defun tag-exact-file-name-match-p 1587,63740
(defun tag-file-name-match-p 1596,64133
(defun tag-exact-match-p 1609,64689
(defun tag-implicit-name-match-p 1620,65257
(defun tag-symbol-match-p 1633,65857
(defun tag-word-match-p 1643,66293
(defun tag-partial-file-name-match-p 1652,66691
(defun tag-any-match-p 1662,67135
(defun tag-re-match-p 1667,67319
(defcustom tags-loop-revert-buffers 1675,67568
(defun next-file 1685,67977
(defvar tags-loop-operate 1760,70891
(defvar tags-loop-scan1763,70985
(defun tags-loop-eval 1771,71314
(defun tags-loop-continue 1782,71643
(defun tags-search 1850,73949
(defun tags-query-replace 1871,74775
(defun tags-complete-tags-table-file 1896,75999
(defun list-tags 1906,76378
(defun tags-apropos 1934,77331
(define-button-type 'tags-select-tags-tabletags-select-tags-table1957,78157
(defun select-tags-table 1964,78396
(defvar select-tags-table-mode-map 2019,80523
(define-derived-mode select-tags-table-mode 2030,80906
(defun select-tags-table-select 2034,81090
(defun select-tags-table-quit 2043,81456
(defun complete-tag 2049,81611
(defconst etags--xref-limit 2074,82552
(defvar etags-xref-find-definitions-tag-order 2076,82587
(defun etags-xref-find 2082,82877
(defun etags--xref-find-definitions 2096,83406
(defclass xref-etags-location 2129,85120
(defun xref-make-etags-location 2135,85343
(cl-defmethod xref-location-marker 2139,85498
(cl-defmethod xref-location-line 2146,85742

erl-src/gs_dialog.erl,98
-define(VERSION2,32
behaviour_info(51,2177
show(124,5458
dialog_loop(219,9529
test(252,10806

f-src/entry.for,172
      LOGICAL FUNCTION PRTPKG 3,75
       ENTRY  SETPRT 194,3866
       ENTRY  MSGSEL 395,8478
     & intensity1(577,12231
       character*(*) function foo(579,12307

f-src/entry.strange_suffix,172
      LOGICAL FUNCTION PRTPKG 3,75
       ENTRY  SETPRT 194,3866
       ENTRY  MSGSEL 395,8478
     & intensity1(577,12231
       character*(*) function foo(579,12307

f-src/entry.strange,172
      LOGICAL FUNCTION PRTPKG 3,75
       ENTRY  SETPRT 194,3866
       ENTRY  MSGSEL 395,8478
     & intensity1(577,12231
       character*(*) function foo(579,12307

forth-src/test-forth.fth,733
: a-forth-word20,301
99 constant a-forth-constant!22,343
55 value a-forth-value?23,373
create :a-forth-dictionary-entry24,397
defer #a-defer-word27,460
: (another-forth-word)(another-forth-word)29,481
   9   field   >field136,582
   5   field   >field237,605
constant (a-forth-constant(a-forth-constant38,628
2000 buffer: #some-storage41,657
code assemby-code-word43,685
: a-forth-word50,870
: (foo)(foo)55,988
: foo56,1000
: create-bar58,1015
3 4 2constant 2const61,1074
2const 2value 2val62,1095
2variable 2var63,1114
3.1415e fconstant fconst65,1130
fconst fvalue fval66,1155
fvariable fvar67,1174
synonym mypi69,1190
BEGIN-STRUCTURE point71,1211
  1 CELLS +FIELD p.x72,1262
  1 CELLS +FIELD p.y73,1318

go-src/test.go,48
package main1,0
func say(5,28
func main(9,72

go-src/test1.go,119
package main1,0
func (s str) PrintAdd(17,136
func (n intNumber) PrintAdd(21,189
func test(25,248
func main(29,285

html-src/softwarelibero.html,200
Cos'è il software libero?4,38
Licenze d'uso di un programmalicenze65,2502
Sfatiamo alcuni miti138,6122
Il movimento open sourceoss191,8041
Impatto pratico del software liberoimpatto231,10070

html-src/index.shtml,104
&nbsp;8,281
In evidenza15,447
Comunicati e iniziative32,976
Ultime notizie dall'associazione63,2030

html-src/algrthms.html,467
Tutorial on Convolutional Coding with Viterbi Decoding--Description of the Data Generation, Convolutional Encoding, Channel Mapping and AWGN, and Quantizing Algorithms7,277
Descriptionalgorithms10,481
Generating the Datagenalgorithm48,1995
Convolutionallyconalgorithm55,2512
Nextstatetable262,11587
Outputoutputtable350,13915
Mapping the Channel Symbolsmapping433,16213
Adding Noise to theaddnoise439,16607
Quantizing the Receivedquantizing469,19100

html-src/software.html,439
Francesco Potortì Software Page9,280
Software that I wrote for supporting my research activitysimulation36,1398
MTGmtg41,1482
Fracasfracas65,2624
GaliLEOgalileo101,4232
Leasqrleasqr114,4677
Free software that I wrote for the GNU project or for my personal or workgnu142,6066
Etagsetags148,6181
checkiso161,6731
cgrep178,7549
debian-bug.eldebian-bug190,7981
tcpdump205,8566
Links to interesting softwarelinks216,8893

lua-src/allegro.lua,400
local function get_layer_by_name 7,175
local function count_layers 33,621
function GetLayerByName 54,980
function GetUniqueLayerName 65,1204
function SelectLayer 76,1415
function NewLayer 86,1773
function NewLayerSet 144,3226
function RemoveLayer 170,3750
function MoveLayerTop 211,4767
function MoveLayerBottom 223,5079
function MoveLayerBefore 236,5457
function MoveLayerAfter 258,6090

lua-src/test.lua,442
function Rectangle.getPos 2,15
function Rectangle.getPos getPos2,15
function Circle.getPos 6,61
function Circle.getPos getPos6,61
function Cube.data.getFoo 10,102
function Cube.data.getFoo getFoo10,102
function Square.something:Bar 14,148
function Square.something:Bar Bar14,148
   function test.me_22a(22,241
   function test.me_22a(me_22a22,241
   local function test.me22b 25,297
   local function test.me22b me22b25,297

make-src/Makefile,2175
LATEST=1,0
RELEASELIST=2,10
ADASRC=4,104
ASRC=5,171
CSRC=6,197
CPSRC=10,423
ELSRC=13,614
ERLSRC=14,661
FORTHSRC=15,702
FSRC=16,726
HTMLSRC=17,776
JAVASRC=18,844
LUASRC=19,907
MAKESRC=20,926
OBJCSRC=21,943
OBJCPPSRC=22,999
PASSRC=23,1035
PERLSRC=24,1053
PHPSRC=25,1108
PSSRC=26,1156
PROLSRC=27,1173
PYTSRC=28,1210
TEXSRC=29,1227
YSRC=30,1282
SRCS=31,1325
NONSRCS=35,1577
VHDLFLAGS=37,1624
COBOLFLAGS=38,1827
POSTSCRIPTFLAGS=39,1889
TCLFLAGS=40,1943
GETOPTOBJS=42,2002
RXINCLUDE=43,2034
REGEXOBJS=44,2056
CHECKOBJS=46,2075
CHECKFLAGS=47,2105
OBJS=48,2145
CPPFLAGS=49,2190
LDFLAGS=50,2259
WARNINGS=51,2282
CFLAGS=52,2466
FASTCFLAGS=55,2530
FASTCFLAGSWARN=56,2591
FILTER=58,2641
REGEX=59,2695
xx=60,2741
MAKE:MAKE62,2790
RUN=63,2825
RUN=64,2865
OPTIONS=65,2870
ARGS=66,2922
infiles 68,2940
quiettest:quiettest70,3002
test:test79,3409
${CHECKOBJS}:${CHECKOBJS}88,3805
checker:checker90,3849
standalone:standalone96,4062
prof:prof101,4168
fastetags:fastetags104,4198
fastctags:fastctags108,4322
staticetags:staticetags112,4446
rsynctofly:rsynctofly116,4608
rsyncfromfly:rsyncfromfly119,4698
web ftp publish:web ftp publish122,4794
release distrib:release distrib129,5115
tags:tags134,5255
clean:clean136,5267
srclist:srclist139,5302
regexfile:regexfile143,5391
/home/www/pub/etags.c.gz:/home/www/pub/etags.c.gz149,5566
/home/www/pub/software/unix/etags.tar.gz:/home/www/pub/software/unix/etags.tar.gz156,5825
regex.o:regex.o159,6031
getopt.o:getopt.o162,6086
getopt1.o:getopt1.o165,6147
etags:etags168,6210
ctags:ctags171,6299
man manpage:man manpage174,6396
etags.1.man:etags.1.man176,6422
maintaining.info:maintaining.info179,6475
TAGS:TAGS182,6557
%ediff:%ediff185,6587
oediff:oediff188,6677
%cdiff:%cdiff191,6764
xdiff:xdiff194,6854
ETAGS:ETAGS197,6942
ETAGS%:ETAGS%200,7012
ETAGS13 ETAGS14 ETAGS15:ETAGS13 ETAGS14 ETAGS15203,7084
ETAGS12:ETAGS12206,7216
OTAGS:OTAGS209,7304
CTAGS:CTAGS212,7369
CTAGS%:CTAGS%215,7443
CTAGS13 CTAGS14 CTAGS15:CTAGS13 CTAGS14 CTAGS15218,7545
EXTAGS:EXTAGS221,7680
.PRECIOUS:.PRECIOUS224,7838
FRC:FRC226,7894

objc-src/Subprocess.h,98
#define Subprocess 41,1217
#define BUFFERSIZE 43,1267
@interface Subprocess:Subprocess45,1292

objc-src/Subprocess.m,476
#define	PTY_TEMPLATE 20,494
#define	PTY_LENGTH 21,528
static void showError(23,551
@interface Subprocess(Private)32,737
- childDidExit39,851
- fdHandler:fdHandler67,1589
showError 98,2360
fdHandler 112,2785
getptys 119,2907
- init:init183,4815
    andStdErr:init197,5147
- send:(const char *)string withNewline:send300,7436
- send:send308,7599
- terminateInput314,7689
- terminate:terminate321,7810
- setDelegate:setDelegate332,7961
- delegate338,8031

objc-src/PackInsp.h,109
#define NUMSTATS	36,1101
#define TYPESTOSTAT	37,1120
@interface PackageInspector:PackageInspector39,1172

objc-src/PackInsp.m,1322
static const char RCSid[RCSid30,1032
#define VERSION	34,1116
#   define DEBUG 37,1155
#define LISTCONTENTS	39,1181
#define OPENBUTTON	47,1352
#define LISTCONTENTSBUTTON	48,1449
#define LISTDESCRIPTIONBUTTON	49,1562
#define STATE_UNINSTALLED	52,1687
#define STATE_INSTALLED	53,1807
#define STATE_COMPRESSD	54,1948
#define SIZEFORMAT	57,2152
#define KBYTES	58,2362
#define MBYTES	59,2473
#define LOCALIZE(61,2585
#define LOCALIZE_ARCH(62,2668
+newnew67,2802
-showInfo:showInfo93,3417
-revert:revert107,3737
-ok:ok136,4297
-loadload143,4424
#define LOOKUP(156,4826
#undef LOOKUP176,5694
-loadKeyValuesFrom:(const char *)type inTable:loadKeyValuesFrom186,5852
-loadContentsOf:(const char *)type inTable:loadContentsOf238,7079
-loadImageloadImage257,7552
#define STAT_EQ(275,7940
-(BOOL)shouldLoad280,8116
-toggleDescriptiontoggleDescription301,8626
-(const char *)getPath:(char *)buf forType:getPath317,8899
-setRevertButtonTitlesetRevertButtonTitle333,9320
-(const char *)formatSize:(const char *)size inBuf:formatSize344,9525
#define WORKING	368,10045
-(void)getArchs370,10100
-(void)addArchs:addArchs385,10520
-subprocess:(Subprocess *)sender output:subprocess428,11351
-subprocessDone:subprocessDone436,11484
static void openInWorkspace(446,11634
-open:open464,12063

objcpp-src/SimpleCalc.H,41
@interface SimpleCalc:SimpleCalc14,400

objcpp-src/SimpleCalc.M,445
- init52,1747
- appendToDisplay:appendToDisplay60,1933
- registerAction:registerAction70,2210
- decimalKey:decimalKey77,2348
- numberKeys:numberKeys91,2661
- equalsKey:equalsKey112,3192
- operationKeys:operationKeys131,3680
- clearKey:clearKey153,4301
- clearAllKey:clearAllKey160,4410
- appDidInit:appDidInit168,4591
- windowWillClose:windowWillClose178,4882
- infoPanel:infoPanel186,5132
- helpPanel:helpPanel198,5482

pas-src/common.pas,1875
procedure InitializeStringPackage;26,527
function newtextstring;34,874
procedure disposetextstring;52,1404
function ConcatT;78,2066
function AppendTextString;112,3238
function CopyTextString;132,3947
procedure CONVERT_CHARSTRING_TO_VALUE;151,4505
procedure append_string;172,5166
function To_Upper;186,5462
function To_Lower;194,5617
function EmptyNmStr(209,6213
function chartonmstr;219,6436
function LowerCaseNmStr;230,6682
function concatenatenamestrings;242,7007
procedure writenamestring;263,7517
function IsControlChar;277,7928
function namestringequal;283,8079
function NameStringLess;302,8539
function IsControlCharName(343,9710
function SubString;358,10208
function SkipChars;379,10791
function RemoveUnderlineControl;397,11311
procedure First100Chars;427,12162
procedure SkipSpaces;462,13298
function SkipBlanks;477,13782
function stripname;505,14595
function Locate;522,15039
function NameHasChar;543,15581
function integertonmstr;561,16134
function NmStrToInteger;585,16901
function AddNullToNmStr;600,17317
function ValToNmStr;611,17585
function ChangeFileType;625,18037
function StripPath;647,18734
function ReprOfChar;675,19343
procedure ExtractCommentInfo;702,20749
procedure INSERT_TREE_NODE;784,24053
function GetNameList;920,27926
procedure DisposeANameList(925,28010
procedure DisposeNameList;938,28340
function GetNewNameListNode;943,28409
function insertname;972,29051
procedure InitNameList;988,29471
procedure InitNameStringPool;998,29767
procedure NewNameString;1004,29867
procedure ReleaseNameString;1022,30232
procedure SDTrefStringToRec 1045,30741
procedure SDTrefSkipSpaces;1059,31092
function SDTrefIsEnd 1070,31323
function SDTrefGetInteger 1082,31529
procedure SDTrefRecToString 1303,37546
function NmStrToErrStr;1497,42305
function ErrStrToNmStr;1509,42557
function GetTextRef;1529,43112

php-src/lce_functions.php,2152
  define("LCE_FUNCTIONS"LCE_FUNCTIONS4,38
  define("LCE_UNKNOWN"LCE_UNKNOWN9,145
  define("LCE_WS"LCE_WS11,194
  define("LCE_COMMENT"LCE_COMMENT13,244
  define("LCE_COMMENT_USER"LCE_COMMENT_USER15,303
  define("LCE_COMMENT_TOOL"LCE_COMMENT_TOOL17,366
  define("LCE_MSGID"LCE_MSGID19,430
  define("LCE_MSGSTR"LCE_MSGSTR21,488
  define("LCE_TEXT"LCE_TEXT23,541
  define("STATE_ABORT"STATE_ABORT25,567
  define("STATE_OK"STATE_OK26,595
  define("STATE_LOOP"STATE_LOOP27,620
  class POEntryAD 29,648
      function validate(31,683
      function checkQuotation(59,1384
  class CommentAD 70,1639
      function CommentAD(73,1693
      function validate(83,1944
  class POEntry 105,2410
      function POEntry(119,2711
      function lineCount(135,3255
      function serializeToVars(141,3365
      function write(151,3800
  class POReader 163,4178
      function gettext(177,4457
      function parseFromVars(189,4705
      function serializeToVars(215,5331
      function POReader(229,5613
      function read(243,5983
      function write(259,6307
      function isComment(277,6645
      function comment(284,6822
      function msgid(304,7247
      function msgstr(320,7574
      function start(340,8232
      function createPOEntries(360,8644
      function stripLine(394,9472
      function printClassification(421,10056
      function classifyLine(432,10301
  function getTextDomains(471,11094
  class PORManager 498,11756
      function PORManager(502,11822
      function addPOReader(507,11896
      function &getPOReader(getPOReader512,11992
      function getDomainNames(517,12081
  function &loadPORManager(loadPORManager523,12174
  function fileJoin(536,12436
      function lce_bindtextdomain(557,12839
      function lce_textdomain(614,14530
      function lce_gettext(620,14641
      function lce_dgettext(626,14767
      function lce(634,14966
      function lce_bindtextdomain(651,15488
      function lce_textdomain(656,15592
      function lce_gettext(661,15674
      function lce_dgettext(666,15755
      function lce(670,15855
  function lce_geteditcode(676,15898

php-src/ptest.php,46
define("TEST"TEST1,0
test 4,26
foo(16,200

perl-src/htlmify-cystic,1197
my @section_name;section_name12,236
my @appendix_name;appendix_name13,254
my @section_toc;section_toc15,274
my @appendix_toc;appendix_toc16,291
my $new_tag new_tag18,310
my $appendix;appendix24,409
my $section;section25,423
my $subsection;subsection26,436
my $subsubsection;subsubsection27,452
my $this_file_toc this_file_toc29,472
my %file_tocs;file_tocs30,496
my @output_files output_files32,512
my $file_index file_index33,535
my $output_file;output_file35,556
my $line;line37,574
my $subsection_marker;subsection_marker161,3883
my $new;new163,3907
sub read_toc 165,3917
	  my $entry entry218,5621
	  my $entry entry234,6077
	      my $entry entry245,6351
	  my $entry entry252,6536
	  my $entry entry268,7010
	      my $entry entry276,7204
	  my $entry entry281,7328
      my $entry entry296,7698
sub finish_subsubsections 302,7805
sub finish_subsections 309,7987
sub finish_sections 320,8310
sub finish_appendices 331,8599
sub section_url_base 337,8724
sub section_url_name 342,8922
sub section_url 355,9284
  my $name name357,9336
sub section_href 364,9452
sub section_name 368,9551
sub toc_line 372,9655
sub file_end 375,9750

perl-src/yagrip.pl,233
sub getopt 7,156
	local($_,$flag,$opt,$f,$r,@temp)($_,$flag,$opt,$f,$r,@temp8,169
sub usage 38,856
	local($prog,$_,@list)($prog,$_,@list39,868
	local($string,$flag,@string,@temp,@last)($string,$flag,@string,@temp,@last40,897

perl-src/kai-test.pl,203
sub f1 2,16
sub main::f2 f26,50
package Foo;10,90
sub f3 12,104
sub Bar::f4 f416,138
package Bar;20,177
sub f5 22,191
package Foo::Bar;26,225
sub f6 28,244
package main;32,278
sub f7 34,293

ps-src/rfc1245.ps,2478
/FMversion 12,311
/FrameDict 17,500
/FMVERSION 47,1307
/FMLOCAL 56,1494
/FMDOCUMENT 73,1766
/FMBEGINPAGE 95,2279
/FMENDPAGE 109,2516
/FMDEFINEFONT 115,2582
/FMNORMALIZEGRAPHICS 126,2725
/FMBEGINEPSF 142,2955
/FMENDEPSF 153,3207
/setmanualfeed 158,3283
/max 163,3386
/min 164,3426
/inch 165,3466
/pagedimen 166,3485
/setpapername 172,3629
/papersize 190,4214
/manualpapersize 211,4789
/desperatepapersize 230,5211
/savematrix 239,5370
/restorematrix 242,5425
/dmatrix 245,5475
/dpi 246,5495
/freq 248,5583
/sangle 249,5658
/DiacriticEncoding 250,5717
/.notdef 251,5738
/.notdef 252,5801
/.notdef 253,5864
/.notdef 254,5927
/.notdef 255,5990
/numbersign 256,6051
/parenright 257,6115
/two 258,6184
/less 259,6251
/L 260,6320
/bracketright 261,6389
/i 262,6459
/braceright 263,6529
/Ntilde 264,6598
/atilde 265,6668
/iacute 266,6733
/ocircumflex 267,6797
/udieresis 268,6858
/paragraph 269,6919
/dieresis 270,6983
/yen 271,7050
/ordfeminine 272,7109
/exclamdown 273,7171
/guillemotleft 274,7230
/Otilde 275,7296
/quoteleft 276,7357
/fraction 277,7420
/periodcentered 278,7490
/Acircumflex 279,7549
/Icircumflex 280,7610
/Uacute 281,7680
/breve 282,7746
/ReEncode 284,7814
/graymode 300,8020
/setpattern 310,8184
/grayness 331,8725
/normalize 394,9873
/dnormalize 397,9942
/lnormalize 400,10014
/H 403,10104
/Z 406,10147
/X 409,10176
/V 412,10219
/N 415,10260
/M 418,10286
/E 419,10315
/D 420,10336
/O 421,10358
/L 423,10394
/Y 430,10489
/R 439,10588
/RR 450,10696
/C 467,10959
/U 473,11004
/F 477,11039
/T 481,11084
/RF 484,11115
/TF 488,11164
/P 495,11219
/PF 499,11270
/S 506,11344
/SF 510,11384
/B 517,11446
/BF 521,11505
/W 538,11714
/G 573,12382
/A 582,12525
/BEGINPRINTCODE 606,12918
/ENDPRINTCODE 615,13131
/gn 620,13259
/cfs 631,13384
/ic 636,13473
/ms 658,14285
/ip 668,14395
/wh 678,14492
/bl 684,14607
/s1 690,14722
/fl 691,14739
/hx 698,14887
/wbytes 709,15055
/BEGINBITMAPBWc 713,15147
/BEGINBITMAPGRAYc 716,15198
/BEGINBITMAP2BITc 719,15251
/COMMONBITMAPc 722,15304
/BEGINBITMAPBW 739,15660
/BEGINBITMAPGRAY 742,15709
/BEGINBITMAP2BIT 745,15760
/COMMONBITMAP 748,15811
/Fmcc 765,16156
/ngrayt 773,16371
/nredt 774,16393
/nbluet 775,16414
/ngreent 776,16436
/colorsetup 787,16603
/fakecolorsetup 814,17370
/BITMAPCOLOR 826,17636
/BITMAPCOLORc 839,17926
/BITMAPGRAY 855,18275
/BITMAPGRAYc 858,18335
/ENDBITMAP 861,18397
/fillprocs 868,18497

prol-src/ordsets.prolog,525
is_ordset(47,1310
list_to_ord_set(63,1688
ord_add_element(71,1867
ord_del_element(85,2344
ord_disjoint(100,2783
ord_intersect(108,2953
ord_intersection(126,3552
ord_intersection3(130,3691
ord_intersection(150,4531
ord_intersection4(154,4703
ord_intersection(176,5664
ord_intersection2(181,5812
ord_member(200,6318
ord_seteq(216,6683
ord_setproduct(225,6971
ord_subset(240,7377
ord_subtract(257,7861
ord_symdiff(265,8054
ord_union(288,8887
ord_union4(303,9352
ord_union(324,10171
ord_union_all(329,10313

prol-src/natded.prolog,2319
expandmng(100,2879
normalize(116,3359
fresh_vars(125,3716
subst(138,4134
normalize_fresh(159,4660
reduce_subterm(171,5112
reduce(185,5559
free_var(196,5903
free_for(209,6246
compile_lex(231,6875
consult_lex:-consult_lex248,7384
lex(259,7754
expandsyn(267,8068
bas_syn(292,8897
compile_empty:-compile_empty310,9376
complete(328,10055
add_active(340,10527
parse(353,10949
derived_analyses(364,11341
build(378,11965
buildact(392,12521
mapsyn(412,13542
add_edge(434,14278
findcats(447,14758
normalize_tree(465,15478
normalize_trees(475,15856
expandmng_tree(486,16248
expandmng_trees(496,16614
cat(511,17013
subtree(644,21266
hypothetical_mem(653,21565
make_coor(667,22130
start_up:-start_up688,23013
tokenizeatom(710,23921
tokenize(720,24348
isoperator(752,25377
isoptab(756,25431
specialsymbol(765,25756
sstab(771,25861
parse_cgi(787,26347
keyvalseq(792,26510
andkeyvalseq(796,26609
keyval(799,26688
valseq(807,26920
plusvalseq(810,27007
val(816,27109
argvals(824,27426
commaargvals(828,27503
atomval(833,27578
atom(836,27640
action(846,28004
keyvalcgi(864,28649
keyvalscgi(865,28670
outsyn(868,28726
act(876,29060
actout(901,29906
texttreelist(912,30089
htmltreelist(918,30190
fitchtreelist(924,30304
pp_html_table_tree(938,30759
pp_html_tree(949,31113
pp_html_trees(988,32381
pp_html_table_fitch_tree(999,32769
pp_html_fitch_tree(1017,33672
removeexp(1129,39002
splitexp(1142,39490
pp_exp(1155,39990
map_word(1168,40249
pp_exps(1180,40474
pp_tree(1188,40777
pp_trees(1216,41807
pp_word_list(1225,42128
pp_word(1231,42262
pp_word_list_rest(1238,42569
pp_cat(1248,42929
pp_syn(1255,43196
pp_syn_paren(1276,43899
pp_paren(1293,44377
pp_syn_back(1300,44661
pp_bas_cat(1311,45001
writecat(1322,45409
writesubs(1351,46455
writesups(1361,46757
writelistsubs(1371,47090
pp_lam(1380,47408
pp_lam_bracket(1398,48022
pp_lam_paren(1407,48338
pp_rule(1429,49238
member(1447,49866
append_list(1451,49919
append(1456,50010
at_least_one_member(1460,50076
numbervars(1464,50171
reverse(1467,50209
select(1471,50290
select_last(1475,50357
cat_atoms(1479,50436
writelist(1485,50524
write_lex_cat(1492,50676
writebreaklex(1500,50988
write_lex(1513,51265
writebreak(1521,51541
tt:-tt1531,51713
mt:-mt1534,51784
cmt:-cmt1537,51878

pyt-src/server.py,1438
class Controls:Controls17,358
    def __init__(18,374
    def __repr__(24,590
    def __str__(34,871
class Server:Server37,934
    def __init__(38,948
    def dump(73,2198
    def __repr__(125,3896
    def __str__(128,3945
class User:User131,4014
    def __init__(132,4026
    def __repr__(172,5445
    def __str__(206,6883
def flag2str(223,7212
class LabeledEntry(232,7442
    def bind(234,7525
    def focus_set(236,7584
    def __init__(238,7629
def ButtonBar(245,7909
def helpwin(255,8280
class ListEdit(267,8707
    def __init__(269,8808
    def handleList(303,10042
    def handleNew(306,10094
    def editItem(314,10426
    def deleteItem(320,10596
def ConfirmQuit(326,10760
class ControlEdit(375,12377
    def PostControls(376,12403
    def GatherControls(421,13530
class ServerEdit(512,16264
    def __init__(513,16289
    def post(525,16629
    def gather(543,17191
    def nosave(547,17304
    def save(551,17408
    def refreshPort(556,17509
    def createWidgets(561,17663
    def edituser(631,20708
class UserEdit(645,20921
    def __init__(646,20944
    def post(658,21283
    def gather(676,21841
    def nosave(680,21950
    def save(684,22052
    def createWidgets(689,22151
class Configure(760,24879
    def __init__(761,24916
    def MakeDispose(772,25211
    def MakeSitelist(786,25706
    def editsite(794,25949
    def save(797,26022
    def nosave(807,26310

ruby-src/test.rb,637
module ModuleExample1,0
    class ClassExample2,21
        def instance_method3,44
        def ClassExample.class_methodclass_method6,121
        def instance_method_exclamation!9,206
        def instance_method_question?12,310
        def instance_method_equals=instance_method_equals=15,408
        def `(18,502
        def +(21,592
        def [](24,640
        def []=([]=27,690
        def <<(30,752
        def ==(==33,802
        def <=(<=36,872
        def <=>(<=>39,943
        def ===(===42,990
    def module_instance_method46,1051
    def ModuleExample.module_class_methodmodule_class_method49,1131

ruby-src/test1.ru,935
class A1,0
 def a(2,8
 def b(5,38
module A9,57
  class B10,66
    ABC 11,76
    Def_ 12,88
    Xyzzy 13,106
    def foo!15,121
    def self._bar?(_bar?18,143
      def qux=(qux=22,194
    attr_reader :foofoo26,233
    attr_reader :read1 read127,254
    attr_reader :read1 , :read2;read227,254
    attr_reader :read1 , :read2; attr_writer :write1,write1=27,254
    attr_reader :read1 , :read2; attr_writer :write1, :write2write2=27,254
    attr_writer :bar,bar=28,316
                :baz,baz=29,338
                :moremore=30,360
    attr_accessor :teetee31,382
    attr_accessor :teetee=31,382
    alias_method :qux,qux32,405
    alias_method :xyz,xyz33,456
                 :tee ; attr_reader :subtlesubtle34,479
    attr_reader(:foo1,foo135,523
    attr_reader(:foo1, :bar1,bar135,523
                :qux1)qux136,563
    alias_method ( :foo2,foo237,586
A::Constant Constant42,655

scm-src/test.scm,260
(define hello 1,0
(set! hello 3,32
(define (hello-world)5,62
(define (there-is-a-=-in-the-middle!)there-is-a-=-in-the-middle!10,128
(define =starts-with-equals! =starts-with-equals!12,171
(define (((((curry-test 14,205
(define-syntax test-begin17,265

tex-src/testenv.tex,52
\newcommand{\nm}\nm4,77
\section{blah}blah8,139

tex-src/gzip.texi,303
@node Top,62,2139
@node Copying,80,2652
@node Overview,83,2705
@node Sample,166,7273
@node Invoking gzip,Invoking gzip210,8829
@node Advanced usage,Advanced usage357,13497
@node Environment,420,15209
@node Tapes,437,15770
@node Problems,460,16769
@node Concept Index,Concept Index473,17289

tex-src/texinfo.tex,30627
\def\texinfoversion{\texinfoversion26,1035
\def\tie{\tie49,1526
\def\gloggingall{\gloggingall72,2276
\def\loggingall{\loggingall73,2345
\def\onepageout#1{\onepageout99,3282
\def\croppageout#1{\croppageout115,4032
\def\cropmarks{\cropmarks142,5092
\def\pagebody#1{\pagebody144,5139
\def\ewtop{\ewtop157,5594
\def\nstop{\nstop158,5658
\def\ewbot{\ewbot160,5741
\def\nsbot{\nsbot161,5805
\def\parsearg #1{\parsearg170,6104
\def\parseargx{\parseargx172,6182
\def\parseargline{\parseargline182,6422
\def\flushcr{\flushcr186,6543
\newif\ifENV \ENVfalse \def\inENV{\inENV190,6742
\def\ENVcheck{\ENVcheck191,6806
\outer\def\begin{\begin198,7053
\def\beginxxx #1{\beginxxx200,7091
\def\end{\end208,7346
\def\endxxx #1{\endxxx210,7374
\def\errorE#1{\errorE216,7563
\def\singlespace{\singlespace222,7757
\def\@{\@232,7980
\def\`{\`236,8080
\def\'{\'237,8092
\def\mylbrace {\mylbrace241,8140
\def\myrbrace {\myrbrace242,8173
\def\:{\:247,8287
\def\*{\*250,8341
\def\.{\.253,8417
\def\w#1{\w258,8648
\def\group{\group268,9131
  \def\Egroup{\Egroup273,9295
\def\need{\need289,9737
\def\needx#1{\needx300,10014
\def\dots{\dots339,11400
\def\page{\page343,11464
\def\exdent{\exdent353,11791
\def\exdentyyy #1{\exdentyyy354,11824
\def\nofillexdent{\nofillexdent357,11968
\def\nofillexdentyyy #1{\nofillexdentyyy358,12013
\def\include{\include365,12197
\def\includezzz #1{\includezzz366,12232
\def\thisfile{\thisfile369,12283
\def\center{\center373,12346
\def\centerzzz #1{\centerzzz374,12379
\def\sp{\sp380,12521
\def\spxxx #1{\spxxx381,12546
\def\comment{\comment387,12720
\def\commentxxx #1{\commentxxx390,12817
\def\ignoresections{\ignoresections396,12986
\let\chapter=\relax=\relax397,13008
\let\section=\relax=\relax406,13253
\let\subsection=\relax=\relax409,13314
\let\subsubsection=\relax=\relax410,13337
\let\appendix=\relax=\relax411,13363
\let\appendixsec=\relaxsec=\relax412,13384
\let\appendixsection=\relaxsection=\relax413,13408
\let\appendixsubsec=\relaxsubsec=\relax414,13436
\let\appendixsubsection=\relaxsubsection=\relax415,13463
\let\appendixsubsubsec=\relaxsubsubsec=\relax416,13494
\let\appendixsubsubsection=\relaxsubsubsection=\relax417,13524
\def\ignore{\ignore423,13626
\long\def\ignorexxx #1\end ignore{\ignorexxx427,13766
\def\direntry{\direntry429,13825
\long\def\direntryxxx #1\end direntry{\direntryxxx430,13864
\def\ifset{\ifset434,13974
\def\ifsetxxx #1{\ifsetxxx436,14032
\def\Eifset{\Eifset440,14159
\def\ifsetfail{\ifsetfail441,14173
\long\def\ifsetfailxxx #1\end ifset{\ifsetfailxxx442,14229
\def\ifclear{\ifclear444,14290
\def\ifclearxxx #1{\ifclearxxx446,14352
\def\Eifclear{\Eifclear450,14483
\def\ifclearfail{\ifclearfail451,14499
\long\def\ifclearfailxxx #1\end ifclear{\ifclearfailxxx452,14559
\def\set{\set456,14710
\def\setxxx #1{\setxxx457,14737
\def\clear{\clear460,14799
\def\clearxxx #1{\clearxxx461,14830
\def\iftex{\iftex466,14947
\def\Eiftex{\Eiftex467,14960
\def\ifinfo{\ifinfo468,14974
\long\def\ifinfoxxx #1\end ifinfo{\ifinfoxxx469,15024
\long\def\menu #1\end menu{\menu471,15083
\def\asis#1{\asis472,15112
\def\math#1{\math485,15655
\def\node{\node487,15699
\def\nodezzz#1{\nodezzz488,15737
\def\nodexxx[#1,#2]{\nodexxx[489,15768
\def\donoderef{\donoderef492,15830
\def\unnumbnoderef{\unnumbnoderef496,15951
\def\appendixnoderef{\appendixnoderef500,16082
\expandafter\expandafter\expandafter\appendixsetref{setref501,16128
\let\refill=\relaxill=\relax504,16217
\def\setfilename{\setfilename509,16431
\outer\def\bye{\bye518,16677
\def\inforef #1{\inforef520,16733
\def\inforefzzz #1,#2,#3,#4**{\inforefzzz521,16771
\def\losespace #1{\losespace523,16868
\def\sf{\sf532,17072
\font\defbf=cmbx10 scaled \magstep1 %was 1314bf=cmbx10558,17867
\font\deftt=cmtt10 scaled \magstep1tt=cmtt10559,17913
\def\df{\df560,17949
\def\resetmathfonts{\resetmathfonts635,20543
\def\textfonts{\textfonts648,21132
\def\chapfonts{\chapfonts653,21347
\def\secfonts{\secfonts658,21563
\def\subsecfonts{\subsecfonts663,21768
\def\indexfonts{\indexfonts668,21985
\def\smartitalicx{\smartitalicx691,22717
\def\smartitalic#1{\smartitalic692,22793
\let\cite=\smartitalic=\smartitalic698,22938
\def\b#1{\b700,22962
\def\t#1{\t703,22997
\def\samp #1{\samp706,23149
\def\key #1{\key707,23182
\def\ctrl #1{\ctrl708,23243
\def\tclose#1{\tclose716,23445
\def\ {\720,23611
\def\xkey{\xkey728,23880
\def\kbdfoo#1#2#3\par{\kbdfoo729,23896
\def\dmn#1{\dmn738,24197
\def\kbd#1{\kbd740,24224
\def\l#1{\l742,24281
\def\r#1{\r744,24310
\def\sc#1{\sc746,24378
\def\ii#1{\ii747,24421
\def\titlefont#1{\titlefont755,24654
\def\titlepage{\titlepage761,24757
   \def\subtitlefont{\subtitlefont766,24984
   \def\authorfont{\authorfont768,25068
   \def\title{\title774,25278
   \def\titlezzz##1{\titlezzz775,25313
   \def\subtitle{\subtitle783,25628
   \def\subtitlezzz##1{\subtitlezzz784,25669
   \def\author{\author787,25787
   \def\authorzzz##1{\authorzzz788,25824
   \def\page{\page794,26115
\def\Etitlepage{\Etitlepage804,26284
\def\finishtitlepage{\finishtitlepage817,26672
\def\evenheading{\evenheading846,27680
\def\oddheading{\oddheading847,27723
\def\everyheading{\everyheading848,27764
\def\evenfooting{\evenfooting850,27810
\def\oddfooting{\oddfooting851,27853
\def\everyfooting{\everyfooting852,27894
\def\headings #1 {\headings893,29586
\def\HEADINGSoff{\HEADINGSoff895,29635
\def\HEADINGSdouble{\HEADINGSdouble904,30062
\def\HEADINGSsingle{\HEADINGSsingle914,30382
\def\HEADINGSon{\HEADINGSon922,30603
\def\HEADINGSafter{\HEADINGSafter924,30637
\def\HEADINGSdoublex{\HEADINGSdoublex926,30732
\def\HEADINGSsingleafter{\HEADINGSsingleafter933,30920
\def\HEADINGSsinglex{\HEADINGSsinglex934,30981
\def\today{\today943,31256
\def\thistitle{\thistitle958,31801
\def\settitle{\settitle959,31826
\def\settitlezzz #1{\settitlezzz960,31863
\def\internalBitem{\internalBitem992,32793
\def\internalBitemx{\internalBitemx993,32843
\def\internalBxitem "#1"{\internalBxitem995,32888
\def\internalBxitemx "#1"{\internalBxitemx996,32968
\def\internalBkitem{\internalBkitem998,33043
\def\internalBkitemx{\internalBkitemx999,33095
\def\kitemzzz #1{\kitemzzz1001,33142
\def\xitemzzz #1{\xitemzzz1004,33244
\def\itemzzz #1{\itemzzz1007,33347
\def\item{\item1037,34418
\def\itemx{\itemx1038,34469
\def\kitem{\kitem1039,34522
\def\kitemx{\kitemx1040,34575
\def\xitem{\xitem1041,34630
\def\xitemx{\xitemx1042,34683
\def\description{\description1045,34793
\def\table{\table1047,34843
\def\ftable{\ftable1052,34987
\def\Eftable{\Eftable1056,35133
\def\vtable{\vtable1059,35202
\def\Evtable{\Evtable1063,35348
\def\dontindex #1{\dontindex1066,35417
\def\fnitemindex #1{\fnitemindex1067,35437
\def\vritemindex #1{\vritemindex1068,35482
\def\tablez #1#2#3#4#5#6{\tablez1074,35631
\def\Edescription{\Edescription1077,35689
\def\itemfont{\itemfont1082,35891
\def\Etable{\Etable1090,36117
\def\itemize{\itemize1103,36441
\def\itemizezzz #1{\itemizezzz1105,36477
\def\itemizey #1#2{\itemizey1110,36572
\def#2{1119,36818
\def\itemcontents{\itemcontents1120,36859
\def\bullet{\bullet1123,36907
\def\minus{\minus1124,36934
\def\frenchspacing{\frenchspacing1128,37042
\def\splitoff#1#2\endmark{\splitoff1134,37267
\def\enumerate{\enumerate1140,37497
\def\enumeratezzz #1{\enumeratezzz1141,37536
\def\enumeratey #1 #2\endenumeratey{\enumeratey1142,37589
  \def\thearg{\thearg1146,37736
  \ifx\thearg\empty \def\thearg{\thearg1147,37755
\def\numericenumerate{\numericenumerate1184,39089
\def\lowercaseenumerate{\lowercaseenumerate1190,39219
\def\uppercaseenumerate{\uppercaseenumerate1203,39566
\def\startenumeration#1{\startenumeration1219,40056
\def\alphaenumerate{\alphaenumerate1227,40238
\def\capsenumerate{\capsenumerate1228,40273
\def\Ealphaenumerate{\Ealphaenumerate1229,40307
\def\Ecapsenumerate{\Ecapsenumerate1230,40341
\def\itemizeitem{\itemizeitem1234,40421
\def\newindex #1{\newindex1259,41278
\def\defindex{\defindex1268,41567
\def\newcodeindex #1{\newcodeindex1272,41675
\def\defcodeindex{\defcodeindex1279,41935
\def\synindex #1 #2 {\synindex1283,42115
\def\syncodeindex #1 #2 {\syncodeindex1292,42455
\def\doindex#1{\doindex1309,43134
\def\singleindexer #1{\singleindexer1310,43193
\def\docodeindex#1{\docodeindex1313,43305
\def\singlecodeindexer #1{\singlecodeindexer1314,43372
\def\indexdummies{\indexdummies1316,43430
\def\_{\_1317,43450
\def\w{\w1318,43478
\def\bf{\bf1319,43505
\def\rm{\rm1320,43534
\def\sl{\sl1321,43563
\def\sf{\sf1322,43592
\def\tt{\tt1323,43620
\def\gtr{\gtr1324,43648
\def\less{\less1325,43678
\def\hat{\hat1326,43710
\def\char{\char1327,43740
\def\TeX{\TeX1328,43772
\def\dots{\dots1329,43802
\def\copyright{\copyright1330,43835
\def\tclose##1{\tclose1331,43878
\def\code##1{\code1332,43923
\def\samp##1{\samp1333,43964
\def\t##1{\t1334,44005
\def\r##1{\r1335,44040
\def\i##1{\i1336,44075
\def\b##1{\b1337,44110
\def\cite##1{\cite1338,44145
\def\key##1{\key1339,44186
\def\file##1{\file1340,44225
\def\var##1{\var1341,44266
\def\kbd##1{\kbd1342,44305
\def\indexdummyfont#1{\indexdummyfont1347,44461
\def\indexdummytex{\indexdummytex1348,44487
\def\indexdummydots{\indexdummydots1349,44511
\def\indexnofonts{\indexnofonts1351,44537
\let\w=\indexdummyfontdummyfont1352,44557
\let\t=\indexdummyfontdummyfont1353,44580
\let\r=\indexdummyfontdummyfont1354,44603
\let\i=\indexdummyfontdummyfont1355,44626
\let\b=\indexdummyfontdummyfont1356,44649
\let\emph=\indexdummyfontdummyfont1357,44672
\let\strong=\indexdummyfontdummyfont1358,44698
\let\cite=\indexdummyfont=\indexdummyfont1359,44726
\let\sc=\indexdummyfontdummyfont1360,44752
\let\tclose=\indexdummyfontdummyfont1364,44924
\let\code=\indexdummyfontdummyfont1365,44952
\let\file=\indexdummyfontdummyfont1366,44978
\let\samp=\indexdummyfontdummyfont1367,45004
\let\kbd=\indexdummyfontdummyfont1368,45030
\let\key=\indexdummyfontdummyfont1369,45055
\let\var=\indexdummyfontdummyfont1370,45080
\let\TeX=\indexdummytexdummytex1371,45105
\let\dots=\indexdummydotsdummydots1372,45129
\let\indexbackslash=0  %overridden during \printindex.backslash=01382,45381
\def\doind #1#2{\doind1384,45437
{\indexdummies % Must do this here, since \bf, etc expand at this stagedummies1386,45480
\def\rawbackslashxx{\rawbackslashxx1389,45620
{\indexnofontsnofonts1394,45882
\def\dosubind #1#2#3{\dosubind1405,46193
{\indexdummies % Must do this here, since \bf, etc expand at this stagedummies1407,46241
\def\rawbackslashxx{\rawbackslashxx1410,46345
{\indexnofontsnofonts1414,46499
\def\findex {\findex1443,47430
\def\kindex {\kindex1444,47453
\def\cindex {\cindex1445,47476
\def\vindex {\vindex1446,47499
\def\tindex {\tindex1447,47522
\def\pindex {\pindex1448,47545
\def\cindexsub {\cindexsub1450,47569
\def\printindex{\printindex1462,47896
\def\doprintindex#1{\doprintindex1464,47937
  \def\indexbackslash{\indexbackslash1481,48422
  \indexfonts\rm \tolerance=9500 \advance\baselineskip -1ptfonts\rm1482,48461
\def\initial #1{\initial1517,49533
\def\entry #1#2{\entry1523,49740
  \null\nobreak\indexdotfill % Have leaders before the page number.dotfill1540,50387
\def\indexdotfill{\indexdotfill1549,50715
\def\primary #1{\primary1552,50821
\def\secondary #1#2{\secondary1556,50903
\noindent\hskip\secondaryindent\hbox{#1}\indexdotfill #2\pardotfill1559,50985
\newbox\partialpageialpage1566,51158
\def\begindoublecolumns{\begindoublecolumns1572,51316
  \output={\global\setbox\partialpage=ialpage=1573,51352
\def\enddoublecolumns{\enddoublecolumns1577,51540
\def\doublecolumnout{\doublecolumnout1580,51625
  \dimen@=\pageheight \advance\dimen@ by-\ht\partialpageialpage1581,51694
\def\pagesofar{\pagesofar1584,51872
\def\balancecolumns{\balancecolumns1588,52109
  \availdimen@=\pageheight \advance\availdimen@ by-\ht\partialpageialpage1594,52280
     \dimen@=\pageheight \advance\dimen@ by-\ht\partialpageialpage1600,52541
\newcount \appendixno  \appendixno = `\@no1627,53446
\def\appendixletter{\appendixletter1628,53487
\def\opencontents{\opencontents1632,53590
\def\thischapter{\thischapter1637,53771
\def\seccheck#1{\seccheck1638,53809
\def\chapternofonts{\chapternofonts1643,53913
\def\result{\result1646,53988
\def\equiv{\equiv1647,54023
\def\expansion{\expansion1648,54056
\def\print{\print1649,54097
\def\TeX{\TeX1650,54130
\def\dots{\dots1651,54159
\def\copyright{\copyright1652,54190
\def\tt{\tt1653,54231
\def\bf{\bf1654,54258
\def\w{\w1655,54286
\def\less{\less1656,54311
\def\gtr{\gtr1657,54342
\def\hat{\hat1658,54371
\def\char{\char1659,54400
\def\tclose##1{\tclose1660,54431
\def\code##1{\code1661,54475
\def\samp##1{\samp1662,54515
\def\r##1{\r1663,54555
\def\b##1{\b1664,54589
\def\key##1{\key1665,54623
\def\file##1{\file1666,54661
\def\kbd##1{\kbd1667,54701
\def\i##1{\i1669,54809
\def\cite##1{\cite1670,54843
\def\var##1{\var1671,54883
\def\emph##1{\emph1672,54921
\def\dfn##1{\dfn1673,54961
\def\thischaptername{\thischaptername1676,55002
\outer\def\chapter{\chapter1677,55041
\def\chapterzzz #1{\chapterzzz1678,55082
{\chapternofonts%nofonts%1687,55478
\global\let\section = \numberedsec=1692,55631
\global\let\subsection = \numberedsubsec=1693,55666
\global\let\subsubsection = \numberedsubsubsec=1694,55707
\outer\def\appendix{\appendix1697,55758
\def\appendixzzz #1{\appendixzzz1698,55801
\global\advance \appendixno by 1 \message{no1700,55878
\chapmacro {#1}{Appendix \appendixletter}letter1701,55947
\xdef\thischapter{Appendix \appendixletter: \noexpand\thischaptername}letter:1704,56040
{\chapternofonts%nofonts%1705,56112
  {#1}{Appendix \appendixletter}letter1707,56168
\appendixnoderef %noderef1710,56268
\global\let\section = \appendixsec=1711,56287
\global\let\subsection = \appendixsubsec=1712,56322
\global\let\subsubsection = \appendixsubsubsec=1713,56363
\outer\def\top{\top1716,56414
\outer\def\unnumbered{\unnumbered1717,56454
\def\unnumberedzzz #1{\unnumberedzzz1718,56501
{\chapternofonts%nofonts%1722,56664
\global\let\section = \unnumberedsec=1727,56814
\global\let\subsection = \unnumberedsubsec=1728,56851
\global\let\subsubsection = \unnumberedsubsubsec=1729,56894
\outer\def\numberedsec{\numberedsec1732,56947
\def\seczzz #1{\seczzz1733,56988
{\chapternofonts%nofonts%1736,57144
\outer\def\appendixsection{\appendixsection1745,57330
\outer\def\appendixsec{\appendixsec1746,57387
\def\appendixsectionzzz #1{\appendixsectionzzz1747,57440
\gdef\thissection{#1}\secheading {#1}{\appendixletter}letter1749,57552
{\chapternofonts%nofonts%1750,57620
{#1}{\appendixletter}letter1752,57676
\appendixnoderef %noderef1755,57776
\outer\def\unnumberedsec{\unnumberedsec1759,57816
\def\unnumberedseczzz #1{\unnumberedseczzz1760,57869
{\chapternofonts%nofonts%1762,57964
\outer\def\numberedsubsec{\numberedsubsec1770,58132
\def\numberedsubseczzz #1{\numberedsubseczzz1771,58187
{\chapternofonts%nofonts%1774,58366
\outer\def\appendixsubsec{\appendixsubsec1783,58570
\def\appendixsubseczzz #1{\appendixsubseczzz1784,58625
\subsecheading {#1}{\appendixletter}letter1786,58747
{\chapternofonts%nofonts%1787,58812
{#1}{\appendixletter}letter1789,58871
\appendixnoderef %noderef1792,58986
\outer\def\unnumberedsubsec{\unnumberedsubsec1796,59026
\def\unnumberedsubseczzz #1{\unnumberedsubseczzz1797,59085
{\chapternofonts%nofonts%1799,59186
\outer\def\numberedsubsubsec{\numberedsubsubsec1807,59357
\def\numberedsubsubseczzz #1{\numberedsubsubseczzz1808,59418
{\chapternofonts%nofonts%1812,59615
\outer\def\appendixsubsubsec{\appendixsubsubsec1823,59848
\def\appendixsubsubseczzz #1{\appendixsubsubseczzz1824,59909
  {\appendixletter}letter1827,60048
{\chapternofonts%nofonts%1828,60114
  {\appendixletter}letter1830,60179
\appendixnoderef %noderef1834,60313
\outer\def\unnumberedsubsubsec{\unnumberedsubsubsec1838,60353
\def\unnumberedsubsubseczzz #1{\unnumberedsubsubseczzz1839,60418
{\chapternofonts%nofonts%1841,60525
\def\infotop{\infotop1851,60854
\def\infounnumbered{\infounnumbered1852,60892
\def\infounnumberedsec{\infounnumberedsec1853,60937
\def\infounnumberedsubsec{\infounnumberedsubsec1854,60988
\def\infounnumberedsubsubsec{\infounnumberedsubsubsec1855,61045
\def\infoappendix{\infoappendix1857,61109
\def\infoappendixsec{\infoappendixsec1858,61150
\def\infoappendixsubsec{\infoappendixsubsec1859,61197
\def\infoappendixsubsubsec{\infoappendixsubsubsec1860,61250
\def\infochapter{\infochapter1862,61310
\def\infosection{\infosection1863,61349
\def\infosubsection{\infosubsection1864,61388
\def\infosubsubsection{\infosubsubsection1865,61433
\global\let\section = \numberedsec=1870,61670
\global\let\subsection = \numberedsubsec=1871,61705
\global\let\subsubsection = \numberedsubsubsec=1872,61746
\def\majorheading{\majorheading1886,62253
\def\majorheadingzzz #1{\majorheadingzzz1887,62298
\def\chapheading{\chapheading1893,62531
\def\chapheadingzzz #1{\chapheadingzzz1894,62574
\def\heading{\heading1899,62769
\def\subheading{\subheading1901,62806
\def\subsubheading{\subsubheading1903,62849
\def\dobreak#1#2{\dobreak1910,63126
\def\setchapterstyle #1 {\setchapterstyle1912,63204
\def\chapbreak{\chapbreak1919,63459
\def\chappager{\chappager1920,63509
\def\chapoddpage{\chapoddpage1921,63547
\def\setchapternewpage #1 {\setchapternewpage1923,63626
\def\CHAPPAGoff{\CHAPPAGoff1925,63683
\def\CHAPPAGon{\CHAPPAGon1929,63777
\global\def\HEADINGSon{\HEADINGSon1932,63868
\def\CHAPPAGodd{\CHAPPAGodd1934,63910
\global\def\HEADINGSon{\HEADINGSon1937,64006
\def\CHAPFplain{\CHAPFplain1941,64060
\def\chfplain #1#2{\chfplain1945,64152
\def\unnchfplain #1{\unnchfplain1956,64375
\def\unnchfopen #1{\unnchfopen1964,64604
\def\chfopen #1#2{\chfopen1970,64812
\def\CHAPFopen{\CHAPFopen1975,64956
\def\subsecheadingbreak{\subsecheadingbreak1982,65174
\def\secheadingbreak{\secheadingbreak1985,65303
\def\secheading #1#2#3{\secheading1993,65585
\def\plainsecheading #1{\plainsecheading1994,65641
\def\secheadingi #1{\secheadingi1995,65684
\def\subsecheading #1#2#3#4{\subsecheading2006,66052
\def\subsecheadingi #1{\subsecheadingi2007,66119
\def\subsubsecfonts{\subsubsecfonts2014,66416
\def\subsubsecheading #1#2#3#4#5{\subsubsecheading2017,66539
\def\subsubsecheadingi #1{\subsubsecheadingi2018,66617
\def\startcontents#1{\startcontents2032,67089
   \unnumbchapmacro{#1}\def\thischapter{\thischapter2040,67362
\outer\def\contents{\contents2049,67721
\outer\def\summarycontents{\summarycontents2057,67865
      \def\secentry ##1##2##3##4{\secentry2067,68236
      \def\unnumbsecentry ##1##2{\unnumbsecentry2068,68271
      \def\subsecentry ##1##2##3##4##5{\subsecentry2069,68306
      \def\unnumbsubsecentry ##1##2{\unnumbsubsecentry2070,68347
      \def\subsubsecentry ##1##2##3##4##5##6{\subsubsecentry2071,68385
      \def\unnumbsubsubsecentry ##1##2{\unnumbsubsubsecentry2072,68432
\def\chapentry#1#2#3{\chapentry2085,68866
\def\shortchapentry#1#2#3{\shortchapentry2088,68983
    {#2\labelspace #1}space2091,69093
\def\unnumbchapentry#1#2{\unnumbchapentry2094,69147
\def\shortunnumberedentry#1#2{\shortunnumberedentry2095,69194
\def\secentry#1#2#3#4{\secentry2102,69358
\def\unnumbsecentry#1#2{\unnumbsecentry2103,69417
\def\subsecentry#1#2#3#4#5{\subsecentry2106,69478
\def\unnumbsubsecentry#1#2{\unnumbsubsecentry2107,69548
\def\subsubsecentry#1#2#3#4#5#6{\subsubsecentry2110,69622
  \dosubsubsecentry{#2.#3.#4.#5\labelspace#1}space2111,69656
\def\unnumbsubsubsecentry#1#2{\unnumbsubsubsecentry2112,69707
\def\dochapentry#1#2{\dochapentry2123,70081
\def\dosecentry#1#2{\dosecentry2138,70686
\def\dosubsecentry#1#2{\dosubsecentry2145,70864
\def\dosubsubsecentry#1#2{\dosubsubsecentry2152,71049
\def\labelspace{\labelspace2160,71300
\def\dopageno#1{\dopageno2162,71335
\def\doshortpageno#1{\doshortpageno2163,71361
\def\chapentryfonts{\chapentryfonts2165,71393
\def\secentryfonts{\secentryfonts2166,71428
\def\point{\point2192,72387
\def\result{\result2194,72408
\def\expansion{\expansion2195,72481
\def\print{\print2196,72552
\def\equiv{\equiv2198,72619
\def\error{\error2218,73392
\def\tex{\tex2224,73621
\def\@{\@2242,74004
\gdef\sepspaces{\def {\ }}}\2265,74736
\def\aboveenvbreak{\aboveenvbreak2268,74818
\def\afterenvbreak{\afterenvbreak2272,74984
\def\ctl{\ctl2286,75495
\def\ctr{\ctr2287,75567
\def\cbl{\cbl2288,75606
\def\cbr{\cbr2289,75646
\def\carttop{\carttop2290,75685
\def\cartbot{\cartbot2293,75793
\long\def\cartouche{\cartouche2299,75933
\def\Ecartouche{\Ecartouche2326,76721
\def\lisp{\lisp2338,76856
\def\Elisp{\Elisp2348,77203
\def\next##1{\next2360,77529
\def\Eexample{\Eexample2364,77571
\def\Esmallexample{\Esmallexample2367,77618
\def\smalllispx{\smalllispx2373,77796
\def\Esmalllisp{\Esmalllisp2383,78150
\obeyspaces \obeylines \ninett \indexfonts \rawbackslashfonts2396,78506
\def\next##1{\next2397,78563
\def\display{\display2401,78643
\def\Edisplay{\Edisplay2410,78962
\def\next##1{\next2422,79273
\def\format{\format2426,79376
\def\Eformat{\Eformat2434,79672
\def\next##1{\next2437,79761
\def\flushleft{\flushleft2441,79813
\def\Eflushleft{\Eflushleft2451,80184
\def\next##1{\next2454,80277
\def\flushright{\flushright2456,80299
\def\Eflushright{\Eflushright2466,80671
\def\next##1{\next2470,80802
\def\quotation{\quotation2474,80860
\def\Equotation{\Equotation2480,81052
\def\setdeffont #1 {\setdeffont2493,81450
\newskip\defbodyindent \defbodyindent=.4inbodyindent2495,81496
\newskip\defargsindent \defargsindent=50ptargsindent2496,81539
\newskip\deftypemargin \deftypemargin=12pttypemargin2497,81582
\newskip\deflastargmargin \deflastargmargin=18ptlastargmargin2498,81625
\def\activeparens{\activeparens2503,81823
\def\opnr{\opnr2529,83035
\def\lbrb{\lbrb2530,83100
\def\defname #1#2{\defname2536,83301
\advance\dimen2 by -\defbodyindentbodyindent2540,83419
\advance\dimen3 by -\defbodyindentbodyindent2542,83473
\setbox0=\hbox{\hskip \deflastargmargin{lastargmargin2544,83527
\dimen1=\hsize \advance \dimen1 by -\defargsindent %size for continuationsargsindent2546,83669
\parshape 2 0in \dimen0 \defargsindent \dimen1     %argsindent2547,83744
\rlap{\rightline{{\rm #2}\hskip \deftypemargin}typemargin2554,84113
\advance\leftskip by -\defbodyindentbodyindent2557,84247
\exdentamount=\defbodyindentbodyindent2558,84284
\def\defparsebody #1#2#3{\defparsebody2568,84643
\def#1{2572,84827
\def#2{2573,84863
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2575,84935
\exdentamount=\defbodyindentbodyindent2576,85009
\def\defmethparsebody #1#2#3#4 {\defmethparsebody2581,85113
\def#1{2585,85274
\def#2##1 {2586,85310
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2588,85393
\exdentamount=\defbodyindentbodyindent2589,85467
\def\defopparsebody #1#2#3#4#5 {\defopparsebody2592,85552
\def#1{2596,85713
\def#2##1 ##2 {2597,85749
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2600,85849
\exdentamount=\defbodyindentbodyindent2601,85923
\def\defvarparsebody #1#2#3{\defvarparsebody2608,86194
\def#1{2612,86381
\def#2{2613,86417
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2615,86476
\exdentamount=\defbodyindentbodyindent2616,86550
\def\defvrparsebody #1#2#3#4 {\defvrparsebody2621,86641
\def#1{2625,86800
\def#2##1 {2626,86836
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2628,86906
\exdentamount=\defbodyindentbodyindent2629,86980
\def\defopvarparsebody #1#2#3#4#5 {\defopvarparsebody2632,87052
\def#1{2636,87216
\def#2##1 ##2 {2637,87252
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindentbodyindent2640,87339
\exdentamount=\defbodyindentbodyindent2641,87413
\def\defunargs #1{\defunargs2664,88173
\def\deftypefunargs #1{\deftypefunargs2676,88555
\def\deffn{\deffn2690,88937
\def\deffnheader #1#2#3{\deffnheader2692,88994
\begingroup\defname {name2693,89042
\def\defun{\defun2699,89187
\def\defunheader #1#2{\defunheader2701,89240
\begingroup\defname {name2702,89315
\defunargs {unargs2703,89351
\def\deftypefun{\deftypefun2709,89499
\def\deftypefunheader #1#2{\deftypefunheader2712,89621
\def\deftypefunheaderx #1#2 #3\relax{\deftypefunheaderx2714,89730
\begingroup\defname {name2716,89822
\deftypefunargs {typefunargs2717,89868
\def\deftypefn{\deftypefn2723,90039
\def\deftypefnheader #1#2#3{\deftypefnheader2726,90188
\def\deftypefnheaderx #1#2#3 #4\relax{\deftypefnheaderx2728,90324
\begingroup\defname {name2730,90417
\deftypefunargs {typefunargs2731,90457
\def\defmac{\defmac2737,90578
\def\defmacheader #1#2{\defmacheader2739,90635
\begingroup\defname {name2740,90711
\defunargs {unargs2741,90744
\def\defspec{\defspec2747,90868
\def\defspecheader #1#2{\defspecheader2749,90929
\begingroup\defname {name2750,91006
\defunargs {unargs2751,91046
\def\deffnx #1 {\deffnx2758,91241
\def\defunx #1 {\defunx2759,91298
\def\defmacx #1 {\defmacx2760,91355
\def\defspecx #1 {\defspecx2761,91414
\def\deftypefnx #1 {\deftypefnx2762,91475
\def\deftypeunx #1 {\deftypeunx2763,91540
\def\defop #1 {\defop2769,91686
\defopparsebody\Edefop\defopx\defopheader\defoptype}opparsebody\Edefop\defopx\defopheader\defoptype2770,91721
\def\defopheader #1#2#3{\defopheader2772,91775
\begingroup\defname {name2774,91864
\defunargs {unargs2775,91910
\def\defmethod{\defmethod2780,91971
\def\defmethodheader #1#2#3{\defmethodheader2782,92044
\begingroup\defname {name2784,92132
\defunargs {unargs2785,92172
\def\defcv #1 {\defcv2790,92246
\defopvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype}opvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype2791,92281
\def\defcvarheader #1#2#3{\defcvarheader2793,92340
\begingroup\defname {name2795,92426
\defvarargs {varargs2796,92472
\def\defivar{\defivar2801,92545
\def\defivarheader #1#2#3{\defivarheader2803,92608
\begingroup\defname {name2805,92694
\defvarargs {varargs2806,92745
\def\defopx #1 {\defopx2812,92894
\def\defmethodx #1 {\defmethodx2813,92951
\def\defcvx #1 {\defcvx2814,93016
\def\defivarx #1 {\defivarx2815,93073
\def\defvarargs #1{\defvarargs2822,93344
\def\defvr{\defvr2828,93488
\def\defvrheader #1#2#3{\defvrheader2830,93543
\begingroup\defname {name2831,93591
\def\defvar{\defvar2835,93676
\def\defvarheader #1#2{\defvarheader2837,93736
\begingroup\defname {name2838,93807
\defvarargs {varargs2839,93843
\def\defopt{\defopt2844,93909
\def\defoptheader #1#2{\defoptheader2846,93969
\begingroup\defname {name2847,94040
\defvarargs {varargs2848,94079
\def\deftypevar{\deftypevar2853,94136
\def\deftypevarheader #1#2{\deftypevarheader2856,94252
\begingroup\defname {name2858,94335
\def\deftypevr{\deftypevr2865,94509
\def\deftypevrheader #1#2#3{\deftypevrheader2867,94580
\begingroup\defname {name2868,94632
\def\defvrx #1 {\defvrx2876,94869
\def\defvarx #1 {\defvarx2877,94926
\def\defoptx #1 {\defoptx2878,94985
\def\deftypevarx #1 {\deftypevarx2879,95044
\def\deftypevrx #1 {\deftypevrx2880,95111
\def\deftpargs #1{\deftpargs2885,95260
\def\deftp{\deftp2889,95340
\def\deftpheader #1#2#3{\deftpheader2891,95395
\begingroup\defname {name2892,95443
\def\deftpx #1 {\deftpx2897,95602
\def\setref#1{\setref2908,95923
\def\unnumbsetref#1{\unnumbsetref2913,96037
\def\appendixsetref#1{\appendixsetref2918,96144
\def\pxref#1{\pxref2929,96555
\def\xref#1{\xref2930,96591
\def\ref#1{\ref2931,96626
\def\xrefX[#1,#2,#3,#4,#5,#6]{\xrefX[2932,96656
\def\printedmanual{\printedmanual2933,96699
\def\printednodename{\printednodename2934,96737
\def\printednodename{\printednodename2939,96862
section ``\printednodename'' in \cite{\printedmanual}\printedmanual2954,97495
\refx{x2957,97573
\def\dosetq #1#2{\dosetq2965,97793
\def\internalsetq #1#2{\internalsetq2973,98051
\def\Ypagenumber{\Ypagenumber2977,98152
\def\Ytitle{\Ytitle2979,98178
\def\Ynothing{\Ynothing2981,98205
\def\Ysectionnumberandtype{\Ysectionnumberandtype2983,98222
\def\Yappendixletterandtype{\Yappendixletterandtype2992,98538
\ifnum\secno=0 Appendix\xreftie'char\the\appendixno{no2993,98568
\else \ifnum \subsecno=0 Section\xreftie'char\the\appendixno.\the\secno %no.\the\secno2994,98623
Section\xreftie'char\the\appendixno.\the\secno.\the\subsecno %no.\the\secno.\the\subsecno2996,98727
Section\xreftie'char\the\appendixno.\the\secno.\the\subsecno.\the\subsubsecno %no.\the\secno.\the\subsecno.\the\subsubsecno2998,98798
  \def\linenumber{\linenumber3009,99137
\def\refx#1#2{\refx3015,99321
\def\xrdef #1#2{\xrdef3037,99947
\def\readauxfile{\readauxfile3040,100032
\def\supereject{\supereject3110,101813
\footstrut\parindent=\defaultparindent\hang\textindent{aultparindent\hang\textindent3131,102498
\def\openindices{\openindices3139,102684
\newdimen\defaultparindent \defaultparindent = 15ptaultparindent3151,102909
\parindent = \defaultparindentaultparindent3152,102961
\def\smallbook{\smallbook3175,103685
\global\def\Esmallexample{\Esmallexample3192,104112
\def\afourpaper{\afourpaper3196,104203
\def\finalout{\finalout3224,105011
\def\normaldoublequote{\normaldoublequote3235,105272
\def\normaltilde{\normaltilde3236,105298
\def\normalcaret{\normalcaret3237,105318
\def\normalunderscore{\normalunderscore3238,105338
\def\normalverticalbar{\normalverticalbar3239,105363
\def\normalless{\normalless3240,105389
\def\normalgreater{\normalgreater3241,105408
\def\normalplus{\normalplus3242,105430
\def\ifusingtt#1#2{\ifusingtt3253,105922
\def\activedoublequote{\activedoublequote3261,106250
\def~{~3264,106336
\def^{^3267,106397
\def_{_3270,106436
\def\_{\_3272,106510
\def\lvvmode{\lvvmode3279,106847
\def|{|3282,106897
\def<{<3285,106960
\def>{>3288,107017
\def+{+3290,107055
\def\turnoffactive{\turnoffactive3296,107216
\global\def={=3307,107502
\def\normalbackslash{\normalbackslash3321,107884

c-src/c.c,76
T f(1,0
}T i;2,14
void bar(5,69
int foobar(6,94
interface_locate(9,131

c.c,1980
void (*fa)fa131,
void 132,
my_printf 135,
void fatala 138,
void fatalb 139,
max 141,
struct bar 143,
__attribute__ ((always_inline)) max 147,
extern int old_var 149,
struct foo150,
char stack[stack155,
struct S 156,
} wait_status_ptr_t 161,
Some_Class  A 162,
typedef T1 T3 163,
T3 z 164,
typedef int more_aligned_int 165,
struct S  __attribute__ ((vector_size (16))) foo;166,
int foo 167,
char *__attribute__((aligned(8))) *f;f168,
int i 169,
extern void foobar 170,
typedef struct cacheLRUEntry_s172,
__attribute__ ((packed)) cacheLRUEntry_t;177,
struct foo 178,
     f1 183,
void f2 184,
__attribute__((noreturn)) void d0 185,
  __attribute__((format(printf, 1, 2))) d1 186,
  d2 187,
int x 188,
struct foo 189,
short array[array190,
int f193,
DEAFUN 196,
XDEFUN 203,
DEFUN ("x-get-selection-internal", Fx_get_selection_internal,206,
DEFUN ("x-get-selection-internal", Fx_get_selection_internal,x-get-selection-internal206,
       Fx_get_selection_internal,212,
       Fx_get_selection_internal,x-get-selection-internal212,
      Fy_get_selection_internal,216,
      Fy_get_selection_internal,y-get-selection-internal216,
defun_func1(218,
DEFUN_func2(220,
typedef int bool;222,
bool funcboo 223,
struct my_struct 226,
typedef struct my_struct my_typedef;228,
int bla 229,
a(234,
int func1237,
static struct cca_control init_control 239,
static tpcmd rbtp 240,
static byte ring1 241,
static byte ring2 242,
request request 243,
int func2 246,
  aaa;249,
  bbb;251,
struct sss1 252,
struct sss2253,
  struct ss3255,
struct a b;259,
struct aa *b;b260,
  **b;b262,
caccacacca 263,
a 267,
  typedef struct aa 269,
  typedef struct aa {} aaa;269,
static void inita 271,
node *lasta lasta272,
b 273,
  typedef  int bb;275,
static void initb 277,
node *lastb lastb278,
typedef enum { REG_ENOSYS 279,
typedef enum { REG_ENOSYS = -1, aa 279,
typedef enum { REG_ENOSYS = -1, aa } reg_errcode_t;279,

c-src/a/b/b.c,18
#define this 1,0

../c/c.web,20
#define questo 34,

y-src/parse.y,1061
#define obstack_chunk_alloc 47,1124
#define obstack_chunk_free 48,1162
int yylex 58,1330
void yyerror 60,1360
void yyerror 62,1389
VOIDSTAR parse_hash;64,1413
extern VOIDSTAR hash_find(65,1434
unsigned char fnin[fnin68,1532
#define YYSTYPE 72,1630
typedef struct node *YYSTYPE;YYSTYPE73,1661
YYSTYPE parse_return;74,1691
YYSTYPE make_list 76,1729
YYSTYPE make_list 78,1773
char *instr;instr81,1803
int parse_error 82,1816
extern struct obstack tmp_mem;83,1837
line:line87,1875
exp:exp95,1988
exp_list:exp_list263,5655
range_exp:range_exp269,5753
range_exp_list:range_exp_list273,5783
cell:cell279,5901
yyerror FUN1(286,5948
make_list FUN2(293,6028
#define ERROR 304,6228
extern struct node *yylval;yylval306,6246
unsigned char parse_cell_or_range 309,6291
unsigned char parse_cell_or_range 311,6355
yylex FUN0(315,6405
parse_cell_or_range FUN2(587,11771
#define CK_ABS_R(671,13213
#define CK_REL_R(675,13292
#define CK_ABS_C(680,13421
#define CK_REL_C(684,13500
#define MAYBEREL(689,13629
str_to_col FUN1(847,16830

y-src/parse.c,520
#define YYBISON 4,64
# define	NE	6,114
# define	LE	7,130
# define	GE	8,146
# define	NEG	9,162
# define	L_CELL	10,179
# define	L_RANGE	11,199
# define	L_VAR	12,220
# define	L_CONST	13,239
# define	L_FN0	14,260
# define	L_FN1	15,279
# define	L_FN2	16,298
# define	L_FN3	17,317
# define	L_FN4	18,336
# define	L_FNN	19,355
# define	L_FN1R	20,374
# define	L_FN2R	21,394
# define	L_FN3R	22,414
# define	L_FN4R	23,434
# define	L_FNNR	24,454
# define	L_LE	25,474
# define	L_NE	26,492
# define	L_GE	27,510

/usr/share/bison/bison.simple,1729
# define YYSTD(40,
# define YYSTD(42,
#  define YYSTACK_ALLOC 50,
#  define YYSIZE_T 51,
#    define YYSTACK_ALLOC 55,
#    define YYSIZE_T 56,
#     define YYSTACK_ALLOC 59,
#  define YYSTACK_FREE(67,
#   define YYSIZE_T 71,
#    define YYSIZE_T 75,
#  define YYSTACK_ALLOC 78,
#  define YYSTACK_FREE 79,
union yyalloc83,
# define YYSTACK_GAP_MAX 93,
#  define YYSTACK_BYTES(98,
#  define YYSTACK_BYTES(102,
# define YYSTACK_RELOCATE(112,
# define YYSIZE_T 128,
# define YYSIZE_T 131,
#  define YYSIZE_T 136,
#   define YYSIZE_T 140,
# define YYSIZE_T 145,
#define yyerrok	148,
#define yyclearin	149,
#define YYEMPTY	150,
#define YYEOF	151,
#define YYACCEPT	152,
#define YYABORT 153,
#define YYERROR	154,
#define YYFAIL	158,
#define YYRECOVERING(159,
#define YYBACKUP(160,
#define YYTERROR	177,
#define YYERRCODE	178,
# define YYLLOC_DEFAULT(189,
#   define YYLEX	200,
#   define YYLEX	202,
#   define YYLEX	206,
#   define YYLEX	208,
# define YYLEX	212,
#  define YYFPRINTF 225,
# define YYDPRINTF(228,
int yydebug;237,
# define YYDPRINTF(239,
# define YYINITDEPTH 244,
# undef YYMAXDEPTH255,
# define YYMAXDEPTH 259,
#  define yymemcpy 264,
yymemcpy 271,
#   define yystrlen 293,
yystrlen 298,
#   define yystpcpy 316,
yystpcpy 322,
#  define YYPARSE_PARAM_ARG 351,
#  define YYPARSE_PARAM_DECL352,
#  define YYPARSE_PARAM_ARG 354,
#  define YYPARSE_PARAM_DECL 355,
# define YYPARSE_PARAM_ARG358,
# define YYPARSE_PARAM_DECL359,
int yyparse 365,
int yyparse 367,
#define YY_DECL_NON_LSP_VARIABLES	374,
# define YY_DECL_VARIABLES	385,
# define YY_DECL_VARIABLES	391,
yyparse 403,
# define YYPOPSTACK 445,
# define YYPOPSTACK 447,
# undef YYSTACK_RELOCATE548,

y-src/atest.y,9
exp	2,3

y-src/cccp.c,303
#define YYBISON 4,63
# define	INT	6,113
# define	CHAR	7,130
# define	NAME	8,148
# define	ERROR	9,166
# define	OR	10,185
# define	AND	11,201
# define	EQUAL	12,218
# define	NOTEQUAL	13,237
# define	LEQ	14,259
# define	GEQ	15,276
# define	LSH	16,293
# define	RSH	17,310
# define	UNARY	18,327

/usr/share/bison/bison.simple,2180
# define YYSTD(41,
# define YYSTD(43,
#  define YYSTACK_ALLOC 51,
#  define YYSIZE_T 52,
#    define YYSTACK_ALLOC 56,
#    define YYSIZE_T 57,
#     define YYSTACK_ALLOC 60,
#  define YYSTACK_FREE(68,
#   define YYSIZE_T 72,
#    define YYSIZE_T 76,
#  define YYSTACK_ALLOC 79,
#  define YYSTACK_FREE 80,
union yyalloc84,
# define YYSTACK_GAP_MAX 94,
#  define YYSTACK_BYTES(99,
#  define YYSTACK_BYTES(103,
# define YYSTACK_RELOCATE(113,
# define YYSIZE_T 129,
# define YYSIZE_T 132,
#  define YYSIZE_T 137,
#   define YYSIZE_T 141,
# define YYSIZE_T 146,
#define yyerrok	149,
#define yyclearin	150,
#define YYEMPTY	151,
#define YYEOF	152,
#define YYACCEPT	153,
#define YYABORT 154,
#define YYERROR	155,
#define YYFAIL	159,
#define YYRECOVERING(160,
#define YYBACKUP(161,
#define YYTERROR	178,
#define YYERRCODE	179,
# define YYLLOC_DEFAULT(190,
#   define YYLEX	201,
#   define YYLEX	203,
#   define YYLEX	207,
#   define YYLEX	209,
# define YYLEX	213,
#  define YYFPRINTF 226,
# define YYDPRINTF(229,
int yydebug;238,
# define YYDPRINTF(240,
# define YYINITDEPTH 245,
# undef YYMAXDEPTH256,
# define YYMAXDEPTH 260,
#  define yymemcpy 265,
yymemcpy 272,
#   define yystrlen 294,
yystrlen 299,
#   define yystpcpy 317,
yystpcpy 323,
#  define YYPARSE_PARAM_ARG 351,
#  define YYPARSE_PARAM_DECL352,
#  define YYPARSE_PARAM_ARG 354,
#  define YYPARSE_PARAM_DECL 355,
# define YYPARSE_PARAM_ARG358,
# define YYPARSE_PARAM_DECL359,
int yyparse 365,
int yyparse 367,
#define YY_DECL_NON_LSP_VARIABLES	374,
# define YY_DECL_VARIABLES	385,
# define YY_DECL_VARIABLES	391,
yyparse 403,
# define YYPOPSTACK 445,
# define YYPOPSTACK 447,
# undef YYSTACK_RELOCATE548,
  *++yyvsp yyvsp746,
  *++yylsp yylsp748,
  yyn 755,
  yystate 757,
    yystate 761,
  goto yynewstate;763,
  goto yyerrlab1;823,
  yyerrstatus 846,
  goto yyerrhandle;848,
  yyn 861,
  yystate 875,
  yyn 895,
  yyn 903,
  YYDPRINTF 917,
  *++yyvsp yyvsp919,
  *++yylsp yylsp921,
  yystate 924,
  goto yynewstate;925,
  yyresult 932,
  goto yyreturn;933,
  yyresult 939,
  goto yyreturn;940,
  yyerror 946,
  yyresult 947,

y-src/cccp.y,1582
typedef unsigned char U_CHAR;38,1201
struct arglist 41,1301
#define NULL 51,1468
#define GENERIC_PTR 56,1578
#define GENERIC_PTR 58,1611
#define NULL_PTR 63,1670
int yylex 66,1712
void yyerror 67,1726
int expression_value;68,1743
static jmp_buf parse_return_error;70,1766
static int keyword_parsing 73,1865
extern unsigned char is_idstart[is_idstart76,1944
extern unsigned char is_idstart[], is_idchar[is_idchar76,1944
extern unsigned char is_idstart[], is_idchar[], is_hor_space[is_hor_space76,1944
extern char *xmalloc xmalloc78,2009
extern int pedantic;81,2062
extern int traditional;84,2114
#define CHAR_TYPE_SIZE 87,2162
#define INT_TYPE_SIZE 91,2229
#define LONG_TYPE_SIZE 95,2296
#define WCHAR_TYPE_SIZE 99,2365
#define possible_sum_sign(104,2556
static void integer_overflow 106,2632
static long left_shift 107,2665
static long right_shift 108,2692
  struct constant 112,2733
  struct name 113,2789
start 143,3226
exp1	148,3330
exp	156,3505
exp	185,4295
keywords 306,7835
static char *lexptr;lexptr332,8579
parse_number 341,8842
struct token 437,11038
static struct token tokentab2[tokentab2442,11088
yylex 459,11367
parse_escape 740,17718
yyerror 836,19599
integer_overflow 844,19690
left_shift 851,19804
right_shift 873,20194
parse_c_expression 893,20732
extern int yydebug;919,21416
main 923,21483
unsigned char is_idchar[is_idchar948,21901
unsigned char is_idstart[is_idstart950,21996
char is_hor_space[is_hor_space953,22160
initialize_random_junk 958,22259
error 988,22915
warning 993,22963
lookup 999,23033

tex-src/nonewline.tex,0

php-src/sendmail.php,0

a-src/empty.zz,0