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
| | \f
ada-src/etags-test-for.ada,1969
type LL_Task_Procedure_Access \x7fLL_Task_Procedure_Access/t\x011,0
function Body_Required\x7fBody_Required/f\x013,78
type Type_Specific_Data \x7fType_Specific_Data/t\x0111,280
function "abs"\x7fabs/f\x0119,504
type Barrier_Function_Pointer \x7fBarrier_Function_Pointer/t\x0121,577
function "="\x7f=/f\x0127,722
type usfreelock_ptr \x7fusfreelock_ptr/t\x0130,803
function p \x7fp/f\x0133,891
procedure LL_Wrapper \x7fLL_Wrapper/p\x0137,1054
function p \x7fp/f\x0139,1094
package Pkg1 \x7fPkg1/s\x0144,1203
type Private_T \x7fPrivate_T/t\x0146,1220
package Inner1 \x7fInner1/s\x0148,1250
procedure Private_T;\x7fPrivate_T/p\x0149,1270
package Inner2 \x7fInner2/s\x0152,1310
task Private_T;\x7fPrivate_T/k\x0153,1330
type Public_T \x7fPublic_T/t\x0156,1365
procedure Pkg1_Proc1;\x7fPkg1_Proc1/p\x0162,1450
procedure Pkg1_Proc2 \x7fPkg1_Proc2/p\x0164,1475
function Pkg1_Func1 \x7fPkg1_Func1/f\x0166,1514
function Pkg1_Func2 \x7fPkg1_Func2/f\x0168,1553
package Pkg1_Pkg1 \x7fPkg1_Pkg1/s\x0171,1622
procedure Pkg1_Pkg1_Proc1;\x7fPkg1_Pkg1_Proc1/p\x0172,1645
task type Task_Type \x7fTask_Type/k\x0175,1694
type Private_T \x7fPrivate_T/t\x0182,1786
package body Pkg1 \x7fPkg1/b\x0189,1882
procedure Pkg1_Proc1 \x7fPkg1_Proc1/p\x0191,1904
package body Inner1 \x7fInner1/b\x0196,1956
procedure Private_T \x7fPrivate_T/p\x0197,1981
package body Inner2 \x7fInner2/b\x01103,2054
task body Private_T \x7fPrivate_T/b\x01104,2079
task body Task_Type \x7fTask_Type/b\x01112,2181
procedure Pkg1_Proc2 \x7fPkg1_Proc2/p\x01126,2367
function Pkg1_Func1 \x7fPkg1_Func1/f\x01132,2445
function Pkg1_Func2 \x7fPkg1_Func2/f\x01134,2496
package body Pkg1_Pkg1 \x7fPkg1_Pkg1/b\x01140,2596
package body Pkg1_Pkg1 \x7fPkg1_Pkg1/b\x01146,2663
procedure Pkg1_Pkg1_Proc1 \x7fPkg1_Pkg1_Proc1/p\x01147,2689
function Pkg1_Func1 \x7fPkg1_Func1/f\x01155,2778
package Truc \x7fTruc/s\x01162,2887
package Truc.Bidule \x7fTruc.Bidule/s\x01166,2929
protected Bidule \x7fBidule/t\x01168,2953
protected type Machin_T \x7fMachin_T/t\x01172,3007
package body Truc.Bidule \x7fTruc.Bidule/b\x01178,3087
protected body Bidule \x7fBidule/b\x01179,3115
protected Machin_T \x7fMachin_T/t\x01186,3207
\f
ada-src/2ataspri.adb,2190
package body System.Task_Primitives \x7fSystem.Task_Primitives/b\x0164,2603
package RTE \x7fRTE/s\x0169,2712
package TSL \x7fTSL/s\x0170,2759
function To_void_ptr \x7fTo_void_ptr/f\x0186,3287
function To_TCB_Ptr \x7fTo_TCB_Ptr/f\x0189,3366
function pthread_mutexattr_setprotocol\x7fpthread_mutexattr_setprotocol/f\x0192,3444
function pthread_mutexattr_setprio_ceiling\x7fpthread_mutexattr_setprio_ceiling/f\x0199,3728
procedure Abort_Wrapper\x7fAbort_Wrapper/p\x01115,4302
procedure LL_Wrapper \x7fLL_Wrapper/p\x01122,4526
procedure Initialize_LL_Tasks \x7fInitialize_LL_Tasks/p\x01131,4830
function Self \x7fSelf/f\x01160,5586
procedure Initialize_Lock\x7fInitialize_Lock/p\x01174,5958
procedure Finalize_Lock \x7fFinalize_Lock/p\x01210,6927
procedure Write_Lock \x7fWrite_Lock/p\x01226,7338
procedure Read_Lock \x7fRead_Lock/p\x01239,7700
procedure Unlock \x7fUnlock/p\x01246,7850
procedure Initialize_Cond \x7fInitialize_Cond/p\x01258,8160
procedure Finalize_Cond \x7fFinalize_Cond/p\x01286,8979
procedure Cond_Wait \x7fCond_Wait/p\x01300,9303
procedure Cond_Timed_Wait\x7fCond_Timed_Wait/p\x01312,9661
procedure Cond_Signal \x7fCond_Signal/p\x01343,10510
procedure Set_Priority\x7fSet_Priority/p\x01355,10836
procedure Set_Own_Priority \x7fSet_Own_Priority/p\x01372,11243
function Get_Priority \x7fGet_Priority/f\x01385,11598
function Get_Own_Priority \x7fGet_Own_Priority/f\x01398,12023
procedure Create_LL_Task\x7fCreate_LL_Task/p\x01412,12438
function To_Start_Addr \x7fTo_Start_Addr/f\x01426,12873
procedure Exit_LL_Task \x7fExit_LL_Task/p\x01491,14995
procedure Abort_Task \x7fAbort_Task/p\x01500,15158
procedure Test_Abort \x7fTest_Abort/p\x01518,15716
procedure Install_Abort_Handler \x7fInstall_Abort_Handler/p\x01527,15878
procedure Abort_Wrapper\x7fAbort_Wrapper/p\x01557,16939
function Address_To_Call_State \x7fAddress_To_Call_State/f\x01562,17062
procedure Install_Error_Handler \x7fInstall_Error_Handler/p\x01573,17351
procedure LL_Assert \x7fLL_Assert/p\x01599,18146
procedure LL_Wrapper \x7fLL_Wrapper/p\x01608,18299
procedure Initialize_TAS_Cell \x7fInitialize_TAS_Cell/p\x01630,19010
procedure Finalize_TAS_Cell \x7fFinalize_TAS_Cell/p\x01635,19129
procedure Clear \x7fClear/p\x01640,19236
procedure Test_And_Set \x7fTest_And_Set/p\x01645,19330
function Is_Set \x7fIs_Set/f\x01659,19676
\f
ada-src/2ataspri.ads,2313
package System.Task_Primitives \x7fSystem.Task_Primitives/s\x0158,3169
type LL_Task_Procedure_Access \x7fLL_Task_Procedure_Access/t\x0162,3253
type Pre_Call_State \x7fPre_Call_State/t\x0164,3331
type Task_Storage_Size \x7fTask_Storage_Size/t\x0166,3378
type Machine_Exceptions \x7fMachine_Exceptions/t\x0168,3433
type Error_Information \x7fError_Information/t\x0170,3499
type Lock \x7fLock/t\x0172,3569
type Condition_Variable \x7fCondition_Variable/t\x0173,3594
type Task_Control_Block \x7fTask_Control_Block/t\x0181,3955
type TCB_Ptr \x7fTCB_Ptr/t\x0189,4241
function Address_To_TCB_Ptr \x7fAddress_To_TCB_Ptr/f\x0193,4333
procedure Initialize_LL_Tasks \x7fInitialize_LL_Tasks/p\x0196,4425
function Self \x7fSelf/f\x01100,4602
procedure Initialize_Lock \x7fInitialize_Lock/p\x01103,4707
procedure Finalize_Lock \x7fFinalize_Lock/p\x01107,4879
procedure Write_Lock \x7fWrite_Lock/p\x01111,5034
procedure Read_Lock \x7fRead_Lock/p\x01118,5428
procedure Unlock \x7fUnlock/p\x01128,5995
procedure Initialize_Cond \x7fInitialize_Cond/p\x01135,6300
procedure Finalize_Cond \x7fFinalize_Cond/p\x01138,6413
procedure Cond_Wait \x7fCond_Wait/p\x01142,6591
procedure Cond_Timed_Wait\x7fCond_Timed_Wait/p\x01155,7396
procedure Cond_Signal \x7fCond_Signal/p\x01164,7812
procedure Set_Priority \x7fSet_Priority/p\x01169,8040
procedure Set_Own_Priority \x7fSet_Own_Priority/p\x01173,8200
function Get_Priority \x7fGet_Priority/f\x01177,8348
function Get_Own_Priority \x7fGet_Own_Priority/f\x01181,8504
procedure Create_LL_Task\x7fCreate_LL_Task/p\x01185,8647
procedure Exit_LL_Task;\x7fExit_LL_Task/p\x01198,9282
procedure Abort_Task \x7fAbort_Task/p\x01203,9516
procedure Test_Abort;\x7fTest_Abort/p\x01210,9878
type Abort_Handler_Pointer \x7fAbort_Handler_Pointer/t\x01217,10233
procedure Install_Abort_Handler \x7fInstall_Abort_Handler/p\x01219,10312
procedure Install_Error_Handler \x7fInstall_Error_Handler/p\x01226,10741
procedure LL_Assert \x7fLL_Assert/p\x01231,10983
type Proc \x7fProc/t\x01238,11240
type TAS_Cell \x7fTAS_Cell/t\x01242,11328
procedure Initialize_TAS_Cell \x7fInitialize_TAS_Cell/p\x01249,11670
procedure Finalize_TAS_Cell \x7fFinalize_TAS_Cell/p\x01255,11941
procedure Clear \x7fClear/p\x01260,12157
procedure Test_And_Set \x7fTest_And_Set/p\x01267,12462
function Is_Set \x7fIs_Set/f\x01275,12877
type Lock \x7fLock/t\x01283,13155
type Condition_Variable \x7fCondition_Variable/t\x01288,13267
type TAS_Cell \x7fTAS_Cell/t\x01293,13389
\f
ada-src/waroquiers.ada,1503
package Pkg1 \x7fPkg1/s\x013,89
type Private_T \x7fPrivate_T/t\x015,106
package Inner1 \x7fInner1/s\x017,136
procedure Private_T;\x7fPrivate_T/p\x018,156
package Inner2 \x7fInner2/s\x0111,196
task Private_T;\x7fPrivate_T/k\x0112,216
type Public_T \x7fPublic_T/t\x0115,251
procedure Pkg1_Proc1;\x7fPkg1_Proc1/p\x0121,336
procedure Pkg1_Proc2 \x7fPkg1_Proc2/p\x0123,361
function Pkg1_Func1 \x7fPkg1_Func1/f\x0125,400
function Pkg1_Func2 \x7fPkg1_Func2/f\x0127,439
package Pkg1_Pkg1 \x7fPkg1_Pkg1/s\x0130,508
procedure Pkg1_Pkg1_Proc1;\x7fPkg1_Pkg1_Proc1/p\x0131,531
task type Task_Type \x7fTask_Type/k\x0134,580
type Private_T \x7fPrivate_T/t\x0140,671
package body Pkg1 \x7fPkg1/b\x0146,766
procedure Pkg1_Proc1 \x7fPkg1_Proc1/p\x0148,788
package body Inner1 \x7fInner1/b\x0153,840
procedure Private_T \x7fPrivate_T/p\x0154,865
package body Inner2 \x7fInner2/b\x0160,938
task body Private_T \x7fPrivate_T/b\x0161,963
task body Task_Type \x7fTask_Type/b\x0168,1064
procedure Pkg1_Proc2 \x7fPkg1_Proc2/p\x0182,1250
function Pkg1_Func1 \x7fPkg1_Func1/f\x0188,1328
function Pkg1_Func2 \x7fPkg1_Func2/f\x0190,1379
package body Pkg1_Pkg1 \x7fPkg1_Pkg1/b\x0196,1479
package body Pkg1_Pkg1 \x7fPkg1_Pkg1/b\x01100,1544
procedure Pkg1_Pkg1_Proc1 \x7fPkg1_Pkg1_Proc1/p\x01101,1570
function Pkg1_Func1 \x7fPkg1_Func1/f\x01107,1657
package Truc \x7fTruc/s\x01112,1764
package Truc.Bidule \x7fTruc.Bidule/s\x01116,1816
protected Bidule \x7fBidule/t\x01125,1964
protected type Machin_T \x7fMachin_T/t\x01131,2046
package body Truc.Bidule \x7fTruc.Bidule/b\x01138,2153
protected body Bidule \x7fBidule/b\x01139,2181
protected body Machin_T \x7fMachin_T/b\x01146,2281
\f
c-src/abbrev.c,2072
Lisp_Object Vabbrev_table_name_list;\x7f43,1429
Lisp_Object Vglobal_abbrev_table;\x7f48,1574
Lisp_Object Vfundamental_mode_abbrev_table;\x7f52,1685
int abbrevs_changed;\x7f56,1786
int abbrev_all_caps;\x7f58,1808
Lisp_Object Vabbrev_start_location;\x7f63,1957
Lisp_Object Vabbrev_start_location_buffer;\x7f66,2046
Lisp_Object Vlast_abbrev;\x7f70,2155
Lisp_Object Vlast_abbrev_text;\x7f75,2324
int last_abbrev_point;\x7f79,2414
Lisp_Object Vpre_abbrev_expand_hook,\x7f83,2487
Lisp_Object Vpre_abbrev_expand_hook, Qpre_abbrev_expand_hook;\x7f83,2487
DEFUN ("make-abbrev-table", Fmake_abbrev_table,\x7f85,2551
DEFUN ("make-abbrev-table", Fmake_abbrev_table,\x7fmake-abbrev-table\x0185,2551
DEFUN ("clear-abbrev-table", Fclear_abbrev_table,\x7f92,2743
DEFUN ("clear-abbrev-table", Fclear_abbrev_table,\x7fclear-abbrev-table\x0192,2743
DEFUN ("define-abbrev", Fdefine_abbrev,\x7f107,3124
DEFUN ("define-abbrev", Fdefine_abbrev,\x7fdefine-abbrev\x01107,3124
DEFUN ("define-global-abbrev", Fdefine_global_abbrev,\x7f149,4443
DEFUN ("define-global-abbrev", Fdefine_global_abbrev,\x7fdefine-global-abbrev\x01149,4443
DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,\x7f160,4814
DEFUN ("define-mode-abbrev", Fdefine_mode_abbrev,\x7fdefine-mode-abbrev\x01160,4814
DEFUN ("abbrev-symbol", Fabbrev_symbol,\x7f174,5282
DEFUN ("abbrev-symbol", Fabbrev_symbol,\x7fabbrev-symbol\x01174,5282
DEFUN ("abbrev-expansion", Fabbrev_expansion,\x7f202,6246
DEFUN ("abbrev-expansion", Fabbrev_expansion,\x7fabbrev-expansion\x01202,6246
DEFUN ("expand-abbrev", Fexpand_abbrev,\x7f218,6761
DEFUN ("expand-abbrev", Fexpand_abbrev,\x7fexpand-abbrev\x01218,6761
DEFUN ("unexpand-abbrev", Funexpand_abbrev,\x7f389,11682
DEFUN ("unexpand-abbrev", Funexpand_abbrev,\x7funexpand-abbrev\x01389,11682
write_abbrev \x7f426,12889
describe_abbrev \x7f445,13324
DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,\x7f466,13839
DEFUN ("insert-abbrev-table-description", Finsert_abbrev_table_description,\x7finsert-abbrev-table-description\x01466,13839
DEFUN ("define-abbrev-table", Fdefine_abbrev_table,\x7f506,14995
DEFUN ("define-abbrev-table", Fdefine_abbrev_table,\x7fdefine-abbrev-table\x01506,14995
syms_of_abbrev \x7f540,16072
\f
c-src/torture.c,197
(*tag1 \x7ftag1\x0118,452
#define notag2 \x7f26,553
(*tag2 \x7ftag2\x0129,630
(*tag3 \x7ftag3\x0139,772
#define notag4 \x7f45,861
(*tag4 \x7ftag4\x0148,955
tag5 \x7f57,1081
tag6 \x7f66,1208
int pp1(\x7f74,1317
pp2\x7f87,1419
pp3(\x7f100,1518
\f
c-src/getopt.h,147
#define _GETOPT_H \x7f19,799
struct option\x7f73,2795
#define no_argument \x7f89,3122
#define required_argument \x7f90,3145
#define optional_argument \x7f91,3173
\f
c-src/etags.c,10045
char pot_etags_version[\x7fpot_etags_version\x0181,3470
# undef DEBUG\x7f84,3552
# define DEBUG \x7f85,3567
# define DEBUG \x7f87,3594
# define NDEBUG \x7f88,3617
# define _GNU_SOURCE \x7f94,3705
# undef MSDOS\x7f100,3876
# undef WINDOWSNT\x7f101,3890
# define WINDOWSNT\x7f102,3909
# undef MSDOS\x7f106,3968
# define MSDOS \x7f107,3982
# define MSDOS \x7f110,4032
# define MAXPATHLEN \x7f115,4111
# undef HAVE_NTGUI\x7f116,4141
# undef DOS_NT\x7f117,4160
# define DOS_NT\x7f118,4176
# undef assert \x7f135,4482
# define assert(\x7f136,4541
# undef CTAGS\x7f146,4857
# define CTAGS \x7f147,4872
# define CTAGS \x7f149,4898
#define streq(\x7f152,4927
#define strcaseeq(\x7f153,4996
#define strneq(\x7f154,5075
#define strncaseeq(\x7f155,5151
#define CHARS \x7f157,5238
#define CHAR(\x7f158,5278
#define iswhite(\x7f159,5329
#define notinname(\x7f160,5394
#define begtoken(\x7f161,5469
#define intoken(\x7f162,5542
#define endtoken(\x7f163,5614
#define ISALNUM(\x7f165,5684
#define ISALPHA(\x7f166,5722
#define ISDIGIT(\x7f167,5760
#define ISLOWER(\x7f168,5798
#define lowcase(\x7f170,5837
#define xnew(\x7f179,6015
#define xrnew(\x7f180,6083
typedef void Lang_function \x7f182,6164
} compressor;\x7f188,6365
} language;\x7f199,6835
typedef struct fdesc\x7f201,6848
} fdesc;\x7f212,7366
typedef struct node_st\x7f214,7376
} node;\x7f225,7894
} linebuffer;\x7f239,8248
at_language,\x7f245,8344
at_regexp,\x7f246,8393
at_filename,\x7f247,8437
at_stdin,\x7f248,8473
at_end \x7f249,8516
} argument;\x7f253,8698
typedef struct regexp\x7f256,8758
} regexp;\x7f268,9325
static void error \x7f311,10780
# undef STDIN\x7f408,15073
#define STDIN \x7f411,15095
static compressor compressors[\x7fcompressors\x01457,17664
static const char *Ada_suffixes \x7fAda_suffixes\x01473,17907
static const char Ada_help \x7f475,17977
static const char *Asm_suffixes \x7fAsm_suffixes\x01493,18580
static const char Asm_help \x7f504,18976
static const char *default_C_suffixes \x7fdefault_C_suffixes\x01512,19312
static const char default_C_help \x7f515,19413
static const char default_C_help \x7f523,19850
static const char *Cplusplus_suffixes \x7fCplusplus_suffixes\x01535,20460
static const char Cplusplus_help \x7f540,20658
static const char *Cjava_suffixes \x7fCjava_suffixes\x01549,21113
static char Cjava_help \x7f551,21172
static const char *Cobol_suffixes \x7fCobol_suffixes\x01556,21337
static char Cobol_help \x7f558,21402
static const char *Cstar_suffixes \x7fCstar_suffixes\x01562,21543
static const char *Erlang_suffixes \x7fErlang_suffixes\x01565,21607
static const char Erlang_help \x7f567,21673
const char *Forth_suffixes \x7fForth_suffixes\x01571,21799
static const char Forth_help \x7f573,21857
static const char *Fortran_suffixes \x7fFortran_suffixes\x01577,22008
static const char Fortran_help \x7f579,22085
static const char *HTML_suffixes \x7fHTML_suffixes\x01582,22190
static const char HTML_help \x7f584,22264
static const char *Lisp_suffixes \x7fLisp_suffixes\x01589,22452
static const char Lisp_help \x7f591,22556
static const char *Lua_suffixes \x7fLua_suffixes\x01598,22871
static const char Lua_help \x7f600,22934
static const char *Makefile_filenames \x7fMakefile_filenames\x01603,23010
static const char Makefile_help \x7f605,23133
static const char *Objc_suffixes \x7fObjc_suffixes\x01609,23277
static const char Objc_help \x7f613,23399
static const char *Pascal_suffixes \x7fPascal_suffixes\x01619,23714
static const char Pascal_help \x7f621,23778
static const char *Perl_suffixes \x7fPerl_suffixes\x01626,23966
static const char *Perl_interpreters \x7fPerl_interpreters\x01628,24028
static const char Perl_help \x7f630,24100
static const char *PHP_suffixes \x7fPHP_suffixes\x01637,24451
static const char PHP_help \x7f639,24523
static const char *plain_C_suffixes \x7fplain_C_suffixes\x01643,24678
static const char *PS_suffixes \x7fPS_suffixes\x01647,24762
static const char PS_help \x7f649,24848
static const char *Prolog_suffixes \x7fProlog_suffixes\x01652,24931
static const char Prolog_help \x7f654,24993
static const char *Python_suffixes \x7fPython_suffixes\x01658,25107
static const char Python_help \x7f660,25165
static const char *Scheme_suffixes \x7fScheme_suffixes\x01665,25347
static const char Scheme_help \x7f667,25460
static const char *TeX_suffixes \x7fTeX_suffixes\x01672,25683
static const char TeX_help \x7f674,25781
static const char *Texinfo_suffixes \x7fTexinfo_suffixes\x01686,26316
static const char Texinfo_help \x7f688,26395
static const char *Yacc_suffixes \x7fYacc_suffixes\x01691,26492
static const char Yacc_help \x7f693,26606
static const char auto_help \x7f699,26856
static const char none_help \x7f703,27020
static const char no_lang_help \x7f707,27143
static language lang_names \x7f718,27355
print_language_names \x7f753,29532
# define EMACS_NAME \x7f786,30755
# define VERSION \x7f789,30811
print_version \x7f792,30869
# define PRINT_UNDOCUMENTED_OPTIONS_HELP \x7f804,31173
print_help \x7f808,31250
main \x7f981,37438
get_compressor_from_suffix \x7f1319,46217
get_language_from_langname \x7f1355,47158
get_language_from_interpreter \x7f1377,47545
get_language_from_filename \x7f1399,47976
process_file_name \x7f1433,48834
process_file \x7f1555,51665
init \x7f1632,54150
find_entries \x7f1656,54901
make_tag \x7f1814,59707
pfnote \x7f1856,60942
free_tree \x7f1917,62744
free_fdesc \x7f1935,63029
add_node \x7f1955,63472
invalidate_nodes \x7f2035,65537
static int number_len \x7f2068,66193
total_size_of_entries \x7f2087,66694
put_entries \x7f2107,67154
#define C_EXT \x7f2193,68995
#define C_PLAIN \x7f2194,69037
#define C_PLPL \x7f2195,69070
#define C_STAR \x7f2196,69104
#define C_JAVA \x7f2197,69137
#define C_AUTO \x7f2198,69172
#define YACC \x7f2199,69242
enum sym_type\x7f2204,69312
st_none,\x7f2206,69328
st_C_objprot,\x7f2207,69339
st_C_objprot, st_C_objimpl,\x7f2207,69339
st_C_objprot, st_C_objimpl, st_C_objend,\x7f2207,69339
st_C_gnumacro,\x7f2208,69382
st_C_ignore,\x7f2209,69399
st_C_ignore, st_C_attribute,\x7f2209,69399
st_C_javastruct,\x7f2210,69430
st_C_operator,\x7f2211,69449
st_C_class,\x7f2212,69466
st_C_class, st_C_template,\x7f2212,69466
st_C_struct,\x7f2213,69495
st_C_struct, st_C_extern,\x7f2213,69495
st_C_struct, st_C_extern, st_C_enum,\x7f2213,69495
st_C_struct, st_C_extern, st_C_enum, st_C_define,\x7f2213,69495
st_C_struct, st_C_extern, st_C_enum, st_C_define, st_C_typedef\x7f2213,69495
struct C_stab_entry \x7f2271,71278
hash \x7f2275,71409
in_word_set \x7f2321,72937
TOTAL_KEYWORDS \x7f2325,73018
MIN_WORD_LENGTH \x7f2326,73045
MAX_WORD_LENGTH \x7f2327,73072
MIN_HASH_VALUE \x7f2328,73100
MAX_HASH_VALUE \x7f2329,73126
C_symtype \x7f2387,74985
static bool inattribute;\x7f2400,75234
fvnone,\x7f2408,75435
fdefunkey,\x7f2409,75466
fdefunname,\x7f2410,75512
foperator,\x7f2411,75556
fvnameseen,\x7f2412,75613
fstartlist,\x7f2413,75666
finlist,\x7f2414,75722
flistseen,\x7f2415,75765
fignore,\x7f2416,75813
vignore \x7f2417,75856
} fvdef;\x7f2418,75901
static bool fvextern;\x7f2420,75911
tnone,\x7f2428,76089
tkeyseen,\x7f2429,76119
ttypeseen,\x7f2430,76160
tinbody,\x7f2431,76199
tend,\x7f2432,76238
tignore \x7f2433,76279
} typdef;\x7f2434,76320
snone,\x7f2443,76499
skeyseen,\x7f2445,76575
stagseen,\x7f2446,76620
scolonseen \x7f2447,76661
} structdef;\x7f2448,76715
static const char *objtag \x7fobjtag\x012453,76809
dnone,\x7f2460,76942
dsharpseen,\x7f2461,76972
ddefineseen,\x7f2462,77025
dignorerest \x7f2463,77070
} definedef;\x7f2464,77112
onone,\x7f2472,77267
oprotocol,\x7f2473,77297
oimplementation,\x7f2474,77347
otagseen,\x7f2475,77395
oparenseen,\x7f2476,77431
ocatseen,\x7f2477,77486
oinbody,\x7f2478,77525
omethodsign,\x7f2479,77568
omethodtag,\x7f2480,77626
omethodcolon,\x7f2481,77666
omethodparm,\x7f2482,77709
oignore \x7f2483,77755
} objdef;\x7f2484,77787
static struct tok\x7f2491,77944
} token;\x7f2508,78626
} cstack;\x7f2523,79136
#define nestlev \x7f2525,79264
#define instruct \x7f2527,79369
pushclass_above \x7f2531,79489
popclass_above \x7f2550,79948
write_classname \x7f2564,80162
consider_token \x7f2613,81341
} lbs[\x7flbs\x012924,88532
#define current_lb_is_new \x7f2926,88543
#define switch_line_buffers(\x7f2927,88588
#define curlb \x7f2929,88641
#define newlb \x7f2930,88672
#define curlinepos \x7f2931,88703
#define newlinepos \x7f2932,88744
#define plainc \x7f2934,88786
#define cplpl \x7f2935,88830
#define cjava \x7f2936,88861
#define CNL_SAVE_DEFINEDEF(\x7f2938,88905
#define CNL(\x7f2947,89117
make_C_tag \x7f2960,89375
C_entries \x7f2986,90194
default_C_entries \x7f3833,110156
plain_C_entries \x7f3840,110276
Cplusplus_entries \x7f3847,110364
Cjava_entries \x7f3854,110460
Cstar_entries \x7f3861,110550
Yacc_entries \x7f3868,110642
#define LOOP_ON_INPUT_LINES(\x7f3875,110720
#define LOOKING_AT(\x7f3884,111056
#define LOOKING_AT_NOCASE(\x7f3891,111461
just_read_file \x7f3901,111861
F_takeprec \x7f3914,112039
F_getit \x7f3937,112366
Fortran_functions \x7f3961,112840
Ada_getit \x7f4052,114669
Ada_funcs \x7f4115,116044
Asm_labels \x7f4228,118582
Perl_functions \x7f4261,119549
Python_functions \x7f4357,122057
PHP_functions \x7f4387,122684
Cobol_paragraphs \x7f4466,124471
Makefile_targets \x7f4494,125029
Pascal_functions \x7f4529,125950
L_getit \x7f4709,130318
Lisp_functions \x7f4725,130664
Lua_functions \x7f4785,131850
PS_functions \x7f4811,132385
Forth_words \x7f4841,133053
Scheme_functions \x7f4877,134092
static linebuffer *TEX_toktab \x7fTEX_toktab\x014908,134781
static const char *TEX_defenv \x7fTEX_defenv\x014912,134974
static char TEX_esc \x7f4920,135261
static char TEX_opgrp \x7f4921,135289
static char TEX_clgrp \x7f4922,135318
TeX_commands \x7f4928,135395
#define TEX_LESC \x7f4986,136652
#define TEX_SESC \x7f4987,136674
TEX_mode \x7f4992,136804
TEX_decode_env \x7f5026,137509
Texinfo_nodes \x7f5071,138554
HTML_labels \x7f5094,139013
Prolog_functions \x7f5219,142347
prolog_skip_comment \x7f5255,143128
prolog_pr \x7f5281,143736
prolog_atom \x7f5319,144628
Erlang_functions \x7f5379,145666
erlang_func \x7f5438,146965
erlang_attribute \x7f5476,147642
erlang_atom \x7f5496,148061
scan_separators \x7f5534,149080
analyze_regex \x7f5586,150460
add_regex \x7f5654,152050
substitute \x7f5767,154797
free_regexps \x7f5814,155837
regex_tag_multiline \x7f5836,156291
nocase_tail \x7f5913,158263
get_tag \x7f5928,158519
readline_internal \x7f5959,159455
readline \x7f6037,161296
savestr \x7f6230,167243
savenstr \x7f6240,167473
skip_spaces \x7f6249,167679
skip_non_spaces \x7f6258,167833
skip_name \x7f6267,167983
fatal \x7f6277,168156
pfatal \x7f6284,168253
suggest_asking_for_help \x7f6291,168332
error \x7f6300,168554
concat \x7f6313,168846
etags_getcwd \x7f6329,169259
relative_filename \x7f6350,169725
absolute_filename \x7f6389,170751
absolute_dirname \x7f6453,172416
filename_is_absolute \x7f6472,172845
canonicalize_filename \x7f6484,173096
# define ISUPPER(\x7f6491,173235
linebuffer_init \x7f6514,173656
linebuffer_setlen \x7f6524,173887
xmalloc \x7f6536,174148
xrealloc \x7f6545,174314
\f
c-src/exit.c,47
} __libc_atexit;\x7f30,1022
DEFUN(exit,\x7f38,1263
\f
c-src/exit.strange_suffix,47
} __libc_atexit;\x7f30,1022
DEFUN(exit,\x7f38,1263
\f
c-src/sysdep.h,491
#define ENTRY(\x7f21,875
#define PSEUDO(\x7f26,982
movl $SYS_##syscall_nam\x7f$SYS_##syscall_na\x0131,1142
movl $SYS_##syscall_name, %eax;\x7feax\x0131,1142
int $0x80;\x7f32,1190
test %eax,\x7feax\x0133,1220
test %eax, %eax;\x7feax\x0133,1220
jl syscall_error;\x7f34,1255
#define XCHG_0 \x7f47,1572
#define XCHG_1 \x7f48,1616
#define XCHG_2 \x7f49,1658
#define XCHG_3 \x7f50,1701
#define XCHG_4 \x7f51,1744
#define XCHG_5 \x7f52,1787
#define r0 \x7f54,1831
#define r1 \x7f55,1885
#define scratch \x7f56,1942
#define MOVE(\x7f57,2011
\f
c-src/tab.c,196
static int count_words(\x7f15,263
static char *get_word(\x7fget_word\x0135,553
void tab_free(\x7f59,966
char **tab_fill(\x7ftab_fill\x0170,1129
int tab_delete_first(\x7f91,1638
int tab_count_words(\x7f103,1820
\f
c-src/dostorture.c,198
(*tag1 \x7ftag1\x0118,468
#define notag2 \x7f26,577
(*tag2 \x7ftag2\x0129,657
(*tag3 \x7ftag3\x0139,809
#define notag4 \x7f45,904
(*tag4 \x7ftag4\x0148,1001
tag5 \x7f57,1136
tag6 \x7f66,1272
int pp1(\x7f74,1389
pp2\x7f87,1504
pp3(\x7f100,1616
\f
c-src/emacs/src/gmalloc.c,3539
#define USE_PTHREAD\x7f25,1002
#undef get_current_dir_name\x7f33,1126
#undef malloc\x7f64,2110
#undef realloc\x7f65,2124
#undef calloc\x7f66,2139
#undef free\x7f67,2153
#define malloc \x7f68,2165
#define realloc \x7f69,2188
#define calloc \x7f70,2213
#define aligned_alloc \x7f71,2236
#define free \x7f72,2273
#define DUMPED \x7f80,2472
#define ALLOCATED_BEFORE_DUMPING(\x7f81,2507
extern void *malloc \x7fmalloc\x0194,2718
#define INT_BIT \x7f124,3934
#define BLOCKLOG \x7f125,3977
#define BLOCKSIZE \x7f126,4018
#define BLOCKIFY(\x7f127,4052
#define HEAP \x7f131,4215
#define FINAL_FREE_BLOCKS \x7f135,4391
} malloc_info;\x7f167,5388
#define BLOCK(\x7f176,5620
#define ADDRESS(\x7f177,5682
struct list\x7f186,5939
struct alignlist\x7f196,6153
#define LOCK(\x7f223,7064
#define UNLOCK(\x7f228,7195
#define LOCK_ALIGNED_BLOCKS(\x7f233,7329
#define UNLOCK_ALIGNED_BLOCKS(\x7f238,7484
#define LOCK(\x7f244,7649
#define UNLOCK(\x7f245,7664
#define LOCK_ALIGNED_BLOCKS(\x7f246,7681
#define UNLOCK_ALIGNED_BLOCKS(\x7f247,7711
enum mcheck_status\x7f283,9092
MCHECK_DISABLED \x7f285,9115
MCHECK_OK,\x7f286,9187
MCHECK_FREE,\x7f287,9226
MCHECK_HEAD,\x7f288,9270
MCHECK_TAIL \x7f289,9334
struct mstats\x7f308,10153
char *_heapbase;\x7f_heapbase\x01355,11829
malloc_info *_heapinfo;\x7f_heapinfo\x01358,11927
static size_t heapsize;\x7f361,11983
size_t _heapindex;\x7f364,12047
size_t _heaplimit;\x7f367,12109
struct list _fraghead[\x7f_fraghead\x01370,12171
size_t _chunks_used;\x7f373,12229
size_t _bytes_used;\x7f374,12250
size_t _chunks_free;\x7f375,12270
size_t _bytes_free;\x7f376,12291
int __malloc_initialized;\x7f379,12340
size_t __malloc_extra_blocks;\x7f381,12367
static int state_protected_p;\x7f400,12912
static size_t last_state_size;\x7f401,12942
static malloc_info *last_heapinfo;\x7flast_heapinfo\x01402,12973
protect_malloc_state \x7f405,13014
#define PROTECT_MALLOC_STATE(\x7f426,13627
#define PROTECT_MALLOC_STATE(\x7f429,13697
align \x7f435,13794
get_contiguous_space \x7f466,14616
register_heapinfo \x7f497,15325
pthread_mutex_t _malloc_mutex \x7f517,15879
pthread_mutex_t _aligned_blocks_mutex \x7f518,15938
int _malloc_thread_enabled_p;\x7f519,16005
malloc_atfork_handler_prepare \x7f522,16048
malloc_atfork_handler_parent \x7f529,16139
malloc_atfork_handler_child \x7f536,16233
malloc_enable_thread \x7f544,16375
malloc_initialize_1 \x7f563,16961
__malloc_initialize \x7f594,17793
static int morecore_recursing;\x7f604,17926
morecore_nolock \x7f609,18066
_malloc_internal_nolock \x7f722,21584
_malloc_internal \x7f920,28102
malloc \x7f932,28247
_malloc \x7f961,29140
_free \x7f967,29196
_realloc \x7f973,29240
struct alignlist *_aligned_blocks \x7f_aligned_blocks\x011004,30345
_free_internal_nolock \x7f1009,30474
_free_internal \x7f1255,38476
free \x7f1265,38603
weak_alias \x7f1277,38799
#define min(\x7f1306,39813
_realloc_internal_nolock \x7f1319,40309
_realloc_internal \x7f1435,43563
realloc \x7f1447,43726
calloc \x7f1478,44894
#define __sbrk \x7f1513,46042
__default_morecore \x7f1525,46511
aligned_alloc \x7f1557,47522
memalign \x7f1647,49704
posix_memalign \x7f1656,49909
static size_t pagesize;\x7f1703,51317
valloc \x7f1706,51349
#undef malloc\x7f1715,51490
#undef realloc\x7f1716,51504
#undef calloc\x7f1717,51519
#undef aligned_alloc\x7f1718,51533
#undef free\x7f1719,51554
hybrid_malloc \x7f1736,52083
hybrid_calloc \x7f1744,52188
hybrid_free \x7f1752,52319
hybrid_aligned_alloc \x7f1765,52626
hybrid_realloc \x7f1780,52984
hybrid_get_current_dir_name \x7f1811,53797
#define MAGICWORD \x7f1854,55206
#define MAGICFREE \x7f1855,55261
#define MAGICBYTE \x7f1856,55316
#define MALLOCFLOOD \x7f1857,55348
#define FREEFLOOD \x7f1858,55382
struct hdr\x7f1860,55415
checkhdr \x7f1867,55581
freehook \x7f1891,56022
mallochook \x7f1927,56804
reallochook \x7f1944,57143
mabort \x7f1978,57901
static int mcheck_used \x7f2012,58586
mcheck \x7f2015,58619
mprobe \x7f2035,59138
\f
c-src/emacs/src/regex.h,3761
#define _REGEX_H \x7f21,836
typedef unsigned long reg_syntax_t;\x7f43,1577
#define RE_BACKSLASH_ESCAPE_IN_LISTS \x7f47,1749
#define RE_BK_PLUS_QM \x7f52,1969
#define RE_CHAR_CLASSES \x7f58,2298
#define RE_CONTEXT_INDEP_ANCHORS \x7f72,3032
#define RE_CONTEXT_INDEP_OPS \x7f80,3458
#define RE_CONTEXT_INVALID_OPS \x7f84,3658
#define RE_DOT_NEWLINE \x7f88,3801
#define RE_DOT_NOT_NULL \x7f92,3937
#define RE_HAT_LISTS_NOT_NEWLINE \x7f96,4082
#define RE_INTERVALS \x7f101,4292
#define RE_LIMITED_OPS \x7f105,4441
#define RE_NEWLINE_ALT \x7f109,4583
#define RE_NO_BK_BRACES \x7f114,4773
#define RE_NO_BK_PARENS \x7f118,4964
#define RE_NO_BK_REFS \x7f122,5120
#define RE_NO_BK_VBAR \x7f126,5316
#define RE_NO_EMPTY_RANGES \x7f132,5610
#define RE_UNMATCHED_RIGHT_PAREN_ORD \x7f136,5766
#define RE_NO_POSIX_BACKTRACKING \x7f140,5937
#define RE_NO_GNU_OPS \x7f144,6133
#define RE_FRUGAL \x7f147,6253
#define RE_SHY_GROUPS \x7f150,6360
#define RE_NO_NEWLINE_ANCHOR \x7f153,6468
#define RE_DEBUG \x7f161,6884
#define RE_SYNTAX_EMACS \x7f183,7684
#define RE_SYNTAX_AWK \x7f186,7780
#define RE_SYNTAX_GNU_AWK \x7f193,8084
#define RE_SYNTAX_POSIX_AWK \x7f197,8255
#define RE_SYNTAX_GREP \x7f201,8393
#define RE_SYNTAX_EGREP \x7f206,8549
#define RE_SYNTAX_POSIX_EGREP \x7f212,8765
#define RE_SYNTAX_ED \x7f216,8910
#define RE_SYNTAX_SED \x7f218,8954
#define _RE_SYNTAX_POSIX_COMMON \x7f221,9072
#define RE_SYNTAX_POSIX_BASIC \x7f225,9215
#define RE_SYNTAX_POSIX_MINIMAL_BASIC \x7f231,9508
#define RE_SYNTAX_POSIX_EXTENDED \x7f234,9598
#define RE_SYNTAX_POSIX_MINIMAL_EXTENDED \x7f242,9967
# undef RE_DUP_MAX\x7f253,10454
#define RE_DUP_MAX \x7f256,10540
#define REG_EXTENDED \x7f263,10762
#define REG_ICASE \x7f267,10886
#define REG_NEWLINE \x7f272,11070
#define REG_NOSUB \x7f276,11248
#define REG_NOTBOL \x7f286,11614
#define REG_NOTEOL \x7f289,11688
REG_ENOSYS \x7f297,11859
REG_NOERROR \x7f300,11941
REG_NOMATCH,\x7f301,11976
REG_BADPAT,\x7f305,12123
REG_ECOLLATE,\x7f306,12162
REG_ECTYPE,\x7f307,12203
REG_EESCAPE,\x7f308,12255
REG_ESUBREG,\x7f309,12298
REG_EBRACK,\x7f310,12345
REG_EPAREN,\x7f311,12391
REG_EBRACE,\x7f312,12436
REG_BADBR,\x7f313,12472
REG_ERANGE,\x7f314,12519
REG_ESPACE,\x7f315,12560
REG_BADRPT,\x7f316,12601
REG_EEND,\x7f319,12693
REG_ESIZE,\x7f320,12728
REG_ERPAREN,\x7f321,12790
REG_ERANGEX \x7f322,12859
} reg_errcode_t;\x7f323,12911
# define RE_TRANSLATE_TYPE \x7f332,13273
struct re_pattern_buffer\x7f335,13315
#define REGS_UNALLOCATED \x7f376,14889
#define REGS_REALLOCATE \x7f377,14916
#define REGS_FIXED \x7f378,14942
typedef struct re_pattern_buffer regex_t;\x7f416,16098
typedef ssize_t regoff_t;\x7f423,16492
struct re_registers\x7f428,16652
# define RE_NREGS \x7f440,16942
} regmatch_t;\x7f451,17317
# define _Restrict_ \x7f540,20886
# define _Restrict_ \x7f542,20979
# define _Restrict_\x7f544,21018
# define _Restrict_arr_ \x7f555,21418
# define _Restrict_arr_\x7f557,21461
# define CHAR_CLASS_MAX_LENGTH \x7f593,22470
# define CHAR_CLASS_MAX_LENGTH \x7f597,22648
typedef wctype_t re_wctype_t;\x7f599,22692
typedef wchar_t re_wchar_t;\x7f600,22722
# define re_wctype \x7f601,22750
# define re_iswctype \x7f602,22776
# define re_wctype_to_bit(\x7f603,22806
# define CHAR_CLASS_MAX_LENGTH \x7f605,22844
# define btowc(\x7f606,22906
typedef enum { RECC_ERROR \x7f609,22953
RECC_ALNUM,\x7f610,22984
RECC_ALNUM, RECC_ALPHA,\x7f610,22984
RECC_ALNUM, RECC_ALPHA, RECC_WORD,\x7f610,22984
RECC_GRAPH,\x7f611,23027
RECC_GRAPH, RECC_PRINT,\x7f611,23027
RECC_LOWER,\x7f612,23059
RECC_LOWER, RECC_UPPER,\x7f612,23059
RECC_PUNCT,\x7f613,23091
RECC_PUNCT, RECC_CNTRL,\x7f613,23091
RECC_DIGIT,\x7f614,23123
RECC_DIGIT, RECC_XDIGIT,\x7f614,23123
RECC_BLANK,\x7f615,23156
RECC_BLANK, RECC_SPACE,\x7f615,23156
RECC_MULTIBYTE,\x7f616,23188
RECC_MULTIBYTE, RECC_NONASCII,\x7f616,23188
RECC_ASCII,\x7f617,23227
RECC_ASCII, RECC_UNIBYTE\x7f617,23227
} re_wctype_t;\x7f618,23260
typedef int re_wchar_t;\x7f623,23387
\f
c-src/emacs/src/keyboard.c,15539
volatile int interrupt_input_blocked;\x7f76,1808
volatile bool pending_signals;\x7f80,1944
#define KBD_BUFFER_SIZE \x7f82,1976
KBOARD *initial_kboard;\x7finitial_kboard\x0184,2006
KBOARD *current_kboard;\x7fcurrent_kboard\x0185,2030
static KBOARD *all_kboards;\x7fall_kboards\x0186,2054
static bool single_kboard;\x7f89,2154
#define NUM_RECENT_KEYS \x7f91,2182
static int recent_keys_index;\x7f94,2269
static int total_keys;\x7f97,2357
static Lisp_Object recent_keys;\x7f100,2443
Lisp_Object this_command_keys;\x7f107,2777
ptrdiff_t this_command_key_count;\x7f108,2808
static bool this_command_key_count_reset;\x7f112,2922
static Lisp_Object raw_keybuf;\x7f116,3074
static int raw_keybuf_count;\x7f117,3105
#define GROW_RAW_KEYBUF \x7f119,3135
static ptrdiff_t this_single_command_key_start;\x7f125,3350
static ptrdiff_t before_command_key_count;\x7f129,3498
static ptrdiff_t before_command_echo_length;\x7f130,3541
sigjmp_buf return_to_command_loop;\x7f135,3677
static Lisp_Object recover_top_level_message;\x7f138,3791
static Lisp_Object regular_top_level_message;\x7f143,3930
static sys_jmp_buf getcjmp;\x7f147,4031
bool waiting_for_input;\x7f150,4095
static bool echoing;\x7f154,4186
static struct kboard *ok_to_echo_at_next_pause;\x7fok_to_echo_at_next_pause\x01159,4328
struct kboard *echo_kboard;\x7fecho_kboard\x01166,4632
Lisp_Object echo_message_buffer;\x7f171,4744
bool immediate_quit;\x7f174,4837
int quit_char;\x7f192,5623
EMACS_INT command_loop_level;\x7f195,5680
Lisp_Object unread_switch_frame;\x7f204,6108
static ptrdiff_t last_non_minibuf_size;\x7f207,6216
uintmax_t num_input_events;\x7f210,6334
static EMACS_INT last_auto_save;\x7f214,6428
static ptrdiff_t last_point_position;\x7f217,6523
Lisp_Object internal_last_event_frame;\x7f228,7028
static Lisp_Object read_key_sequence_cmd;\x7f232,7168
static Lisp_Object read_key_sequence_remapped;\x7f233,7210
static FILE *dribble;\x7fdribble\x01236,7310
bool input_pending;\x7f239,7368
static bool input_was_pending;\x7f287,10022
static struct input_event kbd_buffer[\x7fkbd_buffer\x01291,10107
static struct input_event *kbd_fetch_ptr;\x7fkbd_fetch_ptr\x01297,10386
static struct input_event * volatile kbd_store_ptr;\x7f302,10601
unsigned timers_run;\x7f320,11296
struct timespec *input_available_clear_time;\x7finput_available_clear_time\x01324,11408
bool interrupt_input;\x7f328,11573
bool interrupts_deferred;\x7f331,11671
static struct timespec timer_idleness_start_time;\x7f335,11746
static struct timespec timer_last_idleness_start_time;\x7f340,11916
#define READABLE_EVENTS_DO_TIMERS_NOW \x7f346,12046
#define READABLE_EVENTS_FILTER_EVENTS \x7f347,12094
#define READABLE_EVENTS_IGNORE_SQUEEZABLES \x7f348,12142
kset_echo_string \x7f392,14088
kset_kbd_queue \x7f397,14184
kset_keyboard_translate_table \x7f402,14276
kset_last_prefix_arg \x7f407,14399
kset_last_repeatable_command \x7f412,14504
kset_local_function_key_map \x7f417,14625
kset_overriding_terminal_local_map \x7f422,14744
kset_real_last_command \x7f427,14877
kset_system_key_syms \x7f432,14986
echo_add_key \x7f443,15249
echo_char \x7f527,17527
echo_dash \x7f541,17813
echo_now \x7f586,19140
cancel_echoing \x7f635,20614
echo_length \x7f648,20922
echo_truncate \x7f660,21253
add_command_key \x7f672,21582
recursive_edit_1 \x7f697,22406
record_auto_save \x7f742,23848
force_auto_save_soon \x7f751,24016
DEFUN ("recursive-edit", Frecursive_edit,\x7f759,24137
DEFUN ("recursive-edit", Frecursive_edit,\x7frecursive-edit\x01759,24137
recursive_edit_unwind \x7f804,25747
any_kboard_state \x7f817,26013
single_kboard_state \x7f838,26665
not_single_kboard_state \x7f848,26803
struct kboard_stack\x7f858,27065
static struct kboard_stack *kboard_stack;\x7fkboard_stack\x01864,27138
push_kboard \x7f867,27186
pop_kboard \x7f879,27375
temporarily_switch_to_single_kboard \x7f914,28263
record_single_kboard_state \x7f943,29437
restore_kboard_configuration \x7f952,29621
cmd_error \x7f970,30077
cmd_error_internal \x7f1024,31510
DEFUN ("command-error-default-function", Fcommand_error_default_function,\x7f1043,32030
DEFUN ("command-error-default-function", Fcommand_error_default_function,\x7fcommand-error-default-function\x011043,32030
command_loop \x7f1094,33916
command_loop_2 \x7f1134,35135
top_level_2 \x7f1146,35339
top_level_1 \x7f1152,35417
DEFUN ("top-level", Ftop_level,\x7f1164,35787
DEFUN ("top-level", Ftop_level,\x7ftop-level\x011164,35787
user_error \x7f1183,36288
DEFUN ("exit-recursive-edit", Fexit_recursive_edit,\x7f1189,36429
DEFUN ("exit-recursive-edit", Fexit_recursive_edit,\x7fexit-recursive-edit\x011189,36429
DEFUN ("abort-recursive-edit", Fabort_recursive_edit,\x7f1201,36819
DEFUN ("abort-recursive-edit", Fabort_recursive_edit,\x7fabort-recursive-edit\x011201,36819
tracking_off \x7f1216,37281
DEFUN ("internal--track-mouse", Ftrack_mouse,\x7f1234,37816
DEFUN ("internal--track-mouse", Ftrack_mouse,\x7ftrack-mouse\x011234,37816
bool ignore_mouse_drag_p;\x7f1256,38392
some_mouse_moved \x7f1259,38441
Lisp_Object last_undo_boundary;\x7f1287,39032
command_loop_1 \x7f1294,39273
read_menu_command \x7f1649,50889
adjust_point_for_property \x7f1678,51617
safe_run_hooks_1 \x7f1831,57339
safe_run_hooks_error \x7f1841,57569
safe_run_hook_funcall \x7f1878,58576
safe_run_hooks \x7f1893,59058
int poll_suppress_count;\x7f1908,59397
static struct atimer *poll_timer;\x7fpoll_timer\x011915,59487
poll_for_input_1 \x7f1919,59589
poll_for_input \x7f1930,59789
start_polling \x7f1942,60053
input_polling_used \x7f1979,61091
stop_polling \x7f1994,61390
set_poll_suppress_count \x7f2009,61759
bind_polling_period \x7f2029,62141
make_ctrl_char \x7f2048,62492
show_help_echo \x7f2113,64455
static Lisp_Object help_form_saved_window_configs;\x7f2156,65638
read_char_help_form_unwind \x7f2158,65701
#define STOP_POLLING \x7f2166,65959
#define RESUME_POLLING \x7f2170,66084
read_event_from_main_queue \x7f2175,66229
read_decoded_event_from_main_queue \x7f2249,68417
#define MAX_ENCODED_BYTES \x7f2254,68664
echo_keystrokes_p \x7f2342,71556
read_char \x7f2376,72848
record_menu_key \x7f3225,98949
help_char_p \x7f3258,99674
record_char \x7f3273,99953
save_getcjmp \x7f3412,104235
restore_getcjmp \x7f3418,104326
readable_events \x7f3430,104697
int stop_character EXTERNALLY_VISIBLE;\x7f3497,106437
event_to_kboard \x7f3500,106493
kbd_buffer_nr_stored \x7f3522,107142
kbd_buffer_store_event \x7f3534,107483
kbd_buffer_store_event_hold \x7f3550,108025
kbd_buffer_unget_event \x7f3684,111617
#define INPUT_EVENT_POS_MAX \x7f3698,112018
#define INPUT_EVENT_POS_MIN \x7f3701,112147
position_to_Time \x7f3706,112287
Time_to_position \x7f3716,112514
gen_help_event \x7f3738,113171
kbd_buffer_store_help_event \x7f3756,113611
discard_mouse_events \x7f3773,113976
kbd_buffer_events_waiting \x7f3803,114711
clear_event \x7f3823,115068
kbd_buffer_get_event \x7f3836,115408
process_special_events \x7f4258,127881
swallow_events \x7f4322,129705
timer_start_idle \x7f4339,130098
timer_stop_idle \x7f4355,130576
timer_resume_idle \x7f4363,130720
struct input_event last_timer_event EXTERNALLY_VISIBLE;\x7f4372,130912
Lisp_Object pending_funcalls;\x7f4377,131172
decode_timer \x7f4381,131293
timer_check_2 \x7f4414,132246
timer_check \x7f4572,136817
DEFUN ("current-idle-time", Fcurrent_idle_time,\x7f4607,137662
DEFUN ("current-idle-time", Fcurrent_idle_time,\x7fcurrent-idle-time\x014607,137662
static Lisp_Object accent_key_syms;\x7f4625,138239
static Lisp_Object func_key_syms;\x7f4626,138275
static Lisp_Object mouse_syms;\x7f4627,138309
static Lisp_Object wheel_syms;\x7f4628,138340
static Lisp_Object drag_n_drop_syms;\x7f4629,138371
static const int lispy_accent_codes[\x7flispy_accent_codes\x014634,138516
static const char *const lispy_accent_keys[\x7flispy_accent_keys\x014741,139878
#define FUNCTION_KEY_OFFSET \x7f4766,140314
const char *const lispy_function_keys[\x7flispy_function_keys\x014768,140347
static const char *const lispy_multimedia_keys[\x7flispy_multimedia_keys\x014962,148901
static const char *const lispy_kana_keys[\x7flispy_kana_keys\x015026,150135
#define FUNCTION_KEY_OFFSET \x7f5061,151751
static const char *const lispy_function_keys[\x7flispy_function_keys\x015065,151894
#define ISO_FUNCTION_KEY_OFFSET \x7f5149,154429
static const char *const iso_lispy_function_keys[\x7fiso_lispy_function_keys\x015151,154469
static Lisp_Object Vlispy_mouse_stem;\x7f5172,155328
static const char *const lispy_wheel_names[\x7flispy_wheel_names\x015174,155367
static const char *const lispy_drag_n_drop_names[\x7flispy_drag_n_drop_names\x015181,155619
static short const scroll_bar_parts[\x7fscroll_bar_parts\x015189,155885
static Lisp_Object button_down_location;\x7f5210,156910
static int last_mouse_button;\x7f5215,157065
static int last_mouse_x;\x7f5216,157095
static int last_mouse_y;\x7f5217,157120
static Time button_down_time;\x7f5218,157145
static int double_click_count;\x7f5222,157229
make_lispy_position \x7f5228,157390
toolkit_menubar_in_use \x7f5456,163953
make_scroll_bar_position \x7f5469,164321
make_lispy_event \x7f5485,164967
make_lispy_movement \x7f6104,183531
make_lispy_switch_frame \x7f6131,184262
make_lispy_focus_in \x7f6137,184369
make_lispy_focus_out \x7f6145,184495
parse_modifiers_uncached \x7f6163,184945
#define SINGLE_LETTER_MOD(\x7f6185,185465
#undef SINGLE_LETTER_MOD\x7f6212,185906
#define MULTI_LETTER_MOD(\x7f6214,185932
#undef MULTI_LETTER_MOD\x7f6231,186400
apply_modifiers_uncached \x7f6273,187574
static const char *const modifier_names[\x7fmodifier_names\x016319,189193
#define NUM_MOD_NAMES \x7f6325,189399
static Lisp_Object modifier_symbols;\x7f6327,189449
lispy_modifier_list \x7f6331,189586
#define KEY_TO_CHAR(\x7f6353,190252
parse_modifiers \x7f6356,190328
DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,\x7f6399,191517
DEFUN ("internal-event-symbol-parse-modifiers", Fevent_symbol_parse_modifiers,\x7fevent-symbol-parse-modifiers\x016399,191517
apply_modifiers \x7f6422,192391
reorder_modifiers \x7f6491,194720
modify_event_symbol \x7f6536,196528
DEFUN ("event-convert-list", Fevent_convert_list,\x7f6628,199244
DEFUN ("event-convert-list", Fevent_convert_list,\x7fevent-convert-list\x016628,199244
parse_solitary_modifier \x7f6695,201135
#define SINGLE_LETTER_MOD(\x7f6701,201258
#define MULTI_LETTER_MOD(\x7f6705,201343
#undef SINGLE_LETTER_MOD\x7f6763,202641
#undef MULTI_LETTER_MOD\x7f6764,202666
lucid_event_type_list_p \x7f6775,202889
get_input_pending \x7f6814,203960
record_asynch_buffer_change \x7f6834,204579
gobble_input \x7f6872,205702
tty_read_avail_input \x7f6967,208310
handle_async_input \x7f7149,214039
process_pending_signals \x7f7165,214359
unblock_input_to \x7f7177,214645
unblock_input \x7f7200,215277
totally_unblock_input \x7f7209,215445
handle_input_available_signal \x7f7217,215529
deliver_input_available_signal \x7f7226,215700
struct user_signal_info\x7f7235,215865
static struct user_signal_info *user_signals \x7fuser_signals\x017250,216090
add_user_signal \x7f7253,216149
handle_user_signal \x7f7275,216598
deliver_user_signal \x7f7316,217558
find_user_signal_name \x7f7322,217659
store_user_signal_events \x7f7334,217841
static Lisp_Object menu_bar_one_keymap_changed_items;\x7f7363,218416
static Lisp_Object menu_bar_items_vector;\x7f7368,218630
static int menu_bar_items_index;\x7f7369,218672
static const char *separator_names[\x7fseparator_names\x017372,218707
menu_separator_name_p \x7f7393,219148
menu_bar_items \x7f7426,219852
Lisp_Object item_properties;\x7f7568,224603
menu_bar_item \x7f7571,224645
menu_item_eval_property_1 \x7f7647,227175
eval_dyn \x7f7658,227465
menu_item_eval_property \x7f7666,227675
parse_menu_item \x7f7686,228341
static Lisp_Object tool_bar_items_vector;\x7f7965,236336
static Lisp_Object tool_bar_item_properties;\x7f7970,236510
static int ntool_bar_items;\x7f7974,236606
tool_bar_items \x7f7990,237083
process_tool_bar_item \x7f8075,239892
#define PROP(\x7f8112,240969
set_prop \x7f8114,241038
parse_tool_bar_item \x7f8167,242453
#undef PROP\x7f8379,248844
init_tool_bar_items \x7f8387,248969
append_tool_bar_item \x7f8401,249261
read_char_x_menu_prompt \x7f8443,250771
read_char_minibuf_menu_prompt \x7f8503,252445
#define PUSH_C_STR(\x7f8527,253014
follow_key \x7f8726,258553
active_maps \x7f8733,258695
typedef struct keyremap\x7f8742,259021
} keyremap;\x7f8754,259464
access_keymap_keyremap \x7f8764,259808
keyremap_step \x7f8811,261450
test_undefined \x7f8867,262934
read_key_sequence \x7f8916,264861
read_key_sequence_vs \x7f9826,295821
DEFUN ("read-key-sequence", Fread_key_sequence,\x7f9885,297294
DEFUN ("read-key-sequence", Fread_key_sequence,\x7fread-key-sequence\x019885,297294
DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,\x7f9938,299982
DEFUN ("read-key-sequence-vector", Fread_key_sequence_vector,\x7fread-key-sequence-vector\x019938,299982
detect_input_pending \x7f9950,300488
detect_input_pending_ignore_squeezables \x7f9959,300654
detect_input_pending_run_timers \x7f9967,300870
clear_input_pending \x7f9985,301362
requeued_events_pending_p \x7f9997,301732
DEFUN ("input-pending-p", Finput_pending_p,\x7f10002,301813
DEFUN ("input-pending-p", Finput_pending_p,\x7finput-pending-p\x0110002,301813
DEFUN ("recent-keys", Frecent_keys,\x7f10024,302596
DEFUN ("recent-keys", Frecent_keys,\x7frecent-keys\x0110024,302596
DEFUN ("this-command-keys", Fthis_command_keys,\x7f10055,303517
DEFUN ("this-command-keys", Fthis_command_keys,\x7fthis-command-keys\x0110055,303517
DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,\x7f10068,303958
DEFUN ("this-command-keys-vector", Fthis_command_keys_vector,\x7fthis-command-keys-vector\x0110068,303958
DEFUN ("this-single-command-keys", Fthis_single_command_keys,\x7f10080,304380
DEFUN ("this-single-command-keys", Fthis_single_command_keys,\x7fthis-single-command-keys\x0110080,304380
DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,\x7f10096,304955
DEFUN ("this-single-command-raw-keys", Fthis_single_command_raw_keys,\x7fthis-single-command-raw-keys\x0110096,304955
DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,\x7f10109,305495
DEFUN ("reset-this-command-lengths", Freset_this_command_lengths,\x7freset-this-command-lengths\x0110109,305495
DEFUN ("clear-this-command-keys", Fclear_this_command_keys,\x7f10136,306510
DEFUN ("clear-this-command-keys", Fclear_this_command_keys,\x7fclear-this-command-keys\x0110136,306510
DEFUN ("recursion-depth", Frecursion_depth,\x7f10158,307069
DEFUN ("recursion-depth", Frecursion_depth,\x7frecursion-depth\x0110158,307069
DEFUN ("open-dribble-file", Fopen_dribble_file,\x7f10169,307406
DEFUN ("open-dribble-file", Fopen_dribble_file,\x7fopen-dribble-file\x0110169,307406
DEFUN ("discard-input", Fdiscard_input,\x7f10203,308447
DEFUN ("discard-input", Fdiscard_input,\x7fdiscard-input\x0110203,308447
DEFUN ("suspend-emacs", Fsuspend_emacs,\x7f10225,308949
DEFUN ("suspend-emacs", Fsuspend_emacs,\x7fsuspend-emacs\x0110225,308949
stuff_buffered_input \x7f10285,311045
set_waiting_for_input \x7f10323,312016
clear_waiting_for_input \x7f10337,312390
handle_interrupt_signal \x7f10351,312754
deliver_interrupt_signal \x7f10378,313642
static int volatile force_quit_count;\x7f10387,313932
handle_interrupt \x7f10401,314414
quit_throw_to_read_char \x7f10541,318711
DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,\x7f10562,319288
DEFUN ("set-input-interrupt-mode", Fset_input_interrupt_mode,\x7fset-input-interrupt-mode\x0110562,319288
DEFUN ("set-output-flow-control", Fset_output_flow_control,\x7f10609,320516
DEFUN ("set-output-flow-control", Fset_output_flow_control,\x7fset-output-flow-control\x0110609,320516
DEFUN ("set-input-meta-mode", Fset_input_meta_mode,\x7f10643,321432
DEFUN ("set-input-meta-mode", Fset_input_meta_mode,\x7fset-input-meta-mode\x0110643,321432
DEFUN ("set-quit-char", Fset_quit_char,\x7f10694,322706
DEFUN ("set-quit-char", Fset_quit_char,\x7fset-quit-char\x0110694,322706
DEFUN ("set-input-mode", Fset_input_mode,\x7f10729,323570
DEFUN ("set-input-mode", Fset_input_mode,\x7fset-input-mode\x0110729,323570
DEFUN ("current-input-mode", Fcurrent_input_mode,\x7f10750,324459
DEFUN ("current-input-mode", Fcurrent_input_mode,\x7fcurrent-input-mode\x0110750,324459
DEFUN ("posn-at-x-y", Fposn_at_x_y,\x7f10787,325837
DEFUN ("posn-at-x-y", Fposn_at_x_y,\x7fposn-at-x-y\x0110787,325837
DEFUN ("posn-at-point", Fposn_at_point,\x7f10824,327060
DEFUN ("posn-at-point", Fposn_at_point,\x7fposn-at-point\x0110824,327060
init_kboard \x7f10861,328214
allocate_kboard \x7f10893,329284
wipe_kboard \x7f10909,329637
delete_kboard \x7f10917,329751
init_keyboard \x7f10942,330281
struct event_head\x7f11021,332696
static const struct event_head head_table[\x7fhead_table\x0111027,332747
syms_of_keyboard \x7f11045,333577
keys_of_keyboard \x7f11841,367115
mark_kboards \x7f11916,370434
\f
c-src/emacs/src/lisp.h,20276
#define EMACS_LISP_H\x7f22,800
#define DECLARE_GDB_SYM(\x7f47,1421
# define DEFINE_GDB_SYMBOL_BEGIN(\x7f49,1508
# define DEFINE_GDB_SYMBOL_END(\x7f50,1578
# define DEFINE_GDB_SYMBOL_BEGIN(\x7f52,1625
# define DEFINE_GDB_SYMBOL_END(\x7f53,1702
#undef min\x7f57,1790
#undef max\x7f58,1801
#define max(\x7f59,1812
#define min(\x7f60,1854
#define ARRAYELTS(\x7f63,1936
#define GCTYPEBITS \x7f67,2079
DEFINE_GDB_SYMBOL_BEGIN \x7fGCTYPEBITS\x0166,2037
# define NONPOINTER_BITS \x7f78,2567
# define NONPOINTER_BITS \x7f80,2600
typedef int EMACS_INT;\x7f91,3023
typedef unsigned int EMACS_UINT;\x7f92,3046
# define EMACS_INT_MAX \x7f93,3079
# define pI \x7f94,3111
typedef long int EMACS_INT;\x7f96,3203
typedef unsigned long EMACS_UINT;\x7f97,3231
# define EMACS_INT_MAX \x7f98,3265
# define pI \x7f99,3298
typedef long long int EMACS_INT;\x7f103,3477
typedef unsigned long long int EMACS_UINT;\x7f104,3510
# define EMACS_INT_MAX \x7f105,3553
# define pI \x7f106,3587
enum { BOOL_VECTOR_BITS_PER_CHAR \x7f114,3804
#define BOOL_VECTOR_BITS_PER_CHAR \x7f115,3840
typedef size_t bits_word;\x7f123,4165
# define BITS_WORD_MAX \x7f124,4191
enum { BITS_PER_BITS_WORD \x7f125,4223
typedef unsigned char bits_word;\x7f127,4290
# define BITS_WORD_MAX \x7f128,4323
enum { BITS_PER_BITS_WORD \x7f129,4386
BITS_PER_CHAR \x7f136,4570
BITS_PER_SHORT \x7f137,4605
BITS_PER_LONG \x7f138,4657
BITS_PER_EMACS_INT \x7f139,4712
typedef intmax_t printmax_t;\x7f148,5089
typedef uintmax_t uprintmax_t;\x7f149,5118
# define pMd \x7f150,5149
# define pMu \x7f151,5170
typedef EMACS_INT printmax_t;\x7f153,5197
typedef EMACS_UINT uprintmax_t;\x7f154,5227
# define pMd \x7f155,5259
# define pMu \x7f156,5278
# define pD \x7f165,5664
# define pD \x7f167,5709
# define pD \x7f169,5756
# define pD \x7f171,5779
# define eassert(\x7f200,7062
# define eassume(\x7f201,7140
# define eassert(\x7f208,7319
# define eassume(\x7f212,7450
enum Lisp_Bits\x7f239,8519
#define GCALIGNMENT \x7f243,8647
VALBITS \x7f246,8742
INTTYPEBITS \x7f249,8838
FIXNUM_BITS \x7f252,8945
#define VAL_MAX \x7f263,9327
#define USE_LSB_TAG \x7f271,9777
DEFINE_GDB_SYMBOL_BEGIN \x7fUSE_LSB_TAG\x01270,9733
# define alignas(\x7f281,10077
# define GCALIGNED \x7f288,10227
# define GCALIGNED \x7f290,10292
# define lisp_h_XLI(\x7f327,11642
# define lisp_h_XIL(\x7f328,11673
# define lisp_h_XLI(\x7f330,11724
# define lisp_h_XIL(\x7f331,11751
#define lisp_h_CHECK_LIST_CONS(\x7f333,11785
#define lisp_h_CHECK_NUMBER(\x7f334,11856
#define lisp_h_CHECK_SYMBOL(\x7f335,11927
#define lisp_h_CHECK_TYPE(\x7f336,11996
#define lisp_h_CONSP(\x7f338,12107
#define lisp_h_EQ(\x7f339,12156
#define lisp_h_FLOATP(\x7f340,12201
#define lisp_h_INTEGERP(\x7f341,12252
#define lisp_h_MARKERP(\x7f342,12333
#define lisp_h_MISCP(\x7f343,12408
#define lisp_h_NILP(\x7f344,12457
#define lisp_h_SET_SYMBOL_VAL(\x7f345,12493
#define lisp_h_SYMBOL_CONSTANT_P(\x7f347,12607
#define lisp_h_SYMBOL_VAL(\x7f348,12671
#define lisp_h_SYMBOLP(\x7f350,12772
#define lisp_h_VECTORLIKEP(\x7f351,12825
#define lisp_h_XCAR(\x7f352,12886
#define lisp_h_XCDR(\x7f353,12924
#define lisp_h_XCONS(\x7f354,12964
#define lisp_h_XHASH(\x7f356,13059
#define lisp_h_XPNTR(\x7f357,13093
# define lisp_h_check_cons_list(\x7f360,13221
# define lisp_h_make_number(\x7f363,13289
# define lisp_h_XFASTINT(\x7f365,13392
# define lisp_h_XINT(\x7f366,13429
# define lisp_h_XSYMBOL(\x7f367,13478
# define lisp_h_XTYPE(\x7f371,13631
# define lisp_h_XUNTAG(\x7f372,13696
# define XLI(\x7f381,14086
# define XIL(\x7f382,14117
# define CHECK_LIST_CONS(\x7f383,14148
# define CHECK_NUMBER(\x7f384,14209
# define CHECK_SYMBOL(\x7f385,14258
# define CHECK_TYPE(\x7f386,14307
# define CONSP(\x7f387,14382
# define EQ(\x7f388,14417
# define FLOATP(\x7f389,14452
# define INTEGERP(\x7f390,14489
# define MARKERP(\x7f391,14530
# define MISCP(\x7f392,14569
# define NILP(\x7f393,14604
# define SET_SYMBOL_VAL(\x7f394,14637
# define SYMBOL_CONSTANT_P(\x7f395,14700
# define SYMBOL_VAL(\x7f396,14763
# define SYMBOLP(\x7f397,14812
# define VECTORLIKEP(\x7f398,14851
# define XCAR(\x7f399,14898
# define XCDR(\x7f400,14931
# define XCONS(\x7f401,14964
# define XHASH(\x7f402,14999
# define XPNTR(\x7f403,15034
# define check_cons_list(\x7f405,15097
# define make_number(\x7f408,15176
# define XFASTINT(\x7f409,15224
# define XINT(\x7f410,15266
# define XSYMBOL(\x7f411,15300
# define XTYPE(\x7f412,15340
# define XUNTAG(\x7f413,15376
#define LISP_MACRO_DEFUN(\x7f421,15672
#define LISP_MACRO_DEFUN_VOID(\x7f425,15845
#define INTMASK \x7f437,16289
#define case_Lisp_Int \x7f438,16342
#define ENUM_BF(\x7f445,16681
#define ENUM_BF(\x7f447,16722
enum Lisp_Type\x7f451,16763
Lisp_Symbol \x7f454,16851
Lisp_Misc \x7f458,16993
Lisp_Int0 \x7f461,17067
Lisp_Int1 \x7f462,17086
Lisp_String \x7f466,17264
Lisp_Vectorlike \x7f472,17543
Lisp_Cons \x7f475,17632
Lisp_Float \x7f477,17670
enum Lisp_Misc_Type\x7f485,18016
Lisp_Misc_Free \x7f487,18040
Lisp_Misc_Marker,\x7f488,18069
Lisp_Misc_Overlay,\x7f489,18091
Lisp_Misc_Save_Value,\x7f490,18114
Lisp_Misc_Finalizer,\x7f491,18140
Lisp_Misc_Float,\x7f494,18275
Lisp_Misc_Limit\x7f496,18359
enum Lisp_Fwd_Type\x7f502,18543
Lisp_Fwd_Int,\x7f504,18566
Lisp_Fwd_Bool,\x7f505,18619
Lisp_Fwd_Obj,\x7f506,18670
Lisp_Fwd_Buffer_Obj,\x7f507,18729
Lisp_Fwd_Kboard_Obj \x7f508,18800
typedef struct { EMACS_INT i; } Lisp_Object;\x7f567,21781
#define LISP_INITIALLY(\x7f569,21827
#undef CHECK_LISP_OBJECT_TYPE\x7f571,21858
enum CHECK_LISP_OBJECT_TYPE \x7f572,21888
enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE \x7f572,21888
typedef EMACS_INT Lisp_Object;\x7f577,22064
#define LISP_INITIALLY(\x7f578,22095
enum CHECK_LISP_OBJECT_TYPE \x7f579,22125
enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE \x7f579,22125
#define LISP_INITIALLY_ZERO \x7f582,22226
enum symbol_interned\x7f639,24199
SYMBOL_UNINTERNED \x7f641,24222
SYMBOL_INTERNED \x7f642,24247
SYMBOL_INTERNED_IN_INITIAL_OBARRAY \x7f643,24270
enum symbol_redirect\x7f646,24315
SYMBOL_PLAINVAL \x7f648,24338
SYMBOL_VARALIAS \x7f649,24362
SYMBOL_LOCALIZED \x7f650,24386
SYMBOL_FORWARDED \x7f651,24410
struct Lisp_Symbol\x7f654,24437
#define EXFUN(\x7f707,26252
#define DEFUN_ARGS_MANY \x7f712,26446
#define DEFUN_ARGS_UNEVALLED \x7f713,26498
#define DEFUN_ARGS_0 \x7f714,26541
#define DEFUN_ARGS_1 \x7f715,26569
#define DEFUN_ARGS_2 \x7f716,26604
#define DEFUN_ARGS_3 \x7f717,26652
#define DEFUN_ARGS_4 \x7f718,26713
#define DEFUN_ARGS_5 \x7f719,26787
#define DEFUN_ARGS_6 \x7f721,26880
#define DEFUN_ARGS_7 \x7f723,26986
#define DEFUN_ARGS_8 \x7f725,27105
#define TAG_PTR(\x7f729,27296
#define TAG_SYMOFFSET(\x7f734,27543
#define XLI_BUILTIN_LISPSYM(\x7f741,27842
#define DEFINE_LISP_SYMBOL(\x7f746,28101
# define DEFINE_NON_NIL_Q_SYMBOL_MACROS \x7f755,28572
LISP_MACRO_DEFUN \x7f762,28777
# define ARRAY_MARK_FLAG \x7f768,29024
# define PSEUDOVECTOR_FLAG \x7f774,29267
enum pvec_type\x7f780,29568
PVEC_NORMAL_VECTOR,\x7f782,29585
PVEC_FREE,\x7f783,29607
PVEC_PROCESS,\x7f784,29620
PVEC_FRAME,\x7f785,29636
PVEC_WINDOW,\x7f786,29650
PVEC_BOOL_VECTOR,\x7f787,29665
PVEC_BUFFER,\x7f788,29685
PVEC_HASH_TABLE,\x7f789,29700
PVEC_TERMINAL,\x7f790,29719
PVEC_WINDOW_CONFIGURATION,\x7f791,29736
PVEC_SUBR,\x7f792,29765
PVEC_OTHER,\x7f793,29778
PVEC_COMPILED,\x7f795,29856
PVEC_CHAR_TABLE,\x7f796,29873
PVEC_SUB_CHAR_TABLE,\x7f797,29892
PVEC_FONT \x7f798,29915
enum More_Lisp_Bits\x7f801,29991
PSEUDOVECTOR_SIZE_BITS \x7f808,30382
PSEUDOVECTOR_SIZE_MASK \x7f809,30415
PSEUDOVECTOR_REST_BITS \x7f813,30625
PSEUDOVECTOR_REST_MASK \x7f814,30658
PSEUDOVECTOR_AREA_BITS \x7f818,30823
PVEC_TYPE_MASK \x7f819,30901
# define VALMASK \x7f829,31302
DEFINE_GDB_SYMBOL_BEGIN \x7fVALMASK\x01828,31257
#define MOST_POSITIVE_FIXNUM \x7f834,31532
#define MOST_NEGATIVE_FIXNUM \x7f835,31592
XINT \x7f874,32684
XFASTINT \x7f889,33035
XSYMBOL \x7f899,33263
XTYPE \x7f910,33481
XUNTAG \x7f918,33661
LISP_MACRO_DEFUN \x7f927,33857
LISP_MACRO_DEFUN \x7f940,34242
#define FIXNUM_OVERFLOW_P(\x7f958,34855
LISP_MACRO_DEFUN \x7fFIXNUM_OVERFLOW_P\x01952,34632
LISP_MACRO_DEFUN \x7f970,35171
XSTRING \x7f980,35391
#define SYMBOL_INDEX(\x7f988,35575
XFLOAT \x7f991,35636
XPROCESS \x7f1000,35778
XWINDOW \x7f1007,35895
XTERMINAL \x7f1014,36012
XSUBR \x7f1021,36134
XBUFFER \x7f1028,36245
XCHAR_TABLE \x7f1035,36369
XSUB_CHAR_TABLE \x7f1042,36506
XBOOL_VECTOR \x7f1049,36648
make_lisp_ptr \x7f1058,36827
make_lisp_symbol \x7f1066,37013
builtin_lisp_symbol \x7f1074,37197
#define XSETINT(\x7f1079,37279
#define XSETFASTINT(\x7f1080,37325
#define XSETCONS(\x7f1081,37375
#define XSETVECTOR(\x7f1082,37435
#define XSETSTRING(\x7f1083,37503
#define XSETSYMBOL(\x7f1084,37567
#define XSETFLOAT(\x7f1085,37621
#define XSETMISC(\x7f1086,37683
#define XSETPVECTYPE(\x7f1090,37772
#define XSETPVECTYPESIZE(\x7f1092,37888
#define XSETPSEUDOVECTOR(\x7f1099,38185
#define XSETTYPED_PSEUDOVECTOR(\x7f1105,38369
#define XSETWINDOW_CONFIGURATION(\x7f1110,38579
#define XSETPROCESS(\x7f1112,38675
#define XSETWINDOW(\x7f1113,38741
#define XSETTERMINAL(\x7f1114,38805
#define XSETSUBR(\x7f1115,38873
#define XSETCOMPILED(\x7f1116,38933
#define XSETBUFFER(\x7f1117,39001
#define XSETCHAR_TABLE(\x7f1118,39065
#define XSETBOOL_VECTOR(\x7f1119,39137
#define XSETSUB_CHAR_TABLE(\x7f1120,39211
XINTPTR \x7f1128,39581
make_pointer_integer \x7f1134,39661
LISP_MACRO_DEFUN_VOID \x7f1143,39826
typedef struct interval *INTERVAL;\x7fINTERVAL\x011149,39987
xcar_addr \x7f1174,40760
xcdr_addr \x7f1179,40837
LISP_MACRO_DEFUN \x7f1185,40931
XSETCDR \x7f1198,41307
CAR \x7f1205,41457
CDR \x7f1212,41591
CAR_SAFE \x7f1221,41791
CDR_SAFE \x7f1226,41877
STRING_MULTIBYTE \x7f1243,42250
#define STRING_BYTES_BOUND \x7f1261,43057
#define STRING_SET_UNIBYTE(\x7f1265,43201
#define STRING_SET_MULTIBYTE(\x7f1275,43516
SDATA \x7f1286,43830
SSDATA \x7f1291,43908
SREF \x7f1297,44037
SSET \x7f1302,44128
SCHARS \x7f1307,44242
STRING_BYTES \x7f1316,44415
SBYTES \x7f1326,44595
STRING_SET_CHARS \x7f1331,44681
struct vectorlike_header\x7f1343,45232
struct Lisp_Vector\x7f1369,46482
ALIGNOF_STRUCT_LISP_VECTOR\x7f1378,46681
struct Lisp_Bool_Vector\x7f1384,46864
bool_vector_size \x7f1399,47385
bool_vector_data \x7f1407,47523
bool_vector_uchar_data \x7f1413,47617
bool_vector_words \x7f1421,47803
bool_vector_bytes \x7f1428,47998
bool_vector_bitref \x7f1437,48238
bool_vector_ref \x7f1445,48478
bool_vector_set \x7f1453,48618
header_size \x7f1471,49047
bool_header_size \x7f1472,49106
word_size \x7f1473,49171
AREF \x7f1479,49284
aref_addr \x7f1485,49391
ASIZE \x7f1491,49501
ASET \x7f1497,49583
gc_aset \x7f1504,49742
enum { NIL_IS_ZERO \x7f1515,50269
memclear \x7f1520,50464
#define VECSIZE(\x7f1531,50762
#define PSEUDOVECSIZE(\x7f1538,51047
#define UNSIGNED_CMP(\x7f1546,51480
#define ASCII_CHAR_P(\x7f1552,51734
enum CHARTAB_SIZE_BITS\x7f1565,52489
CHARTAB_SIZE_BITS_0 \x7f1567,52516
CHARTAB_SIZE_BITS_1 \x7f1568,52545
CHARTAB_SIZE_BITS_2 \x7f1569,52574
CHARTAB_SIZE_BITS_3 \x7f1570,52603
struct Lisp_Char_Table\x7f1575,52672
struct Lisp_Sub_Char_Table\x7f1606,53752
CHAR_TABLE_REF_ASCII \x7f1628,54566
CHAR_TABLE_REF \x7f1648,55113
CHAR_TABLE_SET \x7f1658,55402
struct Lisp_Subr\x7f1670,55786
enum char_table_specials\x7f1692,56798
CHAR_TABLE_STANDARD_SLOTS \x7f1697,56993
SUB_CHAR_TABLE_OFFSET \x7f1701,57214
CHAR_TABLE_EXTRA_SLOTS \x7f1707,57377
LISP_MACRO_DEFUN \x7f1723,57921
SYMBOL_BLV \x7f1732,58181
SYMBOL_FWD \x7f1738,58316
LISP_MACRO_DEFUN_VOID \x7f1744,58428
SET_SYMBOL_BLV \x7f1754,58691
SET_SYMBOL_FWD \x7f1760,58850
SYMBOL_NAME \x7f1767,59001
SYMBOL_INTERNED_P \x7f1775,59130
SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P \x7f1783,59299
#define DEFSYM(\x7f1796,59809
LISP_MACRO_DEFUN \x7fDEFSYM\x011792,59630
struct hash_table_test\x7f1805,60062
struct Lisp_Hash_Table\x7f1823,60555
XHASH_TABLE \x7f1880,62531
#define XSET_HASH_TABLE(\x7f1885,62602
HASH_TABLE_P \x7f1889,62703
HASH_KEY \x7f1896,62860
HASH_VALUE \x7f1903,63040
HASH_NEXT \x7f1911,63254
HASH_HASH \x7f1918,63431
HASH_INDEX \x7f1926,63677
HASH_TABLE_SIZE \x7f1933,63826
enum DEFAULT_HASH_SIZE \x7f1940,63956
enum DEFAULT_HASH_SIZE { DEFAULT_HASH_SIZE \x7f1940,63956
static double const DEFAULT_REHASH_THRESHOLD \x7f1946,64176
static double const DEFAULT_REHASH_SIZE \x7f1950,64299
sxhash_combine \x7f1956,64465
SXHASH_REDUCE \x7f1964,64648
struct Lisp_Misc_Any \x7f1971,64806
struct Lisp_Marker\x7f1978,64980
struct Lisp_Overlay\x7f2021,66841
SAVE_UNUSED,\x7f2047,67644
SAVE_INTEGER,\x7f2048,67661
SAVE_FUNCPOINTER,\x7f2049,67679
SAVE_POINTER,\x7f2050,67701
SAVE_OBJECT\x7f2051,67719
enum { SAVE_SLOT_BITS \x7f2055,67804
enum { SAVE_VALUE_SLOTS \x7f2058,67901
enum { SAVE_TYPE_BITS \x7f2062,68009
enum Lisp_Save_Type\x7f2064,68075
SAVE_TYPE_INT_INT \x7f2066,68099
SAVE_TYPE_INT_INT_INT\x7f2067,68172
SAVE_TYPE_OBJ_OBJ \x7f2069,68262
SAVE_TYPE_OBJ_OBJ_OBJ \x7f2070,68333
SAVE_TYPE_OBJ_OBJ_OBJ_OBJ\x7f2071,68414
SAVE_TYPE_PTR_INT \x7f2073,68509
SAVE_TYPE_PTR_OBJ \x7f2074,68582
SAVE_TYPE_PTR_PTR \x7f2075,68654
SAVE_TYPE_FUNCPTR_PTR_OBJ\x7f2076,68727
SAVE_TYPE_MEMORY \x7f2080,68885
typedef void (*voidfuncptr)\x7fvoidfuncptr\x012108,69839
struct Lisp_Save_Value\x7f2110,69876
save_type \x7f2134,70755
XSAVE_POINTER \x7f2143,70985
set_save_pointer \x7f2149,71147
XSAVE_FUNCPOINTER \x7f2155,71329
XSAVE_INTEGER \x7f2164,71549
set_save_integer \x7f2170,71711
XSAVE_OBJECT \x7f2179,71932
struct Lisp_Finalizer\x7f2186,72109
struct Lisp_Free\x7f2201,72584
union Lisp_Misc\x7f2212,72885
XMISC \x7f2223,73184
XMISCANY \x7f2229,73273
XMISCTYPE \x7f2236,73382
XMARKER \x7f2242,73470
XOVERLAY \x7f2249,73585
XSAVE_VALUE \x7f2256,73706
XFINALIZER \x7f2263,73835
struct Lisp_Intfwd\x7f2274,74120
struct Lisp_Boolfwd\x7f2284,74414
struct Lisp_Objfwd\x7f2294,74705
struct Lisp_Buffer_Objfwd\x7f2302,74937
struct Lisp_Buffer_Local_Value\x7f2334,76473
struct Lisp_Kboard_Objfwd\x7f2362,77732
union Lisp_Fwd\x7f2368,77841
XFWDTYPE \x7f2378,78087
XBUFFER_OBJFWD \x7f2384,78183
struct Lisp_Float\x7f2391,78319
XFLOAT_DATA \x7f2401,78437
IEEE_FLOATING_POINT\x7f2415,78946
#define _UCHAR_T\x7f2423,79269
typedef unsigned char UCHAR;\x7f2424,79286
enum Lisp_Compiled\x7f2429,79369
COMPILED_ARGLIST \x7f2431,79392
COMPILED_BYTECODE \x7f2432,79418
COMPILED_CONSTANTS \x7f2433,79445
COMPILED_STACK_DEPTH \x7f2434,79473
COMPILED_DOC_STRING \x7f2435,79503
COMPILED_INTERACTIVE \x7f2436,79532
enum char_bits\x7f2443,79834
CHAR_ALT \x7f2445,79853
CHAR_SUPER \x7f2446,79879
CHAR_HYPER \x7f2447,79907
CHAR_SHIFT \x7f2448,79935
CHAR_CTL \x7f2449,79963
CHAR_META \x7f2450,79989
CHAR_MODIFIER_MASK \x7f2452,80017
CHARACTERBITS \x7f2457,80212
LISP_MACRO_DEFUN \x7f2462,80270
NATNUMP \x7f2470,80412
RANGED_INTEGERP \x7f2476,80493
#define TYPE_RANGED_INTEGERP(\x7f2481,80615
LISP_MACRO_DEFUN \x7f2486,80800
VECTORP \x7f2500,81273
OVERLAYP \x7f2505,81376
SAVE_VALUEP \x7f2510,81475
FINALIZERP \x7f2516,81581
AUTOLOADP \x7f2522,81685
BUFFER_OBJFWDP \x7f2528,81776
PSEUDOVECTOR_TYPEP \x7f2534,81874
PSEUDOVECTORP \x7f2542,82127
WINDOW_CONFIGURATIONP \x7f2558,82479
PROCESSP \x7f2564,82589
WINDOWP \x7f2570,82673
TERMINALP \x7f2576,82755
SUBRP \x7f2582,82841
COMPILEDP \x7f2588,82919
BUFFERP \x7f2594,83005
CHAR_TABLE_P \x7f2600,83087
SUB_CHAR_TABLE_P \x7f2606,83178
BOOL_VECTOR_P \x7f2612,83277
FRAMEP \x7f2618,83370
IMAGEP \x7f2625,83487
ARRAYP \x7f2632,83592
CHECK_LIST \x7f2638,83711
LISP_MACRO_DEFUN_VOID \x7f2643,83792
CHECK_STRING_CAR \x7f2653,84089
CHECK_CONS \x7f2658,84193
CHECK_VECTOR \x7f2663,84273
CHECK_BOOL_VECTOR \x7f2668,84359
CHECK_VECTOR_OR_STRING \x7f2674,84536
CHECK_ARRAY \x7f2683,84710
CHECK_BUFFER \x7f2688,84818
CHECK_WINDOW \x7f2693,84904
CHECK_PROCESS \x7f2699,85010
CHECK_NATNUM \x7f2705,85106
#define CHECK_RANGED_INTEGER(\x7f2710,85183
#define CHECK_TYPE_RANGED_INTEGER(\x7f2721,85566
#define CHECK_NUMBER_COERCE_MARKER(\x7f2729,85836
XFLOATINT \x7f2738,86089
CHECK_NUMBER_OR_FLOAT \x7f2744,86160
#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(\x7f2749,86259
CHECK_NUMBER_CAR \x7f2760,86669
CHECK_NUMBER_CDR \x7f2768,86791
#define DEFUN(\x7f2803,88386
#define DEFUN(\x7f2812,88854
FUNCTIONP \x7f2822,89209
enum maxargs\x7f2831,89404
MANY \x7f2833,89421
UNEVALLED \x7f2834,89436
#define CALLMANY(\x7f2838,89539
#define CALLN(\x7f2844,89892
#define DEFVAR_LISP(\x7f2869,91097
#define DEFVAR_LISP_NOPRO(\x7f2874,91269
#define DEFVAR_BOOL(\x7f2879,91451
#define DEFVAR_INT(\x7f2884,91624
#define DEFVAR_BUFFER_DEFAULTS(\x7f2890,91795
#define DEFVAR_KBOARD(\x7f2896,91999
typedef jmp_buf sys_jmp_buf;\x7f2906,92323
# define sys_setjmp(\x7f2907,92352
# define sys_longjmp(\x7f2908,92387
typedef sigjmp_buf sys_jmp_buf;\x7f2910,92459
# define sys_setjmp(\x7f2911,92491
# define sys_longjmp(\x7f2912,92531
typedef jmp_buf sys_jmp_buf;\x7f2916,92690
# define sys_setjmp(\x7f2917,92719
# define sys_longjmp(\x7f2918,92753
enum specbind_tag \x7f2943,93805
SPECPDL_UNWIND,\x7f2944,93825
SPECPDL_UNWIND_PTR,\x7f2945,93894
SPECPDL_UNWIND_INT,\x7f2946,93945
SPECPDL_UNWIND_VOID,\x7f2947,93993
SPECPDL_BACKTRACE,\x7f2948,94047
SPECPDL_LET,\x7f2949,94105
SPECPDL_LET_LOCAL,\x7f2951,94235
SPECPDL_LET_DEFAULT \x7f2952,94292
union specbinding\x7f2955,94364
SPECPDL_INDEX \x7f2996,95388
enum handlertype \x7f3021,96410
enum handlertype { CATCHER,\x7f3021,96410
enum handlertype { CATCHER, CONDITION_CASE \x7f3021,96410
struct handler\x7f3023,96457
#define PUSH_HANDLER(\x7f3053,97446
#define QUIT \x7f3101,99223
#define QUITP \x7f3112,99473
struct gcpro\x7f3132,100316
#define GC_USE_GCPROS_AS_BEFORE \x7f3171,101297
#define GC_MAKE_GCPROS_NOOPS \x7f3172,101332
#define GC_MARK_STACK_CHECK_GCPROS \x7f3173,101364
#define GC_USE_GCPROS_CHECK_ZOMBIES \x7f3174,101401
#define GC_MARK_STACK \x7f3177,101462
#define BYTE_MARK_STACK \x7f3181,101562
#define GCPRO1(\x7f3190,101833
#define GCPRO2(\x7f3191,101873
#define GCPRO3(\x7f3192,101939
#define GCPRO4(\x7f3194,102034
#define GCPRO5(\x7f3196,102154
#define GCPRO6(\x7f3198,102299
#define GCPRO7(\x7f3201,102474
#define UNGCPRO \x7f3202,102553
#define GCPRO1(\x7f3208,102653
#define GCPRO2(\x7f3212,102775
#define GCPRO3(\x7f3217,102967
#define GCPRO4(\x7f3223,103229
#define GCPRO5(\x7f3230,103560
#define GCPRO6(\x7f3238,103961
#define GCPRO7(\x7f3247,104431
#define UNGCPRO \x7f3257,104971
#define GCPRO1(\x7f3263,105065
#define GCPRO2(\x7f3269,105299
#define GCPRO3(\x7f3278,105717
#define GCPRO4(\x7f3289,106274
#define GCPRO5(\x7f3302,106972
#define GCPRO6(\x7f3317,107812
#define GCPRO7(\x7f3334,108793
#define UNGCPRO \x7f3353,109916
#define RETURN_UNGCPRO(\x7f3363,110183
vcopy \x7f3384,110657
set_hash_key_slot \x7f3393,110932
set_hash_value_slot \x7f3399,111071
set_symbol_function \x7f3408,111306
set_symbol_plist \x7f3414,111421
set_symbol_next \x7f3420,111524
blv_found \x7f3428,111697
set_overlay_plist \x7f3437,111880
string_intervals \x7f3445,112031
set_string_intervals \x7f3453,112153
set_char_table_defalt \x7f3462,112355
set_char_table_purpose \x7f3467,112467
set_char_table_extras \x7f3475,112636
set_char_table_contents \x7f3482,112845
set_sub_char_table_contents \x7f3489,113040
enum Arith_Comparison \x7f3497,113303
ARITH_EQUAL,\x7f3498,113327
ARITH_NOTEQUAL,\x7f3499,113342
ARITH_LESS,\x7f3500,113360
ARITH_GRTR,\x7f3501,113374
ARITH_LESS_OR_EQUAL,\x7f3502,113388
ARITH_GRTR_OR_EQUAL\x7f3503,113411
#define INTEGER_TO_CONS(\x7f3511,113762
#define CONS_TO_INTEGER(\x7f3529,114625
enum { NEXT_ALMOST_PRIME_LIMIT \x7f3573,116329
extern EMACS_INT next_almost_prime \x7f3574,116368
enum constype \x7f3739,123820
enum constype {CONSTYPE_HEAP,\x7fCONSTYPE_HEAP\x013739,123820
enum constype {CONSTYPE_HEAP, CONSTYPE_PURE}\x7fCONSTYPE_PURE\x013739,123820
list2i \x7f3745,124010
list3i \x7f3751,124119
list4i \x7f3757,124258
extern Lisp_Object make_formatted_string \x7f3767,124634
build_pure_c_string \x7f3792,125662
build_string \x7f3801,125867
make_uninit_vector \x7f3820,126438
make_uninit_sub_char_table \x7f3833,126657
#define ALLOCATE_PSEUDOVECTOR(\x7f3850,127201
#define ALLOCATE_ZEROED_PSEUDOVECTOR(\x7f3858,127537
INLINE void \x7f3890,128943
extern void *r_alloc \x7fr_alloc\x013895,129064
#define FLOAT_TO_STRING_BUFSIZE \x7f3927,130527
intern \x7f3968,132134
intern_c_string \x7f3974,132222
extern _Noreturn void error \x7f4034,135601
fast_string_match_ignore_case \x7f4136,140089
INLINE void fixup_locale \x7f4241,143854
INLINE void synchronize_system_messages_locale \x7f4242,143889
INLINE void synchronize_system_time_locale \x7f4243,143946
#define IS_DAEMON \x7f4257,144419
#define DAEMON_RUNNING \x7f4258,144459
#define IS_DAEMON \x7f4261,144558
#define DAEMON_RUNNING \x7f4262,144603
# define WAIT_READING_MAX \x7f4281,145422
# define WAIT_READING_MAX \x7f4283,145494
extern _Noreturn void emacs_abort \x7f4374,148386
egetenv \x7f4532,152809
#define eabs(\x7f4545,153305
#define make_fixnum_or_float(\x7f4550,153438
enum MAX_ALLOCA \x7f4556,153689
enum MAX_ALLOCA { MAX_ALLOCA \x7f4556,153689
extern void *record_xmalloc \x7frecord_xmalloc\x014558,153734
#define USE_SAFE_ALLOCA \x7f4560,153800
#define AVAIL_ALLOCA(\x7f4564,153933
#define SAFE_ALLOCA(\x7f4568,154044
#define SAFE_NALLOCA(\x7f4576,154385
#define SAFE_ALLOCA_STRING(\x7f4590,154861
#define SAFE_FREE(\x7f4598,155113
#define SAFE_ALLOCA_LISP(\x7f4625,155691
# define USE_STACK_LISP_OBJECTS \x7f4652,156813
# undef USE_STACK_LISP_OBJECTS\x7f4658,156979
# define USE_STACK_LISP_OBJECTS \x7f4659,157010
enum { defined_GC_CHECK_STRING_BYTES \x7f4663,157085
enum { defined_GC_CHECK_STRING_BYTES \x7f4665,157138
union Aligned_Cons\x7f4670,157272
union Aligned_String\x7f4676,157352
USE_STACK_CONS \x7f4689,157707
USE_STACK_STRING \x7f4691,157813
#define STACK_CONS(\x7f4699,158150
#define AUTO_CONS_EXPR(\x7f4701,158247
#define AUTO_CONS(\x7f4709,158610
#define AUTO_LIST1(\x7f4710,158681
#define AUTO_LIST2(\x7f4712,158789
#define AUTO_LIST3(\x7f4716,158944
#define AUTO_LIST4(\x7f4720,159119
# define verify_ascii(\x7f4732,159510
#define AUTO_STRING(\x7f4740,159818
#define FOR_EACH_TAIL(\x7f4752,160282
#define FOR_EACH_ALIST_VALUE(\x7f4766,160773
maybe_gc \x7f4774,161060
functionp \x7f4784,161299
\f
c-src/machsyscalls.c,23
#define SYSCALL(\x7f6,113
\f
c-src/machsyscalls.h,159
SYSCALL (mach_msg_trap,\x7f1,0
SYSCALL (mach_reply_port,\x7f13,314
SYSCALL (mach_thread_self,\x7f18,377
SYSCALL (mach_task_self,\x7f23,441
SYSCALL (mach_host_self,\x7f28,503
\f
c-src/h.h,1850
ELEM_I/\x7fELEM_I\x013,15
} Fails_t;\x7f5,85
typedef void Lang_function \x7f6,96
typedef struct tpcmd\x7f8,147
#define ggg \x7f10,170
tpcmd;\x7f15,209
typedef struct foobar2_ \x7f16,216
} foobar2;\x7f20,307
DEVICE_SWP,\x7f23,333
DEVICE_LAST\x7f24,349
} bsp_DevId;\x7f25,365
struct constant_args \x7f27,394
} args;\x7f30,457
typedef int *regset;\x7fregset\x0131,465
typedef int INT;\x7f32,486
typedef union abc\x7f33,503
} ghi1;\x7f36,534
typedef union abc \x7f37,542
} ghi2;\x7f39,573
typedef struct a \x7f40,581
} b;\x7f41,600
#define c(\x7f42,605
typedef struct an_extern_linkage *an_extern_linkage_ptr;\x7fan_extern_linkage_ptr\x0143,619
typedef struct an_extern_linkage \x7f44,676
} an_extern_linkage;\x7f56,1054
typedef struct pollfd pfdset[\x7fpfdset\x0157,1075
typedef union rtunion_def\x7f58,1119
} womboid \x7f63,1206
typedef union rtunion_def\x7f64,1220
womboid\x7f75,1330
enum {dog,\x7fdog\x0181,1416
enum {dog, cat}\x7fcat\x0181,1416
enum {dog, cat} animals;\x7f81,1416
typedef void (_CALLBACK_ *signal_handler)\x7fsignal_handler\x0182,1441
typedef void (_CALLBACK_ *signal_handler1)\x7fsignal_handler1\x0183,1489
/* comment */ #define ANSIC\x7f84,1538
#define ANSIC\x7f85,1566
typedef void (proc)\x7f87,1588
typedef void OperatorFun(\x7f88,1612
typedef int f(\x7f89,1648
struct my_struct \x7f91,1691
typedef struct my_struct my_typedef;\x7f93,1713
typedef RETSIGTYPE (*signal_handler_t)\x7fsignal_handler_t\x0194,1750
Date 04 May 87 235311 PDT \x7f96,1802
typedef unsigned char unchar;\x7f99,1880
typedef int X,\x7f100,1910
typedef int X, Y,\x7f100,1910
typedef int X, Y, Z;\x7f100,1910
typedef mio mao;\x7f101,1931
typedef struct a \x7f103,1966
typedef struct a { } b;\x7f103,1966
typedef struct b\x7f104,1990
} c;\x7f106,2009
int extvar;\x7f109,2053
#define tag1\x7f110,2065
#define aaaaaa \x7f111,2078
#define bbbbbb\\x7fbbbbbb\x01113,2102
#define cccccccccc\x7f115,2125
#define enter_critical_section \x7f116,2144
#define exit_critical_to_previous \x7f117,2199
#define UNDEFINED\x7f118,2259
struct re_pattern_buffer \x7f119,2277
\f
cp-src/c.C,2094
template <typename ipc3dIslandHierarchy,\x7f1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType,\x7f1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType, unsigned numOfChannels,\x7f1,0
template <typename ipc3dIslandHierarchy, typename ipc3dChannelType, unsigned numOfChannels, typename ipc3dLinkControl,\x7f1,0
class CMultiChannelCSC19_3D\x7f2,151
void execute(\x7f11,493
int main \x7f25,1026
double base \x7f26,1088
typedef struct s1 \x7f32,1251
} t1;\x7f34,1287
struct s2 \x7f35,1293
typedef struct s2 t2;\x7f38,1324
class A \x7f39,1346
enum { rosso,\x7f40,1356
enum { rosso, giallo,\x7f40,1356
enum { rosso, giallo, verde \x7f40,1356
const A& A::operator+(\x7foperator+\x0143,1431
void operator+(\x7f44,1467
void operator -(\x7foperator -\x0145,1495
void operator int(\x7foperator int\x0146,1524
A<int>* f(\x7f48,1556
int f(\x7f49,1571
int A<int>::f(\x7ff\x0150,1590
A<float,B<int> > A<B<float>,int>::f(\x7ff\x0151,1618
template <class C, int n> class AT \x7f52,1668
class AU \x7f53,1716
class B<\x7fB\x0154,1735
class B<int> { void f(\x7f54,1735
const A::B::T& abt \x7f55,1766
class A \x7f56,1792
class A { class B \x7f56,1792
class A \x7f57,1827
A operator+(\x7f59,1861
is_muldiv_operation(\x7f61,1888
domain foo \x7f68,1956
void f(\x7f69,1969
void A::A(\x7fA\x0172,1990
struct A \x7f73,2005
struct B \x7f74,2023
void B::B(\x7fB\x0175,2042
void BE_Node::BE_Node(\x7fBE_Node\x0176,2057
class BE_Node \x7f77,2084
struct foo \x7f79,2103
class test \x7f86,2157
int f(\x7f87,2170
int ff(\x7f89,2232
int g(\x7f90,2255
class AST_Root \x7f92,2279
AST_ConcreteType::AST_ConcreteType(\x7f99,2394
AST_Array::AST_Array(\x7f107,2533
void f(\x7f115,2734
struct A \x7f117,2754
A::~A(\x7f~A\x01120,2778
struct B \x7f122,2790
~B(\x7f123,2801
enum {dog,\x7fdog\x01126,2818
enum {dog, cat}\x7fcat\x01126,2818
enum {dog, cat} animals;\x7f126,2818
struct {int teats;} cow;\x7f127,2843
class Boo \x7f129,2869
enum {dog,\x7fdog\x01130,2881
enum {dog, cat}\x7fcat\x01130,2881
foo(\x7f133,2955
Boo(\x7f137,2996
Boo::Boo(\x7f141,3071
typedef int should_see_this_one_enclosed_in_extern_C;\x7f149,3156
typedef int (*should_see_this_function_pointer)\x7fshould_see_this_function_pointer\x01153,3229
typedef int should_see_this_array_type[\x7fshould_see_this_array_type\x01156,3311
\f
cp-src/x.cc,63
class XX\x7f1,0
XX::foo(\x7ffoo\x019,60
XX::bar(\x7fbar\x0115,95
main(\x7f21,126
\f
cp-src/burton.cpp,124
::dummy::dummy test::dummy1(\x7fdummy1\x011,0
::dummy::dummy test::dummy2(\x7fdummy2\x016,64
::dummy::dummy test::dummy3(\x7fdummy3\x0111,143
\f
cp-src/functions.cpp,778
void Date::setDate \x7fsetDate\x015,148
void Date::plus \x7fplus\x0132,939
void Date::minus \x7fminus\x0142,1229
void Date::shift \x7fshift\x0152,1407
Date & Date::operator = \x7foperator =\x0162,1628
Date & Date::operator += \x7foperator +=\x0169,1789
Date & Date::operator -= \x7foperator -=\x0178,1939
Date & Date::operator ++ \x7foperator ++\x0187,2080
Date & Date::operator -- \x7foperator --\x0196,2216
int Date::operator - \x7foperator -\x01104,2331
int Date::operator < \x7foperator <\x01112,2483
int Date::operator > \x7foperator >\x01116,2557
int Date::operator == \x7foperator ==\x01120,2631
ostream& operator << \x7foperator <<\x01124,2707
istream& operator >> \x7foperator >>\x01133,2943
bool isLeap \x7f159,3543
bool isHoliday \x7f163,3629
void asort(\x7f173,3865
void ReadVacation \x7f186,4064
void Debug \x7f201,4523
int WorkingDays(\x7f211,4867
Date StartDay(\x7f226,5129
\f
cp-src/MDiagArray2.h,482
#define octave_MDiagArray2_h \x7f29,870
#undef LTGT\x7f35,967
#define LTGT\x7f39,1031
#define LTGT \x7f42,1051
class MDiagArray2 \x7f78,2022
MDiagArray2 \x7f82,2077
MDiagArray2 \x7f86,2154
MDiagArray2 \x7f87,2198
MDiagArray2 \x7f88,2254
MDiagArray2 \x7f89,2329
MDiagArray2 \x7f90,2387
MDiagArray2 \x7f91,2450
~MDiagArray2 \x7f93,2515
MDiagArray2<T>& operator = \x7foperator =\x0195,2542
operator MArray2<T> \x7foperator MArray2<T>\x01101,2667
#undef LTGT\x7f144,3874
#define INSTANTIATE_MDIAGARRAY_FRIENDS(\x7f146,3887
\f
cp-src/Range.h,275
#define octave_Range_h \x7f24,765
Range\x7f35,891
Range \x7f39,909
Range \x7f42,995
Range \x7f46,1130
Range \x7f50,1248
double base \x7f54,1376
double limit \x7f55,1425
double inc \x7f56,1475
int nelem \x7f57,1523
void set_base \x7f68,1728
void set_limit \x7f69,1774
void set_inc \x7f70,1821
\f
cp-src/screen.cpp,228
unsigned char cursor_x,\x7f15,548
unsigned char cursor_x, cursor_y;\x7f15,548
static union REGS regs;\x7f16,582
void goto_xy(\x7f18,607
void hide_cursor(\x7f27,774
void cursor_position(\x7f32,836
void clear_screen(\x7f41,997
void write_xyc(\x7f55,1247
\f
cp-src/screen.hpp,414
#define __COLORS\x7f9,401
enum COLORS \x7f11,419
BLACK,\x7f12,433
BLUE,\x7f13,471
GREEN,\x7f14,481
CYAN,\x7f15,492
RED,\x7f16,502
MAGENTA,\x7f17,511
BROWN,\x7f18,524
LIGHTGRAY,\x7f19,535
DARKGRAY,\x7f20,550
LIGHTBLUE,\x7f21,589
LIGHTGREEN,\x7f22,604
LIGHTCYAN,\x7f23,620
LIGHTRED,\x7f24,635
LIGHTMAGENTA,\x7f25,649
YELLOW,\x7f26,667
WHITE\x7f27,679
#define SCREEN_FP(\x7f31,700
#define SCREEN_START \x7f33,795
\f
cp-src/conway.cpp,288
#define max(\x7f12,357
#define min(\x7f13,393
const int num_rows \x7f15,430
const int num_columns \x7f16,470
class site *field_of_play[\x7ffield_of_play\x0118,499
int site::total_surrounding(\x7ftotal_surrounding\x0120,550
void display(\x7f37,958
void glider(\x7f50,1239
void traffic_light(\x7f59,1478
void main(\x7f67,1633
\f
cp-src/conway.hpp,164
class site:\x7fsite\x015,235
site(\x7f10,344
char read(\x7f12,410
void set(\x7f13,444
void clear(\x7f14,478
void compute_next_state(\x7f15,514
void step(\x7f22,717
\f
cp-src/clheir.cpp,359
const int max_num_generic_objects \x7f9,298
generic_object * object_registry[\x7fobject_registry\x0110,340
void init_registry(\x7f12,400
void step_everybody(\x7f19,527
void discrete_location::clear_neighbors(\x7fclear_neighbors\x0131,852
generic_object::generic_object(\x7fgeneric_object\x0136,981
generic_object::~generic_object(\x7f~generic_object\x0148,1255
void agent::move(\x7fmove\x0153,1353
\f
cp-src/clheir.hpp,423
class generic_object\x7f13,520
virtual void compute_next_state(\x7f21,843
virtual void step(\x7f22,889
const int max_num_directions \x7f31,1220
class location:\x7flocation\x0133,1290
location(\x7f43,1643
class irregular_location:\x7firregular_location\x0147,1687
irregular_location(\x7f51,1763
class discrete_location:\x7fdiscrete_location\x0156,1890
discrete_location(\x7f62,2045
void assign_neighbor(\x7f66,2185
class agent:\x7fagent\x0175,2509
\f
cp-src/fail.C,294
struct A \x7f7,263
struct B \x7f8,274
struct C \x7f9,289
C(\x7f11,318
operator int(\x7foperator int\x0112,342
typedef C T;\x7f14,389
typedef B T2;\x7f16,414
class A \x7f23,453
class B \x7f24,463
class C \x7f25,474
int f(\x7f26,488
int A::B::f(\x7ff\x0131,521
main(\x7f37,571
class D \x7f41,622
D(\x7f43,659
\f
el-src/TAGTEST.EL,148
(foo::defmumble bletch \x7f1,0
(defalias 'pending-delete-mode \x7fpending-delete-mode\x015,102
(defalias (quote explicitly-quoted-pending-delete-mode)\x7f8,175
\f
el-src/emacs/lisp/progmodes/etags.el,5069
(defvar tags-file-name \x7f34,1034
(defgroup etags \x7f43,1498
(defcustom tags-case-fold-search \x7f47,1566
(defcustom tags-table-list \x7f59,2051
(defcustom tags-compression-info-list\x7f69,2449
(defcustom tags-add-tables \x7f88,3231
(defcustom tags-revert-without-query \x7f98,3627
(defvar tags-table-computed-list \x7f103,3778
(defvar tags-table-computed-list-for \x7f112,4262
(defvar tags-table-list-pointer \x7f117,4510
(defvar tags-table-list-started-at \x7f121,4701
(defvar tags-table-set-list \x7f124,4821
(defcustom find-tag-hook \x7f129,5000
(defcustom find-tag-default-function \x7f137,5263
(define-obsolete-variable-alias 'find-tag-marker-ring-length\x7ffind-tag-marker-ring-length\x01145,5602
(defcustom tags-tag-face \x7f148,5699
(defcustom tags-apropos-verbose \x7f154,5834
(defcustom tags-apropos-additional-actions \x7f160,5998
(defvaralias 'find-tag-marker-ring \x7ffind-tag-marker-ring\x01183,6917
(defvar default-tags-table-function \x7f189,7097
(defvar tags-location-ring \x7f194,7323
(defvar tags-table-files \x7f201,7599
(defvar tags-completion-table \x7f206,7766
(defvar tags-included-tables \x7f209,7858
(defvar next-file-list \x7f212,7953
(defvar tags-table-format-functions \x7f217,8059
(defvar file-of-tag-function \x7f224,8440
(defvar tags-table-files-function \x7f228,8634
(defvar tags-completion-table-function \x7f230,8745
(defvar snarf-tag-function \x7f232,8840
(defvar goto-tag-location-function \x7f236,9049
(defvar find-tag-regexp-search-function \x7f239,9222
(defvar find-tag-regexp-tag-order \x7f241,9343
(defvar find-tag-regexp-next-line-after-failure-p \x7f243,9452
(defvar find-tag-search-function \x7f245,9572
(defvar find-tag-tag-order \x7f247,9679
(defvar find-tag-next-line-after-failure-p \x7f249,9774
(defvar list-tags-function \x7f251,9880
(defvar tags-apropos-function \x7f253,9968
(defvar tags-included-tables-function \x7f255,10062
(defvar verify-tags-table-function \x7f257,10181
(defun initialize-new-tags-table \x7f260,10292
(defun tags-table-mode \x7f276,10980
(defun visit-tags-table \x7f285,11245
(defun tags-table-check-computed-list \x7f321,12783
(defun tags-table-extend-computed-list \x7f360,14654
(defun tags-expand-table-name \x7f400,16367
(defun tags-table-list-member \x7f409,16710
(defun tags-verify-table \x7f421,17182
(defun tags-table-including \x7f470,19302
(defun tags-next-table \x7f522,21346
(defun visit-tags-table-buffer \x7f543,22203
(defun tags-reset-tags-tables \x7f712,28513
(defun file-of-tag \x7f731,29170
(defun tags-table-files \x7f740,29519
(defun tags-included-tables \x7f749,29869
(defun tags-completion-table \x7f755,30115
(defun tags-lazy-completion-table \x7f783,31309
(defun tags-completion-at-point-function \x7f799,31944
(defun find-tag-tag \x7f818,32694
(defvar last-tag \x7f837,33367
(defun find-tag-interactive \x7f840,33426
(defvar find-tag-history \x7f852,33841
(defun find-tag-noselect \x7f860,34011
(defun find-tag \x7f932,37125
(defun find-tag-other-window \x7f959,38341
(defun find-tag-other-frame \x7f1000,40269
(defun find-tag-regexp \x7f1025,41443
(defalias 'pop-tag-mark \x7fpop-tag-mark\x011049,42605
(defvar tag-lines-already-matched \x7f1052,42656
(defun find-tag-in-order \x7f1055,42763
(defun tag-find-file-of-tag-noselect \x7f1167,47109
(defun tag-find-file-of-tag \x7f1200,48955
(defun etags-recognize-tags-table \x7f1208,49181
(defun etags-verify-tags-table \x7f1241,50812
(defun etags-file-of-tag \x7f1246,51010
(defun etags-tags-completion-table \x7f1256,51345
(defun etags-snarf-tag \x7f1286,52551
(defun etags-goto-tag-location \x7f1324,54120
(defun etags-list-tags \x7f1388,56563
(defmacro tags-with-face \x7f1423,57838
(defun etags-tags-apropos-additional \x7f1431,58171
(defun etags-tags-apropos \x7f1465,59408
(defun etags-tags-table-files \x7f1527,61617
(defun etags-tags-included-tables \x7f1542,62053
(defun tags-recognize-empty-tags-table \x7f1559,62593
(defun tag-exact-file-name-match-p \x7f1587,63739
(defun tag-file-name-match-p \x7f1596,64132
(defun tag-exact-match-p \x7f1609,64688
(defun tag-implicit-name-match-p \x7f1620,65256
(defun tag-symbol-match-p \x7f1633,65856
(defun tag-word-match-p \x7f1643,66292
(defun tag-partial-file-name-match-p \x7f1652,66690
(defun tag-any-match-p \x7f1662,67134
(defun tag-re-match-p \x7f1667,67318
(defcustom tags-loop-revert-buffers \x7f1675,67567
(defun next-file \x7f1685,67976
(defvar tags-loop-operate \x7f1760,70890
(defvar tags-loop-scan\x7f1763,70984
(defun tags-loop-eval \x7f1771,71313
(defun tags-loop-continue \x7f1782,71642
(defun tags-search \x7f1850,73948
(defun tags-query-replace \x7f1871,74774
(defun tags-complete-tags-table-file \x7f1896,75998
(defun list-tags \x7f1906,76377
(defun tags-apropos \x7f1934,77330
(define-button-type 'tags-select-tags-table\x7ftags-select-tags-table\x011957,78156
(defun select-tags-table \x7f1964,78395
(defvar select-tags-table-mode-map \x7f2019,80522
(define-derived-mode select-tags-table-mode \x7f2030,80905
(defun select-tags-table-select \x7f2034,81089
(defun select-tags-table-quit \x7f2043,81455
(defun complete-tag \x7f2049,81610
(defconst etags--xref-limit \x7f2074,82551
(defvar etags-xref-find-definitions-tag-order \x7f2076,82586
(defun etags-xref-find \x7f2082,82876
(defun etags--xref-find-definitions \x7f2096,83405
(defclass xref-etags-location \x7f2129,85119
(defun xref-make-etags-location \x7f2135,85342
(cl-defmethod xref-location-marker \x7f2139,85497
(cl-defmethod xref-location-line \x7f2146,85741
\f
erl-src/gs_dialog.erl,98
-define(VERSION\x7f2,32
behaviour_info(\x7f51,2177
show(\x7f124,5458
dialog_loop(\x7f219,9529
test(\x7f252,10806
\f
f-src/entry.for,172
LOGICAL FUNCTION PRTPKG \x7f3,75
ENTRY SETPRT \x7f194,3866
ENTRY MSGSEL \x7f395,8478
& intensity1(\x7f577,12231
character*(*) function foo(\x7f579,12307
\f
f-src/entry.strange_suffix,172
LOGICAL FUNCTION PRTPKG \x7f3,75
ENTRY SETPRT \x7f194,3866
ENTRY MSGSEL \x7f395,8478
& intensity1(\x7f577,12231
character*(*) function foo(\x7f579,12307
\f
f-src/entry.strange,172
LOGICAL FUNCTION PRTPKG \x7f3,75
ENTRY SETPRT \x7f194,3866
ENTRY MSGSEL \x7f395,8478
& intensity1(\x7f577,12231
character*(*) function foo(\x7f579,12307
\f
forth-src/test-forth.fth,733
: a-forth-word\x7f20,301
99 constant a-forth-constant!\x7f22,343
55 value a-forth-value?\x7f23,373
create :a-forth-dictionary-entry\x7f24,397
defer #a-defer-word\x7f27,460
: (another-forth-word)\x7f(another-forth-word)\x0129,481
9 field >field1\x7f36,582
5 field >field2\x7f37,605
constant (a-forth-constant\x7f(a-forth-constant\x0138,628
2000 buffer: #some-storage\x7f41,657
code assemby-code-word\x7f43,685
: a-forth-word\x7f50,870
: (foo)\x7f(foo)\x0155,988
: foo\x7f56,1000
: create-bar\x7f58,1015
3 4 2constant 2const\x7f61,1074
2const 2value 2val\x7f62,1095
2variable 2var\x7f63,1114
3.1415e fconstant fconst\x7f65,1130
fconst fvalue fval\x7f66,1155
fvariable fvar\x7f67,1174
synonym mypi\x7f69,1190
BEGIN-STRUCTURE point\x7f71,1211
1 CELLS +FIELD p.x\x7f72,1262
1 CELLS +FIELD p.y\x7f73,1318
\f
go-src/test.go,48
package main\x7f1,0
func say(\x7f5,28
func main(\x7f9,72
\f
go-src/test1.go,119
package main\x7f1,0
func (s str) PrintAdd(\x7f17,136
func (n intNumber) PrintAdd(\x7f21,189
func test(\x7f25,248
func main(\x7f29,285
\f
html-src/softwarelibero.html,200
Cos'è il software libero?\x7f4,38
Licenze d'uso di un programma\x7flicenze\x0165,2500
Sfatiamo alcuni miti\x7f138,6118
Il movimento open source\x7foss\x01191,8037
Impatto pratico del software libero\x7fimpatto\x01231,10066
\f
html-src/index.shtml,104
\x7f8,281
In evidenza\x7f15,447
Comunicati e iniziative\x7f32,976
Ultime notizie dall'associazione\x7f63,2030
\f
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 Algorithms\x7f7,277
Description\x7falgorithms\x0110,481
Generating the Data\x7fgenalgorithm\x0148,1995
Convolutionally\x7fconalgorithm\x0155,2512
Next\x7fstatetable\x01262,11587
Output\x7foutputtable\x01350,13915
Mapping the Channel Symbols\x7fmapping\x01433,16213
Adding Noise to the\x7faddnoise\x01439,16607
Quantizing the Received\x7fquantizing\x01469,19100
\f
html-src/software.html,439
Francesco Potortì Software Page\x7f9,280
Software that I wrote for supporting my research activity\x7fsimulation\x0136,1398
MTG\x7fmtg\x0141,1482
Fracas\x7ffracas\x0165,2624
GaliLEO\x7fgalileo\x01101,4232
Leasqr\x7fleasqr\x01114,4677
Free software that I wrote for the GNU project or for my personal or work\x7fgnu\x01142,6065
Etags\x7fetags\x01148,6180
checkiso\x7f161,6729
cgrep\x7f178,7547
debian-bug.el\x7fdebian-bug\x01190,7979
tcpdump\x7f205,8564
Links to interesting software\x7flinks\x01216,8891
\f
lua-src/allegro.lua,400
local function get_layer_by_name \x7f7,175
local function count_layers \x7f33,621
function GetLayerByName \x7f54,980
function GetUniqueLayerName \x7f65,1204
function SelectLayer \x7f76,1415
function NewLayer \x7f86,1773
function NewLayerSet \x7f144,3226
function RemoveLayer \x7f170,3750
function MoveLayerTop \x7f211,4767
function MoveLayerBottom \x7f223,5079
function MoveLayerBefore \x7f236,5457
function MoveLayerAfter \x7f258,6090
\f
lua-src/test.lua,442
function Rectangle.getPos \x7f2,15
function Rectangle.getPos \x7fgetPos\x012,15
function Circle.getPos \x7f6,61
function Circle.getPos \x7fgetPos\x016,61
function Cube.data.getFoo \x7f10,102
function Cube.data.getFoo \x7fgetFoo\x0110,102
function Square.something:Bar \x7f14,148
function Square.something:Bar \x7fBar\x0114,148
function test.me_22a(\x7f22,241
function test.me_22a(\x7fme_22a\x0122,241
local function test.me22b \x7f25,297
local function test.me22b \x7fme22b\x0125,297
\f
make-src/Makefile,2175
LATEST=\x7f1,0
RELEASELIST=\x7f2,10
ADASRC=\x7f4,104
ASRC=\x7f5,171
CSRC=\x7f6,197
CPSRC=\x7f10,423
ELSRC=\x7f13,614
ERLSRC=\x7f14,661
FORTHSRC=\x7f15,702
FSRC=\x7f16,726
HTMLSRC=\x7f17,776
JAVASRC=\x7f18,844
LUASRC=\x7f19,907
MAKESRC=\x7f20,926
OBJCSRC=\x7f21,943
OBJCPPSRC=\x7f22,999
PASSRC=\x7f23,1035
PERLSRC=\x7f24,1053
PHPSRC=\x7f25,1108
PSSRC=\x7f26,1156
PROLSRC=\x7f27,1173
PYTSRC=\x7f28,1210
TEXSRC=\x7f29,1227
YSRC=\x7f30,1282
SRCS=\x7f31,1325
NONSRCS=\x7f35,1577
VHDLFLAGS=\x7f37,1624
COBOLFLAGS=\x7f38,1827
POSTSCRIPTFLAGS=\x7f39,1889
TCLFLAGS=\x7f40,1943
GETOPTOBJS=\x7f42,2002
RXINCLUDE=\x7f43,2034
REGEXOBJS=\x7f44,2056
CHECKOBJS=\x7f46,2075
CHECKFLAGS=\x7f47,2105
OBJS=\x7f48,2145
CPPFLAGS=\x7f49,2190
LDFLAGS=\x7f50,2259
WARNINGS=\x7f51,2282
CFLAGS=\x7f52,2466
FASTCFLAGS=\x7f55,2530
FASTCFLAGSWARN=\x7f56,2591
FILTER=\x7f58,2641
REGEX=\x7f59,2695
xx=\x7f60,2741
MAKE:\x7fMAKE\x0162,2790
RUN=\x7f63,2825
RUN=\x7f64,2865
OPTIONS=\x7f65,2870
ARGS=\x7f66,2922
infiles \x7f68,2940
quiettest:\x7fquiettest\x0170,3002
test:\x7ftest\x0179,3409
${CHECKOBJS}:\x7f${CHECKOBJS}\x0188,3805
checker:\x7fchecker\x0190,3849
standalone:\x7fstandalone\x0196,4062
prof:\x7fprof\x01101,4168
fastetags:\x7ffastetags\x01104,4198
fastctags:\x7ffastctags\x01108,4322
staticetags:\x7fstaticetags\x01112,4446
rsynctofly:\x7frsynctofly\x01116,4608
rsyncfromfly:\x7frsyncfromfly\x01119,4698
web ftp publish:\x7fweb ftp publish\x01122,4794
release distrib:\x7frelease distrib\x01129,5115
tags:\x7ftags\x01134,5255
clean:\x7fclean\x01136,5267
srclist:\x7fsrclist\x01139,5302
regexfile:\x7fregexfile\x01143,5391
/home/www/pub/etags.c.gz:\x7f/home/www/pub/etags.c.gz\x01149,5566
/home/www/pub/software/unix/etags.tar.gz:\x7f/home/www/pub/software/unix/etags.tar.gz\x01156,5825
regex.o:\x7fregex.o\x01159,6031
getopt.o:\x7fgetopt.o\x01162,6086
getopt1.o:\x7fgetopt1.o\x01165,6147
etags:\x7fetags\x01168,6210
ctags:\x7fctags\x01171,6299
man manpage:\x7fman manpage\x01174,6396
etags.1.man:\x7fetags.1.man\x01176,6422
maintaining.info:\x7fmaintaining.info\x01179,6475
TAGS:\x7fTAGS\x01182,6557
%ediff:\x7f%ediff\x01185,6587
oediff:\x7foediff\x01188,6677
%cdiff:\x7f%cdiff\x01191,6764
xdiff:\x7fxdiff\x01194,6854
ETAGS:\x7fETAGS\x01197,6942
ETAGS%:\x7fETAGS%\x01200,7012
ETAGS13 ETAGS14 ETAGS15:\x7fETAGS13 ETAGS14 ETAGS15\x01203,7084
ETAGS12:\x7fETAGS12\x01206,7216
OTAGS:\x7fOTAGS\x01209,7304
CTAGS:\x7fCTAGS\x01212,7369
CTAGS%:\x7fCTAGS%\x01215,7443
CTAGS13 CTAGS14 CTAGS15:\x7fCTAGS13 CTAGS14 CTAGS15\x01218,7545
EXTAGS:\x7fEXTAGS\x01221,7680
.PRECIOUS:\x7f.PRECIOUS\x01224,7838
FRC:\x7fFRC\x01226,7894
\f
objc-src/Subprocess.h,98
#define Subprocess \x7f41,1217
#define BUFFERSIZE \x7f43,1267
@interface Subprocess:\x7fSubprocess\x0145,1292
\f
objc-src/Subprocess.m,446
#define PTY_TEMPLATE \x7f20,494
#define PTY_LENGTH \x7f21,528
@interface Subprocess(Private)\x7f32,737
- childDidExit\x7f39,851
- fdHandler:\x7ffdHandler\x0167,1589
showError \x7f98,2360
fdHandler \x7f112,2785
getptys \x7f119,2907
- init:\x7finit\x01183,4815
andStdErr:\x7finit\x01197,5147
- send:(const char *)string withNewline:\x7fsend\x01300,7436
- send:\x7fsend\x01308,7599
- terminateInput\x7f314,7689
- terminate:\x7fterminate\x01321,7810
- setDelegate:\x7fsetDelegate\x01332,7961
- delegate\x7f338,8031
\f
objc-src/PackInsp.h,109
#define NUMSTATS \x7f36,1101
#define TYPESTOSTAT \x7f37,1120
@interface PackageInspector:\x7fPackageInspector\x0139,1172
\f
objc-src/PackInsp.m,1322
static const char RCSid[\x7fRCSid\x0130,1032
#define VERSION \x7f34,1116
# define DEBUG \x7f37,1155
#define LISTCONTENTS \x7f39,1181
#define OPENBUTTON \x7f47,1352
#define LISTCONTENTSBUTTON \x7f48,1449
#define LISTDESCRIPTIONBUTTON \x7f49,1562
#define STATE_UNINSTALLED \x7f52,1687
#define STATE_INSTALLED \x7f53,1807
#define STATE_COMPRESSD \x7f54,1948
#define SIZEFORMAT \x7f57,2152
#define KBYTES \x7f58,2362
#define MBYTES \x7f59,2473
#define LOCALIZE(\x7f61,2585
#define LOCALIZE_ARCH(\x7f62,2668
+new\x7fnew\x0167,2802
-showInfo:\x7fshowInfo\x0193,3417
-revert:\x7frevert\x01107,3737
-ok:\x7fok\x01136,4297
-load\x7fload\x01143,4424
#define LOOKUP(\x7f156,4826
#undef LOOKUP\x7f176,5694
-loadKeyValuesFrom:(const char *)type inTable:\x7floadKeyValuesFrom\x01186,5852
-loadContentsOf:(const char *)type inTable:\x7floadContentsOf\x01238,7079
-loadImage\x7floadImage\x01257,7552
#define STAT_EQ(\x7f275,7940
-(BOOL)shouldLoad\x7f280,8116
-toggleDescription\x7ftoggleDescription\x01301,8626
-(const char *)getPath:(char *)buf forType:\x7fgetPath\x01317,8899
-setRevertButtonTitle\x7fsetRevertButtonTitle\x01333,9320
-(const char *)formatSize:(const char *)size inBuf:\x7fformatSize\x01344,9525
#define WORKING \x7f368,10045
-(void)getArchs\x7f370,10100
-(void)addArchs:\x7faddArchs\x01385,10520
-subprocess:(Subprocess *)sender output:\x7fsubprocess\x01428,11351
-subprocessDone:\x7fsubprocessDone\x01436,11484
static void openInWorkspace(\x7f446,11634
-open:\x7fopen\x01464,12063
\f
objcpp-src/SimpleCalc.H,41
@interface SimpleCalc:\x7fSimpleCalc\x0114,400
\f
objcpp-src/SimpleCalc.M,445
- init\x7f52,1747
- appendToDisplay:\x7fappendToDisplay\x0160,1933
- registerAction:\x7fregisterAction\x0170,2210
- decimalKey:\x7fdecimalKey\x0177,2348
- numberKeys:\x7fnumberKeys\x0191,2661
- equalsKey:\x7fequalsKey\x01112,3192
- operationKeys:\x7foperationKeys\x01131,3680
- clearKey:\x7fclearKey\x01153,4301
- clearAllKey:\x7fclearAllKey\x01160,4410
- appDidInit:\x7fappDidInit\x01168,4591
- windowWillClose:\x7fwindowWillClose\x01178,4882
- infoPanel:\x7finfoPanel\x01186,5132
- helpPanel:\x7fhelpPanel\x01198,5482
\f
pas-src/common.pas,1875
procedure InitializeStringPackage;\x7f26,527
function newtextstring;\x7f34,874
procedure disposetextstring;\x7f52,1404
function ConcatT;\x7f78,2066
function AppendTextString;\x7f112,3238
function CopyTextString;\x7f132,3947
procedure CONVERT_CHARSTRING_TO_VALUE;\x7f151,4505
procedure append_string;\x7f172,5166
function To_Upper;\x7f186,5462
function To_Lower;\x7f194,5617
function EmptyNmStr(\x7f209,6213
function chartonmstr;\x7f219,6436
function LowerCaseNmStr;\x7f230,6682
function concatenatenamestrings;\x7f242,7007
procedure writenamestring;\x7f263,7517
function IsControlChar;\x7f277,7928
function namestringequal;\x7f283,8079
function NameStringLess;\x7f302,8539
function IsControlCharName(\x7f343,9710
function SubString;\x7f358,10208
function SkipChars;\x7f379,10791
function RemoveUnderlineControl;\x7f397,11311
procedure First100Chars;\x7f427,12162
procedure SkipSpaces;\x7f462,13298
function SkipBlanks;\x7f477,13782
function stripname;\x7f505,14595
function Locate;\x7f522,15039
function NameHasChar;\x7f543,15581
function integertonmstr;\x7f561,16134
function NmStrToInteger;\x7f585,16901
function AddNullToNmStr;\x7f600,17317
function ValToNmStr;\x7f611,17585
function ChangeFileType;\x7f625,18037
function StripPath;\x7f647,18734
function ReprOfChar;\x7f675,19343
procedure ExtractCommentInfo;\x7f702,20749
procedure INSERT_TREE_NODE;\x7f784,24053
function GetNameList;\x7f920,27926
procedure DisposeANameList(\x7f925,28010
procedure DisposeNameList;\x7f938,28340
function GetNewNameListNode;\x7f943,28409
function insertname;\x7f972,29051
procedure InitNameList;\x7f988,29471
procedure InitNameStringPool;\x7f998,29767
procedure NewNameString;\x7f1004,29867
procedure ReleaseNameString;\x7f1022,30232
procedure SDTrefStringToRec \x7f1045,30741
procedure SDTrefSkipSpaces;\x7f1059,31092
function SDTrefIsEnd \x7f1070,31323
function SDTrefGetInteger \x7f1082,31529
procedure SDTrefRecToString \x7f1303,37546
function NmStrToErrStr;\x7f1497,42305
function ErrStrToNmStr;\x7f1509,42557
function GetTextRef;\x7f1529,43112
\f
php-src/lce_functions.php,2152
define("LCE_FUNCTIONS"\x7fLCE_FUNCTIONS\x014,38
define("LCE_UNKNOWN"\x7fLCE_UNKNOWN\x019,145
define("LCE_WS"\x7fLCE_WS\x0111,194
define("LCE_COMMENT"\x7fLCE_COMMENT\x0113,244
define("LCE_COMMENT_USER"\x7fLCE_COMMENT_USER\x0115,303
define("LCE_COMMENT_TOOL"\x7fLCE_COMMENT_TOOL\x0117,366
define("LCE_MSGID"\x7fLCE_MSGID\x0119,430
define("LCE_MSGSTR"\x7fLCE_MSGSTR\x0121,488
define("LCE_TEXT"\x7fLCE_TEXT\x0123,541
define("STATE_ABORT"\x7fSTATE_ABORT\x0125,567
define("STATE_OK"\x7fSTATE_OK\x0126,595
define("STATE_LOOP"\x7fSTATE_LOOP\x0127,620
class POEntryAD \x7f29,648
function validate(\x7f31,683
function checkQuotation(\x7f59,1384
class CommentAD \x7f70,1639
function CommentAD(\x7f73,1693
function validate(\x7f83,1944
class POEntry \x7f105,2410
function POEntry(\x7f119,2711
function lineCount(\x7f135,3255
function serializeToVars(\x7f141,3365
function write(\x7f151,3800
class POReader \x7f163,4178
function gettext(\x7f177,4457
function parseFromVars(\x7f189,4705
function serializeToVars(\x7f215,5331
function POReader(\x7f229,5613
function read(\x7f243,5983
function write(\x7f259,6307
function isComment(\x7f277,6645
function comment(\x7f284,6822
function msgid(\x7f304,7247
function msgstr(\x7f320,7574
function start(\x7f340,8232
function createPOEntries(\x7f360,8644
function stripLine(\x7f394,9472
function printClassification(\x7f421,10056
function classifyLine(\x7f432,10301
function getTextDomains(\x7f471,11094
class PORManager \x7f498,11756
function PORManager(\x7f502,11822
function addPOReader(\x7f507,11896
function &getPOReader(\x7fgetPOReader\x01512,11992
function getDomainNames(\x7f517,12081
function &loadPORManager(\x7floadPORManager\x01523,12174
function fileJoin(\x7f536,12436
function lce_bindtextdomain(\x7f557,12839
function lce_textdomain(\x7f614,14530
function lce_gettext(\x7f620,14641
function lce_dgettext(\x7f626,14767
function lce(\x7f634,14966
function lce_bindtextdomain(\x7f651,15488
function lce_textdomain(\x7f656,15592
function lce_gettext(\x7f661,15674
function lce_dgettext(\x7f666,15755
function lce(\x7f670,15855
function lce_geteditcode(\x7f676,15898
\f
php-src/ptest.php,46
define("TEST"\x7fTEST\x011,0
test \x7f4,26
foo(\x7f16,200
\f
perl-src/htlmify-cystic,1197
my @section_name;\x7fsection_name\x0112,236
my @appendix_name;\x7fappendix_name\x0113,254
my @section_toc;\x7fsection_toc\x0115,274
my @appendix_toc;\x7fappendix_toc\x0116,291
my $new_tag \x7fnew_tag\x0118,310
my $appendix;\x7fappendix\x0124,409
my $section;\x7fsection\x0125,423
my $subsection;\x7fsubsection\x0126,436
my $subsubsection;\x7fsubsubsection\x0127,452
my $this_file_toc \x7fthis_file_toc\x0129,472
my %file_tocs;\x7ffile_tocs\x0130,496
my @output_files \x7foutput_files\x0132,512
my $file_index \x7ffile_index\x0133,535
my $output_file;\x7foutput_file\x0135,556
my $line;\x7fline\x0137,574
my $subsection_marker;\x7fsubsection_marker\x01161,3883
my $new;\x7fnew\x01163,3907
sub read_toc \x7f165,3917
my $entry \x7fentry\x01218,5621
my $entry \x7fentry\x01234,6077
my $entry \x7fentry\x01245,6351
my $entry \x7fentry\x01252,6536
my $entry \x7fentry\x01268,7010
my $entry \x7fentry\x01276,7204
my $entry \x7fentry\x01281,7328
my $entry \x7fentry\x01296,7698
sub finish_subsubsections \x7f302,7805
sub finish_subsections \x7f309,7987
sub finish_sections \x7f320,8310
sub finish_appendices \x7f331,8599
sub section_url_base \x7f337,8724
sub section_url_name \x7f342,8922
sub section_url \x7f355,9284
my $name \x7fname\x01357,9336
sub section_href \x7f364,9452
sub section_name \x7f368,9551
sub toc_line \x7f372,9655
sub file_end \x7f375,9750
\f
perl-src/yagrip.pl,233
sub getopt \x7f7,156
local($_,$flag,$opt,$f,$r,@temp)\x7f($_,$flag,$opt,$f,$r,@temp\x018,169
sub usage \x7f38,856
local($prog,$_,@list)\x7f($prog,$_,@list\x0139,868
local($string,$flag,@string,@temp,@last)\x7f($string,$flag,@string,@temp,@last\x0140,897
\f
perl-src/kai-test.pl,203
sub f1 \x7f2,16
sub main::f2 \x7ff2\x016,50
package Foo;\x7f10,90
sub f3 \x7f12,104
sub Bar::f4 \x7ff4\x0116,138
package Bar;\x7f20,177
sub f5 \x7f22,191
package Foo::Bar;\x7f26,225
sub f6 \x7f28,244
package main;\x7f32,278
sub f7 \x7f34,293
\f
ps-src/rfc1245.ps,2478
/FMversion \x7f12,311
/FrameDict \x7f17,500
/FMVERSION \x7f47,1307
/FMLOCAL \x7f56,1494
/FMDOCUMENT \x7f73,1766
/FMBEGINPAGE \x7f95,2279
/FMENDPAGE \x7f109,2516
/FMDEFINEFONT \x7f115,2582
/FMNORMALIZEGRAPHICS \x7f126,2725
/FMBEGINEPSF \x7f142,2955
/FMENDEPSF \x7f153,3207
/setmanualfeed \x7f158,3283
/max \x7f163,3386
/min \x7f164,3426
/inch \x7f165,3466
/pagedimen \x7f166,3485
/setpapername \x7f172,3629
/papersize \x7f190,4214
/manualpapersize \x7f211,4789
/desperatepapersize \x7f230,5211
/savematrix \x7f239,5370
/restorematrix \x7f242,5425
/dmatrix \x7f245,5475
/dpi \x7f246,5495
/freq \x7f248,5583
/sangle \x7f249,5658
/DiacriticEncoding \x7f250,5717
/.notdef \x7f251,5738
/.notdef \x7f252,5801
/.notdef \x7f253,5864
/.notdef \x7f254,5927
/.notdef \x7f255,5990
/numbersign \x7f256,6051
/parenright \x7f257,6115
/two \x7f258,6184
/less \x7f259,6251
/L \x7f260,6320
/bracketright \x7f261,6389
/i \x7f262,6459
/braceright \x7f263,6529
/Ntilde \x7f264,6598
/atilde \x7f265,6668
/iacute \x7f266,6733
/ocircumflex \x7f267,6797
/udieresis \x7f268,6858
/paragraph \x7f269,6919
/dieresis \x7f270,6983
/yen \x7f271,7050
/ordfeminine \x7f272,7109
/exclamdown \x7f273,7171
/guillemotleft \x7f274,7230
/Otilde \x7f275,7296
/quoteleft \x7f276,7357
/fraction \x7f277,7420
/periodcentered \x7f278,7490
/Acircumflex \x7f279,7549
/Icircumflex \x7f280,7610
/Uacute \x7f281,7680
/breve \x7f282,7746
/ReEncode \x7f284,7814
/graymode \x7f300,8020
/setpattern \x7f310,8184
/grayness \x7f331,8725
/normalize \x7f394,9873
/dnormalize \x7f397,9942
/lnormalize \x7f400,10014
/H \x7f403,10104
/Z \x7f406,10147
/X \x7f409,10176
/V \x7f412,10219
/N \x7f415,10260
/M \x7f418,10286
/E \x7f419,10315
/D \x7f420,10336
/O \x7f421,10358
/L \x7f423,10394
/Y \x7f430,10489
/R \x7f439,10588
/RR \x7f450,10696
/C \x7f467,10959
/U \x7f473,11004
/F \x7f477,11039
/T \x7f481,11084
/RF \x7f484,11115
/TF \x7f488,11164
/P \x7f495,11219
/PF \x7f499,11270
/S \x7f506,11344
/SF \x7f510,11384
/B \x7f517,11446
/BF \x7f521,11505
/W \x7f538,11714
/G \x7f573,12382
/A \x7f582,12525
/BEGINPRINTCODE \x7f606,12918
/ENDPRINTCODE \x7f615,13131
/gn \x7f620,13259
/cfs \x7f631,13384
/ic \x7f636,13473
/ms \x7f658,14285
/ip \x7f668,14395
/wh \x7f678,14492
/bl \x7f684,14607
/s1 \x7f690,14722
/fl \x7f691,14739
/hx \x7f698,14887
/wbytes \x7f709,15055
/BEGINBITMAPBWc \x7f713,15147
/BEGINBITMAPGRAYc \x7f716,15198
/BEGINBITMAP2BITc \x7f719,15251
/COMMONBITMAPc \x7f722,15304
/BEGINBITMAPBW \x7f739,15660
/BEGINBITMAPGRAY \x7f742,15709
/BEGINBITMAP2BIT \x7f745,15760
/COMMONBITMAP \x7f748,15811
/Fmcc \x7f765,16156
/ngrayt \x7f773,16371
/nredt \x7f774,16393
/nbluet \x7f775,16414
/ngreent \x7f776,16436
/colorsetup \x7f787,16603
/fakecolorsetup \x7f814,17370
/BITMAPCOLOR \x7f826,17636
/BITMAPCOLORc \x7f839,17926
/BITMAPGRAY \x7f855,18275
/BITMAPGRAYc \x7f858,18335
/ENDBITMAP \x7f861,18397
/fillprocs \x7f868,18497
\f
prol-src/ordsets.prolog,525
is_ordset(\x7f47,1310
list_to_ord_set(\x7f63,1688
ord_add_element(\x7f71,1867
ord_del_element(\x7f85,2344
ord_disjoint(\x7f100,2783
ord_intersect(\x7f108,2953
ord_intersection(\x7f126,3552
ord_intersection3(\x7f130,3691
ord_intersection(\x7f150,4531
ord_intersection4(\x7f154,4703
ord_intersection(\x7f176,5664
ord_intersection2(\x7f181,5812
ord_member(\x7f200,6318
ord_seteq(\x7f216,6683
ord_setproduct(\x7f225,6971
ord_subset(\x7f240,7377
ord_subtract(\x7f257,7861
ord_symdiff(\x7f265,8054
ord_union(\x7f288,8887
ord_union4(\x7f303,9352
ord_union(\x7f324,10171
ord_union_all(\x7f329,10313
\f
prol-src/natded.prolog,2319
expandmng(\x7f100,2879
normalize(\x7f116,3359
fresh_vars(\x7f125,3716
subst(\x7f138,4134
normalize_fresh(\x7f159,4660
reduce_subterm(\x7f171,5112
reduce(\x7f185,5559
free_var(\x7f196,5903
free_for(\x7f209,6246
compile_lex(\x7f231,6875
consult_lex:-\x7fconsult_lex\x01248,7384
lex(\x7f259,7754
expandsyn(\x7f267,8068
bas_syn(\x7f292,8897
compile_empty:-\x7fcompile_empty\x01310,9376
complete(\x7f328,10055
add_active(\x7f340,10527
parse(\x7f353,10949
derived_analyses(\x7f364,11341
build(\x7f378,11965
buildact(\x7f392,12521
mapsyn(\x7f412,13542
add_edge(\x7f434,14278
findcats(\x7f447,14758
normalize_tree(\x7f465,15478
normalize_trees(\x7f475,15856
expandmng_tree(\x7f486,16248
expandmng_trees(\x7f496,16614
cat(\x7f511,17013
subtree(\x7f644,21266
hypothetical_mem(\x7f653,21565
make_coor(\x7f667,22130
start_up:-\x7fstart_up\x01688,23013
tokenizeatom(\x7f710,23921
tokenize(\x7f720,24348
isoperator(\x7f752,25377
isoptab(\x7f756,25431
specialsymbol(\x7f765,25756
sstab(\x7f771,25861
parse_cgi(\x7f787,26347
keyvalseq(\x7f792,26510
andkeyvalseq(\x7f796,26609
keyval(\x7f799,26688
valseq(\x7f807,26920
plusvalseq(\x7f810,27007
val(\x7f816,27109
argvals(\x7f824,27426
commaargvals(\x7f828,27503
atomval(\x7f833,27578
atom(\x7f836,27640
action(\x7f846,28004
keyvalcgi(\x7f864,28649
keyvalscgi(\x7f865,28670
outsyn(\x7f868,28726
act(\x7f876,29060
actout(\x7f901,29906
texttreelist(\x7f912,30089
htmltreelist(\x7f918,30190
fitchtreelist(\x7f924,30304
pp_html_table_tree(\x7f938,30759
pp_html_tree(\x7f949,31113
pp_html_trees(\x7f988,32381
pp_html_table_fitch_tree(\x7f999,32769
pp_html_fitch_tree(\x7f1017,33672
removeexp(\x7f1129,39002
splitexp(\x7f1142,39490
pp_exp(\x7f1155,39990
map_word(\x7f1168,40249
pp_exps(\x7f1180,40474
pp_tree(\x7f1188,40777
pp_trees(\x7f1216,41807
pp_word_list(\x7f1225,42128
pp_word(\x7f1231,42262
pp_word_list_rest(\x7f1238,42569
pp_cat(\x7f1248,42929
pp_syn(\x7f1255,43196
pp_syn_paren(\x7f1276,43899
pp_paren(\x7f1293,44377
pp_syn_back(\x7f1300,44661
pp_bas_cat(\x7f1311,45001
writecat(\x7f1322,45409
writesubs(\x7f1351,46455
writesups(\x7f1361,46757
writelistsubs(\x7f1371,47090
pp_lam(\x7f1380,47408
pp_lam_bracket(\x7f1398,48022
pp_lam_paren(\x7f1407,48338
pp_rule(\x7f1429,49238
member(\x7f1447,49866
append_list(\x7f1451,49919
append(\x7f1456,50010
at_least_one_member(\x7f1460,50076
numbervars(\x7f1464,50171
reverse(\x7f1467,50209
select(\x7f1471,50290
select_last(\x7f1475,50357
cat_atoms(\x7f1479,50436
writelist(\x7f1485,50524
write_lex_cat(\x7f1492,50676
writebreaklex(\x7f1500,50988
write_lex(\x7f1513,51265
writebreak(\x7f1521,51541
tt:-\x7ftt\x011531,51713
mt:-\x7fmt\x011534,51784
cmt:-\x7fcmt\x011537,51878
\f
pyt-src/server.py,1438
class Controls:\x7fControls\x0117,358
def __init__(\x7f18,374
def __repr__(\x7f24,590
def __str__(\x7f34,871
class Server:\x7fServer\x0137,934
def __init__(\x7f38,948
def dump(\x7f73,2198
def __repr__(\x7f125,3896
def __str__(\x7f128,3945
class User:\x7fUser\x01131,4014
def __init__(\x7f132,4026
def __repr__(\x7f172,5445
def __str__(\x7f206,6883
def flag2str(\x7f223,7212
class LabeledEntry(\x7f232,7442
def bind(\x7f234,7525
def focus_set(\x7f236,7584
def __init__(\x7f238,7629
def ButtonBar(\x7f245,7909
def helpwin(\x7f255,8280
class ListEdit(\x7f267,8707
def __init__(\x7f269,8808
def handleList(\x7f303,10042
def handleNew(\x7f306,10094
def editItem(\x7f314,10426
def deleteItem(\x7f320,10596
def ConfirmQuit(\x7f326,10760
class ControlEdit(\x7f375,12377
def PostControls(\x7f376,12403
def GatherControls(\x7f421,13530
class ServerEdit(\x7f512,16264
def __init__(\x7f513,16289
def post(\x7f525,16629
def gather(\x7f543,17191
def nosave(\x7f547,17304
def save(\x7f551,17408
def refreshPort(\x7f556,17509
def createWidgets(\x7f561,17663
def edituser(\x7f631,20708
class UserEdit(\x7f645,20921
def __init__(\x7f646,20944
def post(\x7f658,21283
def gather(\x7f676,21841
def nosave(\x7f680,21950
def save(\x7f684,22052
def createWidgets(\x7f689,22151
class Configure(\x7f760,24879
def __init__(\x7f761,24916
def MakeDispose(\x7f772,25211
def MakeSitelist(\x7f786,25706
def editsite(\x7f794,25949
def save(\x7f797,26022
def nosave(\x7f807,26310
\f
ruby-src/test.rb,637
module ModuleExample\x7f1,0
class ClassExample\x7f2,21
def instance_method\x7f3,44
def ClassExample.class_method\x7fclass_method\x016,121
def instance_method_exclamation!\x7f9,206
def instance_method_question?\x7f12,310
def instance_method_equals=\x7finstance_method_equals=\x0115,408
def `(\x7f18,502
def +(\x7f21,592
def [](\x7f24,640
def []=(\x7f[]=\x0127,690
def <<(\x7f30,752
def ==(\x7f==\x0133,802
def <=(\x7f<=\x0136,872
def <=>(\x7f<=>\x0139,943
def ===(\x7f===\x0142,990
def module_instance_method\x7f46,1051
def ModuleExample.module_class_method\x7fmodule_class_method\x0149,1131
\f
ruby-src/test1.ru,935
class A\x7f1,0
def a(\x7f2,8
def b(\x7f5,38
module A\x7f9,57
class B\x7f10,66
ABC \x7f11,76
Def_ \x7f12,88
Xyzzy \x7f13,106
def foo!\x7f15,121
def self._bar?(\x7f_bar?\x0118,143
def qux=(\x7fqux=\x0122,194
attr_reader :foo\x7ffoo\x0126,233
attr_reader :read1 \x7fread1\x0127,254
attr_reader :read1 , :read2;\x7fread2\x0127,254
attr_reader :read1 , :read2; attr_writer :write1,\x7fwrite1=\x0127,254
attr_reader :read1 , :read2; attr_writer :write1, :write2\x7fwrite2=\x0127,254
attr_writer :bar,\x7fbar=\x0128,316
:baz,\x7fbaz=\x0129,338
:more\x7fmore=\x0130,360
attr_accessor :tee\x7ftee\x0131,382
attr_accessor :tee\x7ftee=\x0131,382
alias_method :qux,\x7fqux\x0132,405
alias_method :xyz,\x7fxyz\x0133,456
:tee ; attr_reader :subtle\x7fsubtle\x0134,479
attr_reader(:foo1,\x7ffoo1\x0135,523
attr_reader(:foo1, :bar1,\x7fbar1\x0135,523
:qux1)\x7fqux1\x0136,563
alias_method ( :foo2,\x7ffoo2\x0137,586
A::Constant \x7fConstant\x0142,655
\f
tex-src/testenv.tex,52
\newcommand{\nm}\x7f\nm\x014,77
\section{blah}\x7fblah\x018,139
\f
tex-src/gzip.texi,303
@node Top,\x7f62,2139
@node Copying,\x7f80,2652
@node Overview,\x7f83,2705
@node Sample,\x7f166,7272
@node Invoking gzip,\x7fInvoking gzip\x01210,8828
@node Advanced usage,\x7fAdvanced usage\x01357,13495
@node Environment,\x7f420,15207
@node Tapes,\x7f437,15768
@node Problems,\x7f460,16767
@node Concept Index,\x7fConcept Index\x01473,17287
\f
tex-src/texinfo.tex,30627
\def\texinfoversion{\x7f\texinfoversion\x0126,1032
\def\tie{\x7f\tie\x0149,1523
\def\gloggingall{\x7f\gloggingall\x0172,2273
\def\loggingall{\x7f\loggingall\x0173,2342
\def\onepageout#1{\x7f\onepageout\x0199,3279
\def\croppageout#1{\x7f\croppageout\x01115,4029
\def\cropmarks{\x7f\cropmarks\x01142,5089
\def\pagebody#1{\x7f\pagebody\x01144,5136
\def\ewtop{\x7f\ewtop\x01157,5591
\def\nstop{\x7f\nstop\x01158,5655
\def\ewbot{\x7f\ewbot\x01160,5738
\def\nsbot{\x7f\nsbot\x01161,5802
\def\parsearg #1{\x7f\parsearg\x01170,6101
\def\parseargx{\x7f\parseargx\x01172,6179
\def\parseargline{\x7f\parseargline\x01182,6419
\def\flushcr{\x7f\flushcr\x01186,6540
\newif\ifENV \ENVfalse \def\inENV{\x7f\inENV\x01190,6739
\def\ENVcheck{\x7f\ENVcheck\x01191,6803
\outer\def\begin{\x7f\begin\x01198,7050
\def\beginxxx #1{\x7f\beginxxx\x01200,7088
\def\end{\x7f\end\x01208,7343
\def\endxxx #1{\x7f\endxxx\x01210,7371
\def\errorE#1{\x7f\errorE\x01216,7560
\def\singlespace{\x7f\singlespace\x01222,7754
\def\@{\x7f\@\x01232,7977
\def\`{\x7f\`\x01236,8077
\def\'{\x7f\'\x01237,8089
\def\mylbrace {\x7f\mylbrace\x01241,8137
\def\myrbrace {\x7f\myrbrace\x01242,8170
\def\:{\x7f\:\x01247,8284
\def\*{\x7f\*\x01250,8338
\def\.{\x7f\.\x01253,8414
\def\w#1{\x7f\w\x01258,8645
\def\group{\x7f\group\x01268,9128
\def\Egroup{\x7f\Egroup\x01273,9292
\def\need{\x7f\need\x01289,9734
\def\needx#1{\x7f\needx\x01300,10011
\def\dots{\x7f\dots\x01339,11397
\def\page{\x7f\page\x01343,11461
\def\exdent{\x7f\exdent\x01353,11788
\def\exdentyyy #1{\x7f\exdentyyy\x01354,11821
\def\nofillexdent{\x7f\nofillexdent\x01357,11965
\def\nofillexdentyyy #1{\x7f\nofillexdentyyy\x01358,12010
\def\include{\x7f\include\x01365,12194
\def\includezzz #1{\x7f\includezzz\x01366,12229
\def\thisfile{\x7f\thisfile\x01369,12280
\def\center{\x7f\center\x01373,12343
\def\centerzzz #1{\x7f\centerzzz\x01374,12376
\def\sp{\x7f\sp\x01380,12518
\def\spxxx #1{\x7f\spxxx\x01381,12543
\def\comment{\x7f\comment\x01387,12717
\def\commentxxx #1{\x7f\commentxxx\x01390,12814
\def\ignoresections{\x7f\ignoresections\x01396,12983
\let\chapter=\relax\x7f=\relax\x01397,13005
\let\section=\relax\x7f=\relax\x01406,13250
\let\subsection=\relax\x7f=\relax\x01409,13311
\let\subsubsection=\relax\x7f=\relax\x01410,13334
\let\appendix=\relax\x7f=\relax\x01411,13360
\let\appendixsec=\relax\x7fsec=\relax\x01412,13381
\let\appendixsection=\relax\x7fsection=\relax\x01413,13405
\let\appendixsubsec=\relax\x7fsubsec=\relax\x01414,13433
\let\appendixsubsection=\relax\x7fsubsection=\relax\x01415,13460
\let\appendixsubsubsec=\relax\x7fsubsubsec=\relax\x01416,13491
\let\appendixsubsubsection=\relax\x7fsubsubsection=\relax\x01417,13521
\def\ignore{\x7f\ignore\x01423,13623
\long\def\ignorexxx #1\end ignore{\x7f\ignorexxx\x01427,13763
\def\direntry{\x7f\direntry\x01429,13822
\long\def\direntryxxx #1\end direntry{\x7f\direntryxxx\x01430,13861
\def\ifset{\x7f\ifset\x01434,13971
\def\ifsetxxx #1{\x7f\ifsetxxx\x01436,14029
\def\Eifset{\x7f\Eifset\x01440,14156
\def\ifsetfail{\x7f\ifsetfail\x01441,14170
\long\def\ifsetfailxxx #1\end ifset{\x7f\ifsetfailxxx\x01442,14226
\def\ifclear{\x7f\ifclear\x01444,14287
\def\ifclearxxx #1{\x7f\ifclearxxx\x01446,14349
\def\Eifclear{\x7f\Eifclear\x01450,14480
\def\ifclearfail{\x7f\ifclearfail\x01451,14496
\long\def\ifclearfailxxx #1\end ifclear{\x7f\ifclearfailxxx\x01452,14556
\def\set{\x7f\set\x01456,14707
\def\setxxx #1{\x7f\setxxx\x01457,14734
\def\clear{\x7f\clear\x01460,14796
\def\clearxxx #1{\x7f\clearxxx\x01461,14827
\def\iftex{\x7f\iftex\x01466,14944
\def\Eiftex{\x7f\Eiftex\x01467,14957
\def\ifinfo{\x7f\ifinfo\x01468,14971
\long\def\ifinfoxxx #1\end ifinfo{\x7f\ifinfoxxx\x01469,15021
\long\def\menu #1\end menu{\x7f\menu\x01471,15080
\def\asis#1{\x7f\asis\x01472,15109
\def\math#1{\x7f\math\x01485,15652
\def\node{\x7f\node\x01487,15696
\def\nodezzz#1{\x7f\nodezzz\x01488,15734
\def\nodexxx[#1,#2]{\x7f\nodexxx[\x01489,15765
\def\donoderef{\x7f\donoderef\x01492,15827
\def\unnumbnoderef{\x7f\unnumbnoderef\x01496,15948
\def\appendixnoderef{\x7f\appendixnoderef\x01500,16079
\expandafter\expandafter\expandafter\appendixsetref{\x7fsetref\x01501,16125
\let\refill=\relax\x7fill=\relax\x01504,16214
\def\setfilename{\x7f\setfilename\x01509,16428
\outer\def\bye{\x7f\bye\x01518,16674
\def\inforef #1{\x7f\inforef\x01520,16730
\def\inforefzzz #1,#2,#3,#4**{\x7f\inforefzzz\x01521,16768
\def\losespace #1{\x7f\losespace\x01523,16865
\def\sf{\x7f\sf\x01532,17069
\font\defbf=cmbx10 scaled \magstep1 %was 1314\x7fbf=cmbx10\x01558,17864
\font\deftt=cmtt10 scaled \magstep1\x7ftt=cmtt10\x01559,17910
\def\df{\x7f\df\x01560,17946
\def\resetmathfonts{\x7f\resetmathfonts\x01635,20540
\def\textfonts{\x7f\textfonts\x01648,21129
\def\chapfonts{\x7f\chapfonts\x01653,21344
\def\secfonts{\x7f\secfonts\x01658,21560
\def\subsecfonts{\x7f\subsecfonts\x01663,21765
\def\indexfonts{\x7f\indexfonts\x01668,21982
\def\smartitalicx{\x7f\smartitalicx\x01691,22714
\def\smartitalic#1{\x7f\smartitalic\x01692,22790
\let\cite=\smartitalic\x7f=\smartitalic\x01698,22935
\def\b#1{\x7f\b\x01700,22959
\def\t#1{\x7f\t\x01703,22994
\def\samp #1{\x7f\samp\x01706,23146
\def\key #1{\x7f\key\x01707,23179
\def\ctrl #1{\x7f\ctrl\x01708,23240
\def\tclose#1{\x7f\tclose\x01716,23442
\def\ {\x7f\\x01720,23608
\def\xkey{\x7f\xkey\x01728,23877
\def\kbdfoo#1#2#3\par{\x7f\kbdfoo\x01729,23893
\def\dmn#1{\x7f\dmn\x01738,24194
\def\kbd#1{\x7f\kbd\x01740,24221
\def\l#1{\x7f\l\x01742,24278
\def\r#1{\x7f\r\x01744,24307
\def\sc#1{\x7f\sc\x01746,24375
\def\ii#1{\x7f\ii\x01747,24418
\def\titlefont#1{\x7f\titlefont\x01755,24651
\def\titlepage{\x7f\titlepage\x01761,24754
\def\subtitlefont{\x7f\subtitlefont\x01766,24981
\def\authorfont{\x7f\authorfont\x01768,25065
\def\title{\x7f\title\x01774,25275
\def\titlezzz##1{\x7f\titlezzz\x01775,25310
\def\subtitle{\x7f\subtitle\x01783,25625
\def\subtitlezzz##1{\x7f\subtitlezzz\x01784,25666
\def\author{\x7f\author\x01787,25784
\def\authorzzz##1{\x7f\authorzzz\x01788,25821
\def\page{\x7f\page\x01794,26112
\def\Etitlepage{\x7f\Etitlepage\x01804,26281
\def\finishtitlepage{\x7f\finishtitlepage\x01817,26669
\def\evenheading{\x7f\evenheading\x01846,27677
\def\oddheading{\x7f\oddheading\x01847,27720
\def\everyheading{\x7f\everyheading\x01848,27761
\def\evenfooting{\x7f\evenfooting\x01850,27807
\def\oddfooting{\x7f\oddfooting\x01851,27850
\def\everyfooting{\x7f\everyfooting\x01852,27891
\def\headings #1 {\x7f\headings\x01893,29583
\def\HEADINGSoff{\x7f\HEADINGSoff\x01895,29632
\def\HEADINGSdouble{\x7f\HEADINGSdouble\x01904,30059
\def\HEADINGSsingle{\x7f\HEADINGSsingle\x01914,30379
\def\HEADINGSon{\x7f\HEADINGSon\x01922,30600
\def\HEADINGSafter{\x7f\HEADINGSafter\x01924,30634
\def\HEADINGSdoublex{\x7f\HEADINGSdoublex\x01926,30729
\def\HEADINGSsingleafter{\x7f\HEADINGSsingleafter\x01933,30917
\def\HEADINGSsinglex{\x7f\HEADINGSsinglex\x01934,30978
\def\today{\x7f\today\x01943,31253
\def\thistitle{\x7f\thistitle\x01958,31798
\def\settitle{\x7f\settitle\x01959,31823
\def\settitlezzz #1{\x7f\settitlezzz\x01960,31860
\def\internalBitem{\x7f\internalBitem\x01992,32790
\def\internalBitemx{\x7f\internalBitemx\x01993,32840
\def\internalBxitem "#1"{\x7f\internalBxitem\x01995,32885
\def\internalBxitemx "#1"{\x7f\internalBxitemx\x01996,32965
\def\internalBkitem{\x7f\internalBkitem\x01998,33040
\def\internalBkitemx{\x7f\internalBkitemx\x01999,33092
\def\kitemzzz #1{\x7f\kitemzzz\x011001,33139
\def\xitemzzz #1{\x7f\xitemzzz\x011004,33241
\def\itemzzz #1{\x7f\itemzzz\x011007,33344
\def\item{\x7f\item\x011037,34415
\def\itemx{\x7f\itemx\x011038,34466
\def\kitem{\x7f\kitem\x011039,34519
\def\kitemx{\x7f\kitemx\x011040,34572
\def\xitem{\x7f\xitem\x011041,34627
\def\xitemx{\x7f\xitemx\x011042,34680
\def\description{\x7f\description\x011045,34790
\def\table{\x7f\table\x011047,34840
\def\ftable{\x7f\ftable\x011052,34984
\def\Eftable{\x7f\Eftable\x011056,35130
\def\vtable{\x7f\vtable\x011059,35199
\def\Evtable{\x7f\Evtable\x011063,35345
\def\dontindex #1{\x7f\dontindex\x011066,35414
\def\fnitemindex #1{\x7f\fnitemindex\x011067,35434
\def\vritemindex #1{\x7f\vritemindex\x011068,35479
\def\tablez #1#2#3#4#5#6{\x7f\tablez\x011074,35628
\def\Edescription{\x7f\Edescription\x011077,35686
\def\itemfont{\x7f\itemfont\x011082,35888
\def\Etable{\x7f\Etable\x011090,36114
\def\itemize{\x7f\itemize\x011103,36438
\def\itemizezzz #1{\x7f\itemizezzz\x011105,36474
\def\itemizey #1#2{\x7f\itemizey\x011110,36569
\def#2{\x7f1119,36815
\def\itemcontents{\x7f\itemcontents\x011120,36856
\def\bullet{\x7f\bullet\x011123,36904
\def\minus{\x7f\minus\x011124,36931
\def\frenchspacing{\x7f\frenchspacing\x011128,37039
\def\splitoff#1#2\endmark{\x7f\splitoff\x011134,37264
\def\enumerate{\x7f\enumerate\x011140,37494
\def\enumeratezzz #1{\x7f\enumeratezzz\x011141,37533
\def\enumeratey #1 #2\endenumeratey{\x7f\enumeratey\x011142,37586
\def\thearg{\x7f\thearg\x011146,37733
\ifx\thearg\empty \def\thearg{\x7f\thearg\x011147,37752
\def\numericenumerate{\x7f\numericenumerate\x011184,39086
\def\lowercaseenumerate{\x7f\lowercaseenumerate\x011190,39216
\def\uppercaseenumerate{\x7f\uppercaseenumerate\x011203,39563
\def\startenumeration#1{\x7f\startenumeration\x011219,40053
\def\alphaenumerate{\x7f\alphaenumerate\x011227,40235
\def\capsenumerate{\x7f\capsenumerate\x011228,40270
\def\Ealphaenumerate{\x7f\Ealphaenumerate\x011229,40304
\def\Ecapsenumerate{\x7f\Ecapsenumerate\x011230,40338
\def\itemizeitem{\x7f\itemizeitem\x011234,40418
\def\newindex #1{\x7f\newindex\x011259,41275
\def\defindex{\x7f\defindex\x011268,41564
\def\newcodeindex #1{\x7f\newcodeindex\x011272,41672
\def\defcodeindex{\x7f\defcodeindex\x011279,41932
\def\synindex #1 #2 {\x7f\synindex\x011283,42112
\def\syncodeindex #1 #2 {\x7f\syncodeindex\x011292,42452
\def\doindex#1{\x7f\doindex\x011309,43131
\def\singleindexer #1{\x7f\singleindexer\x011310,43190
\def\docodeindex#1{\x7f\docodeindex\x011313,43302
\def\singlecodeindexer #1{\x7f\singlecodeindexer\x011314,43369
\def\indexdummies{\x7f\indexdummies\x011316,43427
\def\_{\x7f\_\x011317,43447
\def\w{\x7f\w\x011318,43475
\def\bf{\x7f\bf\x011319,43502
\def\rm{\x7f\rm\x011320,43531
\def\sl{\x7f\sl\x011321,43560
\def\sf{\x7f\sf\x011322,43589
\def\tt{\x7f\tt\x011323,43617
\def\gtr{\x7f\gtr\x011324,43645
\def\less{\x7f\less\x011325,43675
\def\hat{\x7f\hat\x011326,43707
\def\char{\x7f\char\x011327,43737
\def\TeX{\x7f\TeX\x011328,43769
\def\dots{\x7f\dots\x011329,43799
\def\copyright{\x7f\copyright\x011330,43832
\def\tclose##1{\x7f\tclose\x011331,43875
\def\code##1{\x7f\code\x011332,43920
\def\samp##1{\x7f\samp\x011333,43961
\def\t##1{\x7f\t\x011334,44002
\def\r##1{\x7f\r\x011335,44037
\def\i##1{\x7f\i\x011336,44072
\def\b##1{\x7f\b\x011337,44107
\def\cite##1{\x7f\cite\x011338,44142
\def\key##1{\x7f\key\x011339,44183
\def\file##1{\x7f\file\x011340,44222
\def\var##1{\x7f\var\x011341,44263
\def\kbd##1{\x7f\kbd\x011342,44302
\def\indexdummyfont#1{\x7f\indexdummyfont\x011347,44458
\def\indexdummytex{\x7f\indexdummytex\x011348,44484
\def\indexdummydots{\x7f\indexdummydots\x011349,44508
\def\indexnofonts{\x7f\indexnofonts\x011351,44534
\let\w=\indexdummyfont\x7fdummyfont\x011352,44554
\let\t=\indexdummyfont\x7fdummyfont\x011353,44577
\let\r=\indexdummyfont\x7fdummyfont\x011354,44600
\let\i=\indexdummyfont\x7fdummyfont\x011355,44623
\let\b=\indexdummyfont\x7fdummyfont\x011356,44646
\let\emph=\indexdummyfont\x7fdummyfont\x011357,44669
\let\strong=\indexdummyfont\x7fdummyfont\x011358,44695
\let\cite=\indexdummyfont\x7f=\indexdummyfont\x011359,44723
\let\sc=\indexdummyfont\x7fdummyfont\x011360,44749
\let\tclose=\indexdummyfont\x7fdummyfont\x011364,44921
\let\code=\indexdummyfont\x7fdummyfont\x011365,44949
\let\file=\indexdummyfont\x7fdummyfont\x011366,44975
\let\samp=\indexdummyfont\x7fdummyfont\x011367,45001
\let\kbd=\indexdummyfont\x7fdummyfont\x011368,45027
\let\key=\indexdummyfont\x7fdummyfont\x011369,45052
\let\var=\indexdummyfont\x7fdummyfont\x011370,45077
\let\TeX=\indexdummytex\x7fdummytex\x011371,45102
\let\dots=\indexdummydots\x7fdummydots\x011372,45126
\let\indexbackslash=0 %overridden during \printindex.\x7fbackslash=0\x011382,45378
\def\doind #1#2{\x7f\doind\x011384,45434
{\indexdummies % Must do this here, since \bf, etc expand at this stage\x7fdummies\x011386,45477
\def\rawbackslashxx{\x7f\rawbackslashxx\x011389,45617
{\indexnofonts\x7fnofonts\x011394,45879
\def\dosubind #1#2#3{\x7f\dosubind\x011405,46190
{\indexdummies % Must do this here, since \bf, etc expand at this stage\x7fdummies\x011407,46238
\def\rawbackslashxx{\x7f\rawbackslashxx\x011410,46342
{\indexnofonts\x7fnofonts\x011414,46496
\def\findex {\x7f\findex\x011443,47427
\def\kindex {\x7f\kindex\x011444,47450
\def\cindex {\x7f\cindex\x011445,47473
\def\vindex {\x7f\vindex\x011446,47496
\def\tindex {\x7f\tindex\x011447,47519
\def\pindex {\x7f\pindex\x011448,47542
\def\cindexsub {\x7f\cindexsub\x011450,47566
\def\printindex{\x7f\printindex\x011462,47893
\def\doprintindex#1{\x7f\doprintindex\x011464,47934
\def\indexbackslash{\x7f\indexbackslash\x011481,48419
\indexfonts\rm \tolerance=9500 \advance\baselineskip -1pt\x7ffonts\rm\x011482,48458
\def\initial #1{\x7f\initial\x011517,49530
\def\entry #1#2{\x7f\entry\x011523,49737
\null\nobreak\indexdotfill % Have leaders before the page number.\x7fdotfill\x011540,50384
\def\indexdotfill{\x7f\indexdotfill\x011549,50712
\def\primary #1{\x7f\primary\x011552,50818
\def\secondary #1#2{\x7f\secondary\x011556,50900
\noindent\hskip\secondaryindent\hbox{#1}\indexdotfill #2\par\x7fdotfill\x011559,50982
\newbox\partialpage\x7fialpage\x011566,51155
\def\begindoublecolumns{\x7f\begindoublecolumns\x011572,51313
\output={\global\setbox\partialpage=\x7fialpage=\x011573,51349
\def\enddoublecolumns{\x7f\enddoublecolumns\x011577,51537
\def\doublecolumnout{\x7f\doublecolumnout\x011580,51622
\dimen@=\pageheight \advance\dimen@ by-\ht\partialpage\x7fialpage\x011581,51691
\def\pagesofar{\x7f\pagesofar\x011584,51869
\def\balancecolumns{\x7f\balancecolumns\x011588,52106
\availdimen@=\pageheight \advance\availdimen@ by-\ht\partialpage\x7fialpage\x011594,52277
\dimen@=\pageheight \advance\dimen@ by-\ht\partialpage\x7fialpage\x011600,52538
\newcount \appendixno \appendixno = `\@\x7fno\x011627,53443
\def\appendixletter{\x7f\appendixletter\x011628,53484
\def\opencontents{\x7f\opencontents\x011632,53587
\def\thischapter{\x7f\thischapter\x011637,53768
\def\seccheck#1{\x7f\seccheck\x011638,53806
\def\chapternofonts{\x7f\chapternofonts\x011643,53910
\def\result{\x7f\result\x011646,53985
\def\equiv{\x7f\equiv\x011647,54020
\def\expansion{\x7f\expansion\x011648,54053
\def\print{\x7f\print\x011649,54094
\def\TeX{\x7f\TeX\x011650,54127
\def\dots{\x7f\dots\x011651,54156
\def\copyright{\x7f\copyright\x011652,54187
\def\tt{\x7f\tt\x011653,54228
\def\bf{\x7f\bf\x011654,54255
\def\w{\x7f\w\x011655,54283
\def\less{\x7f\less\x011656,54308
\def\gtr{\x7f\gtr\x011657,54339
\def\hat{\x7f\hat\x011658,54368
\def\char{\x7f\char\x011659,54397
\def\tclose##1{\x7f\tclose\x011660,54428
\def\code##1{\x7f\code\x011661,54472
\def\samp##1{\x7f\samp\x011662,54512
\def\r##1{\x7f\r\x011663,54552
\def\b##1{\x7f\b\x011664,54586
\def\key##1{\x7f\key\x011665,54620
\def\file##1{\x7f\file\x011666,54658
\def\kbd##1{\x7f\kbd\x011667,54698
\def\i##1{\x7f\i\x011669,54806
\def\cite##1{\x7f\cite\x011670,54840
\def\var##1{\x7f\var\x011671,54880
\def\emph##1{\x7f\emph\x011672,54918
\def\dfn##1{\x7f\dfn\x011673,54958
\def\thischaptername{\x7f\thischaptername\x011676,54999
\outer\def\chapter{\x7f\chapter\x011677,55038
\def\chapterzzz #1{\x7f\chapterzzz\x011678,55079
{\chapternofonts%\x7fnofonts%\x011687,55475
\global\let\section = \numberedsec\x7f=\x011692,55628
\global\let\subsection = \numberedsubsec\x7f=\x011693,55663
\global\let\subsubsection = \numberedsubsubsec\x7f=\x011694,55704
\outer\def\appendix{\x7f\appendix\x011697,55755
\def\appendixzzz #1{\x7f\appendixzzz\x011698,55798
\global\advance \appendixno by 1 \message{\x7fno\x011700,55875
\chapmacro {#1}{Appendix \appendixletter}\x7fletter\x011701,55944
\xdef\thischapter{Appendix \appendixletter: \noexpand\thischaptername}\x7fletter:\x011704,56037
{\chapternofonts%\x7fnofonts%\x011705,56109
{#1}{Appendix \appendixletter}\x7fletter\x011707,56165
\appendixnoderef %\x7fnoderef\x011710,56265
\global\let\section = \appendixsec\x7f=\x011711,56284
\global\let\subsection = \appendixsubsec\x7f=\x011712,56319
\global\let\subsubsection = \appendixsubsubsec\x7f=\x011713,56360
\outer\def\top{\x7f\top\x011716,56411
\outer\def\unnumbered{\x7f\unnumbered\x011717,56451
\def\unnumberedzzz #1{\x7f\unnumberedzzz\x011718,56498
{\chapternofonts%\x7fnofonts%\x011722,56661
\global\let\section = \unnumberedsec\x7f=\x011727,56811
\global\let\subsection = \unnumberedsubsec\x7f=\x011728,56848
\global\let\subsubsection = \unnumberedsubsubsec\x7f=\x011729,56891
\outer\def\numberedsec{\x7f\numberedsec\x011732,56944
\def\seczzz #1{\x7f\seczzz\x011733,56985
{\chapternofonts%\x7fnofonts%\x011736,57141
\outer\def\appendixsection{\x7f\appendixsection\x011745,57327
\outer\def\appendixsec{\x7f\appendixsec\x011746,57384
\def\appendixsectionzzz #1{\x7f\appendixsectionzzz\x011747,57437
\gdef\thissection{#1}\secheading {#1}{\appendixletter}\x7fletter\x011749,57549
{\chapternofonts%\x7fnofonts%\x011750,57617
{#1}{\appendixletter}\x7fletter\x011752,57673
\appendixnoderef %\x7fnoderef\x011755,57773
\outer\def\unnumberedsec{\x7f\unnumberedsec\x011759,57813
\def\unnumberedseczzz #1{\x7f\unnumberedseczzz\x011760,57866
{\chapternofonts%\x7fnofonts%\x011762,57961
\outer\def\numberedsubsec{\x7f\numberedsubsec\x011770,58129
\def\numberedsubseczzz #1{\x7f\numberedsubseczzz\x011771,58184
{\chapternofonts%\x7fnofonts%\x011774,58363
\outer\def\appendixsubsec{\x7f\appendixsubsec\x011783,58567
\def\appendixsubseczzz #1{\x7f\appendixsubseczzz\x011784,58622
\subsecheading {#1}{\appendixletter}\x7fletter\x011786,58744
{\chapternofonts%\x7fnofonts%\x011787,58809
{#1}{\appendixletter}\x7fletter\x011789,58868
\appendixnoderef %\x7fnoderef\x011792,58983
\outer\def\unnumberedsubsec{\x7f\unnumberedsubsec\x011796,59023
\def\unnumberedsubseczzz #1{\x7f\unnumberedsubseczzz\x011797,59082
{\chapternofonts%\x7fnofonts%\x011799,59183
\outer\def\numberedsubsubsec{\x7f\numberedsubsubsec\x011807,59354
\def\numberedsubsubseczzz #1{\x7f\numberedsubsubseczzz\x011808,59415
{\chapternofonts%\x7fnofonts%\x011812,59612
\outer\def\appendixsubsubsec{\x7f\appendixsubsubsec\x011823,59845
\def\appendixsubsubseczzz #1{\x7f\appendixsubsubseczzz\x011824,59906
{\appendixletter}\x7fletter\x011827,60045
{\chapternofonts%\x7fnofonts%\x011828,60111
{\appendixletter}\x7fletter\x011830,60176
\appendixnoderef %\x7fnoderef\x011834,60310
\outer\def\unnumberedsubsubsec{\x7f\unnumberedsubsubsec\x011838,60350
\def\unnumberedsubsubseczzz #1{\x7f\unnumberedsubsubseczzz\x011839,60415
{\chapternofonts%\x7fnofonts%\x011841,60522
\def\infotop{\x7f\infotop\x011851,60851
\def\infounnumbered{\x7f\infounnumbered\x011852,60889
\def\infounnumberedsec{\x7f\infounnumberedsec\x011853,60934
\def\infounnumberedsubsec{\x7f\infounnumberedsubsec\x011854,60985
\def\infounnumberedsubsubsec{\x7f\infounnumberedsubsubsec\x011855,61042
\def\infoappendix{\x7f\infoappendix\x011857,61106
\def\infoappendixsec{\x7f\infoappendixsec\x011858,61147
\def\infoappendixsubsec{\x7f\infoappendixsubsec\x011859,61194
\def\infoappendixsubsubsec{\x7f\infoappendixsubsubsec\x011860,61247
\def\infochapter{\x7f\infochapter\x011862,61307
\def\infosection{\x7f\infosection\x011863,61346
\def\infosubsection{\x7f\infosubsection\x011864,61385
\def\infosubsubsection{\x7f\infosubsubsection\x011865,61430
\global\let\section = \numberedsec\x7f=\x011870,61667
\global\let\subsection = \numberedsubsec\x7f=\x011871,61702
\global\let\subsubsection = \numberedsubsubsec\x7f=\x011872,61743
\def\majorheading{\x7f\majorheading\x011886,62250
\def\majorheadingzzz #1{\x7f\majorheadingzzz\x011887,62295
\def\chapheading{\x7f\chapheading\x011893,62528
\def\chapheadingzzz #1{\x7f\chapheadingzzz\x011894,62571
\def\heading{\x7f\heading\x011899,62766
\def\subheading{\x7f\subheading\x011901,62803
\def\subsubheading{\x7f\subsubheading\x011903,62846
\def\dobreak#1#2{\x7f\dobreak\x011910,63123
\def\setchapterstyle #1 {\x7f\setchapterstyle\x011912,63201
\def\chapbreak{\x7f\chapbreak\x011919,63456
\def\chappager{\x7f\chappager\x011920,63506
\def\chapoddpage{\x7f\chapoddpage\x011921,63544
\def\setchapternewpage #1 {\x7f\setchapternewpage\x011923,63623
\def\CHAPPAGoff{\x7f\CHAPPAGoff\x011925,63680
\def\CHAPPAGon{\x7f\CHAPPAGon\x011929,63774
\global\def\HEADINGSon{\x7f\HEADINGSon\x011932,63865
\def\CHAPPAGodd{\x7f\CHAPPAGodd\x011934,63907
\global\def\HEADINGSon{\x7f\HEADINGSon\x011937,64003
\def\CHAPFplain{\x7f\CHAPFplain\x011941,64057
\def\chfplain #1#2{\x7f\chfplain\x011945,64149
\def\unnchfplain #1{\x7f\unnchfplain\x011956,64372
\def\unnchfopen #1{\x7f\unnchfopen\x011964,64601
\def\chfopen #1#2{\x7f\chfopen\x011970,64809
\def\CHAPFopen{\x7f\CHAPFopen\x011975,64953
\def\subsecheadingbreak{\x7f\subsecheadingbreak\x011982,65171
\def\secheadingbreak{\x7f\secheadingbreak\x011985,65300
\def\secheading #1#2#3{\x7f\secheading\x011993,65582
\def\plainsecheading #1{\x7f\plainsecheading\x011994,65638
\def\secheadingi #1{\x7f\secheadingi\x011995,65681
\def\subsecheading #1#2#3#4{\x7f\subsecheading\x012006,66049
\def\subsecheadingi #1{\x7f\subsecheadingi\x012007,66116
\def\subsubsecfonts{\x7f\subsubsecfonts\x012014,66413
\def\subsubsecheading #1#2#3#4#5{\x7f\subsubsecheading\x012017,66536
\def\subsubsecheadingi #1{\x7f\subsubsecheadingi\x012018,66614
\def\startcontents#1{\x7f\startcontents\x012032,67086
\unnumbchapmacro{#1}\def\thischapter{\x7f\thischapter\x012040,67359
\outer\def\contents{\x7f\contents\x012049,67718
\outer\def\summarycontents{\x7f\summarycontents\x012057,67862
\def\secentry ##1##2##3##4{\x7f\secentry\x012067,68233
\def\unnumbsecentry ##1##2{\x7f\unnumbsecentry\x012068,68268
\def\subsecentry ##1##2##3##4##5{\x7f\subsecentry\x012069,68303
\def\unnumbsubsecentry ##1##2{\x7f\unnumbsubsecentry\x012070,68344
\def\subsubsecentry ##1##2##3##4##5##6{\x7f\subsubsecentry\x012071,68382
\def\unnumbsubsubsecentry ##1##2{\x7f\unnumbsubsubsecentry\x012072,68429
\def\chapentry#1#2#3{\x7f\chapentry\x012085,68863
\def\shortchapentry#1#2#3{\x7f\shortchapentry\x012088,68980
{#2\labelspace #1}\x7fspace\x012091,69090
\def\unnumbchapentry#1#2{\x7f\unnumbchapentry\x012094,69144
\def\shortunnumberedentry#1#2{\x7f\shortunnumberedentry\x012095,69191
\def\secentry#1#2#3#4{\x7f\secentry\x012102,69355
\def\unnumbsecentry#1#2{\x7f\unnumbsecentry\x012103,69414
\def\subsecentry#1#2#3#4#5{\x7f\subsecentry\x012106,69475
\def\unnumbsubsecentry#1#2{\x7f\unnumbsubsecentry\x012107,69545
\def\subsubsecentry#1#2#3#4#5#6{\x7f\subsubsecentry\x012110,69619
\dosubsubsecentry{#2.#3.#4.#5\labelspace#1}\x7fspace\x012111,69653
\def\unnumbsubsubsecentry#1#2{\x7f\unnumbsubsubsecentry\x012112,69704
\def\dochapentry#1#2{\x7f\dochapentry\x012123,70078
\def\dosecentry#1#2{\x7f\dosecentry\x012138,70683
\def\dosubsecentry#1#2{\x7f\dosubsecentry\x012145,70861
\def\dosubsubsecentry#1#2{\x7f\dosubsubsecentry\x012152,71046
\def\labelspace{\x7f\labelspace\x012160,71297
\def\dopageno#1{\x7f\dopageno\x012162,71332
\def\doshortpageno#1{\x7f\doshortpageno\x012163,71358
\def\chapentryfonts{\x7f\chapentryfonts\x012165,71390
\def\secentryfonts{\x7f\secentryfonts\x012166,71425
\def\point{\x7f\point\x012192,72384
\def\result{\x7f\result\x012194,72405
\def\expansion{\x7f\expansion\x012195,72478
\def\print{\x7f\print\x012196,72549
\def\equiv{\x7f\equiv\x012198,72616
\def\error{\x7f\error\x012218,73389
\def\tex{\x7f\tex\x012224,73618
\def\@{\x7f\@\x012242,74001
\gdef\sepspaces{\def {\ }}}\x7f\\x012265,74733
\def\aboveenvbreak{\x7f\aboveenvbreak\x012268,74815
\def\afterenvbreak{\x7f\afterenvbreak\x012272,74981
\def\ctl{\x7f\ctl\x012286,75492
\def\ctr{\x7f\ctr\x012287,75564
\def\cbl{\x7f\cbl\x012288,75603
\def\cbr{\x7f\cbr\x012289,75643
\def\carttop{\x7f\carttop\x012290,75682
\def\cartbot{\x7f\cartbot\x012293,75790
\long\def\cartouche{\x7f\cartouche\x012299,75930
\def\Ecartouche{\x7f\Ecartouche\x012326,76718
\def\lisp{\x7f\lisp\x012338,76853
\def\Elisp{\x7f\Elisp\x012348,77200
\def\next##1{\x7f\next\x012360,77526
\def\Eexample{\x7f\Eexample\x012364,77568
\def\Esmallexample{\x7f\Esmallexample\x012367,77615
\def\smalllispx{\x7f\smalllispx\x012373,77793
\def\Esmalllisp{\x7f\Esmalllisp\x012383,78147
\obeyspaces \obeylines \ninett \indexfonts \rawbackslash\x7ffonts\x012396,78503
\def\next##1{\x7f\next\x012397,78560
\def\display{\x7f\display\x012401,78640
\def\Edisplay{\x7f\Edisplay\x012410,78959
\def\next##1{\x7f\next\x012422,79270
\def\format{\x7f\format\x012426,79373
\def\Eformat{\x7f\Eformat\x012434,79669
\def\next##1{\x7f\next\x012437,79758
\def\flushleft{\x7f\flushleft\x012441,79810
\def\Eflushleft{\x7f\Eflushleft\x012451,80181
\def\next##1{\x7f\next\x012454,80274
\def\flushright{\x7f\flushright\x012456,80296
\def\Eflushright{\x7f\Eflushright\x012466,80668
\def\next##1{\x7f\next\x012470,80799
\def\quotation{\x7f\quotation\x012474,80857
\def\Equotation{\x7f\Equotation\x012480,81049
\def\setdeffont #1 {\x7f\setdeffont\x012493,81447
\newskip\defbodyindent \defbodyindent=.4in\x7fbodyindent\x012495,81493
\newskip\defargsindent \defargsindent=50pt\x7fargsindent\x012496,81536
\newskip\deftypemargin \deftypemargin=12pt\x7ftypemargin\x012497,81579
\newskip\deflastargmargin \deflastargmargin=18pt\x7flastargmargin\x012498,81622
\def\activeparens{\x7f\activeparens\x012503,81820
\def\opnr{\x7f\opnr\x012529,83032
\def\lbrb{\x7f\lbrb\x012530,83097
\def\defname #1#2{\x7f\defname\x012536,83298
\advance\dimen2 by -\defbodyindent\x7fbodyindent\x012540,83416
\advance\dimen3 by -\defbodyindent\x7fbodyindent\x012542,83470
\setbox0=\hbox{\hskip \deflastargmargin{\x7flastargmargin\x012544,83524
\dimen1=\hsize \advance \dimen1 by -\defargsindent %size for continuations\x7fargsindent\x012546,83666
\parshape 2 0in \dimen0 \defargsindent \dimen1 %\x7fargsindent\x012547,83741
\rlap{\rightline{{\rm #2}\hskip \deftypemargin}\x7ftypemargin\x012554,84110
\advance\leftskip by -\defbodyindent\x7fbodyindent\x012557,84244
\exdentamount=\defbodyindent\x7fbodyindent\x012558,84281
\def\defparsebody #1#2#3{\x7f\defparsebody\x012568,84640
\def#1{\x7f2572,84824
\def#2{\x7f2573,84860
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012575,84932
\exdentamount=\defbodyindent\x7fbodyindent\x012576,85006
\def\defmethparsebody #1#2#3#4 {\x7f\defmethparsebody\x012581,85110
\def#1{\x7f2585,85271
\def#2##1 {\x7f2586,85307
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012588,85390
\exdentamount=\defbodyindent\x7fbodyindent\x012589,85464
\def\defopparsebody #1#2#3#4#5 {\x7f\defopparsebody\x012592,85549
\def#1{\x7f2596,85710
\def#2##1 ##2 {\x7f2597,85746
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012600,85846
\exdentamount=\defbodyindent\x7fbodyindent\x012601,85920
\def\defvarparsebody #1#2#3{\x7f\defvarparsebody\x012608,86191
\def#1{\x7f2612,86378
\def#2{\x7f2613,86414
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012615,86473
\exdentamount=\defbodyindent\x7fbodyindent\x012616,86547
\def\defvrparsebody #1#2#3#4 {\x7f\defvrparsebody\x012621,86638
\def#1{\x7f2625,86797
\def#2##1 {\x7f2626,86833
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012628,86903
\exdentamount=\defbodyindent\x7fbodyindent\x012629,86977
\def\defopvarparsebody #1#2#3#4#5 {\x7f\defopvarparsebody\x012632,87049
\def#1{\x7f2636,87213
\def#2##1 ##2 {\x7f2637,87249
\advance\leftskip by \defbodyindent \advance \rightskip by \defbodyindent\x7fbodyindent\x012640,87336
\exdentamount=\defbodyindent\x7fbodyindent\x012641,87410
\def\defunargs #1{\x7f\defunargs\x012664,88170
\def\deftypefunargs #1{\x7f\deftypefunargs\x012676,88552
\def\deffn{\x7f\deffn\x012690,88934
\def\deffnheader #1#2#3{\x7f\deffnheader\x012692,88991
\begingroup\defname {\x7fname\x012693,89039
\def\defun{\x7f\defun\x012699,89184
\def\defunheader #1#2{\x7f\defunheader\x012701,89237
\begingroup\defname {\x7fname\x012702,89312
\defunargs {\x7funargs\x012703,89348
\def\deftypefun{\x7f\deftypefun\x012709,89496
\def\deftypefunheader #1#2{\x7f\deftypefunheader\x012712,89618
\def\deftypefunheaderx #1#2 #3\relax{\x7f\deftypefunheaderx\x012714,89727
\begingroup\defname {\x7fname\x012716,89819
\deftypefunargs {\x7ftypefunargs\x012717,89865
\def\deftypefn{\x7f\deftypefn\x012723,90036
\def\deftypefnheader #1#2#3{\x7f\deftypefnheader\x012726,90185
\def\deftypefnheaderx #1#2#3 #4\relax{\x7f\deftypefnheaderx\x012728,90321
\begingroup\defname {\x7fname\x012730,90414
\deftypefunargs {\x7ftypefunargs\x012731,90454
\def\defmac{\x7f\defmac\x012737,90575
\def\defmacheader #1#2{\x7f\defmacheader\x012739,90632
\begingroup\defname {\x7fname\x012740,90708
\defunargs {\x7funargs\x012741,90741
\def\defspec{\x7f\defspec\x012747,90865
\def\defspecheader #1#2{\x7f\defspecheader\x012749,90926
\begingroup\defname {\x7fname\x012750,91003
\defunargs {\x7funargs\x012751,91043
\def\deffnx #1 {\x7f\deffnx\x012758,91238
\def\defunx #1 {\x7f\defunx\x012759,91295
\def\defmacx #1 {\x7f\defmacx\x012760,91352
\def\defspecx #1 {\x7f\defspecx\x012761,91411
\def\deftypefnx #1 {\x7f\deftypefnx\x012762,91472
\def\deftypeunx #1 {\x7f\deftypeunx\x012763,91537
\def\defop #1 {\x7f\defop\x012769,91683
\defopparsebody\Edefop\defopx\defopheader\defoptype}\x7fopparsebody\Edefop\defopx\defopheader\defoptype\x012770,91718
\def\defopheader #1#2#3{\x7f\defopheader\x012772,91772
\begingroup\defname {\x7fname\x012774,91861
\defunargs {\x7funargs\x012775,91907
\def\defmethod{\x7f\defmethod\x012780,91968
\def\defmethodheader #1#2#3{\x7f\defmethodheader\x012782,92041
\begingroup\defname {\x7fname\x012784,92129
\defunargs {\x7funargs\x012785,92169
\def\defcv #1 {\x7f\defcv\x012790,92243
\defopvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype}\x7fopvarparsebody\Edefcv\defcvx\defcvarheader\defcvtype\x012791,92278
\def\defcvarheader #1#2#3{\x7f\defcvarheader\x012793,92337
\begingroup\defname {\x7fname\x012795,92423
\defvarargs {\x7fvarargs\x012796,92469
\def\defivar{\x7f\defivar\x012801,92542
\def\defivarheader #1#2#3{\x7f\defivarheader\x012803,92605
\begingroup\defname {\x7fname\x012805,92691
\defvarargs {\x7fvarargs\x012806,92742
\def\defopx #1 {\x7f\defopx\x012812,92891
\def\defmethodx #1 {\x7f\defmethodx\x012813,92948
\def\defcvx #1 {\x7f\defcvx\x012814,93013
\def\defivarx #1 {\x7f\defivarx\x012815,93070
\def\defvarargs #1{\x7f\defvarargs\x012822,93341
\def\defvr{\x7f\defvr\x012828,93485
\def\defvrheader #1#2#3{\x7f\defvrheader\x012830,93540
\begingroup\defname {\x7fname\x012831,93588
\def\defvar{\x7f\defvar\x012835,93673
\def\defvarheader #1#2{\x7f\defvarheader\x012837,93733
\begingroup\defname {\x7fname\x012838,93804
\defvarargs {\x7fvarargs\x012839,93840
\def\defopt{\x7f\defopt\x012844,93906
\def\defoptheader #1#2{\x7f\defoptheader\x012846,93966
\begingroup\defname {\x7fname\x012847,94037
\defvarargs {\x7fvarargs\x012848,94076
\def\deftypevar{\x7f\deftypevar\x012853,94133
\def\deftypevarheader #1#2{\x7f\deftypevarheader\x012856,94249
\begingroup\defname {\x7fname\x012858,94332
\def\deftypevr{\x7f\deftypevr\x012865,94506
\def\deftypevrheader #1#2#3{\x7f\deftypevrheader\x012867,94577
\begingroup\defname {\x7fname\x012868,94629
\def\defvrx #1 {\x7f\defvrx\x012876,94866
\def\defvarx #1 {\x7f\defvarx\x012877,94923
\def\defoptx #1 {\x7f\defoptx\x012878,94982
\def\deftypevarx #1 {\x7f\deftypevarx\x012879,95041
\def\deftypevrx #1 {\x7f\deftypevrx\x012880,95108
\def\deftpargs #1{\x7f\deftpargs\x012885,95257
\def\deftp{\x7f\deftp\x012889,95337
\def\deftpheader #1#2#3{\x7f\deftpheader\x012891,95392
\begingroup\defname {\x7fname\x012892,95440
\def\deftpx #1 {\x7f\deftpx\x012897,95599
\def\setref#1{\x7f\setref\x012908,95920
\def\unnumbsetref#1{\x7f\unnumbsetref\x012913,96034
\def\appendixsetref#1{\x7f\appendixsetref\x012918,96141
\def\pxref#1{\x7f\pxref\x012929,96552
\def\xref#1{\x7f\xref\x012930,96588
\def\ref#1{\x7f\ref\x012931,96623
\def\xrefX[#1,#2,#3,#4,#5,#6]{\x7f\xrefX[\x012932,96653
\def\printedmanual{\x7f\printedmanual\x012933,96696
\def\printednodename{\x7f\printednodename\x012934,96734
\def\printednodename{\x7f\printednodename\x012939,96859
section ``\printednodename'' in \cite{\printedmanual}\x7f\printedmanual\x012954,97492
\refx{\x7fx\x012957,97570
\def\dosetq #1#2{\x7f\dosetq\x012965,97790
\def\internalsetq #1#2{\x7f\internalsetq\x012973,98048
\def\Ypagenumber{\x7f\Ypagenumber\x012977,98149
\def\Ytitle{\x7f\Ytitle\x012979,98175
\def\Ynothing{\x7f\Ynothing\x012981,98202
\def\Ysectionnumberandtype{\x7f\Ysectionnumberandtype\x012983,98219
\def\Yappendixletterandtype{\x7f\Yappendixletterandtype\x012992,98535
\ifnum\secno=0 Appendix\xreftie'char\the\appendixno{\x7fno\x012993,98565
\else \ifnum \subsecno=0 Section\xreftie'char\the\appendixno.\the\secno %\x7fno.\the\secno\x012994,98620
Section\xreftie'char\the\appendixno.\the\secno.\the\subsecno %\x7fno.\the\secno.\the\subsecno\x012996,98724
Section\xreftie'char\the\appendixno.\the\secno.\the\subsecno.\the\subsubsecno %\x7fno.\the\secno.\the\subsecno.\the\subsubsecno\x012998,98795
\def\linenumber{\x7f\linenumber\x013009,99134
\def\refx#1#2{\x7f\refx\x013015,99318
\def\xrdef #1#2{\x7f\xrdef\x013037,99944
\def\readauxfile{\x7f\readauxfile\x013040,100029
\def\supereject{\x7f\supereject\x013110,101810
\footstrut\parindent=\defaultparindent\hang\textindent{\x7faultparindent\hang\textindent\x013131,102495
\def\openindices{\x7f\openindices\x013139,102681
\newdimen\defaultparindent \defaultparindent = 15pt\x7faultparindent\x013151,102906
\parindent = \defaultparindent\x7faultparindent\x013152,102958
\def\smallbook{\x7f\smallbook\x013175,103682
\global\def\Esmallexample{\x7f\Esmallexample\x013192,104109
\def\afourpaper{\x7f\afourpaper\x013196,104200
\def\finalout{\x7f\finalout\x013224,105008
\def\normaldoublequote{\x7f\normaldoublequote\x013235,105269
\def\normaltilde{\x7f\normaltilde\x013236,105295
\def\normalcaret{\x7f\normalcaret\x013237,105315
\def\normalunderscore{\x7f\normalunderscore\x013238,105335
\def\normalverticalbar{\x7f\normalverticalbar\x013239,105360
\def\normalless{\x7f\normalless\x013240,105386
\def\normalgreater{\x7f\normalgreater\x013241,105405
\def\normalplus{\x7f\normalplus\x013242,105427
\def\ifusingtt#1#2{\x7f\ifusingtt\x013253,105919
\def\activedoublequote{\x7f\activedoublequote\x013261,106247
\def~{\x7f~\x013264,106333
\def^{\x7f^\x013267,106394
\def_{\x7f_\x013270,106433
\def\_{\x7f\_\x013272,106507
\def\lvvmode{\x7f\lvvmode\x013279,106844
\def|{\x7f|\x013282,106894
\def<{\x7f<\x013285,106957
\def>{\x7f>\x013288,107014
\def+{\x7f+\x013290,107052
\def\turnoffactive{\x7f\turnoffactive\x013296,107213
\global\def={\x7f=\x013307,107499
\def\normalbackslash{\x7f\normalbackslash\x013321,107881
\f
c-src/c.c,76
T f(\x7f1,0
}T i;\x7f2,14
void bar(\x7f5,69
int foobar(\x7f6,94
interface_locate(\x7f9,131
\f
c.c,1807
my_printf \x7f135,
void fatala \x7f138,
max \x7f141,
struct bar \x7f143,
__attribute__ ((always_inline)) max \x7f147,
struct foo\x7f150,
char stack[\x7fstack\x01155,
struct S \x7f156,
} wait_status_ptr_t \x7f161,
Some_Class A \x7f162,
typedef T1 T3 \x7f163,
T3 z \x7f164,
typedef int more_aligned_int \x7f165,
struct S __attribute__ ((vector_size (16))) foo;\x7f166,
int foo \x7f167,
char *__attribute__((aligned(8))) *f;\x7ff\x01168,
int i \x7f169,
extern void foobar \x7f170,
typedef struct cacheLRUEntry_s\x7f172,
__attribute__ ((packed)) cacheLRUEntry_t;\x7f177,
struct foo \x7f178,
f1 \x7f183,
void f2 \x7f184,
int x \x7f188,
struct foo \x7f189,
short array[\x7farray\x01190,
int f\x7f193,
DEAFUN \x7f196,
XDEFUN \x7f203,
DEFUN ("x-get-selection-internal", Fx_get_selection_internal,\x7f206,
DEFUN ("x-get-selection-internal", Fx_get_selection_internal,\x7fx-get-selection-internal\x01206,
Fx_get_selection_internal,\x7f212,
Fx_get_selection_internal,\x7fx-get-selection-internal\x01212,
Fy_get_selection_internal,\x7f216,
Fy_get_selection_internal,\x7fy-get-selection-internal\x01216,
defun_func1(\x7f218,
DEFUN_func2(\x7f220,
typedef int bool;\x7f222,
bool funcboo \x7f223,
struct my_struct \x7f226,
typedef struct my_struct my_typedef;\x7f228,
int bla \x7f229,
a(\x7f234,
int func1\x7f237,
static struct cca_control init_control \x7f239,
static tpcmd rbtp \x7f240,
static byte ring1 \x7f241,
static byte ring2 \x7f242,
request request \x7f243,
int func2 \x7f246,
aaa;\x7f249,
bbb;\x7f251,
struct sss1 \x7f252,
struct sss2\x7f253,
struct ss3\x7f255,
struct a b;\x7f259,
struct aa *b;\x7fb\x01260,
**b;\x7fb\x01262,
caccacacca \x7f263,
a \x7f267,
typedef struct aa \x7f269,
typedef struct aa {} aaa;\x7f269,
static void inita \x7f271,
node *lasta \x7flasta\x01272,
b \x7f273,
typedef int bb;\x7f275,
static void initb \x7f277,
node *lastb \x7flastb\x01278,
typedef enum { REG_ENOSYS \x7f279,
typedef enum { REG_ENOSYS = -1, aa \x7f279,
typedef enum { REG_ENOSYS = -1, aa } reg_errcode_t;\x7f279,
\f
c-src/a/b/b.c,18
#define this \x7f1,0
\f
../c/c.web,20
#define questo \x7f34,
\f
y-src/parse.y,738
#define obstack_chunk_alloc \x7f47,1124
#define obstack_chunk_free \x7f48,1162
VOIDSTAR parse_hash;\x7f64,1413
unsigned char fnin[\x7ffnin\x0168,1532
#define YYSTYPE \x7f72,1630
typedef struct node *YYSTYPE;\x7fYYSTYPE\x0173,1661
YYSTYPE parse_return;\x7f74,1691
char *instr;\x7finstr\x0181,1803
int parse_error \x7f82,1816
line:\x7fline\x0187,1875
exp:\x7fexp\x0195,1988
exp_list:\x7fexp_list\x01263,5655
range_exp:\x7frange_exp\x01269,5753
range_exp_list:\x7frange_exp_list\x01273,5783
cell:\x7fcell\x01279,5901
yyerror FUN1(\x7f286,5948
make_list FUN2(\x7f293,6028
#define ERROR \x7f304,6228
yylex FUN0(\x7f315,6405
parse_cell_or_range FUN2(\x7f587,11771
#define CK_ABS_R(\x7f671,13213
#define CK_REL_R(\x7f675,13292
#define CK_ABS_C(\x7f680,13421
#define CK_REL_C(\x7f684,13500
#define MAYBEREL(\x7f689,13629
str_to_col FUN1(\x7f847,16830
\f
y-src/parse.c,520
#define YYBISON \x7f4,64
# define NE \x7f6,114
# define LE \x7f7,130
# define GE \x7f8,146
# define NEG \x7f9,162
# define L_CELL \x7f10,179
# define L_RANGE \x7f11,199
# define L_VAR \x7f12,220
# define L_CONST \x7f13,239
# define L_FN0 \x7f14,260
# define L_FN1 \x7f15,279
# define L_FN2 \x7f16,298
# define L_FN3 \x7f17,317
# define L_FN4 \x7f18,336
# define L_FNN \x7f19,355
# define L_FN1R \x7f20,374
# define L_FN2R \x7f21,394
# define L_FN3R \x7f22,414
# define L_FN4R \x7f23,434
# define L_FNNR \x7f24,454
# define L_LE \x7f25,474
# define L_NE \x7f26,492
# define L_GE \x7f27,510
\f
/usr/share/bison/bison.simple,1693
# define YYSTD(\x7f40,
# define YYSTD(\x7f42,
# define YYSTACK_ALLOC \x7f50,
# define YYSIZE_T \x7f51,
# define YYSTACK_ALLOC \x7f55,
# define YYSIZE_T \x7f56,
# define YYSTACK_ALLOC \x7f59,
# define YYSTACK_FREE(\x7f67,
# define YYSIZE_T \x7f71,
# define YYSIZE_T \x7f75,
# define YYSTACK_ALLOC \x7f78,
# define YYSTACK_FREE \x7f79,
union yyalloc\x7f83,
# define YYSTACK_GAP_MAX \x7f93,
# define YYSTACK_BYTES(\x7f98,
# define YYSTACK_BYTES(\x7f102,
# define YYSTACK_RELOCATE(\x7f112,
# define YYSIZE_T \x7f128,
# define YYSIZE_T \x7f131,
# define YYSIZE_T \x7f136,
# define YYSIZE_T \x7f140,
# define YYSIZE_T \x7f145,
#define yyerrok \x7f148,
#define yyclearin \x7f149,
#define YYEMPTY \x7f150,
#define YYEOF \x7f151,
#define YYACCEPT \x7f152,
#define YYABORT \x7f153,
#define YYERROR \x7f154,
#define YYFAIL \x7f158,
#define YYRECOVERING(\x7f159,
#define YYBACKUP(\x7f160,
#define YYTERROR \x7f177,
#define YYERRCODE \x7f178,
# define YYLLOC_DEFAULT(\x7f189,
# define YYLEX \x7f200,
# define YYLEX \x7f202,
# define YYLEX \x7f206,
# define YYLEX \x7f208,
# define YYLEX \x7f212,
# define YYFPRINTF \x7f225,
# define YYDPRINTF(\x7f228,
int yydebug;\x7f237,
# define YYDPRINTF(\x7f239,
# define YYINITDEPTH \x7f244,
# undef YYMAXDEPTH\x7f255,
# define YYMAXDEPTH \x7f259,
# define yymemcpy \x7f264,
yymemcpy \x7f271,
# define yystrlen \x7f293,
yystrlen \x7f298,
# define yystpcpy \x7f316,
yystpcpy \x7f322,
# define YYPARSE_PARAM_ARG \x7f351,
# define YYPARSE_PARAM_DECL\x7f352,
# define YYPARSE_PARAM_ARG \x7f354,
# define YYPARSE_PARAM_DECL \x7f355,
# define YYPARSE_PARAM_ARG\x7f358,
# define YYPARSE_PARAM_DECL\x7f359,
#define YY_DECL_NON_LSP_VARIABLES \x7f374,
# define YY_DECL_VARIABLES \x7f385,
# define YY_DECL_VARIABLES \x7f391,
yyparse \x7f403,
# define YYPOPSTACK \x7f445,
# define YYPOPSTACK \x7f447,
# undef YYSTACK_RELOCATE\x7f548,
\f
y-src/atest.y,9
exp \x7f2,3
\f
y-src/cccp.c,303
#define YYBISON \x7f4,63
# define INT \x7f6,113
# define CHAR \x7f7,130
# define NAME \x7f8,148
# define ERROR \x7f9,166
# define OR \x7f10,185
# define AND \x7f11,201
# define EQUAL \x7f12,218
# define NOTEQUAL \x7f13,237
# define LEQ \x7f14,259
# define GEQ \x7f15,276
# define LSH \x7f16,293
# define RSH \x7f17,310
# define UNARY \x7f18,327
\f
/usr/share/bison/bison.simple,2110
# define YYSTD(\x7f41,
# define YYSTD(\x7f43,
# define YYSTACK_ALLOC \x7f51,
# define YYSIZE_T \x7f52,
# define YYSTACK_ALLOC \x7f56,
# define YYSIZE_T \x7f57,
# define YYSTACK_ALLOC \x7f60,
# define YYSTACK_FREE(\x7f68,
# define YYSIZE_T \x7f72,
# define YYSIZE_T \x7f76,
# define YYSTACK_ALLOC \x7f79,
# define YYSTACK_FREE \x7f80,
union yyalloc\x7f84,
# define YYSTACK_GAP_MAX \x7f94,
# define YYSTACK_BYTES(\x7f99,
# define YYSTACK_BYTES(\x7f103,
# define YYSTACK_RELOCATE(\x7f113,
# define YYSIZE_T \x7f129,
# define YYSIZE_T \x7f132,
# define YYSIZE_T \x7f137,
# define YYSIZE_T \x7f141,
# define YYSIZE_T \x7f146,
#define yyerrok \x7f149,
#define yyclearin \x7f150,
#define YYEMPTY \x7f151,
#define YYEOF \x7f152,
#define YYACCEPT \x7f153,
#define YYABORT \x7f154,
#define YYERROR \x7f155,
#define YYFAIL \x7f159,
#define YYRECOVERING(\x7f160,
#define YYBACKUP(\x7f161,
#define YYTERROR \x7f178,
#define YYERRCODE \x7f179,
# define YYLLOC_DEFAULT(\x7f190,
# define YYLEX \x7f201,
# define YYLEX \x7f203,
# define YYLEX \x7f207,
# define YYLEX \x7f209,
# define YYLEX \x7f213,
# define YYFPRINTF \x7f226,
# define YYDPRINTF(\x7f229,
int yydebug;\x7f238,
# define YYDPRINTF(\x7f240,
# define YYINITDEPTH \x7f245,
# undef YYMAXDEPTH\x7f256,
# define YYMAXDEPTH \x7f260,
# define yymemcpy \x7f265,
yymemcpy \x7f272,
# define yystrlen \x7f294,
yystrlen \x7f299,
# define yystpcpy \x7f317,
yystpcpy \x7f323,
# define YYPARSE_PARAM_ARG \x7f351,
# define YYPARSE_PARAM_DECL\x7f352,
# define YYPARSE_PARAM_ARG \x7f354,
# define YYPARSE_PARAM_DECL \x7f355,
# define YYPARSE_PARAM_ARG\x7f358,
# define YYPARSE_PARAM_DECL\x7f359,
#define YY_DECL_NON_LSP_VARIABLES \x7f374,
# define YY_DECL_VARIABLES \x7f385,
# define YY_DECL_VARIABLES \x7f391,
yyparse \x7f403,
# define YYPOPSTACK \x7f445,
# define YYPOPSTACK \x7f447,
# undef YYSTACK_RELOCATE\x7f548,
*++yyvsp \x7fyyvsp\x01746,
*++yylsp \x7fyylsp\x01748,
yyn \x7f755,
yystate \x7f757,
yystate \x7f761,
goto yynewstate;\x7f763,
goto yyerrlab1;\x7f823,
yyerrstatus \x7f846,
goto yyerrhandle;\x7f848,
yyn \x7f861,
yystate \x7f875,
yyn \x7f895,
yyn \x7f903,
*++yyvsp \x7fyyvsp\x01919,
*++yylsp \x7fyylsp\x01921,
yystate \x7f924,
goto yynewstate;\x7f925,
yyresult \x7f932,
goto yyreturn;\x7f933,
yyresult \x7f939,
goto yyreturn;\x7f940,
yyresult \x7f947,
\f
y-src/cccp.y,1107
typedef unsigned char U_CHAR;\x7f38,1201
struct arglist \x7f41,1301
#define NULL \x7f51,1468
#define GENERIC_PTR \x7f56,1578
#define GENERIC_PTR \x7f58,1611
#define NULL_PTR \x7f63,1670
int expression_value;\x7f68,1743
static jmp_buf parse_return_error;\x7f70,1766
static int keyword_parsing \x7f73,1865
#define CHAR_TYPE_SIZE \x7f87,2162
#define INT_TYPE_SIZE \x7f91,2229
#define LONG_TYPE_SIZE \x7f95,2296
#define WCHAR_TYPE_SIZE \x7f99,2365
#define possible_sum_sign(\x7f104,2556
struct constant \x7f112,2733
struct name \x7f113,2789
start \x7f143,3226
exp1 \x7f148,3330
exp \x7f156,3505
exp \x7f185,4295
keywords \x7f306,7835
static char *lexptr;\x7flexptr\x01332,8579
parse_number \x7f341,8842
struct token \x7f437,11038
static struct token tokentab2[\x7ftokentab2\x01442,11088
yylex \x7f459,11367
parse_escape \x7f740,17718
yyerror \x7f836,19599
integer_overflow \x7f844,19690
left_shift \x7f851,19804
right_shift \x7f873,20194
parse_c_expression \x7f893,20732
main \x7f923,21483
unsigned char is_idchar[\x7fis_idchar\x01948,21901
unsigned char is_idstart[\x7fis_idstart\x01950,21996
char is_hor_space[\x7fis_hor_space\x01953,22160
initialize_random_junk \x7f958,22259
error \x7f988,22915
warning \x7f993,22963
lookup \x7f999,23033
\f
tex-src/nonewline.tex,0
\f
php-src/sendmail.php,0
\f
c-src/fail.c,0
\f
a-src/empty.zz,0
|