ramp 0.4.0

A high-performance multiple-precision arithmetic library
Documentation
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
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
AShow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^trait AShow : Arbitrary + Debug {}$/;"	t
AVAILABLE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        static AVAILABLE: AtomicBool = ATOMIC_BOOL_INIT;$/;"	c
AddRef	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    fn AddRef() -> ULONG,$/;"	f
Arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^pub trait Arbitrary : Clone + Send + 'static {$/;"	t
ArchSpec	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^        enum ArchSpec {$/;"	g
AsciiGenerator	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct AsciiGenerator<'a, R:'a> {$/;"	s
B	/Users/micro/projects/ramp/src/ll/limb.rs	/^                const B:Word = Wrapping(1usize << BITS);$/;"	c
B	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub const B : Limb = Limb(1 << (Limb::BITS \/ 2));$/;"	c
BASE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub const BASE: DoubleBigDigit = 1 << BITS;$/;"	c
BASES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^            const BASES: [(u32, usize); 257] = [$/;"	c
BASES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^            const BASES: [(u64, usize); 257] = [$/;"	c
BITS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub const BITS: usize = 32;$/;"	c
BITS	/Users/micro/projects/ramp/src/ll/limb.rs	/^                const BITS:usize = Limb::BITS \/ 2;$/;"	c
BITS	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub const BITS : usize = 32;$/;"	c
BITS	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub const BITS : usize = 64;$/;"	c
BIT_TESTS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const BIT_TESTS: &'static [(&'static [BigDigit],$/;"	c
BOOLEAN	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    type BOOLEAN = u8;$/;"	T
BSTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type BSTR = *mut OLECHAR;$/;"	T
BStr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^pub struct BStr(BSTR);$/;"	s
Base	/Users/micro/projects/ramp/src/ll/base.rs	/^struct Base {$/;"	s
BaseInt	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub type BaseInt = u32;$/;"	T
BaseInt	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub type BaseInt = u64;$/;"	T
BigDigit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub type BigDigit = u32;$/;"	T
BigInt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^pub struct BigInt {$/;"	s
BigUint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^pub struct BigUint {$/;"	s
BitOp	/Users/micro/projects/ramp/src/int.rs	/^enum BitOp { And, Or, Xor }$/;"	g
Bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            type Bits = $bits;$/;"	T
Bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    type Bits: Bits;$/;"	T
Bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^pub trait Bits: Eq + PartialEq + PartialOrd + Ord + Copy {$/;"	t
Bounded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^pub trait Bounded {$/;"	t
Bounds	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^struct Bounds {$/;"	s
Bounds	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^struct Bounds;$/;"	s
Build	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^pub struct Build {$/;"	s
CHACHA_ROUNDS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^const CHACHA_ROUNDS: u32 = 20; \/\/ Cryptographically secure from 8 upwards as of this writing$/;"	c
CHAR_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^        const CHAR_MASK: u32 = 0x001f_ffff;$/;"	c
CHECKER	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        static CHECKER: Once = ONCE_INIT;$/;"	c
CLSCTX	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type CLSCTX = u32;$/;"	T
CLSCTX_ALL	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const CLSCTX_ALL: CLSCTX =$/;"	c
CLSCTX_INPROC_HANDLER	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const CLSCTX_INPROC_HANDLER: CLSCTX = 0x2;$/;"	c
CLSCTX_INPROC_SERVER	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const CLSCTX_INPROC_SERVER: CLSCTX = 0x1;$/;"	c
CLSCTX_LOCAL_SERVER	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const CLSCTX_LOCAL_SERVER: CLSCTX = 0x4;$/;"	c
CLSCTX_REMOTE_SERVER	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const CLSCTX_REMOTE_SERVER: CLSCTX = 0x10;$/;"	c
COINIT_MULTITHREADED	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const COINIT_MULTITHREADED: u32 = 0x0;$/;"	c
Cfg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-cfg-0.2.0/src/lib.rs	/^pub struct Cfg {$/;"	s
ChaChaRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^pub struct ChaChaRng {$/;"	s
CheckedAdd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^pub trait CheckedAdd: Sized + Add<Self, Output=Self> {$/;"	t
CheckedDiv	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^pub trait CheckedDiv: Sized + Div<Self, Output=Self> {$/;"	t
CheckedMul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^pub trait CheckedMul: Sized + Mul<Self, Output=Self> {$/;"	t
CheckedSub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^pub trait CheckedSub: Sized + Sub<Self, Output=Self> {$/;"	t
ChiSquared	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^pub struct ChiSquared {$/;"	s
ChiSquaredRepr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^enum ChiSquaredRepr {$/;"	g
Clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn Clone($/;"	f
Closed01	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct Closed01<F>(pub F);$/;"	s
CoCreateInstance	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    pub fn CoCreateInstance($/;"	f
CoInitializeEx	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    pub fn CoInitializeEx(pvReserved: LPVOID, dwCoInit: DWORD) -> HRESULT;$/;"	f
ComPtr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^pub struct ComPtr<T>(*mut T)$/;"	s
ConstRand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    struct ConstRand(usize);$/;"	s
ConstRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    struct ConstRng { i: u64 }$/;"	s
ConstantRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    struct ConstantRng(u64);$/;"	s
Counter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    struct Counter {$/;"	s
CountingRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    struct CountingRng { i: u32 }$/;"	s
DEFAULT_GENERATION_THRESHOLD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^const DEFAULT_GENERATION_THRESHOLD: u64 = 32 * 1024;$/;"	c
DEFINE_GUID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^macro_rules! DEFINE_GUID {$/;"	d
DEG_RAD_PAIRS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^        const DEG_RAD_PAIRS: [(f64, f64); 7] = [$/;"	c
DIV_REM_QUADRUPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^static DIV_REM_QUADRUPLES: &'static [(&'static [BigDigit],$/;"	c
DIV_REM_QUADRUPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const DIV_REM_QUADRUPLES: &'static [(&'static [BigDigit],$/;"	c
DWORD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type DWORD = u32;$/;"	T
DWORD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type DWORD = u32;$/;"	T
DWORD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        type DWORD = u32;$/;"	T
DWORD_PTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        type DWORD_PTR = usize;$/;"	T
DistanceError	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^pub struct DistanceError {$/;"	s
DivRem	/Users/micro/projects/ramp/src/traits.rs	/^pub trait DivRem<RHS = Self> {$/;"	t
DoubleBigDigit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub type DoubleBigDigit = u64;$/;"	T
EMPTY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^static EMPTY: ChaChaRng = ChaChaRng {$/;"	c
EMPTY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^static EMPTY: IsaacRng = IsaacRng {$/;"	c
EMPTY_64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^static EMPTY_64: Isaac64Rng = Isaac64Rng {$/;"	c
ERROR_NO_MORE_ITEMS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const ERROR_NO_MORE_ITEMS: DWORD = 259;$/;"	c
ERROR_SUCCESS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const ERROR_SUCCESS: DWORD = 0;$/;"	c
EnumAllInstances	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn EnumAllInstances($/;"	f
EnumInstances	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn EnumInstances($/;"	f
EnumSetupInstances	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub struct EnumSetupInstances(ComPtr<IEnumSetupInstances>);$/;"	s
Err	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    type Err = ParseBigIntError;$/;"	T
Err	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    type Err = ParseBigIntError;$/;"	T
Err	/Users/micro/projects/ramp/src/int.rs	/^    type Err = ParseIntError;$/;"	T
Err	/Users/micro/projects/ramp/src/rational.rs	/^    type Err = ParseRationalError;$/;"	T
Error	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^pub struct Error {$/;"	s
ErrorKind	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^enum ErrorKind {$/;"	g
ErrorKind	/Users/micro/projects/ramp/src/int.rs	/^enum ErrorKind {$/;"	g
Exp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^pub struct Exp {$/;"	s
Exp1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^pub struct Exp1(pub f64);$/;"	s
Exponent	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            type Exponent = $expn;$/;"	T
Exponent	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    type Exponent;$/;"	T
FILETIME	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub struct FILETIME {$/;"	s
FILL_BYTES_V_LEN	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    const FILL_BYTES_V_LEN: usize = 13579;$/;"	c
FisherF	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^pub struct FisherF {$/;"	s
Float	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^pub trait Float$/;"	t
FloatConst	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^        pub trait FloatConst {$/;"	t
FloatErrorKind	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub enum FloatErrorKind {$/;"	g
FromPrimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^pub trait FromPrimitive: Sized {$/;"	t
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    type FromStrRadixErr = ParseBigIntError;$/;"	T
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    type FromStrRadixErr = ParseBigIntError;$/;"	T
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^            type FromStrRadixErr = ::std::num::ParseIntError;$/;"	T
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^            type FromStrRadixErr = ParseFloatError;$/;"	T
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    type FromStrRadixErr = T::FromStrRadixErr;$/;"	T
FromStrRadixErr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    type FromStrRadixErr;$/;"	T
FromStrRadixErr	/Users/micro/projects/ramp/src/int.rs	/^    type FromStrRadixErr = ParseIntError;$/;"	T
FromWide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^pub trait FromWide$/;"	t
GEN_ASCII_STR_CHARSET	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        const GEN_ASCII_STR_CHARSET: &'static [u8] =$/;"	c
GROUND_TRUTH	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    const GROUND_TRUTH : &'static[(&'static[u8], u32, &'static[u8])] = &[$/;"	c
GUID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub struct GUID {$/;"	s
Gamma	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^pub struct Gamma {$/;"	s
GammaLargeShape	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^struct GammaLargeShape {$/;"	s
GammaRepr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^enum GammaRepr {$/;"	g
GammaSmallShape	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^struct GammaSmallShape {$/;"	s
Gen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^pub trait Gen : Rng {$/;"	t
Generator	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct Generator<'a, T, R:'a> {$/;"	s
GetBranch	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetBranch($/;"	f
GetChip	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetChip($/;"	f
GetDescription	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetDescription($/;"	f
GetDisplayName	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetDisplayName($/;"	f
GetId	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetId($/;"	f
GetInstallDate	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstallDate($/;"	f
GetInstallationName	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstallationName($/;"	f
GetInstallationPath	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstallationPath($/;"	f
GetInstallationVersion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstallationVersion($/;"	f
GetInstanceForCurrentProcess	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstanceForCurrentProcess($/;"	f
GetInstanceForPath	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstanceForPath($/;"	f
GetInstanceId	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetInstanceId($/;"	f
GetLanguage	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetLanguage($/;"	f
GetNativeSystemInfo	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^            fn GetNativeSystemInfo(lpSystemInfo: *mut SYSTEM_INFO);$/;"	f
GetPackages	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetPackages($/;"	f
GetProduct	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetProduct($/;"	f
GetProductPath	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetProductPath($/;"	f
GetState	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetState($/;"	f
GetType	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetType($/;"	f
GetUniqueId	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetUniqueId($/;"	f
GetVersion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn GetVersion($/;"	f
HKEY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type HKEY = *mut u8;$/;"	T
HKEY_LOCAL_MACHINE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const HKEY_LOCAL_MACHINE: HKEY = 0x80000002 as HKEY;$/;"	c
HRESULT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type HRESULT = raw::c_long;$/;"	T
IID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type IID = GUID;$/;"	T
INTERFACE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    const INTERFACE: &'static [u8] = b"nacl-irt-random-0.1\\0";$/;"	c
ITER_LIMIT	/Users/micro/projects/ramp/src/int.rs	/^        const ITER_LIMIT : usize = 10000;$/;"	c
Ieee754	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^pub trait Ieee754: Copy + PartialEq + PartialOrd {$/;"	t
IndependentSample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^pub trait IndependentSample<Support>: Sample<Support> {$/;"	t
InstanceState	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub type InstanceState = u32;$/;"	T
Int	/Users/micro/projects/ramp/src/int.rs	/^pub struct Int {$/;"	s
Integer	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub trait Integer: Sized + Num + PartialOrd + Ord + Eq {$/;"	t
Interface	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub trait Interface {$/;"	t
Isaac64Rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^pub struct Isaac64Rng {$/;"	s
IsaacRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^pub struct IsaacRng {$/;"	s
IsizePromotion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^type IsizePromotion = i32;$/;"	T
IsizePromotion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^type IsizePromotion = i64;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    type Item = io::Result<OsString>;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    type Item = Result<SetupInstance, i32>;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    type Item = T;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    type Item = T;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^                type Item = $ty;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    type Item = Vec<A>;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    type Item = T;$/;"	T
Item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    type Item = char;$/;"	T
Iter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^pub struct Iter<'a> {$/;"	s
Iter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^pub struct Iter<T: Ieee754> {$/;"	s
IterBinomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub struct IterBinomial<T> {$/;"	s
KEY_READ	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const KEY_READ: DWORD = 0x20019;$/;"	c
KEY_WORDS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^const KEY_WORDS    : usize =  8; \/\/ 8 words for the 256-bit key$/;"	c
KEY_WOW64_32KEY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const KEY_WOW64_32KEY: DWORD = 0x200;$/;"	c
LCID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LCID = DWORD;$/;"	T
LOCAL_MACHINE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^pub static LOCAL_MACHINE: RegistryKey = RegistryKey(Repr::Const(HKEY_LOCAL_MACHINE));$/;"	c
LONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type LONG = raw::c_long;$/;"	T
LONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LONG = raw::c_long;$/;"	T
LOWER_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        const LOWER_MASK: u32 = 0x7FFFFF;$/;"	c
LOWER_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        const LOWER_MASK: u64 = 0xFFFFFFFFFFFFF;$/;"	c
LO_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    const LO_MASK: DoubleBigDigit = (-1i32 as DoubleBigDigit) >> BITS;$/;"	c
LO_MASK	/Users/micro/projects/ramp/src/ll/limb.rs	/^                const LO_MASK:Word = Wrapping((1usize << BITS) - 1);$/;"	c
LPBYTE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type LPBYTE = *mut u8;$/;"	T
LPCOLESTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPCOLESTR = *const OLECHAR;$/;"	T
LPCWSTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type LPCWSTR = *const u16;$/;"	T
LPCWSTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPCWSTR = *const WCHAR;$/;"	T
LPDWORD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type LPDWORD = *mut DWORD;$/;"	T
LPFILETIME	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPFILETIME = *mut FILETIME;$/;"	T
LPSAFEARRAY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPSAFEARRAY = *mut SAFEARRAY;$/;"	T
LPUNKNOWN	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPUNKNOWN = *mut IUnknown;$/;"	T
LPVOID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type LPVOID = *mut raw::c_void;$/;"	T
LPVOID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        type LPVOID = *mut u8;$/;"	T
LPWSTR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type LPWSTR = *mut u16;$/;"	T
Limb	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub struct Limb(pub BaseInt);$/;"	s
Limbs	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^pub struct Limbs {$/;"	s
LimbsCursor	/Users/micro/projects/ramp/src/ll/limb_ptr_new.rs	/^pub struct LimbsCursor {$/;"	s
LimbsMut	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^pub struct LimbsMut {$/;"	s
LimbsNew	/Users/micro/projects/ramp/src/ll/limb_ptr_new.rs	/^pub struct LimbsNew {$/;"	s
LogNormal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^pub struct LogNormal {$/;"	s
M	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^const M: u32 = ::std::u32::MAX;$/;"	c
M	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const M: u32 = ::std::u32::MAX;$/;"	c
M1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    const M1: u64 = 0x5555555555555555;$/;"	c
M1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    const M1: u64 = 0x5555555555555555;$/;"	c
M2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    const M2: u64 = 0x3333333333333333;$/;"	c
M2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    const M2: u64 = 0x3333333333333333;$/;"	c
M4	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    const M4: u64 = 0x0F0F0F0F0F0F0F0F;$/;"	c
M4	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    const M4: u64 = 0x0F0F0F0F0F0F0F0F;$/;"	c
M8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    const M8: u64 = 0x00FF00FF00FF00FF;$/;"	c
M8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    const M8: u64 = 0x00FF00FF00FF00FF;$/;"	c
MAX_LIMB	/Users/micro/projects/ramp/src/int.rs	/^const MAX_LIMB: u64 = !0 >> (64 - Limb::BITS);$/;"	c
MIDPOINT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        const MIDPOINT: usize =  RAND_SIZE_64 \/ 2;$/;"	c
MIDPOINT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        const MIDPOINT: usize = RAND_SIZE_USIZE \/ 2;$/;"	c
MP_VEC	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        const MP_VEC: [(usize, usize); 2] = [(0,MIDPOINT), (MIDPOINT, 0)];$/;"	c
MUL_TRIPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^static MUL_TRIPLES: &'static [(&'static [BigDigit],$/;"	c
MUL_TRIPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const MUL_TRIPLES: &'static [(&'static [BigDigit],$/;"	c
Marker	/Users/micro/projects/ramp/src/mem.rs	/^struct Marker {$/;"	s
MsvcTool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    struct MsvcTool {$/;"	s
MyRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    pub struct MyRng<R> { inner: R }$/;"	s
MyRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    type MyRng = ReseedingRng<Counter, ReseedWithDefault>;$/;"	T
N	/Users/micro/projects/ramp/src/int.rs	/^        static N : &'static str =$/;"	c
N1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^const N1: BigDigit = -1i32 as BigDigit;$/;"	c
N1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const N1: BigDigit = -1i32 as BigDigit;$/;"	c
N2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^const N2: BigDigit = -2i32 as BigDigit;$/;"	c
N2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const N2: BigDigit = -2i32 as BigDigit;$/;"	c
NR_GETRANDOM	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        const NR_GETRANDOM: libc::c_long = 278;$/;"	c
NR_GETRANDOM	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        const NR_GETRANDOM: libc::c_long = 318;$/;"	c
NR_GETRANDOM	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        const NR_GETRANDOM: libc::c_long = 355;$/;"	c
NR_GETRANDOM	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        const NR_GETRANDOM: libc::c_long = 384;$/;"	c
NaClIRTRandom	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    struct NaClIRTRandom {$/;"	s
Next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn Next($/;"	f
Normal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^pub struct Normal {$/;"	s
Num	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait Num: PartialEq + Zero + One + NumOps$/;"	t
NumAssign	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait NumAssign: Num + NumAssignOps {}$/;"	t
NumAssignOps	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait NumAssignOps<Rhs = Self>$/;"	t
NumAssignRef	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait NumAssignRef: NumAssign + for<'r> NumAssignOps<&'r Self> {}$/;"	t
NumCast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^pub trait NumCast: Sized + ToPrimitive {$/;"	t
NumOps	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait NumOps<Rhs = Self, Output = Self>$/;"	t
NumRef	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait NumRef: Num + for<'r> NumOps<&'r Self> {}$/;"	t
OLECHAR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type OLECHAR = WCHAR;$/;"	T
ONE	/Users/micro/projects/ramp/src/ll/limb.rs	/^                const ONE:Word = Wrapping(1usize);$/;"	c
Object	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^struct Object {$/;"	s
One	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^pub trait One: Sized + Mul<Self, Output = Self> {$/;"	t
Open01	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct Open01<F>(pub F);$/;"	s
OsRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    pub struct OsRng {$/;"	s
OsRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    pub struct OsRng(extern fn(dest: *mut libc::c_void,$/;"	s
OsRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    pub struct OsRng;$/;"	s
OsRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^pub struct OsRng(imp::OsRng);$/;"	s
OsRngInner	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    enum OsRngInner {$/;"	g
Output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    type Output = BigInt;$/;"	T
Output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    type Output = Sign;$/;"	T
Output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    type Output = BigUint;$/;"	T
Output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^                type Output = $res;$/;"	T
Output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^            type Output = $res;$/;"	T
Output	/Users/micro/projects/ramp/src/int.rs	/^            type Output = (Int, $t);$/;"	T
Output	/Users/micro/projects/ramp/src/int.rs	/^            type Output = Int;$/;"	T
Output	/Users/micro/projects/ramp/src/int.rs	/^    type Output = (Int, Int);$/;"	T
Output	/Users/micro/projects/ramp/src/int.rs	/^    type Output = (Int, Limb);$/;"	T
Output	/Users/micro/projects/ramp/src/int.rs	/^    type Output = Int;$/;"	T
Output	/Users/micro/projects/ramp/src/ll/limb.rs	/^    type Output = Limb;$/;"	T
Output	/Users/micro/projects/ramp/src/ll/limb.rs	/^    type Output=Limb;$/;"	T
Output	/Users/micro/projects/ramp/src/rational.rs	/^    type Output = Rational;$/;"	T
Output	/Users/micro/projects/ramp/src/traits.rs	/^    type Output;$/;"	T
OwnedKey	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^struct OwnedKey(HKEY);$/;"	s
PFILETIME	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type PFILETIME = *mut u8;$/;"	T
PHKEY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type PHKEY = *mut HKEY;$/;"	T
PROCESSOR_ARCHITECTURE_AMD64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    const PROCESSOR_ARCHITECTURE_AMD64: u16 = 9;$/;"	c
PROCESSOR_ARCHITECTURE_INTEL	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    const PROCESSOR_ARCHITECTURE_INTEL: u16 = 0;$/;"	c
PULONGLONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type PULONGLONG = *mut ULONGLONG;$/;"	T
PVOID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type PVOID = *mut raw::c_void;$/;"	T
ParseBigIntError	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^pub enum ParseBigIntError {$/;"	g
ParseFloatError	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub struct ParseFloatError {$/;"	s
ParseIntError	/Users/micro/projects/ramp/src/int.rs	/^pub struct ParseIntError { kind: ErrorKind }$/;"	s
ParseRationalError	/Users/micro/projects/ramp/src/rational.rs	/^pub struct ParseRationalError(ParseIntError);$/;"	s
ParseVersion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn ParseVersion($/;"	f
ParseVersionRange	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn ParseVersionRange($/;"	f
PrimInt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^pub trait PrimInt$/;"	t
QueryInterface	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    fn QueryInterface($/;"	f
QuickCheck	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^pub struct QuickCheck<G> {$/;"	s
RAND_ITER	/Users/micro/projects/ramp/src/int.rs	/^    const RAND_ITER : usize = 1000;$/;"	c
RAND_SIZE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^const RAND_SIZE: u32 = 1 << RAND_SIZE_LEN;$/;"	c
RAND_SIZE_64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^const RAND_SIZE_64: usize = 1 << RAND_SIZE_64_LEN;$/;"	c
RAND_SIZE_64_LEN	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^const RAND_SIZE_64_LEN: usize = 8;$/;"	c
RAND_SIZE_LEN	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^const RAND_SIZE_LEN: usize = 8;$/;"	c
RAND_SIZE_USIZE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^const RAND_SIZE_USIZE: usize = 1 << RAND_SIZE_LEN;$/;"	c
REFCLSID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type REFCLSID = *const IID;$/;"	T
REFIID	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type REFIID = *const IID;$/;"	T
REGSAM	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^type REGSAM = u32;$/;"	T
REG_SZ	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^const REG_SZ: DWORD = 1;$/;"	c
RIDL	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^macro_rules! RIDL {$/;"	d
Rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub trait Rand : Sized {$/;"	t
RandBigInt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^pub trait RandBigInt {$/;"	t
RandSample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^pub struct RandSample<Sup> {$/;"	s
RandomInt	/Users/micro/projects/ramp/src/int.rs	/^pub trait RandomInt {$/;"	t
Range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^pub struct Range<X> {$/;"	s
Rational	/Users/micro/projects/ramp/src/rational.rs	/^pub struct Rational {$/;"	s
RawExponent	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            type RawExponent = $expn_raw;$/;"	T
RawExponent	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    type RawExponent;$/;"	T
ReadRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^pub struct ReadRng<R> {$/;"	s
RefNum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub trait RefNum<Base>: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base> {}$/;"	t
RegCloseKey	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn RegCloseKey(hKey: HKEY) -> LONG;$/;"	f
RegEnumKeyExW	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn RegEnumKeyExW($/;"	f
RegOpenKeyExW	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn RegOpenKeyExW($/;"	f
RegQueryValueExW	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn RegQueryValueExW($/;"	f
RegistryKey	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^pub struct RegistryKey(Repr);$/;"	s
Release	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    fn Release() -> ULONG,$/;"	f
Repr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^enum Repr {$/;"	g
ReseedWithDefault	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^pub struct ReseedWithDefault;$/;"	s
Reseeder	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^pub trait Reseeder<R> {$/;"	t
ReseedingRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^pub struct ReseedingRng<R, Rsdr> {$/;"	s
Reset	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn Reset() -> HRESULT,$/;"	f
ResolvePath	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn ResolvePath($/;"	f
Rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub trait Rng {$/;"	t
SAFEARRAY	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub struct SAFEARRAY {$/;"	s
SAFEARRAYBOUND	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub struct SAFEARRAYBOUND {$/;"	s
SCALE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    const SCALE: f64 = (1u64 << 53) as f64;$/;"	c
SCALE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^            const SCALE: $ty = (1u64 << $mantissa_bits) as $ty;$/;"	c
STATE_WORDS	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^const STATE_WORDS  : usize = 16;$/;"	c
SUM_TRIPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^const SUM_TRIPLES: &'static [(&'static [BigDigit],$/;"	c
SUM_TRIPLES	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^const SUM_TRIPLES: &'static [(&'static [BigDigit],$/;"	c
SYSTEM_INFO	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        struct SYSTEM_INFO {$/;"	s
S_FALSE	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const S_FALSE: HRESULT = 1;$/;"	c
S_OK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub const S_OK: HRESULT = 0;$/;"	c
Sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^pub trait Sample<Support> {$/;"	t
SampleRange	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^pub trait SampleRange : Sized {$/;"	t
Saturating	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^pub trait Saturating {$/;"	t
SecRandom	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    enum SecRandom {}$/;"	g
SecRandomCopyBytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn SecRandomCopyBytes(rnd: *const SecRandom,$/;"	f
SeedableRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub trait SeedableRng<Seed>: Rng {$/;"	t
SetupConfiguration	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub struct SetupConfiguration(ComPtr<ISetupConfiguration>);$/;"	s
SetupInstance	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub struct SetupInstance(ComPtr<ISetupInstance>);$/;"	s
Sign	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^pub enum Sign {$/;"	g
Signed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^pub trait Signed: Sized + Num + Neg<Output = Self> {$/;"	t
SignedShrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^            pub struct SignedShrinker {$/;"	s
Significand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            type Significand = $signif;$/;"	T
Significand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    type Significand;$/;"	T
Skip	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn Skip($/;"	f
StandardNormal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^pub struct StandardNormal(pub f64);$/;"	s
Status	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^enum Status { Pass, Fail, Discard }$/;"	g
StdGen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^pub struct StdGen<R> {$/;"	s
StdRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct StdRng {$/;"	s
StudentT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^pub struct StudentT {$/;"	s
SysFreeString	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    pub fn SysFreeString(bstrString: BSTR);$/;"	f
SysStringLen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    pub fn SysStringLen(pbstr: BSTR) -> UINT;$/;"	f
SystemFunction036	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn SystemFunction036(RandomBuffer: *mut u8, RandomBufferLength: ULONG) -> BOOLEAN;$/;"	f
T30	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    type T30 = [u64; 30];$/;"	T
T30	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    type T30 = [u64; 30];$/;"	T
THREAD_RNG_RESEED_THRESHOLD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^const THREAD_RNG_RESEED_THRESHOLD: u64 = 32_768;$/;"	c
TOOM22_THRESHOLD	/Users/micro/projects/ramp/src/ll/mul.rs	/^const TOOM22_THRESHOLD : i32 = 20;$/;"	c
Target	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    type Target = T;$/;"	T
Target	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^            type Target = $pinterface;$/;"	T
Target	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            type Target = Limb;$/;"	T
TestResult	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^pub struct TestResult {$/;"	s
Testable	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^pub trait Testable : Send + 'static {$/;"	t
ThreadRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct ThreadRng {$/;"	s
ThreadRngInner	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^type ThreadRngInner = reseeding::ReseedingRng<StdRng, ThreadRngReseeder>;$/;"	T
ThreadRngReseeder	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^struct ThreadRngReseeder;$/;"	s
TmpAllocator	/Users/micro/projects/ramp/src/mem.rs	/^pub struct TmpAllocator {$/;"	s
ToBigInt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^pub trait ToBigInt {$/;"	t
ToBigUint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^pub trait ToBigUint {$/;"	t
ToPrimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^pub trait ToPrimitive {$/;"	t
ToWide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^pub trait ToWide {$/;"	t
Tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^pub struct Tool {$/;"	s
ToolFamily	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^enum ToolFamily {$/;"	g
UINT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type UINT = raw::c_uint;$/;"	T
ULONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type ULONG = raw::c_ulong;$/;"	T
ULONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    type ULONG = u32;$/;"	T
ULONGLONG	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type ULONGLONG = u64;$/;"	T
UPPER_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        const UPPER_MASK: u32 = 0x3F800000;$/;"	c
UPPER_MASK	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        const UPPER_MASK: u64 = 0x3FF0000000000000;$/;"	c
USHORT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type USHORT = raw::c_ushort;$/;"	T
Unsigned	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^pub trait Unsigned: Num {}$/;"	t
UnsignedShrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^            pub struct UnsignedShrinker {$/;"	s
UsizePromotion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^type UsizePromotion = u32;$/;"	T
UsizePromotion	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^type UsizePromotion = u64;$/;"	T
VecShrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^struct VecShrinker<A> {$/;"	s
VsVers	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^pub enum VsVers {$/;"	g
WCHAR	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type WCHAR = wchar_t;$/;"	T
WORD	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        type WORD = u16;$/;"	T
Weighted	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^pub struct Weighted<T> {$/;"	s
WeightedChoice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^pub struct WeightedChoice<'a, T:'a> {$/;"	s
Word	/Users/micro/projects/ramp/src/ll/limb.rs	/^type Word = Wrapping<usize>;$/;"	T
WrappingAdd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^pub trait WrappingAdd: Sized + Add<Self, Output=Self> {$/;"	t
WrappingMul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^pub trait WrappingMul: Sized + Mul<Self, Output=Self> {$/;"	t
WrappingSub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^pub trait WrappingSub: Sized + Sub<Self, Output=Self> {$/;"	t
X86	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    const X86: u16 = PROCESSOR_ARCHITECTURE_INTEL;$/;"	c
X86_64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    const X86_64: u16 = PROCESSOR_ARCHITECTURE_AMD64;$/;"	c
XorShiftRng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub struct XorShiftRng {$/;"	s
ZERO_BIG_DIGIT	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub const ZERO_BIG_DIGIT: BigDigit = 0;$/;"	c
ZIG_EXP_F	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub static ZIG_EXP_F: [f64; 257] =$/;"	c
ZIG_EXP_R	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub const ZIG_EXP_R: f64 = 7.697117470131050077;$/;"	c
ZIG_EXP_X	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub static ZIG_EXP_X: [f64; 257] =$/;"	c
ZIG_NORM_F	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub static ZIG_NORM_F: [f64; 257] =$/;"	c
ZIG_NORM_R	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub const ZIG_NORM_R: f64 = 3.654152885361008796;$/;"	c
ZIG_NORM_X	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub static ZIG_NORM_X: [f64; 257] =$/;"	c
Zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^pub trait Zero: Sized + Add<Self, Output = Self> {$/;"	t
ZigTable	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/ziggurat_tables.rs	/^pub type ZigTable = &'static [f64; 257];$/;"	T
_0000001	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0000001(b: &mut test::Bencher) { bench(b, 1, $name) }$/;"	f
_0000001	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0000001(b: &mut test::Bencher) { bench(b, 1, $name) }$/;"	f
_0000010	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0000010(b: &mut test::Bencher) { bench(b, 10, $name) }$/;"	f
_0000010	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0000010(b: &mut test::Bencher) { bench(b, 10, $name) }$/;"	f
_0000100	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0000100(b: &mut test::Bencher) { bench(b, 100, $name) }$/;"	f
_0000100	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0000100(b: &mut test::Bencher) { bench(b, 100, $name) }$/;"	f
_0001000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0001000(b: &mut test::Bencher) { bench(b, 1000, $name) }$/;"	f
_0001000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0001000(b: &mut test::Bencher) { bench(b, 1000, $name) }$/;"	f
_0010000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0010000(b: &mut test::Bencher) { bench(b, 10000, $name) }$/;"	f
_0010000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0010000(b: &mut test::Bencher) { bench(b, 10000, $name) }$/;"	f
_0100000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _0100000(b: &mut test::Bencher) { bench(b, 100000, $name) }$/;"	f
_0100000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _0100000(b: &mut test::Bencher) { bench(b, 100000, $name) }$/;"	f
_1000000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^                fn _1000000(b: &mut test::Bencher) { bench(b, 1000000, $name) }$/;"	f
_1000000	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^                fn _1000000(b: &mut test::Bencher) { bench(b, 1000000, $name) }$/;"	f
__add2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn __add2(a: &mut [BigDigit], b: &[BigDigit]) -> BigDigit {$/;"	f
__set_env	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn __set_env<A, B>(&mut self, a: A, b: B) -> &mut Build$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn abs(&self) -> BigInt {$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn abs(self) -> Self {$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn abs(self) -> Self;$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn abs(&self) -> $t {$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn abs(&self) -> Self {$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn abs(&self) -> Self;$/;"	f
abs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^pub fn abs<T: Signed>(value: T) -> T {$/;"	f
abs	/Users/micro/projects/ramp/src/int.rs	/^    pub fn abs(mut self) -> Int {$/;"	f
abs	/Users/micro/projects/ramp/src/rational.rs	/^    fn abs() {$/;"	f
abs	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn abs(mut self) -> Rational {$/;"	f
abs_cmp	/Users/micro/projects/ramp/src/int.rs	/^    pub fn abs_cmp(&self, other: &Int) -> Ordering {$/;"	f
abs_eq	/Users/micro/projects/ramp/src/int.rs	/^    pub fn abs_eq(&self, other: &Int) -> bool {$/;"	f
abs_hash	/Users/micro/projects/ramp/src/int.rs	/^    pub fn abs_hash<H>(&self, state: &mut H) where H: hash::Hasher {$/;"	f
abs_size	/Users/micro/projects/ramp/src/int.rs	/^    fn abs_size(&self) -> i32 {$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn abs_sub(&self, other: &BigInt) -> BigInt {$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn abs_sub(self, other: Self) -> Self {$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn abs_sub(self, other: Self) -> Self;$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn abs_sub(&self, other: &$t) -> $t {$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn abs_sub(&self, other: &Self) -> Self {$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn abs_sub(&self, other: &Self) -> Self;$/;"	f
abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^pub fn abs_sub<T: Signed>(x: T, y: T) -> T {$/;"	f
acos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn acos(self) -> Self {$/;"	f
acos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn acos(self) -> Self;$/;"	f
acosh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn acosh(self) -> Self {$/;"	f
acosh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn acosh(self) -> Self;$/;"	f
adc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^fn adc(a: BigDigit, b: BigDigit, carry: &mut BigDigit) -> BigDigit {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: &BigInt) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: BigDigit) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: BigInt) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: DoubleBigDigit) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: i32) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn add(self, other: i64) -> BigInt {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn add(mut self, other: &BigUint) -> BigUint {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn add(mut self, other: BigDigit) -> BigUint {$/;"	f
add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn add(mut self, other: DoubleBigDigit) -> BigUint {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^            fn add(self, other: $t) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^            fn add(self, other: &'a Int) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^            fn add(self, other: Int) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^    fn add() {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^    fn add(mut self, other: &'a Int) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^    fn add(mut self, other: Limb) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^    fn add(self, other: &'a Int) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/int.rs	/^    fn add(self, other: Int) -> Int {$/;"	f
add	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn add(self, other: BaseInt) -> Limb {$/;"	f
add	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn add(self, other: Limb) -> Limb {$/;"	f
add	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn add(self, other: bool) -> Limb {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add() {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(mut self, other: &'a Int) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(mut self, other: &'a Rational) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(mut self, other: Int) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(mut self, other: Rational) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(self, mut other: Rational) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(self, other: &'a Int) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(self, other: &'a Rational) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(self, other: Int) -> Rational {$/;"	f
add	/Users/micro/projects/ramp/src/rational.rs	/^    fn add(self, other: Rational) -> Rational {$/;"	f
add2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn add2(a: &mut [BigDigit], b: &[BigDigit]) {$/;"	f
add_2	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub fn add_2(ah: Limb, al: Limb, bh: Limb, bl: Limb) -> (Limb, Limb) {$/;"	f
add_2_impl	/Users/micro/projects/ramp/src/ll/limb.rs	/^        fn add_2_impl(ah: Limb, al: Limb, bh: Limb, bl: Limb) -> (Limb, Limb) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn add_assign(&mut self, other: $t) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn add_assign(&mut self, mut other: Int) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn add_assign(&mut self, other: &'a Int) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn add_assign(&mut self, other: Limb) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn add_assign(&mut self, mut other: Rational) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn add_assign(&mut self, other: &'a Int) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn add_assign(&mut self, other: &'a Rational) {$/;"	f
add_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn add_assign(&mut self, other: Int) {$/;"	f
add_env	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn add_env(tool: &mut Tool, env: &str, paths: Vec<PathBuf>) {$/;"	f
add_larger_limb	/Users/micro/projects/ramp/src/int.rs	/^    fn add_larger_limb() {$/;"	f
add_n	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn add_n(mut wp: LimbsMut, xp: Limbs, yp: Limbs,$/;"	f
add_n	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn add_n(wp: LimbsMut, xp: Limbs, yp: Limbs,$/;"	f
add_n_generic	/Users/micro/projects/ramp/src/ll/addsub.rs	/^unsafe fn add_n_generic(mut wp: LimbsMut, mut xp: Limbs, mut yp: Limbs,$/;"	f
add_one	/Users/micro/projects/ramp/src/int.rs	/^    fn add_one(&self) -> Self {$/;"	f
add_overflow	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn add_overflow(self, other: Limb) -> (Limb, bool) {$/;"	f
add_sdks	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn add_sdks(tool: &mut MsvcTool, target: &str) -> Option<()> {$/;"	f
add_usize	/Users/micro/projects/ramp/src/int.rs	/^    fn add_usize(&self, n: usize) -> Option<Self> {$/;"	f
addmul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn addmul_1(mut wp: LimbsMut, xp:  Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
addmul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn addmul_1(wp: LimbsMut, xp: Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
addmul_1_generic	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn addmul_1_generic(mut wp: LimbsMut, mut xp: Limbs, mut n: i32, vl: Limb) -> Limb {$/;"	f
all	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-cfg-0.2.0/src/lib.rs	/^    fn all() {$/;"	f
all_tests_discarded_min_tests_passed_missing	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn all_tests_discarded_min_tests_passed_missing() {$/;"	f
all_tests_discarded_min_tests_passed_set	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn all_tests_discarded_min_tests_passed_set() {$/;"	f
allocate	/Users/micro/projects/ramp/src/mem.rs	/^    pub unsafe fn allocate(&mut self, n: usize) -> LimbsMut {$/;"	f
allocate_2	/Users/micro/projects/ramp/src/mem.rs	/^    pub unsafe fn allocate_2(&mut self, n1: usize, n2: usize) -> (LimbsMut, LimbsMut) {$/;"	f
allocate_bytes	/Users/micro/projects/ramp/src/mem.rs	/^    pub unsafe fn allocate_bytes(&mut self, size: usize) -> *mut u8 {$/;"	f
allocate_bytes	/Users/micro/projects/ramp/src/mem.rs	/^pub unsafe fn allocate_bytes(size: usize) -> *mut u8 {$/;"	f
and_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn and_n(wp: LimbsMut,$/;"	f
and_not_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn and_not_n(wp: LimbsMut,$/;"	f
aors	/Users/micro/projects/ramp/src/ll/addsub.rs	/^macro_rules! aors {$/;"	d
aors_1	/Users/micro/projects/ramp/src/ll/addsub.rs	/^macro_rules! aors_1 {$/;"	d
api	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^macro_rules! api {$/;"	d
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^                fn arbitrary<G: Gen>(g: &mut G) -> $ty {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^            fn arbitrary<GEN: Gen>(g: &mut GEN) -> ($($type_param,)*) {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^        fn arbitrary<G: Gen>(gen: &mut G) -> Self {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(_: &mut G) -> () { () }$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(_: &mut G) -> RangeFull { .. }$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Arc<A> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> BTreeMap<K, V> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> BTreeSet<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> BinaryHeap<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Box<A> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> IpAddr {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Ipv4Addr {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Ipv6Addr {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> LinkedList<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Option<A> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> OsString {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> PathBuf {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Range<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> RangeFrom<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> RangeTo<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Result<A, B> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Self {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Self;$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> SocketAddr {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> SocketAddrV4 {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> SocketAddrV6 {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> String {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> Vec<A> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> VecDeque<T> {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> bool { g.gen() }$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> char {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> f32 {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(g: &mut G) -> f64 {$/;"	f
arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arbitrary<G: Gen>(gen: &mut G) -> Self {$/;"	f
arby	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arby<A: super::Arbitrary>() -> A {$/;"	f
arby_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arby_int() {$/;"	f
arby_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arby_uint() {$/;"	f
arby_unit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn arby_unit() {$/;"	f
archiver	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn archiver<P: AsRef<Path>>(&mut self, archiver: P) -> &mut Build {$/;"	f
args	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn args(&self) -> &[OsString] {$/;"	f
arith_prim	/Users/micro/projects/ramp/src/int.rs	/^    fn arith_prim() {$/;"	f
array_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^macro_rules! array_impl {$/;"	d
as_const	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    pub fn as_const(self) -> Limbs {$/;"	f
as_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn as_u64(self) -> u64 { self as u64 }$/;"	f
as_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn as_u64(self) -> u64 { self }$/;"	f
as_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn as_u64(self) -> u64;$/;"	f
as_unknown	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn as_unknown(&self) -> &IUnknown {$/;"	f
asin	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn asin(self) -> Self {$/;"	f
asin	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn asin(self) -> Self;$/;"	f
asinh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn asinh(self) -> Self {$/;"	f
asinh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn asinh(self) -> Self;$/;"	f
assemble	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn assemble(&self, lib_name: &str, dst: &Path, objs: &[Object]) -> Result<(), Error> {$/;"	f
assert_mp_eq	/Users/micro/projects/ramp/src/int.rs	/^    macro_rules! assert_mp_eq ($/;"	d
assert_mp_eq	/Users/micro/projects/ramp/src/rational.rs	/^    macro_rules! assert_mp_eq ($/;"	d
assert_op	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^macro_rules! assert_op {$/;"	d
assert_op	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^macro_rules! assert_op {$/;"	d
assert_scalar_op	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^macro_rules! assert_scalar_op {$/;"	d
assert_scalar_op	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^macro_rules! assert_scalar_op {$/;"	d
atan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn atan(self) -> Self {$/;"	f
atan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn atan(self) -> Self;$/;"	f
atan2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn atan2(self, other: Self) -> Self {$/;"	f
atan2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn atan2(self, other: Self) -> Self;$/;"	f
atanh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn atanh(self) -> Self {$/;"	f
atanh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn atanh(self) -> Self;$/;"	f
atl_paths	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn atl_paths(target: &str, path: &Path) -> Option<(PathBuf, PathBuf)> {$/;"	f
base_digits_to_len	/Users/micro/projects/ramp/src/ll/base.rs	/^pub fn base_digits_to_len(num: usize, base: u32) -> usize {$/;"	f
base_impl	/Users/micro/projects/ramp/src/ll/base.rs	/^    macro_rules! base_impl ($/;"	d
basic_hashmap	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn basic_hashmap(_map: HashMap<u8, u8>) -> bool {$/;"	f
basic_hashset	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn basic_hashset(_set: HashSet<u8>) -> bool {$/;"	f
bench	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn bench<F: FnMut(&[u8], &[u8]) -> u64>(b: &mut test::Bencher, n: usize, mut f: F) {$/;"	f
bench	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    fn bench<F: FnMut(&[u8]) -> u64>(b: &mut test::Bencher, n: usize, mut f: F) {$/;"	f
bench_add	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add(b: &mut Bencher, xs: usize, ys: usize) {$/;"	f
bench_add	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_add(b: &mut Bencher) {$/;"	f
bench_add_1000_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add_1000_10(b: &mut Bencher) {$/;"	f
bench_add_1000_1000	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add_1000_1000(b: &mut Bencher) {$/;"	f
bench_add_100_100	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add_100_100(b: &mut Bencher) {$/;"	f
bench_add_10_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add_10_10(b: &mut Bencher) {$/;"	f
bench_add_1_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_add_1_1(b: &mut Bencher) {$/;"	f
bench_add_5	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_add_5(b: &mut Bencher) {$/;"	f
bench_add_5_normalize	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_add_5_normalize(b: &mut Bencher) {$/;"	f
bench_add_normalize	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_add_normalize(b: &mut Bencher) {$/;"	f
bench_div	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div(b: &mut Bencher, xs: usize, ys: usize) {$/;"	f
bench_div	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_div(b: &mut Bencher) {$/;"	f
bench_div_1000_1000	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_1000_1000(b: &mut Bencher) {$/;"	f
bench_div_10_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_10_10(b: &mut Bencher) {$/;"	f
bench_div_1_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_1_1(b: &mut Bencher) {$/;"	f
bench_div_20_2	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_20_2(b: &mut Bencher) {$/;"	f
bench_div_250_250	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_250_250(b: &mut Bencher) {$/;"	f
bench_div_50_5	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_50_5(b: &mut Bencher) {$/;"	f
bench_div_50_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_div_50_50(b: &mut Bencher) {$/;"	f
bench_div_normalize	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_div_normalize(b: &mut Bencher) {$/;"	f
bench_factorial_100	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_factorial_100(b: &mut Bencher) {$/;"	f
bench_factorial_1000	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_factorial_1000(b: &mut Bencher) {$/;"	f
bench_gcd	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd(b: &mut Bencher, xs: usize, ys: usize) {$/;"	f
bench_gcd_100_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_100_10(b: &mut Bencher) {$/;"	f
bench_gcd_100_100	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_100_100(b: &mut Bencher) {$/;"	f
bench_gcd_100_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_100_50(b: &mut Bencher) {$/;"	f
bench_gcd_10_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_10_10(b: &mut Bencher) {$/;"	f
bench_gcd_1_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_1_1(b: &mut Bencher) {$/;"	f
bench_gcd_20_2	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_20_2(b: &mut Bencher) {$/;"	f
bench_gcd_250_150	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_250_150(b: &mut Bencher) {$/;"	f
bench_gcd_50_5	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_50_5(b: &mut Bencher) {$/;"	f
bench_gcd_50_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_gcd_50_50(b: &mut Bencher) {$/;"	f
bench_mul	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul(b: &mut Bencher, xs: usize, ys: usize) {$/;"	f
bench_mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_mul(b: &mut Bencher) {$/;"	f
bench_mul_1000_1000	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_1000_1000(b: &mut Bencher) {$/;"	f
bench_mul_10_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_10_10(b: &mut Bencher) {$/;"	f
bench_mul_1_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_1_1(b: &mut Bencher) {$/;"	f
bench_mul_250_250	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_250_250(b: &mut Bencher) {$/;"	f
bench_mul_2_20	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_2_20(b: &mut Bencher) {$/;"	f
bench_mul_50_1500	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_50_1500(b: &mut Bencher) {$/;"	f
bench_mul_50_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_50_50(b: &mut Bencher) {$/;"	f
bench_mul_5_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_mul_5_50(b: &mut Bencher) {$/;"	f
bench_mul_normalize	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_mul_normalize(b: &mut Bencher) {$/;"	f
bench_pow	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow(b: &mut Bencher, xs: usize, ys: usize) {$/;"	f
bench_pow_10_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_10_10(b: &mut Bencher) {$/;"	f
bench_pow_1_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_1_1(b: &mut Bencher) {$/;"	f
bench_pow_250_250	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_250_250(b: &mut Bencher) {$/;"	f
bench_pow_2_20	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_2_20(b: &mut Bencher) {$/;"	f
bench_pow_50_1500	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_50_1500(b: &mut Bencher) {$/;"	f
bench_pow_50_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_50_50(b: &mut Bencher) {$/;"	f
bench_pow_5_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_5_50(b: &mut Bencher) {$/;"	f
bench_pow_mod	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_mod(b: &mut Bencher, gs: usize, es: usize, ms: usize) {$/;"	f
bench_pow_mod_50_50_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_pow_mod_50_50_50(b: &mut Bencher) {$/;"	f
bench_rng_all_ones	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_rng_all_ones(b: &mut Bencher) {$/;"	f
bench_sqr	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr(b: &mut Bencher, xs: usize) {$/;"	f
bench_sqr_1	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr_1(b: &mut Bencher) {$/;"	f
bench_sqr_10	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr_10(b: &mut Bencher) {$/;"	f
bench_sqr_1000	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr_1000(b: &mut Bencher) {$/;"	f
bench_sqr_250	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr_250(b: &mut Bencher) {$/;"	f
bench_sqr_50	/Users/micro/projects/ramp/src/int.rs	/^    fn bench_sqr_50(b: &mut Bencher) {$/;"	f
bench_sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_sub(b: &mut Bencher) {$/;"	f
bench_sub_normalize	/Users/micro/projects/ramp/src/rational.rs	/^    fn bench_sub_normalize(b: &mut Bencher) {$/;"	f
bigint_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^macro_rules! bigint_add {$/;"	d
bigint_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^macro_rules! bigint_sub {$/;"	d
biguint_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn biguint_shl(n: Cow<BigUint>, bits: usize) -> BigUint {$/;"	f
biguint_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn biguint_shr(n: Cow<BigUint>, bits: usize) -> BigUint {$/;"	f
bin_subdir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn bin_subdir(target: &str) -> Vec<(&'static str, &'static str)> {$/;"	f
binaryheaps	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn binaryheaps() {$/;"	f
binomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn binomial<T: Integer + Clone>(mut n: T, k: T) -> T {$/;"	f
binop_cases	/Users/micro/projects/ramp/src/rational.rs	/^    macro_rules! binop_cases {$/;"	d
bit	/Users/micro/projects/ramp/src/int.rs	/^    pub fn bit(&self, bit: u32) -> bool {$/;"	f
bit_length	/Users/micro/projects/ramp/src/int.rs	/^    pub fn bit_length(&self) -> u32 {$/;"	f
bitand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn bitand(self, other: &BigUint) -> BigUint {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^            fn bitand(mut self, other: $t) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^            fn bitand(self, other: $t) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^            fn bitand(self, other: &'a Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^            fn bitand(self, other: Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand() {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand(mut self, other: &'a Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand(mut self, other: Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand(mut self, other: Limb) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand(self, other: &'a Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand(self, other: Int) -> Int {$/;"	f
bitand	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn bitand(self, other: Limb) -> Limb {$/;"	f
bitand_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn bitand_assign(&mut self, other: $t) {$/;"	f
bitand_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand_assign(&mut self, other: &'a Int) {$/;"	f
bitand_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand_assign(&mut self, other: Int) {$/;"	f
bitand_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand_assign(&mut self, other: Limb) {$/;"	f
bitand_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn bitand_rand() {$/;"	f
bitop	/Users/micro/projects/ramp/src/ll/bit.rs	/^unsafe fn bitop<F: Fn(Limb, Limb) -> Limb>(mut wp: LimbsMut,$/;"	f
bitop_limb	/Users/micro/projects/ramp/src/int.rs	/^fn bitop_limb(a: &mut Int, b: Limb, signed: bool, op: BitOp) {$/;"	f
bitop_neg	/Users/micro/projects/ramp/src/int.rs	/^fn bitop_neg(mut a: Int, mut b: Int, op: BitOp) -> Int {$/;"	f
bitop_ref	/Users/micro/projects/ramp/src/int.rs	/^fn bitop_ref(this: &mut Int, other: &Int, op: BitOp) -> Result<(), ()> {$/;"	f
bitor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn bitor(self, other: &BigUint) -> BigUint {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitor(mut self, other: $t) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitor(self, other: $t) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitor(self, other: &'a Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitor(self, other: Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor() {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor(mut self, other: &'a Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor(mut self, other: Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor(mut self, other: Limb) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor(self, other: &'a Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor(self, other: Int) -> Int {$/;"	f
bitor	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn bitor(self, other: Limb) -> Limb {$/;"	f
bitor_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn bitor_assign(&mut self, other: $t) {$/;"	f
bitor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor_assign(&mut self, other: &'a Int) {$/;"	f
bitor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor_assign(&mut self, other: Int) {$/;"	f
bitor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitor_assign(&mut self, other: Limb) {$/;"	f
bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn bits(self) -> Self::Bits {$/;"	f
bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn bits(self) -> Self::Bits;$/;"	f
bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn bits(&self) -> usize {$/;"	f
bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn bits(&self) -> usize {$/;"	f
bitxor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn bitxor(self, other: &BigUint) -> BigUint {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitxor(mut self, other: $t) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitxor(self, other: $t) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitxor(self, other: &'a Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^            fn bitxor(self, other: Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor() {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor(mut self, other: &'a Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor(mut self, other: Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor(mut self, other: Limb) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor(self, other: &'a Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor(self, other: Int) -> Int {$/;"	f
bitxor	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn bitxor(self, other: Limb) -> Limb {$/;"	f
bitxor_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn bitxor_assign(&mut self, other: $t) {$/;"	f
bitxor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor_assign(&mut self, other: &'a Int) {$/;"	f
bitxor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor_assign(&mut self, other: Int) {$/;"	f
bitxor_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn bitxor_assign(&mut self, other: Limb) {$/;"	f
bools	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn bools() {$/;"	f
bounded_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^macro_rules! bounded_impl {$/;"	d
bounded_tuple	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^macro_rules! bounded_tuple {$/;"	d
can_deref	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn can_deref(self, _ptr: usize) -> bool { true }$/;"	f
can_deref	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn can_deref(self, ptr: usize) -> bool {$/;"	f
canon	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^                fn canon(x: $f) -> $f { if x == 0.0 { 0.0 } else { x } }$/;"	f
cargo_metadata	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cargo_metadata(&mut self, cargo_metadata: bool) -> &mut Build {$/;"	f
cast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub fn cast<U>(&self) -> Result<ComPtr<U>, i32>$/;"	f
cast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^pub fn cast<T: NumCast, U: NumCast>(n: T) -> Option<U> {$/;"	f
cbrt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn cbrt(self) -> Self {$/;"	f
cbrt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn cbrt(self) -> Self;$/;"	f
cc_env	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cc_env(&self) -> OsString {$/;"	f
ceil	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn ceil(self) -> Self {$/;"	f
ceil	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn ceil(self) -> Self;$/;"	f
cflags_env	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cflags_env(&self) -> OsString {$/;"	f
chars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn chars() {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(a: &BigInt, b: &BigInt, d: &BigInt, m: &BigInt) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(a: &BigInt, b: &BigInt, q: &BigInt, r: &BigInt) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(a: &BigInt, b: BigDigit, q: &BigInt, r: &BigInt) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(a: isize, b: isize, c: isize) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(b1: &BigInt, f: f32) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(b1: &BigInt, f: f64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(b1: BigInt, i: i64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(b1: BigInt, u: u64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(inp_s: Sign, inp_n: usize, ans_s: Sign, ans_n: usize) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(l: BigInt, u: BigInt) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(n: BigInt, ans_1: BigUint) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(s: &[u8], result: &str) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(s: &str, ans: Option<isize>) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(s: &str, result: &str) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check(s: &str, result: Vec<u8>) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    macro_rules! check {$/;"	d
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(a: usize, b: usize, c: usize) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(b1: &BigUint, f: f32) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(b1: &BigUint, f: f64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(b1: BigUint, i: i64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(b1: BigUint, u: u64) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(n: BigUint, ans: BigInt) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(n: usize, s: &str) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(s: &str, result: &str) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(s: &str, shift: usize, ans: &str) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn check(slice: &[BigDigit], data: &[BigDigit]) {$/;"	f
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    macro_rules! check {$/;"	d
check	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    macro_rules! check {$/;"	d
check_binomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    macro_rules! check_binomial {$/;"	d
check_multinomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    macro_rules! check_multinomial {$/;"	d
check_num_ops	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn check_num_ops() {$/;"	f
check_numassign_ops	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn check_numassign_ops() {$/;"	f
check_numref_ops	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn check_numref_ops() {$/;"	f
check_refnum_ops	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn check_refnum_ops() {$/;"	f
check_refref_ops	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn check_refref_ops() {$/;"	f
check_simple	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    macro_rules! check_simple {$/;"	d
check_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check_sub(a: &BigInt, b: &BigInt, ans_d: &BigInt, ans_m: &BigInt) {$/;"	f
check_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check_sub(a: &BigInt, b: &BigInt, ans_q: &BigInt, ans_r: &BigInt) {$/;"	f
check_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^    fn check_sub(a: &BigInt, b: BigDigit, ans_q: &BigInt, ans_r: &BigInt) {$/;"	f
checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn checked_add(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn checked_add(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn checked_add(&self, v: &BigUint) -> Option<BigUint> {$/;"	f
checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^    fn checked_add(&self, v: &Self) -> Option<Self>;$/;"	f
checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn checked_div(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn checked_div(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn checked_div(&self, v: &BigUint) -> Option<BigUint> {$/;"	f
checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^    fn checked_div(&self, v: &Self) -> Option<Self>;$/;"	f
checked_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^macro_rules! checked_impl {$/;"	d
checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn checked_mul(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn checked_mul(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn checked_mul(&self, v: &BigUint) -> Option<BigUint> {$/;"	f
checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^    fn checked_mul(&self, v: &Self) -> Option<Self>;$/;"	f
checked_pow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/pow.rs	/^pub fn checked_pow<T: Clone + One + CheckedMul>(mut base: T, mut exp: usize) -> Option<T> {$/;"	f
checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn checked_sub(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn checked_sub(&self, v: &BigInt) -> Option<BigInt> {$/;"	f
checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn checked_sub(&self, v: &BigUint) -> Option<BigUint> {$/;"	f
checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/checked.rs	/^    fn checked_sub(&self, v: &Self) -> Option<Self>;$/;"	f
choose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn choose<'a, T>(&mut self, values: &'a [T]) -> Option<&'a T> where Self: Sized {$/;"	f
choose_mut	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn choose_mut<'a, T>(&mut self, values: &'a mut [T]) -> Option<&'a mut T> where Self: Sized {$/;"	f
clamp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^pub fn clamp<T: PartialOrd>(input: T, min: T, max: T) -> T {$/;"	f
clamp_test	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn clamp_test() {$/;"	f
classify	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn classify(self) -> FpCategory {$/;"	f
classify	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn classify(self) -> FpCategory;$/;"	f
clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn clone(&self) -> Self {$/;"	f
clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn clone(&self) -> Self { *self }$/;"	f
clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn clone(&self) -> Isaac64Rng {$/;"	f
clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn clone(&self) -> IsaacRng {$/;"	f
clone	/Users/micro/projects/ramp/src/int.rs	/^    fn clone(&self) -> Int {$/;"	f
clone	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn clone(&self) -> Limb { *self }$/;"	f
clone	/Users/micro/projects/ramp/src/rational.rs	/^    fn clone(&self) -> Rational {$/;"	f
clone_from	/Users/micro/projects/ramp/src/int.rs	/^    fn clone_from(&mut self, other: &Int) {$/;"	f
clone_from	/Users/micro/projects/ramp/src/rational.rs	/^    fn clone_from(&mut self, other: &Rational)  {$/;"	f
cmd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn cmd<P: AsRef<OsStr>>(&self, prog: P) -> Command {$/;"	f
cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn cmp(&self, other: &BigInt) -> Ordering {$/;"	f
cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn cmp(&self, other: &BigUint) -> Ordering {$/;"	f
cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn cmp(&self, other: &Int) -> Ordering {$/;"	f
cmp	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            fn cmp(&self, other: &$ty) -> Ordering {$/;"	f
cmp	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn cmp(xp: Limbs, yp: Limbs, n: i32) -> Ordering {$/;"	f
cmp	/Users/micro/projects/ramp/src/rational.rs	/^    fn cmp(&self, other: &Rational) -> Ordering {$/;"	f
cmp_64	/Users/micro/projects/ramp/src/int.rs	/^fn cmp_64(x: &Int, mag: u64, neg: bool) -> Ordering {$/;"	f
cmp_slice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn cmp_slice(a: &[BigDigit], b: &[BigDigit]) -> Ordering {$/;"	f
command_add_output_file	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^fn command_add_output_file(cmd: &mut Command, dst: &Path, msvc: bool, is_asm: bool, is_arm: bool) {$/;"	f
compile	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn compile(&self, output: &str) {$/;"	f
compile_object	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn compile_object(&self, obj: &Object) -> Result<(), Error> {$/;"	f
compile_objects	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn compile_objects(&self, objs: &[Object]) -> Result<(), Error> {$/;"	f
compiler	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn compiler<P: AsRef<Path>>(&mut self, compiler: P) -> &mut Build {$/;"	f
compute	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn compute<T: Copy>(x: &T, y: T) -> T$/;"	f
compute	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn compute<T: Num + Copy>(x: T, y: T) -> T {$/;"	f
compute	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn compute<T: NumAssign + Copy>(mut x: T, y: T) -> T {$/;"	f
compute	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn compute<T: NumRef>(x: T, y: &T) -> T {$/;"	f
compute	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn compute<T>(x: &T, y: &T) -> T$/;"	f
construct_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^            fn construct_range(low: $ty, high: $ty) -> Range<$ty> {$/;"	f
construct_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn construct_range(low: Self, high: Self) -> Range<Self>;$/;"	f
convert_deg_rad	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn convert_deg_rad() {$/;"	f
copy_decr	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn copy_decr(src: Limbs, dst: LimbsMut, mut n: i32) {$/;"	f
copy_incr	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn copy_incr(src: Limbs, dst: LimbsMut, n: i32) {$/;"	f
copy_rest	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn copy_rest(src: Limbs, dst: LimbsMut, n: i32, start: i32) {$/;"	f
core	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^fn core(output: &mut [w32; STATE_WORDS], input: &[w32; STATE_WORDS]) {$/;"	f
cos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn cos(self) -> Self {$/;"	f
cos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn cos(self) -> Self;$/;"	f
cosh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn cosh(self) -> Self {$/;"	f
cosh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn cosh(self) -> Self;$/;"	f
count_ones	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn count_ones(self) -> u32 {$/;"	f
count_ones	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn count_ones(self) -> u32;$/;"	f
count_ones	/Users/micro/projects/ramp/src/int.rs	/^    pub fn count_ones(&self) -> usize {$/;"	f
count_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn count_zeros(self) -> u32 {$/;"	f
count_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn count_zeros(self) -> u32;$/;"	f
cpp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cpp(&mut self, cpp: bool) -> &mut Build {$/;"	f
cpp_link_stdlib	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cpp_link_stdlib<'a, V: Into<Option<&'a str>>>($/;"	f
cpp_set_stdlib	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cpp_set_stdlib<'a, V: Into<Option<&'a str>>>($/;"	f
cuda	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn cuda(&mut self, cuda: bool) -> &mut Build {$/;"	f
deallocate_bytes	/Users/micro/projects/ramp/src/mem.rs	/^pub unsafe fn deallocate_bytes(ptr: ptr::NonNull<u8>, size: usize) {$/;"	f
debug	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn debug(&mut self, debug: bool) -> &mut Build {$/;"	f
debug_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn debug_flag(&self) -> &'static str {$/;"	f
debug_reprs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn debug_reprs(args: &[&Debug]) -> Vec<String> {$/;"	f
decompose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn decompose(self) -> (bool, Self::Exponent, Self::Significand) {$/;"	f
decompose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn decompose(self) -> (bool, Self::Exponent, Self::Significand);$/;"	f
decompose_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn decompose_raw(self) -> (bool, Self::RawExponent, Self::Significand) {$/;"	f
decompose_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn decompose_raw(self) -> (bool, Self::RawExponent, Self::Significand);$/;"	f
decr	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn decr(mut ptr: LimbsMut, decr: Limb) {$/;"	f
default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn default() -> Build {$/;"	f
default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn default() -> BigInt {$/;"	f
default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn default() -> BigUint {$/;"	f
default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^        fn default() -> Counter {$/;"	f
default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn default() -> ReseedWithDefault { ReseedWithDefault }$/;"	f
default	/Users/micro/projects/ramp/src/int.rs	/^    fn default() -> Int {$/;"	f
default	/Users/micro/projects/ramp/src/rational.rs	/^    fn default() -> Rational {$/;"	f
define	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn define<'a, V: Into<Option<&'a str>>>(&mut self, var: &str, val: V) -> &mut Build {$/;"	f
define_float_eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    macro_rules! define_float_eq {$/;"	d
deref	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn deref(&self) -> &T {$/;"	f
deref	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^            fn deref(&self) -> &$pinterface {$/;"	f
deref	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            fn deref(&self) -> &Limb {$/;"	f
deref_mut	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn deref_mut(&mut self) -> &mut Limb {$/;"	f
description	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn description(&self) -> &str {$/;"	f
description	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^    fn description(&self) -> &str {$/;"	f
description	/Users/micro/projects/ramp/src/int.rs	/^    fn description<'a>(&'a self) -> &'a str {$/;"	f
description	/Users/micro/projects/ramp/src/rational.rs	/^    fn description<'a>(&'a self) -> &'a str {$/;"	f
deserialize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error>$/;"	f
deserialize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn deserialize<D>(deserializer: &mut D) -> Result<Self, D::Error>$/;"	f
discard	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn discard() -> TestResult {$/;"	f
distance	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^pub fn distance(x: &[u8], y: &[u8]) -> u64 {$/;"	f
distance_	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^fn distance_(x: &[u8], y: &[u8]) -> u64 {$/;"	f
distance_fast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^pub fn distance_fast(x: &[u8], y: &[u8]) -> Result<u64, DistanceError> {$/;"	f
distance_fast_qc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn distance_fast_qc() {$/;"	f
distance_fast_smoke_huge	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn distance_fast_smoke_huge() {$/;"	f
distance_smoke	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn distance_smoke() {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: &BigInt) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: BigDigit) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: BigInt) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: DoubleBigDigit) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: i32) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div(self, other: i64) -> BigInt {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div(self, other: &BigUint) -> BigUint {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div(self, other: BigDigit) -> BigUint {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div(self, other: BigUint) -> BigUint {$/;"	f
div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div(self, other: DoubleBigDigit) -> BigUint {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^            fn div(mut self, other: $t) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^            fn div(self, mut other: Int) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^            fn div(self, other: $t) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^            fn div(self, other: &'a Int) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^    fn div() {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^    fn div(mut self, other: Limb) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^    fn div(self, other: &'a Int) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/int.rs	/^    fn div(self, other: Int) -> Int {$/;"	f
div	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn div(self, other: BaseInt) -> Limb {$/;"	f
div	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn div(self, other: Limb) -> Limb {$/;"	f
div	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub fn div(nh: Limb, nl: Limb, d: Limb) -> (Limb, Limb) {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div() {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(mut self, other: &'a Int) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(mut self, other: &'a Rational) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(mut self, other: Int) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(mut self, other: Rational) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(self, mut other: Rational) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(self, other: &'a Int) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(self, other: &'a Rational) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(self, other: Int) -> Rational {$/;"	f
div	/Users/micro/projects/ramp/src/rational.rs	/^    fn div(self, other: Rational) -> Rational {$/;"	f
div_2_usize_by_usize	/Users/micro/projects/ramp/src/ll/limb.rs	/^            fn div_2_usize_by_usize(u1:Word, u0: Word, v: Word) -> (Word,Word) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn div_assign(&mut self, other: $t) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn div_assign(&mut self, other: &'a Int) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn div_assign(&mut self, other: Int) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn div_assign(&mut self, other: Limb) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn div_assign(&mut self, other: &'a Int) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn div_assign(&mut self, other: &'a Rational) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn div_assign(&mut self, other: Int) {$/;"	f
div_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn div_assign(&mut self, other: Rational) {$/;"	f
div_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div_floor(&self, other: &BigInt) -> BigInt {$/;"	f
div_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div_floor(&self, other: &BigUint) -> BigUint {$/;"	f
div_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn div_floor(&self, other: &Self) -> Self {$/;"	f
div_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn div_floor(&self, other: &Self) -> Self;$/;"	f
div_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn div_floor<T: Integer>(x: T, y: T) -> T {$/;"	f
div_floor	/Users/micro/projects/ramp/src/int.rs	/^    fn div_floor(&self, other: &Int) -> Int {$/;"	f
div_impl	/Users/micro/projects/ramp/src/ll/limb.rs	/^        fn div_impl(nh: Limb, nl: Limb, d: Limb) -> (Limb, Limb) {$/;"	f
div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div_mod_floor(&self, other: &BigInt) -> (BigInt, BigInt) {$/;"	f
div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div_mod_floor(&self, other: &BigUint) -> (BigUint, BigUint) {$/;"	f
div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn div_mod_floor(&self, other: &Self) -> (Self, Self) {$/;"	f
div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn div_mod_floor(&self, other: &Self) -> (Self, Self) {$/;"	f
div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn div_mod_floor<T: Integer>(x: T, y: T) -> (T, T) {$/;"	f
div_preinv	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub fn div_preinv(nh: Limb, nl: Limb, d: Limb, dinv: Limb) -> (Limb, Limb) {$/;"	f
div_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn div_rand() {$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn div_rem(u: &BigUint, d: &BigUint) -> (BigUint, BigUint) {$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn div_rem(&self, other: &BigInt) -> (BigInt, BigInt) {$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn div_rem(&self, other: &BigUint) -> (BigUint, BigUint) {$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn div_rem(&self, other: &Self) -> (Self, Self) {$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn div_rem(&self, other: &Self) -> (Self, Self);$/;"	f
div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn div_rem<T: Integer>(x: T, y: T) -> (T, T) {$/;"	f
div_rem	/Users/micro/projects/ramp/src/int.rs	/^    fn div_rem(&self, other: &Int) -> (Int, Int) {$/;"	f
div_rem_digit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn div_rem_digit(mut a: BigUint, b: BigDigit) -> (BigUint, BigDigit) {$/;"	f
div_unnorm	/Users/micro/projects/ramp/src/ll/base.rs	/^fn div_unnorm(n: Limb, d: Limb) -> (Limb, Limb) {$/;"	f
div_wide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^fn div_wide(hi: BigDigit, lo: BigDigit, divisor: BigDigit) -> (BigDigit, BigDigit) {$/;"	f
divide_by_zero	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub fn divide_by_zero() -> ! {$/;"	f
divides	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn divides(&self, other: &BigInt) -> bool {$/;"	f
divides	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn divides(&self, other: &BigUint) -> bool {$/;"	f
divides	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn divides(&self, other: &Self) -> bool {$/;"	f
divides	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn divides(&self, other: &Self) -> bool;$/;"	f
divides	/Users/micro/projects/ramp/src/int.rs	/^    fn divides(&self, other: &Int) -> bool {$/;"	f
divmod	/Users/micro/projects/ramp/src/int.rs	/^    pub fn divmod(&self, other: &Int) -> (Int, Int) {$/;"	f
divmod_zero	/Users/micro/projects/ramp/src/int.rs	/^    fn divmod_zero() {$/;"	f
divrem	/Users/micro/projects/ramp/src/int.rs	/^            fn divrem(mut self, other: $t) -> Self::Output {$/;"	f
divrem	/Users/micro/projects/ramp/src/int.rs	/^            fn divrem(self, other: $t) -> Self::Output {$/;"	f
divrem	/Users/micro/projects/ramp/src/int.rs	/^    fn divrem() {$/;"	f
divrem	/Users/micro/projects/ramp/src/int.rs	/^    fn divrem(mut self, other: Limb) -> Self::Output {$/;"	f
divrem	/Users/micro/projects/ramp/src/int.rs	/^    fn divrem(self, other: &'a Int) -> (Int, Int) {$/;"	f
divrem	/Users/micro/projects/ramp/src/ll/div.rs	/^pub unsafe fn divrem(mut qp: LimbsMut, mut rp: LimbsMut,$/;"	f
divrem	/Users/micro/projects/ramp/src/traits.rs	/^    fn divrem(self, rhs: RHS) -> Self::Output;$/;"	f
divrem_1	/Users/micro/projects/ramp/src/ll/div.rs	/^pub unsafe fn divrem_1(mut qp: LimbsMut, qxn: i32,$/;"	f
divrem_2	/Users/micro/projects/ramp/src/ll/div.rs	/^pub unsafe fn divrem_2(mut qp: LimbsMut, qxn: i32,$/;"	f
divrem_3by2	/Users/micro/projects/ramp/src/ll/div.rs	/^fn divrem_3by2(n2: Limb, n1: Limb, n0: Limb, d1: Limb, d0: Limb, dinv: Limb) -> (Limb, Limb, Limb) {$/;"	f
do_nothing	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn do_nothing() {}$/;"	f
double_round	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^macro_rules! double_round{$/;"	d
drop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn drop(&mut self) {$/;"	f
drop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn drop(&mut self) {$/;"	f
drop	/Users/micro/projects/ramp/src/int.rs	/^    fn drop(&mut self) {$/;"	f
drop	/Users/micro/projects/ramp/src/mem.rs	/^    fn drop(&mut self) {$/;"	f
dsquare	/Users/micro/projects/ramp/src/int.rs	/^    pub fn dsquare(mut self) -> Int {$/;"	f
dump	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn dump(lbl: &str, mut p: Limbs, mut n: i32) {$/;"	f
eComplete	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub const eComplete: InstanceState = -1i32 as u32;$/;"	c
eLocal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub const eLocal: InstanceState = 1;$/;"	c
eNoRebootRequired	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub const eNoRebootRequired: InstanceState = 4;$/;"	c
eNone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub const eNone: InstanceState = 0;$/;"	c
eRegistered	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^pub const eRegistered: InstanceState = 2;$/;"	c
empty_shrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^pub fn empty_shrinker<A: 'static>() -> Box<Iterator<Item=A>> {$/;"	f
empty_trait_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^macro_rules! empty_trait_impl {$/;"	d
ensure_capacity	/Users/micro/projects/ramp/src/int.rs	/^    fn ensure_capacity(&mut self, cap: u32) {$/;"	f
ensure_check_file	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn ensure_check_file(&self) -> Result<PathBuf, Error> {$/;"	f
enum_all_instances	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn enum_all_instances(&self) -> Result<EnumSetupInstances, i32> {$/;"	f
enum_instances	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn enum_instances(&self) -> Result<EnumSetupInstances, i32> {$/;"	f
env	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn env(&self) -> &[(OsString, OsString)] {$/;"	f
env_logger_init	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/lib.rs	/^fn env_logger_init() -> Result<(), log::SetLoggerError> {$/;"	f
env_logger_init	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/lib.rs	/^fn env_logger_init() { }$/;"	f
env_tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn env_tool(&self, name: &str) -> Option<(String, Option<String>, Vec<String>)> {$/;"	f
envflags	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn envflags(&self, name: &str) -> Vec<String> {$/;"	f
epsilon	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn epsilon() -> Self {$/;"	f
epsilon	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn epsilon() -> Self {$/;"	f
eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn eq(&self, other: &BigInt) -> bool {$/;"	f
eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn eq(&self, other: &BigUint) -> bool {$/;"	f
eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^            fn eq(s:$ty, v: Vec<$ty> ) {$/;"	f
eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn eq<A: Arbitrary + Eq + Debug + Hash>(s: A, v: Vec<A>) {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, &other: &i32) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, &other: &i64) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, &other: &u64) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, &other: &usize) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, other: &Int) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/int.rs	/^    fn eq(&self, other: &Limb) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn eq(&self, other: &BaseInt) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn eq(&self, other: &Limb) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            fn eq(&self, other: &$ty) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/rational.rs	/^    fn eq(&self, other: &Int) -> bool {$/;"	f
eq	/Users/micro/projects/ramp/src/rational.rs	/^    fn eq(&self, other: &Rational) -> bool {$/;"	f
eq_64	/Users/micro/projects/ramp/src/int.rs	/^fn eq_64(x: &Int, mag: u64, neg: bool) -> bool {$/;"	f
error	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn error<S: Into<String>>(msg: S) -> TestResult {$/;"	f
euclidean_gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^                fn euclidean_gcd(mut m: $T, mut n: $T) -> $T {$/;"	f
exp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn exp(self) -> Self {$/;"	f
exp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn exp(self) -> Self;$/;"	f
exp2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn exp2(self) -> Self {$/;"	f
exp2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn exp2(self) -> Self;$/;"	f
exp_m1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn exp_m1(self) -> Self {$/;"	f
exp_m1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn exp_m1(self) -> Self;$/;"	f
expand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn expand(&self) -> Vec<u8> {$/;"	f
expand_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn expand_flag(&self) -> &'static str {$/;"	f
expand_meta_quickcheck	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck_macros-0.6.1/src/lib.rs	/^fn expand_meta_quickcheck(cx: &mut ExtCtxt,$/;"	f
exponent_bias	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn exponent_bias() -> Self::Exponent {$/;"	f
exponent_bias	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn exponent_bias() -> Self::Exponent;$/;"	f
extra_warnings	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn extra_warnings(&mut self, warnings: bool) -> &mut Build {$/;"	f
extra_warnings_flags	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn extra_warnings_flags(&self) -> Option<&'static str> {$/;"	f
factor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^    fn factor(n: usize) -> BigUint {$/;"	f
fail	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^fn fail(s: &str) -> ! {$/;"	f
failed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn failed() -> TestResult { TestResult::from_bool(false) }$/;"	f
failed_msg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn failed_msg(&self) -> String {$/;"	f
file	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn file<P: AsRef<Path>>(&mut self, p: P) -> &mut Build {$/;"	f
files	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn files<P>(&mut self, p: P) -> &mut Build$/;"	f
fill	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^fn fill(r: &mut Read, mut buf: &mut [u8]) -> io::Result<()> {$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn fill_bytes(&mut self, dest: &mut [u8]) { self.rng.fill_bytes(dest) }$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn fill_bytes(&mut self, bytes: &mut [u8]) {$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn fill_bytes(&mut self, dest: &mut [u8]) {$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn fill_bytes(&mut self, v: &mut [u8]) {$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn fill_bytes(&mut self, v: &mut [u8]) { self.0.fill_bytes(v) }$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn fill_bytes(&mut self, v: &mut [u8]) {$/;"	f
fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn fill_bytes(&mut self, dest: &mut [u8]) {$/;"	f
find	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^pub fn find(target: &str, tool: &str) -> Option<Command> {$/;"	f
find_msbuild	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn find_msbuild(target: &str) -> Option<Tool> {$/;"	f
find_msbuild_vs15	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn find_msbuild_vs15(target: &str) -> Option<Tool> {$/;"	f
find_msvc_11	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn find_msvc_11(tool: &str, target: &str) -> Option<Tool> {$/;"	f
find_msvc_12	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn find_msvc_12(tool: &str, target: &str) -> Option<Tool> {$/;"	f
find_msvc_14	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn find_msvc_14(tool: &str, target: &str) -> Option<Tool> {$/;"	f
find_msvc_15	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn find_msvc_15(tool: &str, target: &str) -> Option<Tool> {$/;"	f
find_old_msbuild	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn find_old_msbuild(target: &str) -> Option<Tool> {$/;"	f
find_tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^pub fn find_tool(_target: &str, _tool: &str) -> Option<Tool> {$/;"	f
find_tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^pub fn find_tool(target: &str, tool: &str) -> Option<Tool> {$/;"	f
find_vs_version	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^pub fn find_vs_version() -> Result<VsVers, String> {$/;"	f
flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn flag(&mut self, flag: &str) -> &mut Build {$/;"	f
flag_if_supported	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn flag_if_supported(&mut self, flag: &str) -> &mut Build {$/;"	f
float_const_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^macro_rules! float_const_impl {$/;"	d
float_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^macro_rules! float_impl {$/;"	d
float_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^macro_rules! float_impl {$/;"	d
float_impls	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^macro_rules! float_impls {$/;"	d
float_trait_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^macro_rules! float_trait_impl {$/;"	d
floating_point_edge_cases	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn floating_point_edge_cases() {$/;"	f
floats32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn floats32() {$/;"	f
floats64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn floats64() {$/;"	f
floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn floor(self) -> Self {$/;"	f
floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn floor(self) -> Self;$/;"	f
fls	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn fls<T: traits::PrimInt>(v: T) -> usize {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/projects/ramp/src/int.rs	/^            fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/projects/ramp/src/int.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
fmt	/Users/micro/projects/ramp/src/rational.rs	/^    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {$/;"	f
for_each_tuple	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^macro_rules! for_each_tuple {$/;"	d
for_each_tuple_	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^macro_rules! for_each_tuple_ {$/;"	d
forward_all_binop_to_ref_ref	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_all_binop_to_ref_ref {$/;"	d
forward_all_binop_to_val_ref	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_all_binop_to_val_ref {$/;"	d
forward_all_binop_to_val_ref_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_all_binop_to_val_ref_commutative {$/;"	d
forward_all_scalar_binop_to_val_val	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_all_scalar_binop_to_val_val {$/;"	d
forward_all_scalar_binop_to_val_val_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_all_scalar_binop_to_val_val_commutative {$/;"	d
forward_ref_ref_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_ref_ref_binop {$/;"	d
forward_ref_ref_binop_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_ref_ref_binop_commutative {$/;"	d
forward_ref_val_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_ref_val_binop {$/;"	d
forward_ref_val_binop_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_ref_val_binop_commutative {$/;"	d
forward_scalar_ref_ref_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_scalar_ref_ref_binop {$/;"	d
forward_scalar_ref_val_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_scalar_ref_val_binop {$/;"	d
forward_scalar_val_ref_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_scalar_val_ref_binop {$/;"	d
forward_scalar_val_val_binop_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_scalar_val_val_binop_commutative {$/;"	d
forward_val_ref_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_val_ref_binop {$/;"	d
forward_val_val_binop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_val_val_binop {$/;"	d
forward_val_val_binop_commutative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! forward_val_val_binop_commutative {$/;"	d
fract	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn fract(self) -> Self {$/;"	f
fract	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn fract(self) -> Self;$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn from(e: io::Error) -> Error {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^            fn from(n: $T) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from(n: BigUint) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from(n: i64) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from(n: u64) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^            fn from(n: $T) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from(mut n: u64) -> Self {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^    fn from(err: ParseIntError) -> ParseBigIntError {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn from<N: ToPrimitive>(n: N) -> Option<$T> {$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from<T: ToPrimitive>(n: T) -> Option<Self>;$/;"	f
from	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from<U: ToPrimitive>(n: U) -> Option<Self> {$/;"	f
from	/Users/micro/projects/ramp/src/int.rs	/^            fn from(i: &'a Int) -> $t {$/;"	f
from	/Users/micro/projects/ramp/src/int.rs	/^            fn from(val: $t) -> Int {$/;"	f
from	/Users/micro/projects/ramp/src/rational.rs	/^            fn from(val: $fty) -> Rational {$/;"	f
from	/Users/micro/projects/ramp/src/rational.rs	/^    fn from(e: ParseIntError) -> ParseRationalError {$/;"	f
from	/Users/micro/projects/ramp/src/rational.rs	/^    fn from(val: U) -> Rational {$/;"	f
from_base	/Users/micro/projects/ramp/src/ll/base.rs	/^pub unsafe fn from_base(mut out: LimbsMut, bp: *const u8, bs: i32, base: u32) -> usize {$/;"	f
from_base_small	/Users/micro/projects/ramp/src/ll/base.rs	/^unsafe fn from_base_small(mut out: LimbsMut, mut bp: *const u8, bs: i32, base: u32) -> usize {$/;"	f
from_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn from_be(x: Self) -> Self {$/;"	f
from_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn from_be(x: Self) -> Self;$/;"	f
from_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_biguint(sign: Sign, data: BigUint) -> BigInt {$/;"	f
from_bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn from_bits(bits: Self::Bits) -> Self {$/;"	f
from_bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn from_bits(x: Self::Bits) -> Self;$/;"	f
from_bitwise_digits_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn from_bitwise_digits_le(v: &[u8], bits: usize) -> BigUint {$/;"	f
from_bool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn from_bool(b: bool) -> TestResult {$/;"	f
from_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_bytes_be(sign: Sign, bytes: &[u8]) -> BigInt {$/;"	f
from_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn from_bytes_be(bytes: &[u8]) -> BigUint {$/;"	f
from_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_bytes_le(sign: Sign, bytes: &[u8]) -> BigInt {$/;"	f
from_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn from_bytes_le(bytes: &[u8]) -> BigUint {$/;"	f
from_doublebigdigit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub fn from_doublebigdigit(n: DoubleBigDigit) -> (BigDigit, BigDigit) {$/;"	f
from_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_f32(n: f32) -> Option<Self> {$/;"	f
from_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from_f64(n: f64) -> Option<BigInt> {$/;"	f
from_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from_f64(mut n: f64) -> Option<BigUint> {$/;"	f
from_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_f64(n: f64) -> Option<Self> {$/;"	f
from_float	/Users/micro/projects/ramp/src/rational.rs	/^    fn from_float() {$/;"	f
from_i16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_i16(n: i16) -> Option<Self> {$/;"	f
from_i32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_i32(n: i32) -> Option<Self> {$/;"	f
from_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from_i64(n: i64) -> Option<BigInt> {$/;"	f
from_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from_i64(n: i64) -> Option<BigUint> {$/;"	f
from_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_i64(n: i64) -> Option<Self> { T::from_i64(n).map(Wrapping) }$/;"	f
from_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_i64(n: i64) -> Option<Self>;$/;"	f
from_i8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_i8(n: i8) -> Option<Self> {$/;"	f
from_inexact_bitwise_digits_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn from_inexact_bitwise_digits_le(v: &[u8], bits: usize) -> BigUint {$/;"	f
from_int_primitive	/Users/micro/projects/ramp/src/rational.rs	/^    fn from_int_primitive() {$/;"	f
from_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_isize(n: isize) -> Option<Self> {$/;"	f
from_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn from_le(x: Self) -> Self {$/;"	f
from_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn from_le(x: Self) -> Self;$/;"	f
from_radix_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_radix_be(sign: Sign, buf: &[u8], radix: u32) -> Option<BigInt> {$/;"	f
from_radix_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn from_radix_be(buf: &[u8], radix: u32) -> Option<BigUint> {$/;"	f
from_radix_digits_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn from_radix_digits_be(v: &[u8], radix: u32) -> BigUint {$/;"	f
from_radix_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_radix_le(sign: Sign, buf: &[u8], radix: u32) -> Option<BigInt> {$/;"	f
from_radix_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn from_radix_le(buf: &[u8], radix: u32) -> Option<BigUint> {$/;"	f
from_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub unsafe fn from_raw(ptr: *mut T) -> ComPtr<T> {$/;"	f
from_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub unsafe fn from_raw(s: BSTR) -> BStr {$/;"	f
from_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub unsafe fn from_raw(obj: *mut IEnumSetupInstances) -> EnumSetupInstances {$/;"	f
from_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub unsafe fn from_raw(obj: *mut ISetupInstance) -> SetupInstance {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn from_seed(seed: &'a [u32]) -> ChaChaRng {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn from_seed(seed: &'a [u32]) -> IsaacRng {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn from_seed(seed: &'a [u64]) -> Isaac64Rng {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn from_seed(seed: &'a [usize]) -> StdRng {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn from_seed(seed: Seed) -> Self;$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn from_seed(seed: [u32; 4]) -> XorShiftRng {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^        fn from_seed(seed: u32) -> Counter {$/;"	f
from_seed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn from_seed((rsdr, seed): (Rsdr, S)) -> ReseedingRng<R, Rsdr> {$/;"	f
from_signed_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_signed_bytes_be(digits: &[u8]) -> BigInt {$/;"	f
from_signed_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_signed_bytes_le(digits: &[u8]) -> BigInt {$/;"	f
from_single_limb	/Users/micro/projects/ramp/src/int.rs	/^    pub fn from_single_limb(limb: Limb) -> Int {$/;"	f
from_slice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn from_slice(sign: Sign, slice: &[BigDigit]) -> BigInt {$/;"	f
from_slice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn from_slice(slice: &[BigDigit]) -> BigUint {$/;"	f
from_str	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from_str(s: &str) -> Result<BigInt, ParseBigIntError> {$/;"	f
from_str	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from_str(s: &str) -> Result<BigUint, ParseBigIntError> {$/;"	f
from_str	/Users/micro/projects/ramp/src/int.rs	/^    fn from_str(src: &str) -> Result<Int, ParseIntError> {$/;"	f
from_str	/Users/micro/projects/ramp/src/rational.rs	/^    fn from_str(s: &str) -> Result<Rational, ParseRationalError> {$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from_str_radix(mut s: &str, radix: u32) -> Result<BigInt, ParseBigIntError> {$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from_str_radix(s: &str, radix: u32) -> Result<BigUint, ParseBigIntError> {$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^            fn from_str_radix(s: &str, radix: u32)$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^            fn from_str_radix(src: &str, radix: u32)$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr> {$/;"	f
from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>;$/;"	f
from_str_radix	/Users/micro/projects/ramp/src/int.rs	/^    fn from_str_radix(src: &str, radix: u32) -> Result<Int, ParseIntError> {$/;"	f
from_str_radix	/Users/micro/projects/ramp/src/int.rs	/^    pub fn from_str_radix(mut src: &str, base: u8) -> Result<Int, ParseIntError> {$/;"	f
from_str_radix_unwrap	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn from_str_radix_unwrap() {$/;"	f
from_string_10	/Users/micro/projects/ramp/src/int.rs	/^    fn from_string_10() {$/;"	f
from_string_16	/Users/micro/projects/ramp/src/int.rs	/^    fn from_string_16() {$/;"	f
from_u16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_u16(n: u16) -> Option<Self> {$/;"	f
from_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_u32(n: u32) -> Option<Self> {$/;"	f
from_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn from_u64(n: u64) -> Option<BigInt> {$/;"	f
from_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn from_u64(n: u64) -> Option<BigUint> {$/;"	f
from_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_u64(n: u64) -> Option<Self> { T::from_u64(n).map(Wrapping) }$/;"	f
from_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_u64(n: u64) -> Option<Self>;$/;"	f
from_u8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_u8(n: u8) -> Option<Self> {$/;"	f
from_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn from_usize(n: usize) -> Option<Self> {$/;"	f
from_wide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn from_wide(wide: &[u16]) -> OsString {$/;"	f
from_wide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn from_wide(wide: &[u16]) -> Self;$/;"	f
from_wide_null	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn from_wide_null(wide: &[u16]) -> Self {$/;"	f
gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gcd(&self, other: &BigInt) -> BigInt {$/;"	f
gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn gcd(&self, other: &BigUint) -> BigUint {$/;"	f
gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn gcd(&self, other: &Self) -> Self {$/;"	f
gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn gcd(&self, other: &Self) -> Self;$/;"	f
gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn gcd<T: Integer>(x: T, y: T) -> T {$/;"	f
gcd	/Users/micro/projects/ramp/src/int.rs	/^    fn gcd(&self, other: &Int) -> Int {$/;"	f
gcd	/Users/micro/projects/ramp/src/int.rs	/^    fn gcd() {$/;"	f
gcd	/Users/micro/projects/ramp/src/int.rs	/^    pub fn gcd(&self, other: &Int) -> Int {$/;"	f
gcd	/Users/micro/projects/ramp/src/ll/gcd.rs	/^pub unsafe fn gcd(mut gp: LimbsMut, mut ap: LimbsMut, mut an: i32, mut bp: LimbsMut, mut bn: i32) -> i32 {$/;"	f
ge	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn ge(&self, other: &BaseInt) -> bool { self.0 >= *other }$/;"	f
ge	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn ge(&self, other: &Limb) -> bool { self.0 >= other.0 }$/;"	f
gen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn gen() -> super::StdGen<rand::ThreadRng> {$/;"	f
gen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn gen(mut self, gen: G) -> QuickCheck<G> {$/;"	f
gen	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn gen<T: Rand>(&mut self) -> T where Self: Sized {$/;"	f
gen_ascii_chars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn gen_ascii_chars<'a>(&'a mut self) -> AsciiGenerator<'a, Self> where Self: Sized {$/;"	f
gen_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_bigint(&mut self, bit_size: usize) -> BigInt {$/;"	f
gen_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_bigint(&mut self, bit_size: usize) -> BigInt;$/;"	f
gen_bigint_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_bigint_range(&mut self, lbound: &BigInt, ubound: &BigInt) -> BigInt {$/;"	f
gen_bigint_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_bigint_range(&mut self, lbound: &BigInt, ubound: &BigInt) -> BigInt;$/;"	f
gen_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint(&mut self, bit_size: usize) -> BigUint {$/;"	f
gen_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint(&mut self, bit_size: usize) -> BigUint;$/;"	f
gen_biguint_below	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint_below(&mut self, bound: &BigUint) -> BigUint {$/;"	f
gen_biguint_below	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint_below(&mut self, bound: &BigUint) -> BigUint;$/;"	f
gen_biguint_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint_range(&mut self, lbound: &BigUint, ubound: &BigUint) -> BigUint {$/;"	f
gen_biguint_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn gen_biguint_range(&mut self, lbound: &BigUint, ubound: &BigUint) -> BigUint;$/;"	f
gen_int	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int(&mut self, bits: usize) -> Int {$/;"	f
gen_int	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int(&mut self, bits: usize) -> Int;$/;"	f
gen_int_range	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_range(&mut self, lbound: &Int, ubound: &Int) -> Int {$/;"	f
gen_int_range	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_range(&mut self, lbound: &Int, ubound: &Int) -> Int;$/;"	f
gen_int_range	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_range() {$/;"	f
gen_int_range_negative	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_range_negative() {$/;"	f
gen_int_range_zero	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_range_zero() {$/;"	f
gen_int_with_zero_bits	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_int_with_zero_bits() {$/;"	f
gen_iter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn gen_iter<'a, T: Rand>(&'a mut self) -> Generator<'a, T, Self> where Self: Sized {$/;"	f
gen_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn gen_range<T: PartialOrd + SampleRange>(&mut self, low: T, high: T) -> T where Self: Sized {$/;"	f
gen_uint	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint(&mut self, bits: usize) -> Int {$/;"	f
gen_uint	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint(&mut self, bits: usize) -> Int;$/;"	f
gen_uint_below	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint_below(&mut self, bound: &Int) -> Int {$/;"	f
gen_uint_below	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint_below(&mut self, bound: &Int) -> Int;$/;"	f
gen_uint_below_all_ones	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint_below_all_ones() {$/;"	f
gen_uint_below_zero_or_negative	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint_below_zero_or_negative() {$/;"	f
gen_uint_with_zero_bits	/Users/micro/projects/ramp/src/int.rs	/^    fn gen_uint_with_zero_bits() {$/;"	f
gen_weighted_bool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn gen_weighted_bool(&mut self, n: u32) -> bool where Self: Sized {$/;"	f
get_ar	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_ar(&self) -> Result<(Command, String), Error> {$/;"	f
get_base_compiler	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_base_compiler(&self) -> Result<Tool, Error> {$/;"	f
get_compiler	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn get_compiler(&self) -> Tool {$/;"	f
get_cpp_link_stdlib	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_cpp_link_stdlib(&self) -> Result<Option<String>, Error> {$/;"	f
get_debug	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_debug(&self) -> bool {$/;"	f
get_hi	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    fn get_hi(n: DoubleBigDigit) -> BigDigit {$/;"	f
get_host	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_host(&self) -> Result<String, Error> {$/;"	f
get_instance_for_current_process	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn get_instance_for_current_process(&self) -> Result<SetupInstance, i32> {$/;"	f
get_lo	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    fn get_lo(n: DoubleBigDigit) -> BigDigit {$/;"	f
get_opt_level	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_opt_level(&self) -> Result<String, Error> {$/;"	f
get_out_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_out_dir(&self) -> Result<PathBuf, Error> {$/;"	f
get_radix_base	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn get_radix_base(radix: u32) -> (BigDigit, usize) {$/;"	f
get_sdk10_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_sdk10_dir() -> Option<(PathBuf, String)> {$/;"	f
get_sdk81_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_sdk81_dir() -> Option<PathBuf> {$/;"	f
get_sdk8_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_sdk8_dir() -> Option<PathBuf> {$/;"	f
get_target	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_target(&self) -> Result<String, Error> {$/;"	f
get_tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_tool(tool: &str, path: &Path, target: &str) -> Option<MsvcTool> {$/;"	f
get_ucrt_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_ucrt_dir() -> Option<(PathBuf, String)> {$/;"	f
get_usize_align_layout	/Users/micro/projects/ramp/src/mem.rs	/^unsafe fn get_usize_align_layout(size: usize) -> alloc::Layout {$/;"	f
get_var	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn get_var(&self, var_base: &str) -> Result<String, Error> {$/;"	f
get_vc_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn get_vc_dir(ver: &str) -> Option<PathBuf> {$/;"	f
getenv	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn getenv(&self, v: &str) -> Option<String> {$/;"	f
getenv_unwrap	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn getenv_unwrap(&self, v: &str) -> Result<String, Error> {$/;"	f
getrandom	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn getrandom(_buf: &mut [u8]) -> libc::c_long { -1 }$/;"	f
getrandom	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn getrandom(buf: &mut [u8]) -> libc::c_long {$/;"	f
getrandom_fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn getrandom_fill_bytes(v: &mut [u8]) {$/;"	f
gt	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn gt(&self, other: &BaseInt) -> bool { self.0 >  *other }$/;"	f
gt	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn gt(&self, other: &Limb) -> bool { self.0 >  other.0 }$/;"	f
has_msbuild_version	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    pub fn has_msbuild_version(version: &str) -> bool {$/;"	f
hash	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/lib.rs	/^fn hash<T: hash::Hash>(x: &T) -> u64 {$/;"	f
hash	/Users/micro/projects/ramp/src/int.rs	/^    fn hash<H>(&self, state: &mut H) where H: hash::Hasher {$/;"	f
hash	/Users/micro/projects/ramp/src/rational.rs	/^    fn hash<H>(&self, state: &mut H) where H: hash::Hasher {$/;"	f
hash_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn hash_rand() {$/;"	f
high_bit_set	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn high_bit_set(self) -> bool {$/;"	f
high_bits_to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn high_bits_to_u64(v: &BigUint) -> u64 {$/;"	f
high_part	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn high_part(self) -> Limb {$/;"	f
host	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn host(&mut self, host: &str) -> &mut Build {$/;"	f
host_arch	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn host_arch() -> u16 {$/;"	f
hypot	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn hypot(self, other: Self) -> Self {$/;"	f
hypot	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn hypot(self, other: Self) -> Self;$/;"	f
i32_abs_as_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^fn i32_abs_as_u32(a: i32) -> u32 {$/;"	f
i64_abs_as_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^fn i64_abs_as_u64(a: i64) -> u64 {$/;"	f
if_cfg	/Users/micro/projects/ramp/src/ll/limb.rs	/^macro_rules! if_cfg {$/;"	d
ilog2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn ilog2<T: traits::PrimInt>(v: T) -> usize {$/;"	f
impl_arb_for_single_tuple	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! impl_arb_for_single_tuple {$/;"	d
impl_arb_for_single_tuple_with_reversed_args	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! impl_arb_for_single_tuple_with_reversed_args {$/;"	d
impl_arb_for_tuples	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! impl_arb_for_tuples {$/;"	d
impl_arb_for_tuples_with_reversed_args	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! impl_arb_for_tuples_with_reversed_args {$/;"	d
impl_arith_prim	/Users/micro/projects/ramp/src/int.rs	/^macro_rules! impl_arith_prim ($/;"	d
impl_bigint_from_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^macro_rules! impl_bigint_from_int {$/;"	d
impl_bigint_from_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^macro_rules! impl_bigint_from_uint {$/;"	d
impl_biguint_from_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^macro_rules! impl_biguint_from_uint {$/;"	d
impl_fmt	/Users/micro/projects/ramp/src/int.rs	/^macro_rules! impl_fmt ($/;"	d
impl_from_float	/Users/micro/projects/ramp/src/rational.rs	/^macro_rules! impl_from_float {$/;"	d
impl_from_for_prim	/Users/micro/projects/ramp/src/int.rs	/^macro_rules! impl_from_for_prim ($/;"	d
impl_from_prim	/Users/micro/projects/ramp/src/int.rs	/^macro_rules! impl_from_prim ($/;"	d
impl_from_primitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_from_primitive {$/;"	d
impl_integer_for_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^macro_rules! impl_integer_for_isize {$/;"	d
impl_integer_for_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^macro_rules! impl_integer_for_usize {$/;"	d
impl_num_cast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_num_cast {$/;"	d
impl_to_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^macro_rules! impl_to_bigint {$/;"	d
impl_to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^macro_rules! impl_to_biguint {$/;"	d
impl_to_primitive_float	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_float {$/;"	d
impl_to_primitive_float_to_float	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_float_to_float {$/;"	d
impl_to_primitive_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_int {$/;"	d
impl_to_primitive_int_to_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_int_to_int {$/;"	d
impl_to_primitive_int_to_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_int_to_uint {$/;"	d
impl_to_primitive_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_uint {$/;"	d
impl_to_primitive_uint_to_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_uint_to_int {$/;"	d
impl_to_primitive_uint_to_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! impl_to_primitive_uint_to_uint {$/;"	d
include	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn include<P: AsRef<Path>>(&mut self, dir: P) -> &mut Build {$/;"	f
include_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn include_flag(&self) -> &'static str {$/;"	f
incr	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn incr(mut ptr: LimbsMut, incr: Limb) {$/;"	f
ind	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        macro_rules! ind {$/;"	d
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> f64 {$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> f64 {$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn ind_sample<R: Rng>(&self, &mut R) -> Support;$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup {$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> T {$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> f64 {$/;"	f
ind_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn ind_sample<R: Rng>(&self, rng: &mut R) -> Sup {$/;"	f
infinity	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn infinity() -> Self {$/;"	f
infinity	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn infinity() -> Self;$/;"	f
info	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/lib.rs	/^macro_rules! info {$/;"	d
init	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn init(&mut self, key: &[u32; KEY_WORDS]) {$/;"	f
init	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        macro_rules! init {$/;"	d
init	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn init(&mut self, use_rsl: bool) {$/;"	f
initialize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^pub fn initialize() -> Result<(), HRESULT> {$/;"	f
installation_name	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn installation_name(&self) -> Result<OsString, i32> {$/;"	f
installation_path	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn installation_path(&self) -> Result<OsString, i32> {$/;"	f
installation_version	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn installation_version(&self) -> Result<OsString, i32> {$/;"	f
instance_id	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn instance_id(&self) -> Result<OsString, i32> {$/;"	f
int_from	/Users/micro/projects/ramp/src/int.rs	/^    fn int_from() {$/;"	f
int_trait_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^macro_rules! int_trait_impl {$/;"	d
integer_decode	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn integer_decode(self) -> (u64, i16, i8) {$/;"	f
integer_decode	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn integer_decode(self) -> (u64, i16, i8);$/;"	f
integer_decode_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^fn integer_decode_f32(f: f32) -> (u64, i16, i8) {$/;"	f
integer_decode_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^fn integer_decode_f64(f: f64) -> (u64, i16, i8) {$/;"	f
integer_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^macro_rules! integer_impl {$/;"	d
into_parts	/Users/micro/projects/ramp/src/rational.rs	/^    fn into_parts() {$/;"	f
into_parts	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn into_parts(mut self) -> (Int, Int) {$/;"	f
into_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub fn into_raw(self) -> *mut T {$/;"	f
into_tool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        fn into_tool(self) -> Tool {$/;"	f
ints	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints() {$/;"	f
ints128	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints128() {$/;"	f
ints16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints16() {$/;"	f
ints32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints32() {$/;"	f
ints64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints64() {$/;"	f
ints8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ints8() {$/;"	f
invert	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn invert(self) -> Limb {$/;"	f
invert	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn invert(self) -> Rational {$/;"	f
invert_pi	/Users/micro/projects/ramp/src/ll/div.rs	/^fn invert_pi(d1: Limb, d0: Limb) -> Limb {$/;"	f
ios_flags	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn ios_flags(&self, cmd: &mut Tool) -> Result<(), Error> {$/;"	f
is_error	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn is_error(&self) -> bool {$/;"	f
is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_even(&self) -> bool {$/;"	f
is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn is_even(&self) -> bool {$/;"	f
is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn is_even(&self) -> bool { (*self) & 1 == 0 }$/;"	f
is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn is_even(&self) -> bool {$/;"	f
is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn is_even(&self) -> bool;$/;"	f
is_even	/Users/micro/projects/ramp/src/int.rs	/^    fn is_even(&self) -> bool {$/;"	f
is_even	/Users/micro/projects/ramp/src/int.rs	/^    fn is_even() {$/;"	f
is_even	/Users/micro/projects/ramp/src/int.rs	/^    pub fn is_even(&self) -> bool {$/;"	f
is_failure	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn is_failure(&self) -> bool {$/;"	f
is_finite	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_finite(self) -> bool {$/;"	f
is_finite	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_finite(self) -> bool;$/;"	f
is_flag_supported	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn is_flag_supported(&self, flag: &str) -> Result<bool, Error> {$/;"	f
is_getrandom_available	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn is_getrandom_available() -> bool { false }$/;"	f
is_getrandom_available	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn is_getrandom_available() -> bool {$/;"	f
is_infinite	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_infinite(self) -> bool {$/;"	f
is_infinite	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_infinite(self) -> bool;$/;"	f
is_like_clang	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn is_like_clang(&self) -> bool {$/;"	f
is_like_gnu	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn is_like_gnu(&self) -> bool {$/;"	f
is_like_msvc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn is_like_msvc(&self) -> bool {$/;"	f
is_multiple_of	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_multiple_of(&self, other: &BigInt) -> bool {$/;"	f
is_multiple_of	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn is_multiple_of(&self, other: &BigUint) -> bool {$/;"	f
is_multiple_of	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn is_multiple_of(&self, other: &Self) -> bool {$/;"	f
is_multiple_of	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn is_multiple_of(&self, other: &Self) -> bool;$/;"	f
is_multiple_of	/Users/micro/projects/ramp/src/int.rs	/^    fn is_multiple_of(&self, other: &Int) -> bool {$/;"	f
is_nan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_nan(self) -> bool {$/;"	f
is_nan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_nan(self) -> bool;$/;"	f
is_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_negative(&self) -> bool {$/;"	f
is_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn is_negative(&self) -> bool { *self < 0 }$/;"	f
is_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn is_negative(&self) -> bool { *self < 0.0 || (1.0 \/ *self) == $neg_inf }$/;"	f
is_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn is_negative(&self) -> bool { self.0.is_negative() }$/;"	f
is_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn is_negative(&self) -> bool;$/;"	f
is_normal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_normal(self) -> bool {$/;"	f
is_normal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_normal(self) -> bool;$/;"	f
is_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_odd(&self) -> bool {$/;"	f
is_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn is_odd(&self) -> bool {$/;"	f
is_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn is_odd(&self) -> bool { !self.is_even() }$/;"	f
is_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn is_odd(&self) -> bool {$/;"	f
is_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn is_odd(&self) -> bool;$/;"	f
is_odd	/Users/micro/projects/ramp/src/int.rs	/^    fn is_odd(&self) -> bool {$/;"	f
is_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_positive(&self) -> bool {$/;"	f
is_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn is_positive(&self) -> bool { *self > 0 }$/;"	f
is_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn is_positive(&self) -> bool { *self > 0.0 || (1.0 \/ *self) == $inf }$/;"	f
is_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn is_positive(&self) -> bool { self.0.is_positive() }$/;"	f
is_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn is_positive(&self) -> bool;$/;"	f
is_prime	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn is_prime(n: usize) -> bool {$/;"	f
is_sign_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_sign_negative(self) -> bool {$/;"	f
is_sign_negative	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_sign_negative(self) -> bool;$/;"	f
is_sign_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn is_sign_positive(self) -> bool {$/;"	f
is_sign_positive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn is_sign_positive(self) -> bool;$/;"	f
is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn is_zero(&self) -> bool {$/;"	f
is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn is_zero(&self) -> bool {$/;"	f
is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^            fn is_zero(&self) -> bool { *self == $v }$/;"	f
is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn is_zero(&self) -> bool {$/;"	f
is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn is_zero(&self) -> bool;$/;"	f
is_zero	/Users/micro/projects/ramp/src/int.rs	/^    fn is_zero(&self) -> bool {$/;"	f
is_zero	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn is_zero(mut np: Limbs, mut nn: i32) -> bool {$/;"	f
is_zero	/Users/micro/projects/ramp/src/rational.rs	/^    fn is_zero(&self) -> bool {$/;"	f
isaac	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn isaac(&mut self) {$/;"	f
isaac64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn isaac64(&mut self) {$/;"	f
iter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    pub fn iter(&self) -> Iter {$/;"	f
iter_baseline	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^                fn iter_baseline(b: &mut Bencher) {$/;"	f
iter_eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    pub fn iter_eq<I, J>(i: I, j: J) -> bool$/;"	f
iter_over_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^                fn iter_over_zero(b: &mut Bencher) {$/;"	f
iter_pos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^                fn iter_pos(b: &mut Bencher) {$/;"	f
kSecRandomDefault	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    const kSecRandomDefault: *const SecRandom = 0 as *const SecRandom;$/;"	c
lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn lcm(&self, other: &BigInt) -> BigInt {$/;"	f
lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn lcm(&self, other: &BigUint) -> BigUint {$/;"	f
lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn lcm(&self, other: &Self) -> Self {$/;"	f
lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn lcm(&self, other: &Self) -> Self;$/;"	f
lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn lcm<T: Integer>(x: T, y: T) -> T {$/;"	f
lcm	/Users/micro/projects/ramp/src/int.rs	/^    fn lcm(&self, other: &Int) -> Int {$/;"	f
lcm	/Users/micro/projects/ramp/src/int.rs	/^    fn lcm() {$/;"	f
lcm	/Users/micro/projects/ramp/src/int.rs	/^    pub fn lcm(&self, other: &Int) -> Int {$/;"	f
le	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn le(&self, other: &BaseInt) -> bool { self.0 <= *other }$/;"	f
le	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn le(&self, other: &Limb) -> bool { self.0 <= other.0 }$/;"	f
leading_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn leading_zeros(self) -> u32 {$/;"	f
leading_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn leading_zeros(self) -> u32;$/;"	f
leading_zeros	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn leading_zeros(self) -> BaseInt {$/;"	f
lib_subdir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn lib_subdir(target: &str) -> Option<&'static str> {$/;"	f
limbs	/Users/micro/projects/ramp/src/int.rs	/^    fn limbs(&self) -> Limbs {$/;"	f
limbs_mut	/Users/micro/projects/ramp/src/int.rs	/^    fn limbs_mut(&mut self) -> LimbsMut {$/;"	f
limbs_uninit	/Users/micro/projects/ramp/src/int.rs	/^    unsafe fn limbs_uninit(&mut self) -> LimbsMut {$/;"	f
list_tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    macro_rules! list_tests {$/;"	d
ln	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn ln(self) -> Self {$/;"	f
ln	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn ln(self) -> Self;$/;"	f
ln_1p	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn ln_1p(self) -> Self {$/;"	f
ln_1p	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn ln_1p(self) -> Self;$/;"	f
log	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn log(self, base: Self) -> Self {$/;"	f
log	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn log(self, base: Self) -> Self;$/;"	f
log10	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn log10(self) -> Self {$/;"	f
log10	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn log10(self) -> Self;$/;"	f
log2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn log2(self) -> Self {$/;"	f
log2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn log2(self) -> Self;$/;"	f
low_part	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn low_part(self) -> Limb {$/;"	f
lt	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn lt(&self, other: &BaseInt) -> bool { self.0 <  *other }$/;"	f
lt	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn lt(&self, other: &Limb) -> bool { self.0 <  other.0 }$/;"	f
mac3	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^fn mac3(acc: &mut [BigDigit], b: &[BigDigit], c: &[BigDigit]) {$/;"	f
mac_digit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^fn mac_digit(acc: &mut [BigDigit], b: &[BigDigit], c: BigDigit) {$/;"	f
mac_with_carry	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn mac_with_carry(a: BigDigit, b: BigDigit, c: BigDigit, carry: &mut BigDigit) -> BigDigit {$/;"	f
main	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/bin/gcc-shim.rs	/^fn main() {$/;"	f
make_common_denominator	/Users/micro/projects/ramp/src/rational.rs	/^fn make_common_denominator(a: &mut Rational, b: &mut Rational) {$/;"	f
make_limbs	/Users/micro/projects/ramp/src/ll/mod.rs	/^    macro_rules! make_limbs {$/;"	d
map_tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    macro_rules! map_tests {$/;"	d
mask	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^macro_rules! mask{$/;"	d
max	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn max(self, other: Self) -> Self {$/;"	f
max	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn max(self, other: Self) -> Self;$/;"	f
max	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn max() {$/;"	f
max_tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn max_tests(mut self, max_tests: u64) -> QuickCheck<G> {$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^            fn max_value() -> $t { $max }$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^            fn max_value() -> Self {$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^    fn max_value() -> Self { Wrapping(T::max_value()) }$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^    fn max_value() -> Self;$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn max_value() -> Self {$/;"	f
max_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn max_value() -> Self;$/;"	f
max_version	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn max_version(key: &RegistryKey) -> Option<(OsString, RegistryKey)> {$/;"	f
memloop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^            macro_rules! memloop {$/;"	d
min	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn min(self, other: Self) -> Self {$/;"	f
min	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn min(self, other: Self) -> Self;$/;"	f
min_positive_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn min_positive_value() -> Self {$/;"	f
min_positive_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn min_positive_value() -> Self;$/;"	f
min_tests_passed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn min_tests_passed($/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^            fn min_value() -> $t { $min }$/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^            fn min_value() -> Self {$/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^    fn min_value() -> Self { Wrapping(T::min_value()) }$/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^    fn min_value() -> Self;$/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn min_value() -> Self {$/;"	f
min_value	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn min_value() -> Self;$/;"	f
mix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^        macro_rules! mix {$/;"	d
mk_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^macro_rules! mk_impl {$/;"	d
mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mod_floor(&self, other: &BigInt) -> BigInt {$/;"	f
mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn mod_floor(&self, other: &BigUint) -> BigUint {$/;"	f
mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn mod_floor(&self, other: &Self) -> Self {$/;"	f
mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn mod_floor(&self, other: &Self) -> Self;$/;"	f
mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn mod_floor<T: Integer>(x: T, y: T) -> T {$/;"	f
mod_floor	/Users/micro/projects/ramp/src/int.rs	/^    fn mod_floor(&self, other: &Int) -> Int {$/;"	f
msvc_macro_assembler	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn msvc_macro_assembler(&self) -> Result<(Command, String), Error> {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: &BigInt) -> BigInt {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: BigDigit) -> BigInt {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: DoubleBigDigit) -> BigInt {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: Sign) -> Sign {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: i32) -> BigInt {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn mul(self, other: i64) -> BigInt {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn mul(mut self, other: BigDigit) -> BigUint {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn mul(mut self, other: DoubleBigDigit) -> BigUint {$/;"	f
mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn mul(self, other: &BigUint) -> BigUint {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^            fn mul(mut self, other: $t) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^            fn mul(self, other: $t) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^            fn mul(self, other: &'a Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^            fn mul(self, other: Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul() {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul(mut self, other: &'a Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul(mut self, other: Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul(mut self, other: Limb) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul(self, other: &'a Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/int.rs	/^    fn mul(self, other: Int) -> Int {$/;"	f
mul	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn mul(self, other: BaseInt) -> Limb {$/;"	f
mul	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn mul(self, other: Limb) -> Limb {$/;"	f
mul	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub fn mul(u: Limb, v: Limb) -> (Limb, Limb) {$/;"	f
mul	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn mul(wp: LimbsMut, xp: Limbs, xs: i32, yp: Limbs, ys: i32) {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul() {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(mut self, other: &'a Int) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(mut self, other: &'a Rational) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(mut self, other: Int) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(mut self, other: Rational) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(self, mut other: Rational) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(self, other: &'a Int) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(self, other: &'a Rational) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(self, other: Int) -> Rational {$/;"	f
mul	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul(self, other: Rational) -> Rational {$/;"	f
mul3	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn mul3(x: &[BigDigit], y: &[BigDigit]) -> BigUint {$/;"	f
mul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn mul_1(mut wp: LimbsMut, xp: Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
mul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn mul_1(wp: LimbsMut, xp: Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
mul_1_generic	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn mul_1_generic(mut wp: LimbsMut, mut xp: Limbs, mut n: i32, vl: Limb) -> Limb {$/;"	f
mul_2_usize_to_2_usize	/Users/micro/projects/ramp/src/ll/limb.rs	/^            fn mul_2_usize_to_2_usize(u:Word, v: Word) -> (Word,Word) {$/;"	f
mul_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn mul_add(self, a: Self, b: Self) -> Self {$/;"	f
mul_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn mul_add(self, a: Self, b: Self) -> Self;$/;"	f
mul_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn mul_assign(&mut self, other: $t) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn mul_assign(&mut self, other: &'a Int) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn mul_assign(&mut self, other: Int) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn mul_assign(&mut self, other: Limb) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul_assign(&mut self, other: &'a Int) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul_assign(&mut self, other: &'a Rational) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul_assign(&mut self, other: Int) {$/;"	f
mul_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn mul_assign(&mut self, other: Rational) {$/;"	f
mul_basecase	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn mul_basecase(mut wp: LimbsMut, xp: Limbs, xs: i32, mut yp: Limbs, mut ys: i32) {$/;"	f
mul_hi	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn mul_hi(self, other: Limb) -> Limb {$/;"	f
mul_hilo	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn mul_hilo(self, other: Limb) -> (Limb, Limb) {$/;"	f
mul_impl	/Users/micro/projects/ramp/src/ll/limb.rs	/^        fn mul_impl(u: Limb, v: Limb) -> (Limb, Limb) {$/;"	f
mul_lo	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn mul_lo(self, other: Limb) -> Limb {$/;"	f
mul_rec	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn mul_rec(wp: LimbsMut,$/;"	f
mul_toom22	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn mul_toom22(wp: LimbsMut,$/;"	f
mul_unbalanced	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn mul_unbalanced(mut wp: LimbsMut,$/;"	f
mul_with_carry	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn mul_with_carry(a: BigDigit, b: BigDigit, carry: &mut BigDigit) -> BigDigit {$/;"	f
multinomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^pub fn multinomial<T: Integer + Clone>(k: &[T]) -> T$/;"	f
multiply_and_divide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^fn multiply_and_divide<T: Integer + Clone>(r: T, a: T, b: T) -> T {$/;"	f
must_fail	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn must_fail<T, F>(f: F) -> TestResult$/;"	f
nacl_interface_query	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn nacl_interface_query(name: *const libc::c_char,$/;"	f
naive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^fn naive(x: &[u8], y: &[u8]) -> u64 {$/;"	f
naive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^fn naive(x: &[u8]) -> u64 {$/;"	f
naive_smoke	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    fn naive_smoke() {$/;"	f
naive_smoke	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    fn naive_smoke() {$/;"	f
nan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn nan() -> Self {$/;"	f
nan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn nan() -> Self;$/;"	f
nand_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn nand_n(wp: LimbsMut,$/;"	f
ne	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn ne(&self, other: &BaseInt) -> bool {$/;"	f
ne	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn ne(&self, other: &Limb) -> bool {$/;"	f
neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn neg(mut self) -> BigInt {$/;"	f
neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn neg(self) -> BigInt {$/;"	f
neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn neg(self) -> Sign {$/;"	f
neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn neg(self) -> BigUint {$/;"	f
neg	/Users/micro/projects/ramp/src/int.rs	/^    fn neg(mut self) -> Int {$/;"	f
neg	/Users/micro/projects/ramp/src/int.rs	/^    fn neg(self) -> Int {$/;"	f
neg	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn neg(self) -> Limb {$/;"	f
neg	/Users/micro/projects/ramp/src/rational.rs	/^    fn neg() {$/;"	f
neg	/Users/micro/projects/ramp/src/rational.rs	/^    fn neg(mut self) -> Rational {$/;"	f
neg	/Users/micro/projects/ramp/src/rational.rs	/^    fn neg(self) -> Rational {$/;"	f
neg_infinity	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn neg_infinity() -> Self {$/;"	f
neg_infinity	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn neg_infinity() -> Self;$/;"	f
neg_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn neg_zero() -> Self {$/;"	f
neg_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn neg_zero() -> Self;$/;"	f
negate	/Users/micro/projects/ramp/src/int.rs	/^    pub fn negate(&mut self) {$/;"	f
negate_twos_complement	/Users/micro/projects/ramp/src/int.rs	/^    fn negate_twos_complement(&mut self) {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn new(kind: ErrorKind, message: &str) -> Error {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn new(path: PathBuf) -> Tool {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn new(src: PathBuf, dst: PathBuf) -> Object {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn new() -> Build {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn new() -> Result<SetupConfiguration, i32> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^        fn new(tool: PathBuf) -> MsvcTool {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn new(sign: Sign, digits: Vec<BigDigit>) -> BigInt {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn new(digits: Vec<BigDigit>) -> BigUint {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    pub fn new(n: T) -> IterBinomial<T> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^                pub fn new(x: $ty) -> Box<Iterator<Item=$ty>> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn new(seed: Vec<A>) -> Box<Iterator<Item=Vec<A>>> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    pub fn new(rng: R, size: usize) -> StdGen<R> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn new() -> QuickCheck<StdGen<rand::ThreadRng>> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    pub fn new(lambda: f64) -> Exp {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    pub fn new(k: f64) -> ChiSquared {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    pub fn new(m: f64, n: f64) -> FisherF {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    pub fn new(n: f64) -> StudentT {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    pub fn new(shape: f64, scale: f64) -> Gamma {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    pub fn new() -> RandSample<Sup> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    pub fn new(items: &'a mut [Weighted<T>]) -> WeightedChoice<'a, T> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    pub fn new(mean: f64, std_dev: f64) -> LogNormal {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    pub fn new(mean: f64, std_dev: f64) -> Normal {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    pub fn new(low: X, high: X) -> Range<X> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    pub fn new() -> io::Result<StdRng> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        pub fn new() -> io::Result<OsRng> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    pub fn new() -> io::Result<OsRng> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    pub fn new(r: R) -> ReadRng<R> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    pub fn new(rng: R, generation_threshold: u64, reseeder: Rsdr) -> ReseedingRng<R,Rsdr> {$/;"	f
new	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-cfg-0.2.0/src/lib.rs	/^    pub fn new<S>(target: S) -> Result<Cfg, String>$/;"	f
new	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            pub unsafe fn new(base: $ptr, start: i32, end: i32) -> $ty {$/;"	f
new	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn new(_ptr: usize, _start: i32, _end: i32) -> Bounds { Bounds }$/;"	f
new	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn new(ptr: usize, start: i32, end: i32) -> Bounds {$/;"	f
new	/Users/micro/projects/ramp/src/ll/limb_ptr_new.rs	/^pub unsafe fn new(base: *mut Limb, size: usize, cap: usize) -> LimbsNew {$/;"	f
new	/Users/micro/projects/ramp/src/mem.rs	/^    pub fn new() -> TmpAllocator {$/;"	f
new	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn new(n: Int, d: Int) -> Rational {$/;"	f
new_	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-cfg-0.2.0/src/lib.rs	/^    fn new_(target: &OsStr) -> Result<Cfg, String> {$/;"	f
new_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn new_raw(shape: f64, scale: f64) -> GammaLargeShape {$/;"	f
new_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn new_raw(shape: f64, scale: f64) -> GammaSmallShape {$/;"	f
new_unseeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    pub fn new_unseeded() -> ChaChaRng {$/;"	f
new_unseeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    pub fn new_unseeded() -> Isaac64Rng {$/;"	f
new_unseeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    pub fn new_unseeded() -> IsaacRng {$/;"	f
new_unseeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    pub fn new_unseeded() -> XorShiftRng {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn next(&mut self) -> Option<io::Result<OsString>> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    fn next(&mut self) -> Option<Result<SetupInstance, i32>> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn next(self) -> Self {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn next(&mut self) -> Option<T> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn next(self) -> Self;$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^    fn next(&mut self) -> Option<T> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^                fn next(&mut self) -> Option<$ty> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn next(&mut self) -> Option<Vec<A>> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^            fn next<T: Rng>(t: &mut T) -> u32 {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next(&mut self) -> Option<T> {$/;"	f
next	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next(&mut self) -> Option<char> {$/;"	f
next_back	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn next_back(&mut self) -> Option<T> {$/;"	f
next_element	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn next_element(&mut self) -> Option<A> {$/;"	f
next_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next_f32(&mut self) -> f32 {$/;"	f
next_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next_f64(&mut self) -> f64 {$/;"	f
next_prev_order	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn next_prev_order() {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn next_u32(&mut self) -> u32 { self.rng.next_u32() }$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^        fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        fn next_u32(&mut self) -> u32 { self.i as u32 }$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next_u32(&mut self) -> u32;$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn next_u32(&mut self) -> u32 { self.0.next_u32() }$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^fn next_u32(mut fill_buf: &mut FnMut(&mut [u8])) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^        fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^        fn next_u32(&mut self) -> u32 {$/;"	f
next_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn next_u32(&mut self) -> u32 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn next_u64(&mut self) -> u64 { self.rng.next_u64() }$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^        fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^        fn next_u64(&mut self) -> u64 { self.i }$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^        fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn next_u64(&mut self) -> u64 { self.0.next_u64() }$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^fn next_u64(mut fill_buf: &mut FnMut(&mut [u8])) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^        fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn next_u64(&mut self) -> u64 {$/;"	f
next_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn next_u64(&mut self) -> u64 {$/;"	f
nor_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn nor_n(wp: LimbsMut,$/;"	f
normalize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn normalize(mut self) -> BigUint {$/;"	f
normalize	/Users/micro/projects/ramp/src/int.rs	/^    fn normalize(&mut self) {$/;"	f
normalize	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn normalize(p: Limbs, mut n: i32) -> i32 {$/;"	f
normalize	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn normalize(&mut self) {$/;"	f
normalized	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn normalized(&self) -> bool {$/;"	f
not	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn not(mut wp: LimbsMut, mut xp: Limbs, n: i32) {$/;"	f
not	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn not(self) -> Limb {$/;"	f
num_base_digits	/Users/micro/projects/ramp/src/int.rs	/^    fn num_base_digits() {$/;"	f
num_base_digits	/Users/micro/projects/ramp/src/ll/base.rs	/^pub unsafe fn num_base_digits(p: Limbs, n: i32, base: u32) -> usize {$/;"	f
num_base_digits_pow2	/Users/micro/projects/ramp/src/int.rs	/^    fn num_base_digits_pow2() {$/;"	f
num_pow_limbs	/Users/micro/projects/ramp/src/ll/pow.rs	/^pub unsafe fn num_pow_limbs(xp: Limbs, xn: i32, exp: u32) -> i32 {$/;"	f
nvcc_debug_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn nvcc_debug_flag(&self) -> &'static str {$/;"	f
nvcc_redirect_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn nvcc_redirect_flag(&self) -> &'static str {$/;"	f
object	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn object<P: AsRef<Path>>(&mut self, obj: P) -> &mut Build {$/;"	f
offset	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            pub unsafe fn offset(self, x: isize) -> $ty {$/;"	f
offset_valid	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn offset_valid(self, _ptr: usize, _offset: isize) -> bool { true }$/;"	f
offset_valid	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^    fn offset_valid(self, ptr: usize, offset: isize) -> bool {$/;"	f
one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn one() -> BigInt {$/;"	f
one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn one() -> BigUint {$/;"	f
one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^            fn one() -> $t { $v }$/;"	f
one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn one() -> Self {$/;"	f
one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn one() -> Self;$/;"	f
one	/Users/micro/projects/ramp/src/int.rs	/^    fn one() -> Int {$/;"	f
one	/Users/micro/projects/ramp/src/int.rs	/^    pub fn one() -> Int {$/;"	f
one	/Users/micro/projects/ramp/src/rational.rs	/^    fn one() -> Rational {$/;"	f
one_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^macro_rules! one_impl {$/;"	d
open	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    pub fn open(&self, key: &OsStr) -> io::Result<RegistryKey> {$/;"	f
opt_level	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn opt_level(&mut self, opt_level: u32) -> &mut Build {$/;"	f
opt_level_str	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn opt_level_str(&mut self, opt_level: &str) -> &mut Build {$/;"	f
options	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn options() {$/;"	f
optry	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/pow.rs	/^    macro_rules! optry {$/;"	d
or_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn or_n(wp: LimbsMut,$/;"	f
or_not_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn or_not_n(wp: LimbsMut,$/;"	f
ord	/Users/micro/projects/ramp/src/rational.rs	/^    fn ord() {$/;"	f
ord_cases	/Users/micro/projects/ramp/src/rational.rs	/^        macro_rules! ord_cases {$/;"	d
ordered_eq	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ordered_eq<A: Arbitrary + Eq + Debug>(s: A, v: Vec<A>) {$/;"	f
otry	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^macro_rules! otry {$/;"	d
out_dir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn out_dir<P: AsRef<Path>>(&mut self, out_dir: P) -> &mut Build {$/;"	f
overlap	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn overlap(xp: LimbsMut, xs: i32, yp: Limbs, ys: i32) -> bool {$/;"	f
panic	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn panic() { panic!() }$/;"	f
panic_msg_1	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn panic_msg_1() {$/;"	f
panic_msg_2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn panic_msg_2() {$/;"	f
panic_msg_3	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn panic_msg_3() {$/;"	f
parse_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn parse_bytes(buf: &[u8], radix: u32) -> Option<BigInt> {$/;"	f
parse_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn parse_bytes(buf: &[u8], radix: u32) -> Option<BigUint> {$/;"	f
partial_cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn partial_cmp(&self, other: &BigInt) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn partial_cmp(&self, other: &BigUint) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, &other: &i32) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, &other: &i64) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, &other: &u64) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, &other: &usize) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, other: &Int) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/int.rs	/^    fn partial_cmp(&self, other: &Limb) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn partial_cmp(&self, other: &BaseInt) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn partial_cmp(&self, other: &Limb) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/ll/limb_ptr.rs	/^            fn partial_cmp(&self, other: &$ty) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/rational.rs	/^    fn partial_cmp(&self, other: &Int) -> Option<Ordering> {$/;"	f
partial_cmp	/Users/micro/projects/ramp/src/rational.rs	/^    fn partial_cmp(&self, other: &Rational) -> Option<Ordering> {$/;"	f
passed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn passed() -> TestResult { TestResult::from_bool(true) }$/;"	f
path	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn path(&self) -> &Path {$/;"	f
pathbuf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn pathbuf() {$/;"	f
pathbuf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn pathbuf(_p: PathBuf) -> bool {$/;"	f
pdf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^        fn pdf(x: f64) -> f64 {$/;"	f
pdf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^        fn pdf(x: f64) -> f64 {$/;"	f
pic	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn pic(&mut self, pic: bool) -> &mut Build {$/;"	f
plugin_registrar	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck_macros-0.6.1/src/lib.rs	/^pub fn plugin_registrar(reg: &mut Registry) {$/;"	f
pow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn pow(self, exp: u32) -> Self {$/;"	f
pow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn pow(self, exp: u32) -> Self;$/;"	f
pow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/pow.rs	/^pub fn pow<T: Clone + One + Mul<T, Output = T>>(mut base: T, mut exp: usize) -> T {$/;"	f
pow	/Users/micro/projects/ramp/src/int.rs	/^    fn pow() {$/;"	f
pow	/Users/micro/projects/ramp/src/int.rs	/^    pub fn pow(&self, exp: usize) -> Int {$/;"	f
pow	/Users/micro/projects/ramp/src/ll/pow.rs	/^pub unsafe fn pow(mut wp: LimbsMut, mut ap: Limbs, mut an: i32, mut exp: u32) {$/;"	f
pow_mod	/Users/micro/projects/ramp/src/int.rs	/^    fn pow_mod() {$/;"	f
pow_mod	/Users/micro/projects/ramp/src/int.rs	/^    pub fn pow_mod(&self, exp: &Int, modulus: &Int) -> Int {$/;"	f
pow_mod_negexp	/Users/micro/projects/ramp/src/int.rs	/^    fn pow_mod_negexp() {$/;"	f
pow_mod_zeromod	/Users/micro/projects/ramp/src/int.rs	/^    fn pow_mod_zeromod() {$/;"	f
powf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn powf(self, n: Self) -> Self {$/;"	f
powf	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn powf(self, n: Self) -> Self;$/;"	f
powi	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn powi(self, n: i32) -> Self {$/;"	f
powi	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn powi(self, n: i32) -> Self;$/;"	f
prev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn prev(self) -> Self {$/;"	f
prev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn prev(self) -> Self;$/;"	f
prim_int_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^macro_rules! prim_int_impl {$/;"	d
print	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn print(&self, s: &str) {$/;"	f
product_path	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/setup_config.rs	/^    pub fn product_path(&self) -> Result<OsString, i32> {$/;"	f
promote_all_scalars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! promote_all_scalars {$/;"	d
promote_scalars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! promote_scalars {$/;"	d
promote_signed_scalars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! promote_signed_scalars {$/;"	d
promote_unsigned_scalars	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/macros.rs	/^macro_rules! promote_unsigned_scalars {$/;"	d
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^        fn prop(v: Vec<u8>, w: Vec<u8>, misalign: u8) -> qc::TestResult {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^        fn prop(v: Vec<u8>, misalign: u8) -> qc::TestResult {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/lib.rs	/^                    fn prop($($arg_name: $arg_ty),*) -> $ret {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop() -> bool {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(_: i8) -> bool { true }$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(_: u8) -> bool { true }$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(a: Vec<u8>) -> bool {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(mut xs: Vec<isize>) -> bool {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(x: isize, y: isize) -> TestResult {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(xs: Vec<usize>) -> TestResult {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(xs: Vec<usize>) -> bool {$/;"	f
prop	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop(xs: Vec<usize>, ys: Vec<usize>) -> bool {$/;"	f
prop_all_prime	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop_all_prime(n: usize) -> bool {$/;"	f
prop_discarded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop_discarded(_: u8) -> TestResult { TestResult::discard() }$/;"	f
prop_macro_panic	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop_macro_panic(_x: u32) -> bool {$/;"	f
prop_oob	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn prop_oob() {$/;"	f
prop_prime_iff_in_the_sieve	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop_prime_iff_in_the_sieve(n: usize) -> bool {$/;"	f
prop_reverse_reverse	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn prop_reverse_reverse() {$/;"	f
prop_reverse_reverse_macro	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn prop_reverse_reverse_macro(xs: Vec<usize>) -> bool {$/;"	f
push	/Users/micro/projects/ramp/src/int.rs	/^    fn push(&mut self, limb: Limb) {$/;"	f
push_cc_arg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn push_cc_arg(&mut self, flag: OsString) {$/;"	f
qc_gen_size	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn qc_gen_size() -> usize {$/;"	f
qc_max_tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn qc_max_tests() -> u64 {$/;"	f
qc_min_tests_passed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn qc_min_tests_passed() -> u64 {$/;"	f
qc_tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn qc_tests() -> u64 {$/;"	f
quads	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn quads() {$/;"	f
quarter_round	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^macro_rules! quarter_round{$/;"	d
query_str	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    pub fn query_str(&self, name: &str) -> io::Result<OsString> {$/;"	f
quickcheck	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/lib.rs	/^macro_rules! quickcheck {$/;"	d
quickcheck	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn quickcheck<A>(&mut self, f: A) where A: Testable {$/;"	f
quickcheck	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^pub fn quickcheck<A: Testable>(f: A) { QuickCheck::new().quickcheck(f) }$/;"	f
quicktest	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn quicktest<A>(&mut self, f: A) -> Result<u64, TestResult>$/;"	f
ramp_addmul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^        fn ramp_addmul_1(wp: *mut Limb, xp: *const Limb, n: i32, vl: Limb) -> Limb;$/;"	f
ramp_mul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^        fn ramp_mul_1(wp: *mut Limb, xp: *const Limb, n: i32, vl: Limb) -> Limb;$/;"	f
ramp_sub_n	/Users/micro/projects/ramp/src/ll/addsub.rs	/^        fn ramp_sub_n(wp: *mut Limb, xp: *const Limb, yp: *const Limb,$/;"	f
ramp_submul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^        fn ramp_submul_1(wp: *mut Limb, xp: *const Limb, n: i32, vl: Limb) -> Limb;$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn rand<R: Rng>(other: &mut R) -> ChaChaRng {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn rand<R:Rng>(rng: &mut R) -> Exp1 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^        fn rand<R: Rng>(_: &mut R) -> ConstRand {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn rand<R:Rng>(rng: &mut R) -> StandardNormal {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn rand<R: Rng>(other: &mut R) -> Isaac64Rng {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn rand<R: Rng>(other: &mut R) -> IsaacRng {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn rand<R: Rng>(rng: &mut R) -> Self;$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn rand<R: Rng>(rng: &mut R) -> XorShiftRng {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^                fn rand<R: Rng>(rng: &mut R) -> $ty {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^                fn rand<R: Rng>(rng: &mut R) -> Closed01<$ty> {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^                fn rand<R: Rng>(rng: &mut R) -> Open01<$ty> {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^            fn rand<R: Rng>(_rng: &mut R) -> ( $( $tyvar ),* , ) {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^            fn rand<R: Rng>(_rng: &mut R) -> [T; $n] { [] }$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^            fn rand<R: Rng>(_rng: &mut R) -> [T; $n] {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(_: &mut R) -> () { () }$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> Option<T> {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> bool {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> char {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> i128 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> i16 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> i32 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> i64 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> i8 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> isize {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> u128 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> u16 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> u32 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> u64 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> u8 {$/;"	f
rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand<R: Rng>(rng: &mut R) -> usize {$/;"	f
rand_closed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand_closed() {$/;"	f
rand_open	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^    fn rand_open() {$/;"	f
rand_rational	/Users/micro/projects/ramp/src/rational.rs	/^    fn rand_rational(x: usize) -> Rational {$/;"	f
random	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub fn random<T: Rand>() -> T {$/;"	f
ranges	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn ranges() {$/;"	f
raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/registry.rs	/^    fn raw(&self) -> HKEY {$/;"	f
recip	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn recip(self) -> Self {$/;"	f
recip	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn recip(self) -> Self;$/;"	f
recompose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn recompose(sign: bool, expn: Self::Exponent, signif: Self::Significand) -> Self {$/;"	f
recompose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn recompose(sign: bool, expn: Self::Exponent, signif: Self::Significand) -> Self;$/;"	f
recompose_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn recompose_raw(sign: bool, expn: Self::RawExponent, signif: Self::Significand) -> Self {$/;"	f
recompose_raw	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn recompose_raw(sign: bool, expn: Self::RawExponent, signif: Self::Significand) -> Self;$/;"	f
regression_issue_107_hang	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn regression_issue_107_hang() {$/;"	f
regression_issue_83	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn regression_issue_83() {$/;"	f
regression_issue_83_signed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn regression_issue_83_signed() {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: &BigInt) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: BigDigit) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: BigInt) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: DoubleBigDigit) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: i32) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn rem(self, other: i64) -> BigInt {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn rem(self, other: &BigUint) -> BigUint {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn rem(self, other: BigDigit) -> BigUint {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn rem(self, other: BigUint) -> BigUint {$/;"	f
rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn rem(self, other: DoubleBigDigit) -> BigUint {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^            fn rem(mut self, other: $t) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^            fn rem(self, mut other: Int) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^            fn rem(self, other: $t) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^            fn rem(self, other: &'a Int) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^    fn rem() {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^    fn rem(mut self, other: Limb) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^    fn rem(self, other: &'a Int) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/int.rs	/^    fn rem(self, other: Int) -> Int {$/;"	f
rem	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn rem(self, other: BaseInt) -> Limb {$/;"	f
rem	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn rem(self, other: Limb) -> Limb {$/;"	f
rem_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn rem_assign(&mut self, other: $t) {$/;"	f
rem_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn rem_assign(&mut self, other: &'a Int) {$/;"	f
rem_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn rem_assign(&mut self, other: Int) {$/;"	f
rem_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn rem_assign(&mut self, other: Limb) {$/;"	f
rep	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn rep<F>(f: &mut F) where F : FnMut() -> () {$/;"	f
replace_one	/Users/micro/projects/ramp/src/int.rs	/^    fn replace_one(&mut self) -> Self {$/;"	f
replace_zero	/Users/micro/projects/ramp/src/int.rs	/^    fn replace_zero(&mut self) -> Self {$/;"	f
require_bounded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^    fn require_bounded<T: Bounded>(_: &T) {}$/;"	f
require_fromprimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn require_fromprimitive<T: FromPrimitive>(_: &T) {}$/;"	f
require_num	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^    fn require_num<T: Num>(_: &T) {}$/;"	f
require_numcast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn require_numcast<T: NumCast>(_: &T) {}$/;"	f
require_one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn require_one<T: One>(_: &T) {}$/;"	f
require_signed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn require_signed<T: Signed>(_: &T) {}$/;"	f
require_toprimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn require_toprimitive<T: ToPrimitive>(_: &T) {}$/;"	f
require_unsigned	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn require_unsigned<T: Unsigned>(_: &T) {}$/;"	f
require_wrappingadd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn require_wrappingadd<T: WrappingAdd>(_: &T) {}$/;"	f
require_wrappingmul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn require_wrappingmul<T: WrappingMul>(_: &T) {}$/;"	f
require_wrappingsub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn require_wrappingsub<T: WrappingSub>(_: &T) {}$/;"	f
require_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn require_zero<T: Zero>(_: &T) {}$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn reseed(&mut self, seed: &'a [u32]) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn reseed(&mut self, seed: &'a [u32]) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn reseed(&mut self, seed: &'a [u64]) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn reseed(&mut self, Seed);$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn reseed(&mut self, rng: &mut StdRng) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn reseed(&mut self, seed: &'a [usize]) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn reseed(&mut self, seed: [u32; 4]) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^        fn reseed(&mut self, seed: u32) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn reseed(&mut self, (rsdr, seed): (Rsdr, S)) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn reseed(&mut self, rng: &mut R) {$/;"	f
reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn reseed(&mut self, rng: &mut R);$/;"	f
reseed_if_necessary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    pub fn reseed_if_necessary(&mut self) {$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn result<G: Gen>(&self, &mut G) -> TestResult;$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn result<G: Gen>(&self, _: &mut G) -> TestResult { self.clone() }$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn result<G: Gen>(&self, _: &mut G) -> TestResult {$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn result<G: Gen>(&self, g: &mut G) -> TestResult {$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn result<G_: Gen>(&self, g: &mut G_) -> TestResult {$/;"	f
result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn result() -> Result<bool, String> { Ok(true) }$/;"	f
results	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn results() {$/;"	f
reverse_app	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn reverse_app() {$/;"	f
reverse_single	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn reverse_single() {$/;"	f
rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    pub fn rng() -> MyRng<::ThreadRng> {$/;"	f
rngstepn	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^                macro_rules! rngstepn {$/;"	d
rngstepn	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^            macro_rules! rngstepn {$/;"	d
rngstepp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^                macro_rules! rngstepp {$/;"	d
rngstepp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^            macro_rules! rngstepp {$/;"	d
rotate_left	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn rotate_left(self, n: u32) -> Self {$/;"	f
rotate_left	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn rotate_left(self, n: u32) -> Self;$/;"	f
rotate_right	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn rotate_right(self, n: u32) -> Self {$/;"	f
rotate_right	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn rotate_right(self, n: u32) -> Self;$/;"	f
round	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn round(self) -> Self {$/;"	f
round	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn round(self) -> Self;$/;"	f
round	/Users/micro/projects/ramp/src/rational.rs	/^    fn round() {$/;"	f
round	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn round(mut self) -> Int {$/;"	f
round_cases	/Users/micro/projects/ramp/src/rational.rs	/^        macro_rules! round_cases {$/;"	d
run	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^fn run(cmd: &mut Command, program: &str) -> Result<(), Error> {$/;"	f
run_output	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^fn run_output(cmd: &mut Command, program: &str) -> Result<Vec<u8>, Error> {$/;"	f
safe	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^fn safe<T, F>(fun: F) -> Result<T, String>$/;"	f
same_or_decr	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn same_or_decr(xp: LimbsMut, xs: i32, yp: Limbs, ys: i32) -> bool {$/;"	f
same_or_incr	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn same_or_incr(xp: LimbsMut, xs: i32, yp: Limbs, ys: i32) -> bool {$/;"	f
same_or_separate	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn same_or_separate(xp: LimbsMut, xs: i32, yp: Limbs, ys: i32) -> bool {$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> f64 { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> f64 { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> Support;$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> T { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> f64 { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn sample<R: Rng>(&mut self, rng: &mut R) -> Sup { self.ind_sample(rng) }$/;"	f
sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub fn sample<T, I, R>(rng: &mut R, iterable: I, amount: usize) -> Vec<T>$/;"	f
sample_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^            fn sample_range<R: Rng>(r: &Range<$ty>, rng: &mut R) -> $ty {$/;"	f
sample_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn sample_range<R: Rng>(r: &Range<Self>, rng: &mut R) -> Self;$/;"	f
saturating_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^            fn saturating_add(self, v: Self) -> Self {$/;"	f
saturating_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^    fn saturating_add(self, v: Self) -> Self;$/;"	f
saturating_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^macro_rules! saturating_impl {$/;"	d
saturating_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^            fn saturating_sub(self, v: Self) -> Self {$/;"	f
saturating_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/saturating.rs	/^    fn saturating_sub(self, v: Self) -> Self;$/;"	f
sb_div	/Users/micro/projects/ramp/src/ll/div.rs	/^unsafe fn sb_div(qp: LimbsMut,$/;"	f
sbb	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^fn sbb(a: BigDigit, b: BigDigit, borrow: &mut BigDigit) -> BigDigit {$/;"	f
scalar_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn scalar_mul(a: &mut [BigDigit], b: BigDigit) -> BigDigit {$/;"	f
scan_0	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn scan_0(mut xp: Limbs, mut xs: i32) -> u32 {$/;"	f
scan_1	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn scan_1(mut xp: Limbs, mut xs: i32) -> u32 {$/;"	f
serialize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>$/;"	f
serialize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn serialize<S>(&self, serializer: &mut S) -> Result<(), S::Error>$/;"	f
set	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn set<A: Eq + Hash>(xs: Vec<A>) -> HashSet<A> {$/;"	f
set_bit	/Users/micro/projects/ramp/src/int.rs	/^    pub fn set_bit(&mut self, bit: u32, bit_val: bool) {$/;"	f
set_counter	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    pub fn set_counter(&mut self, counter_low: u64, counter_high: u64) {$/;"	f
shared_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn shared_flag(&mut self, shared_flag: bool) -> &mut Build {$/;"	f
shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn shl(self, rhs: usize) -> BigInt {$/;"	f
shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn shl(self, rhs: usize) -> BigUint {$/;"	f
shl	/Users/micro/projects/ramp/src/int.rs	/^    fn shl(mut self, other: usize) -> Int {$/;"	f
shl	/Users/micro/projects/ramp/src/int.rs	/^    fn shl(self, cnt: usize) -> Int {$/;"	f
shl	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn shl(mut rp: LimbsMut, mut xp: Limbs, mut xs: i32, cnt: u32) -> Limb {$/;"	f
shl	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn shl(self, other: I) -> Limb {$/;"	f
shl_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn shl_assign(&mut self, mut cnt: usize) {$/;"	f
shl_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn shl_rand() {$/;"	f
shl_rand_large	/Users/micro/projects/ramp/src/int.rs	/^    fn shl_rand_large() {$/;"	f
shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn shr(self, rhs: usize) -> BigInt {$/;"	f
shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn shr(self, rhs: usize) -> BigUint {$/;"	f
shr	/Users/micro/projects/ramp/src/int.rs	/^    fn shr(mut self, other: usize) -> Int {$/;"	f
shr	/Users/micro/projects/ramp/src/int.rs	/^    fn shr(self, other: usize) -> Int {$/;"	f
shr	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn shr(mut rp: LimbsMut, mut xp: Limbs, mut xs: i32, cnt: u32) -> Limb {$/;"	f
shr	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn shr(self, other: I) -> Limb {$/;"	f
shr_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn shr_assign(&mut self, mut cnt: usize) {$/;"	f
shr_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn shr_rand() {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^                fn shrink(&self) -> Box<Iterator<Item=$ty>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^            fn shrink(&self) -> Box<Iterator<Item=($($type_param,)*)>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^        fn shrink(&self) -> Box<Iterator<Item=Self>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self)  -> Box<Iterator<Item=Option<A>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Arc<A>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=BTreeMap<K, V>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=BTreeSet<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=BinaryHeap<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Box<A>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=LinkedList<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=OsString>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=PathBuf>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Range<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=RangeFrom<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=RangeTo<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Result<A, B>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Self>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=String>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=Vec<A>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=VecDeque<T>>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=bool>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=char>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=f32>> {$/;"	f
shrink	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrink(&self) -> Box<Iterator<Item=f64>> {$/;"	f
shrink_failure	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^        fn shrink_failure<T: Testable, G_: Gen, $($name: Arbitrary + Debug),*>($/;"	f
shrink_to_fit	/Users/micro/projects/ramp/src/int.rs	/^    pub fn shrink_to_fit(&mut self) {$/;"	f
shrinking_regression_issue_126	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn shrinking_regression_issue_126() {$/;"	f
shrunk	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn shrunk<A: Arbitrary + Eq + Hash>(s: A) -> HashSet<A> {$/;"	f
shuffle	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn shuffle<T>(&mut self, values: &mut [T]) where Self: Sized {$/;"	f
sieve	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn sieve(n: usize) -> Vec<usize> {$/;"	f
sieve_not_all_primes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn sieve_not_all_primes() {$/;"	f
sieve_not_prime	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn sieve_not_prime() {$/;"	f
sign	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn sign(&self) -> Sign {$/;"	f
sign	/Users/micro/projects/ramp/src/int.rs	/^    pub fn sign(&self) -> i32 {$/;"	f
sign	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn sign(&self) -> i32 {$/;"	f
signed_arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! signed_arbitrary {$/;"	d
signed_float_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^macro_rules! signed_float_impl {$/;"	d
signed_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^macro_rules! signed_impl {$/;"	d
signed_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn signed_shl(self, n: u32) -> Self {$/;"	f
signed_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn signed_shl(self, n: u32) -> Self;$/;"	f
signed_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn signed_shr(self, n: u32) -> Self {$/;"	f
signed_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn signed_shr(self, n: u32) -> Self;$/;"	f
signed_shrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! signed_shrinker {$/;"	d
signed_wrapping_is_signed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^fn signed_wrapping_is_signed() {$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn signum(&self) -> BigInt {$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn signum(self) -> Self {$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn signum(self) -> Self;$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^            fn signum(&self) -> $t {$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn signum(&self) -> Self {$/;"	f
signum	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^    fn signum(&self) -> Self;$/;"	f
sin	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn sin(self) -> Self {$/;"	f
sin	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn sin(self) -> Self;$/;"	f
sin_cos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn sin_cos(self) -> (Self, Self) {$/;"	f
sin_cos	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn sin_cos(self) -> (Self, Self);$/;"	f
single_shrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^pub fn single_shrinker<A: 'static>(value: A) -> Box<Iterator<Item=A>> {$/;"	f
sinh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn sinh(self) -> Self {$/;"	f
sinh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn sinh(self) -> Self;$/;"	f
size	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn size(&self) -> usize { self.size }$/;"	f
size	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn size(&self) -> usize;$/;"	f
size_for_small_types_issue_143	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    fn size_for_small_types_issue_143() {$/;"	f
size_hint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn size_hint(&self) -> (usize, Option<usize>) {$/;"	f
slice_shift_char	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^                fn slice_shift_char(src: &str) -> Option<(char, &str)> {$/;"	f
sort	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn sort() {$/;"	f
spawn	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^fn spawn(cmd: &mut Command, program: &str) -> Result<(Child, JoinHandle<()>), Error> {$/;"	f
sqr	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn sqr(wp: LimbsMut, xp: Limbs, xs: i32) {$/;"	f
sqr_rand	/Users/micro/projects/ramp/src/int.rs	/^    fn sqr_rand() {$/;"	f
sqr_rec	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn sqr_rec(wp: LimbsMut, xp: Limbs, xs: i32, scratch: LimbsMut) {$/;"	f
sqr_toom2	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn sqr_toom2(wp: LimbsMut, xp: Limbs, xs: i32, scratch: LimbsMut) {$/;"	f
sqrt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn sqrt(self) -> Self {$/;"	f
sqrt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn sqrt(self) -> Self;$/;"	f
sqrt_rem	/Users/micro/projects/ramp/src/int.rs	/^    fn sqrt_rem() {$/;"	f
sqrt_rem	/Users/micro/projects/ramp/src/int.rs	/^    pub fn sqrt_rem(mut self) -> Option<(Int, Int)> {$/;"	f
square	/Users/micro/projects/ramp/src/int.rs	/^    pub fn square(&self) -> Int {$/;"	f
static_crt	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn static_crt(&mut self, static_crt: bool) -> &mut Build {$/;"	f
static_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn static_flag(&mut self, static_flag: bool) -> &mut Build {$/;"	f
step	/Users/micro/projects/ramp/src/int.rs	/^    fn step() {$/;"	f
steps_between	/Users/micro/projects/ramp/src/int.rs	/^    fn steps_between(start: &Int, end: &Int) -> Option<usize> {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: &BigInt) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: BigDigit) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: BigInt) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: DoubleBigDigit) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: i32) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn sub(self, other: i64) -> BigInt {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn sub(mut self, other: &BigUint) -> BigUint {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn sub(mut self, other: BigDigit) -> BigUint {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn sub(mut self, other: DoubleBigDigit) -> BigUint {$/;"	f
sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn sub(self, mut other: BigUint) -> BigUint {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^            fn sub(self, other: $t) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^            fn sub(self, other: &'a Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^            fn sub(self, other: Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub() {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub(mut self, other: &'a Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub(mut self, other: Limb) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub(self, mut other: Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub(self, other: &'a Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/int.rs	/^    fn sub(self, other: Int) -> Int {$/;"	f
sub	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn sub(self, other: BaseInt) -> Limb {$/;"	f
sub	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn sub(self, other: Limb) -> Limb {$/;"	f
sub	/Users/micro/projects/ramp/src/ll/limb.rs	/^    fn sub(self, other: bool) -> Limb {$/;"	f
sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub() {$/;"	f
sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub(mut self, other: &'a Rational) -> Rational {$/;"	f
sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub(mut self, other: Rational) -> Rational {$/;"	f
sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub(self, mut other: Rational) -> Rational {$/;"	f
sub	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub(self, other: &'a Rational) -> Rational {$/;"	f
sub2	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn sub2(a: &mut [BigDigit], b: &[BigDigit]) {$/;"	f
sub2rev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn sub2rev(a: &[BigDigit], b: &mut [BigDigit]) {$/;"	f
sub_2	/Users/micro/projects/ramp/src/ll/limb.rs	/^pub fn sub_2(ah: Limb, al: Limb, bh: Limb, bl: Limb) -> (Limb, Limb) {$/;"	f
sub_2_impl	/Users/micro/projects/ramp/src/ll/limb.rs	/^        fn sub_2_impl(ah: Limb, al: Limb, bh: Limb, bl: Limb) -> (Limb, Limb) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/int.rs	/^            fn sub_assign(&mut self, other: $t) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn sub_assign(&mut self, other: &'a Int) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn sub_assign(&mut self, other: Int) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/int.rs	/^    fn sub_assign(&mut self, other: Limb) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub_assign(&mut self, mut other: Rational) {$/;"	f
sub_assign	/Users/micro/projects/ramp/src/rational.rs	/^    fn sub_assign(&mut self, other: &'a Rational) {$/;"	f
sub_n	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn sub_n(mut wp: LimbsMut, xp: Limbs, yp: Limbs,$/;"	f
sub_n	/Users/micro/projects/ramp/src/ll/addsub.rs	/^pub unsafe fn sub_n(wp: LimbsMut, xp: Limbs, yp: Limbs,$/;"	f
sub_n_generic	/Users/micro/projects/ramp/src/ll/addsub.rs	/^unsafe fn sub_n_generic(mut wp: LimbsMut, mut xp: Limbs, mut yp: Limbs,$/;"	f
sub_one	/Users/micro/projects/ramp/src/int.rs	/^    fn sub_one(&self) -> Self {$/;"	f
sub_overflow	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn sub_overflow(self, other: Limb) -> (Limb, bool) {$/;"	f
sub_sign	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^pub fn sub_sign(a: &[BigDigit], b: &[BigDigit]) -> (Sign, BigUint) {$/;"	f
sub_sign_i	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^        fn sub_sign_i(a: &[BigDigit], b: &[BigDigit]) -> BigInt {$/;"	f
submul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn submul_1(mut wp: LimbsMut, xp: Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
submul_1	/Users/micro/projects/ramp/src/ll/mul.rs	/^pub unsafe fn submul_1(wp: LimbsMut, xp: Limbs, n: i32, vl: Limb) -> Limb {$/;"	f
submul_1_generic	/Users/micro/projects/ramp/src/ll/mul.rs	/^unsafe fn submul_1_generic(mut wp: LimbsMut, mut xp: Limbs, mut n: i32, vl: Limb) -> Limb {$/;"	f
substitute_hashmap	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn substitute_hashmap($/;"	f
substitute_hashset	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^    fn substitute_hashset($/;"	f
swap_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn swap_bytes(self) -> Self {$/;"	f
swap_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn swap_bytes(self) -> Self;$/;"	f
syscall	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^            fn syscall(number: libc::c_long, ...) -> libc::c_long;$/;"	f
t	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^        fn t(_: i8) -> bool { true }$/;"	f
t	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^        macro_rules! t {$/;"	d
t	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^        macro_rules! t {$/;"	d
tan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn tan(self) -> Self {$/;"	f
tan	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn tan(self) -> Self;$/;"	f
tanh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn tanh(self) -> Self {$/;"	f
tanh	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn tanh(self) -> Self;$/;"	f
target	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn target(&mut self, target: &str) -> &mut Build {$/;"	f
test_abs_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_abs_sub() {$/;"	f
test_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_add() {$/;"	f
test_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_add() {$/;"	f
test_add	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_add() {$/;"	f
test_add_self	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_add_self() {$/;"	f
test_all_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_all_str_radix() {$/;"	f
test_binary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_binary() {$/;"	f
test_binary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_binary() {$/;"	f
test_binomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^fn test_binomial() {$/;"	f
test_bitand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_bitand() {$/;"	f
test_bitor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_bitor() {$/;"	f
test_bits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_bits() {$/;"	f
test_bitscan	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_bitscan() {$/;"	f
test_bitxor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_bitxor() {$/;"	f
test_bug_div_1	/Users/micro/projects/ramp/src/ll/limb.rs	/^fn test_bug_div_1() {$/;"	f
test_bug_mul_1	/Users/micro/projects/ramp/src/ll/limb.rs	/^fn test_bug_mul_1() {$/;"	f
test_checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_checked_add() {$/;"	f
test_checked_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_checked_add() {$/;"	f
test_checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_checked_div() {$/;"	f
test_checked_div	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_checked_div() {$/;"	f
test_checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_checked_mul() {$/;"	f
test_checked_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_checked_mul() {$/;"	f
test_checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_checked_sub() {$/;"	f
test_checked_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_checked_sub() {$/;"	f
test_chi_squared_invalid_dof	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_chi_squared_invalid_dof() {$/;"	f
test_chi_squared_large	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_chi_squared_large() {$/;"	f
test_chi_squared_one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_chi_squared_one() {$/;"	f
test_chi_squared_small	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_chi_squared_small() {$/;"	f
test_choose	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_choose() {$/;"	f
test_cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_cmp() {$/;"	f
test_cmp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_cmp() {$/;"	f
test_convert_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_f32() {$/;"	f
test_convert_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_f32() {$/;"	f
test_convert_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_f64() {$/;"	f
test_convert_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_f64() {$/;"	f
test_convert_from_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_from_biguint() {$/;"	f
test_convert_from_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_from_int() {$/;"	f
test_convert_from_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_from_uint() {$/;"	f
test_convert_from_uint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_from_uint() {$/;"	f
test_convert_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_i64() {$/;"	f
test_convert_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_i64() {$/;"	f
test_convert_to_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_to_bigint() {$/;"	f
test_convert_to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_to_biguint() {$/;"	f
test_convert_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_convert_u64() {$/;"	f
test_convert_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_convert_u64() {$/;"	f
test_display	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_display() {$/;"	f
test_display	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_display() {$/;"	f
test_div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_div_mod_floor() {$/;"	f
test_div_mod_floor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_div_mod_floor() {$/;"	f
test_div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_div_rem() {$/;"	f
test_div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_div_rem() {$/;"	f
test_div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_div_rem() {$/;"	f
test_division_rule	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_division_rule((n,d): ($T, $T), (q,r): ($T, $T)) {$/;"	f
test_divrem	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_divrem() {$/;"	f
test_divrem_1	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_divrem_1() {$/;"	f
test_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_even() {$/;"	f
test_exp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn test_exp() {$/;"	f
test_exp_invalid_lambda_neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn test_exp_invalid_lambda_neg() {$/;"	f
test_exp_invalid_lambda_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^    fn test_exp_invalid_lambda_zero() {$/;"	f
test_f	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_f() {$/;"	f
test_factor	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_factor() {$/;"	f
test_fill_bytes_default	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_fill_bytes_default() {$/;"	f
test_floats	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn test_floats() {$/;"	f
test_from_and_to_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_from_and_to_radix() {$/;"	f
test_from_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_biguint() {$/;"	f
test_from_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_bytes_be() {$/;"	f
test_from_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_from_bytes_be() {$/;"	f
test_from_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_bytes_le() {$/;"	f
test_from_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_from_bytes_le() {$/;"	f
test_from_signed_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_signed_bytes_be() {$/;"	f
test_from_signed_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_signed_bytes_le() {$/;"	f
test_from_slice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_from_slice() {$/;"	f
test_from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_from_str_radix() {$/;"	f
test_from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_from_str_radix() {$/;"	f
test_gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_gcd() {$/;"	f
test_gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_gcd() {$/;"	f
test_gcd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd() {$/;"	f
test_gcd_0_min_val	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd_0_min_val() {$/;"	f
test_gcd_cmp_with_euclidean	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd_cmp_with_euclidean() {$/;"	f
test_gcd_min_val	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd_min_val() {$/;"	f
test_gcd_min_val_0	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd_min_val_0() {$/;"	f
test_gcd_min_val_min_val	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_gcd_min_val_min_val() {$/;"	f
test_gen_ascii_str	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_ascii_str() {$/;"	f
test_gen_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_f64() {$/;"	f
test_gen_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_range() {$/;"	f
test_gen_range_panic_int	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_range_panic_int() {$/;"	f
test_gen_range_panic_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_range_panic_usize() {$/;"	f
test_gen_vec	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_vec() {$/;"	f
test_gen_weighted_bool	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_gen_weighted_bool() {$/;"	f
test_hash	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_hash() {$/;"	f
test_hash	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_hash() {$/;"	f
test_integers	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn test_integers() {$/;"	f
test_is_even	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_is_even() {$/;"	f
test_is_multiple_of	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_is_multiple_of() {$/;"	f
test_iter_binomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^fn test_iter_binomial() {$/;"	f
test_lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_lcm() {$/;"	f
test_lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_lcm() {$/;"	f
test_lcm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_lcm() {$/;"	f
test_lcm_overflow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^fn test_lcm_overflow() {$/;"	f
test_log_normal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn test_log_normal() {$/;"	f
test_log_normal_invalid_sd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn test_log_normal_invalid_sd() {$/;"	f
test_lower_hex	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_lower_hex() {$/;"	f
test_lower_hex	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_lower_hex() {$/;"	f
test_mod	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/distance_.rs	/^    macro_rules! test_mod {$/;"	d
test_mod	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    macro_rules! test_mod {$/;"	d
test_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_mul() {$/;"	f
test_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_mul() {$/;"	f
test_mul	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_mul() {$/;"	f
test_mul_1	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_mul_1() {$/;"	f
test_mul_divide_torture	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_mul_divide_torture() {$/;"	f
test_mul_divide_torture_count	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_mul_divide_torture_count(count: usize) {$/;"	f
test_mul_divide_torture_long	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_mul_divide_torture_long() {$/;"	f
test_mul_hilo	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_mul_hilo() {$/;"	f
test_mul_large	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_mul_large() {$/;"	f
test_mul_overflow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_mul_overflow() {$/;"	f
test_multinomial	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^fn test_multinomial() {$/;"	f
test_nd_dm	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^                fn test_nd_dm(nd: ($T,$T), dm: ($T,$T)) {$/;"	f
test_nd_dr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^                fn test_nd_dr(nd: ($T,$T), qr: ($T,$T)) {$/;"	f
test_neg	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_neg() {$/;"	f
test_negative_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_negative_rand_range() {$/;"	f
test_negative_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_negative_rand_range() {$/;"	f
test_normal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn test_normal() {$/;"	f
test_normal_invalid_sd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^    fn test_normal_invalid_sd() {$/;"	f
test_octal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_octal() {$/;"	f
test_octal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_octal() {$/;"	f
test_odd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.35/src/lib.rs	/^            fn test_odd() {$/;"	f
test_os_rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn test_os_rng() {$/;"	f
test_os_rng_tasks	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/os.rs	/^    fn test_os_rng_tasks() {$/;"	f
test_rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_rand() {$/;"	f
test_rand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_rand() {$/;"	f
test_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_rand_range() {$/;"	f
test_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_rand_range() {$/;"	f
test_rand_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_rand_sample() {$/;"	f
test_random	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_random() {$/;"	f
test_range_bad_limits_equal	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn test_range_bad_limits_equal() {$/;"	f
test_range_bad_limits_flipped	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/range.rs	/^    fn test_range_bad_limits_flipped() {$/;"	f
test_reader_rng_fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn test_reader_rng_fill_bytes() {$/;"	f
test_reader_rng_insufficient_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn test_reader_rng_insufficient_bytes() {$/;"	f
test_reader_rng_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn test_reader_rng_u32() {$/;"	f
test_reader_rng_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/read.rs	/^    fn test_reader_rng_u64() {$/;"	f
test_reseeding	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn test_reseeding() {$/;"	f
test_rng_32_rand_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_32_rand_seeded() {$/;"	f
test_rng_32_reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_32_reseed() {$/;"	f
test_rng_32_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_32_seeded() {$/;"	f
test_rng_32_true_values	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_32_true_values() {$/;"	f
test_rng_64_rand_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_64_rand_seeded() {$/;"	f
test_rng_64_reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_64_reseed() {$/;"	f
test_rng_64_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_64_seeded() {$/;"	f
test_rng_64_true_values	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_64_true_values() {$/;"	f
test_rng_clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn test_rng_clone() {$/;"	f
test_rng_clone	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/isaac.rs	/^    fn test_rng_clone() {$/;"	f
test_rng_fill_bytes	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn test_rng_fill_bytes() {$/;"	f
test_rng_rand_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn test_rng_rand_seeded() {$/;"	f
test_rng_reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn test_rng_reseed() {$/;"	f
test_rng_reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn test_rng_reseed() {$/;"	f
test_rng_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn test_rng_seeded() {$/;"	f
test_rng_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/reseeding.rs	/^    fn test_rng_seeded() {$/;"	f
test_rng_trait_object	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_rng_trait_object() {$/;"	f
test_rng_true_values	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn test_rng_true_values() {$/;"	f
test_sample	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_sample() {$/;"	f
test_scalar_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_scalar_add() {$/;"	f
test_scalar_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_scalar_add() {$/;"	f
test_scalar_div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_scalar_div_rem() {$/;"	f
test_scalar_div_rem	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_scalar_div_rem() {$/;"	f
test_scalar_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_scalar_mul() {$/;"	f
test_scalar_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_scalar_mul() {$/;"	f
test_scalar_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_scalar_sub() {$/;"	f
test_scalar_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_scalar_sub() {$/;"	f
test_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_shl() {$/;"	f
test_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_shr() {$/;"	f
test_shuffle	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_shuffle() {$/;"	f
test_std_rng_reseed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_std_rng_reseed() {$/;"	f
test_std_rng_seeded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_std_rng_seeded() {$/;"	f
test_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_sub() {$/;"	f
test_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_sub() {$/;"	f
test_sub	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_sub() {$/;"	f
test_sub_fail_on_underflow	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_sub_fail_on_underflow() {$/;"	f
test_sub_self	/Users/micro/projects/ramp/src/ll/mod.rs	/^    fn test_sub_self() {$/;"	f
test_sub_sign	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    fn test_sub_sign() {$/;"	f
test_t	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/gamma.rs	/^    fn test_t() {$/;"	f
test_thread_rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^    fn test_thread_rng() {$/;"	f
test_to_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_to_bytes_be() {$/;"	f
test_to_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_to_bytes_be() {$/;"	f
test_to_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_to_bytes_le() {$/;"	f
test_to_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_to_bytes_le() {$/;"	f
test_to_signed_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_to_signed_bytes_be() {$/;"	f
test_to_signed_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_to_signed_bytes_le() {$/;"	f
test_to_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_to_str_radix() {$/;"	f
test_upper_hex	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_upper_hex() {$/;"	f
test_upper_hex	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_upper_hex() {$/;"	f
test_weighted_choice	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_choice() {$/;"	f
test_weighted_choice_no_items	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_choice_no_items() {$/;"	f
test_weighted_choice_weight_overflows	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_choice_weight_overflows() {$/;"	f
test_weighted_choice_zero_weight	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_choice_zero_weight() {$/;"	f
test_weighted_clone_change_item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_clone_change_item() {$/;"	f
test_weighted_clone_change_weight	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_clone_change_weight() {$/;"	f
test_weighted_clone_initialization	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^    fn test_weighted_clone_initialization() {$/;"	f
test_wrapping_bounded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^macro_rules! test_wrapping_bounded {$/;"	d
test_wrapping_from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^macro_rules! test_wrapping_from_str_radix {$/;"	d
test_wrapping_identities	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^macro_rules! test_wrapping_identities {$/;"	d
test_wrapping_to_primitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^macro_rules! test_wrapping_to_primitive {$/;"	d
test_wrapping_traits	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^fn test_wrapping_traits() {$/;"	f
test_zero_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/bigint.rs	/^fn test_zero_rand_range() {$/;"	f
test_zero_rand_range	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn test_zero_rand_range() {$/;"	f
testable_fn	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^macro_rules! testable_fn {$/;"	d
testable_result	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn testable_result() {$/;"	f
testable_result_err	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn testable_result_err() {$/;"	f
testable_unit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn testable_unit() {$/;"	f
testable_unit_panic	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tests.rs	/^fn testable_unit_panic() {$/;"	f
tests	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^    pub fn tests(mut self, tests: u64) -> QuickCheck<G> {$/;"	f
thetest	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/tester.rs	/^        fn thetest(vals: Vec<bool>) -> bool {$/;"	f
thread_rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub fn thread_rng() -> ThreadRng {$/;"	f
to_base	/Users/micro/projects/ramp/src/ll/base.rs	/^pub unsafe fn to_base<F: FnMut(u8)>(base: u32, np: Limbs, nn: i32, mut out_byte: F) {$/;"	f
to_base_impl	/Users/micro/projects/ramp/src/ll/base.rs	/^unsafe fn to_base_impl<F: FnMut(u8)>(mut len: u32, base: u32, np: Limbs, mut nn: i32, mut out_byte: F) {$/;"	f
to_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn to_be(self) -> Self {$/;"	f
to_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn to_be(self) -> Self;$/;"	f
to_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^            fn to_bigint(&self) -> Option<BigInt> {$/;"	f
to_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_bigint(&self) -> Option<BigInt> {$/;"	f
to_bigint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_bigint(&self) -> Option<BigInt>;$/;"	f
to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_biguint(&self) -> Option<BigUint> {$/;"	f
to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_biguint(&self) -> Option<BigUint> {$/;"	f
to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^            fn to_biguint(&self) -> Option<BigUint> {$/;"	f
to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_biguint(&self) -> Option<BigUint> {$/;"	f
to_biguint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_biguint(&self) -> Option<BigUint>;$/;"	f
to_bitwise_digits_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn to_bitwise_digits_le(u: &BigUint, bits: usize) -> Vec<u8> {$/;"	f
to_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_bytes_be(&self) -> (Sign, Vec<u8>) {$/;"	f
to_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn to_bytes_be(&self) -> Vec<u8> {$/;"	f
to_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_bytes_le(&self) -> (Sign, Vec<u8>) {$/;"	f
to_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn to_bytes_le(&self) -> Vec<u8> {$/;"	f
to_command	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn to_command(&self) -> Command {$/;"	f
to_degrees	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn to_degrees(self) -> Self {$/;"	f
to_degrees	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn to_degrees(self) -> Self {$/;"	f
to_doublebigdigit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/algorithms.rs	/^    pub fn to_doublebigdigit(hi: BigDigit, lo: BigDigit) -> DoubleBigDigit {$/;"	f
to_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_f32(&self) -> Option<f32> {$/;"	f
to_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_f32(&self) -> Option<f32> {$/;"	f
to_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_f32(&self) -> Option<f32> { Some(*self as f32) }$/;"	f
to_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_f32(&self) -> Option<f32> { impl_to_primitive_float_to_float!($T, f32, *self) }$/;"	f
to_f32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_f32(&self) -> Option<f32> {$/;"	f
to_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_f64(&self) -> Option<f64> {$/;"	f
to_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_f64(&self) -> Option<f64> {$/;"	f
to_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_f64(&self) -> Option<f64> { Some(*self as f64) }$/;"	f
to_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_f64(&self) -> Option<f64> { impl_to_primitive_float_to_float!($T, f64, *self) }$/;"	f
to_f64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_f64(&self) -> Option<f64> {$/;"	f
to_f64	/Users/micro/projects/ramp/src/int.rs	/^    pub fn to_f64(&self) -> f64 {$/;"	f
to_f64	/Users/micro/projects/ramp/src/rational.rs	/^    pub fn to_f64(&self) -> f64 {$/;"	f
to_i16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i16(&self) -> Option<i16> { Some(*self as i16) }$/;"	f
to_i16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i16(&self) -> Option<i16> { impl_to_primitive_int_to_int!($T, i16, *self) }$/;"	f
to_i16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i16(&self) -> Option<i16> { impl_to_primitive_uint_to_int!(i16, *self) }$/;"	f
to_i16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_i16(&self) -> Option<i16> {$/;"	f
to_i32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i32(&self) -> Option<i32> { Some(*self as i32) }$/;"	f
to_i32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i32(&self) -> Option<i32> { impl_to_primitive_int_to_int!($T, i32, *self) }$/;"	f
to_i32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i32(&self) -> Option<i32> { impl_to_primitive_uint_to_int!(i32, *self) }$/;"	f
to_i32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_i32(&self) -> Option<i32> {$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_i64(&self) -> Option<i64> {$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_i64(&self) -> Option<i64> {$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i64(&self) -> Option<i64> { Some(*self as i64) }$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i64(&self) -> Option<i64> { impl_to_primitive_int_to_int!($T, i64, *self) }$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i64(&self) -> Option<i64> { impl_to_primitive_uint_to_int!(i64, *self) }$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_i64(&self) -> Option<i64> { self.0.to_i64() }$/;"	f
to_i64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_i64(&self) -> Option<i64>;$/;"	f
to_i8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i8(&self) -> Option<i8> { Some(*self as i8) }$/;"	f
to_i8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i8(&self) -> Option<i8> { impl_to_primitive_int_to_int!($T, i8, *self) }$/;"	f
to_i8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_i8(&self) -> Option<i8> { impl_to_primitive_uint_to_int!(i8, *self) }$/;"	f
to_i8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_i8(&self) -> Option<i8> {$/;"	f
to_inexact_bitwise_digits_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn to_inexact_bitwise_digits_le(u: &BigUint, bits: usize) -> Vec<u8> {$/;"	f
to_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_isize(&self) -> Option<isize> { Some(*self as isize) }$/;"	f
to_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_isize(&self) -> Option<isize> { impl_to_primitive_int_to_int!($T, isize, *self) }$/;"	f
to_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_isize(&self) -> Option<isize> { impl_to_primitive_uint_to_int!(isize, *self) }$/;"	f
to_isize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_isize(&self) -> Option<isize> {$/;"	f
to_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn to_le(self) -> Self {$/;"	f
to_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn to_le(self) -> Self;$/;"	f
to_osstring	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub fn to_osstring(&self) -> OsString {$/;"	f
to_primitive_float	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^fn to_primitive_float() {$/;"	f
to_radians	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn to_radians(self) -> Self {$/;"	f
to_radians	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn to_radians(self) -> Self {$/;"	f
to_radix_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_radix_be(&self, radix: u32) -> (Sign, Vec<u8>) {$/;"	f
to_radix_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn to_radix_be(&self, radix: u32) -> Vec<u8> {$/;"	f
to_radix_digits_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^fn to_radix_digits_le(u: &BigUint, radix: u32) -> Vec<u8> {$/;"	f
to_radix_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_radix_le(&self, radix: u32) -> (Sign, Vec<u8>) {$/;"	f
to_radix_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn to_radix_le(&self, radix: u32) -> Vec<u8> {$/;"	f
to_radix_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^pub fn to_radix_le(u: &BigUint, radix: u32) -> Vec<u8> {$/;"	f
to_signed_bytes_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_signed_bytes_be(&self) -> Vec<u8> {$/;"	f
to_signed_bytes_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_signed_bytes_le(&self) -> Vec<u8> {$/;"	f
to_single_limb	/Users/micro/projects/ramp/src/int.rs	/^    pub fn to_single_limb(&self) -> Limb {$/;"	f
to_str_pairs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/tests/biguint.rs	/^fn to_str_pairs() -> Vec<(BigUint, Vec<(u32, String)>)> {$/;"	f
to_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    pub fn to_str_radix(&self, radix: u32) -> String {$/;"	f
to_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    pub fn to_str_radix(&self, radix: u32) -> String {$/;"	f
to_str_radix	/Users/micro/projects/ramp/src/int.rs	/^    pub fn to_str_radix(&self, base: u8, upper: bool) -> String {$/;"	f
to_str_radix_reversed	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^pub fn to_str_radix_reversed(u: &BigUint, radix: u32) -> Vec<u8> {$/;"	f
to_string_10	/Users/micro/projects/ramp/src/int.rs	/^    fn to_string_10() {$/;"	f
to_string_16	/Users/micro/projects/ramp/src/int.rs	/^    fn to_string_16() {$/;"	f
to_u16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u16(&self) -> Option<u16> { Some(*self as u16) }$/;"	f
to_u16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u16(&self) -> Option<u16> { impl_to_primitive_int_to_uint!($T, u16, *self) }$/;"	f
to_u16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u16(&self) -> Option<u16> { impl_to_primitive_uint_to_uint!($T, u16, *self) }$/;"	f
to_u16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_u16(&self) -> Option<u16> {$/;"	f
to_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u32(&self) -> Option<u32> { Some(*self as u32) }$/;"	f
to_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u32(&self) -> Option<u32> { impl_to_primitive_int_to_uint!($T, u32, *self) }$/;"	f
to_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u32(&self) -> Option<u32> { impl_to_primitive_uint_to_uint!($T, u32, *self) }$/;"	f
to_u32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_u32(&self) -> Option<u32> {$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn to_u64(&self) -> Option<u64> {$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn to_u64(&self) -> Option<u64> {$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u64(&self) -> Option<u64> { Some(*self as u64) }$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u64(&self) -> Option<u64> { impl_to_primitive_int_to_uint!($T, u64, *self) }$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u64(&self) -> Option<u64> { impl_to_primitive_uint_to_uint!($T, u64, *self) }$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_u64(&self) -> Option<u64> { self.0.to_u64() }$/;"	f
to_u64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_u64(&self) -> Option<u64>;$/;"	f
to_u8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u8(&self) -> Option<u8> { Some(*self as u8) }$/;"	f
to_u8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u8(&self) -> Option<u8> { impl_to_primitive_int_to_uint!($T, u8, *self) }$/;"	f
to_u8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_u8(&self) -> Option<u8> { impl_to_primitive_uint_to_uint!($T, u8, *self) }$/;"	f
to_u8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_u8(&self) -> Option<u8> {$/;"	f
to_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_usize(&self) -> Option<usize> { Some(*self as usize) }$/;"	f
to_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_usize(&self) -> Option<usize> { impl_to_primitive_int_to_uint!($T, usize, *self) }$/;"	f
to_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^            fn to_usize(&self) -> Option<usize> {$/;"	f
to_usize	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^    fn to_usize(&self) -> Option<usize> {$/;"	f
to_wide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn to_wide(&self) -> Vec<u16> {$/;"	f
to_wide	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn to_wide(&self) -> Vec<u16>;$/;"	f
to_wide_null	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn to_wide_null(&self) -> Vec<u16> {$/;"	f
to_wide_null	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    fn to_wide_null(&self) -> Vec<u16>;$/;"	f
tool_from_vs15_instance	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn tool_from_vs15_instance(tool: &str, target: &str, instance: &SetupInstance) -> Option<Tool> {$/;"	f
trailing_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn trailing_zeros(self) -> u32 {$/;"	f
trailing_zeros	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn trailing_zeros(self) -> u32;$/;"	f
trailing_zeros	/Users/micro/projects/ramp/src/int.rs	/^    fn trailing_zeros() {$/;"	f
trailing_zeros	/Users/micro/projects/ramp/src/int.rs	/^    pub fn trailing_zeros(&self) -> u32 {$/;"	f
trailing_zeros	/Users/micro/projects/ramp/src/ll/limb.rs	/^    pub fn trailing_zeros(self) -> BaseInt {$/;"	f
triples	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn triples() {$/;"	f
trunc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^            fn trunc(self) -> Self {$/;"	f
trunc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/float.rs	/^    fn trunc(self) -> Self;$/;"	f
try_compile	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn try_compile(&self, output: &str) -> Result<(), Error> {$/;"	f
try_expand	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn try_expand(&self) -> Result<Vec<u8>, Error> {$/;"	f
try_get_compiler	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn try_get_compiler(&self) -> Result<Tool, Error> {$/;"	f
tuple_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/rand_impls.rs	/^macro_rules! tuple_impl {$/;"	d
tuples	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn tuples() {$/;"	f
twos_complement	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^fn twos_complement<'a, I>(digits: I)$/;"	f
twos_complement	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn twos_complement(mut wp: LimbsMut, mut xp: Limbs, xs: i32) -> Limb {$/;"	f
twos_complement_be	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^fn twos_complement_be(digits: &mut [u8]) {$/;"	f
twos_complement_le	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^fn twos_complement_le(digits: &mut [u8]) {$/;"	f
u	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rustc-cfg-0.2.0/src/lib.rs	/^macro_rules! u {$/;"	d
uints	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints() {$/;"	f
uints128	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints128() {$/;"	f
uints16	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints16() {$/;"	f
uints32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints32() {$/;"	f
uints64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints64() {$/;"	f
uints8	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn uints8() {$/;"	f
ulp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn ulp() {$/;"	f
ulp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn ulp(self) -> Option<Self> {$/;"	f
ulp	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn ulp(self) -> Option<Self>;$/;"	f
unit	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn unit() {$/;"	f
unmask	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^macro_rules! unmask {$/;"	d
unop_cases	/Users/micro/projects/ramp/src/rational.rs	/^    macro_rules! unop_cases {$/;"	d
unsigned_arbitrary	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! unsigned_arbitrary {$/;"	d
unsigned_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn unsigned_shl(self, n: u32) -> Self {$/;"	f
unsigned_shl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn unsigned_shl(self, n: u32) -> Self;$/;"	f
unsigned_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^            fn unsigned_shr(self, n: u32) -> Self {$/;"	f
unsigned_shr	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/int.rs	/^    fn unsigned_shr(self, n: u32) -> Self;$/;"	f
unsigned_shrinker	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^macro_rules! unsigned_shrinker {$/;"	d
unsigned_wrapping_is_unsigned	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/sign.rs	/^fn unsigned_wrapping_is_unsigned() {$/;"	f
up	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/com.rs	/^    pub fn up<U>(self) -> ComPtr<U>$/;"	f
update	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/chacha.rs	/^    fn update(&mut self) {$/;"	f
upto	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto() {$/;"	f
upto	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto(self, lim: Self) -> Iter<Self> {$/;"	f
upto	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^    fn upto(self, lim: Self) -> Iter<Self>;$/;"	f
upto_infinities	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto_infinities() {$/;"	f
upto_infinities_rev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto_infinities_rev() {$/;"	f
upto_rev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto_rev() {$/;"	f
upto_size_hint	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto_size_hint() {$/;"	f
upto_size_hint_rev	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/ieee754-0.2.2/src/lib.rs	/^            fn upto_size_hint_rev() {$/;"	f
uuidof	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^            fn uuidof() -> $crate::winapi::GUID {$/;"	f
uuidof	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^    fn uuidof() -> GUID;$/;"	f
vc_lib_subdir	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn vc_lib_subdir(target: &str) -> Option<&'static str> {$/;"	f
vecs	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck-0.6.0/src/arbitrary.rs	/^    fn vecs() {$/;"	f
vs15_vc_paths	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/windows_registry.rs	/^    fn vs15_vc_paths($/;"	f
w32	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^type w32 = w<u32>;$/;"	T
w64	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^type w64 = w<u64>;$/;"	T
warnings	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn warnings(&mut self, warnings: bool) -> &mut Build {$/;"	f
warnings_flags	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn warnings_flags(&self) -> &'static str {$/;"	f
warnings_into_errors	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    pub fn warnings_into_errors(&mut self, warnings_into_errors: bool) -> &mut Build {$/;"	f
warnings_to_errors_flag	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn warnings_to_errors_flag(&self) -> &'static str {$/;"	f
wchar_t	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/winapi.rs	/^pub type wchar_t = u16;$/;"	T
weak_rng	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/lib.rs	/^pub fn weak_rng() -> XorShiftRng {$/;"	f
weight	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^pub fn weight(x: &[u8]) -> u64 {$/;"	f
weight_huge	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    fn weight_huge() {$/;"	f
weight_qc	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/hamming-0.1.3/src/weight_.rs	/^    fn weight_qc() {$/;"	f
well_formed	/Users/micro/projects/ramp/src/int.rs	/^    fn well_formed(&self) -> bool {$/;"	f
with_capacity	/Users/micro/projects/ramp/src/int.rs	/^    fn with_capacity(cap: u32) -> Int {$/;"	f
with_features	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.17/src/lib.rs	/^    fn with_features(path: PathBuf, cuda: bool) -> Tool {$/;"	f
with_raw_vec	/Users/micro/projects/ramp/src/int.rs	/^    fn with_raw_vec<F: FnOnce(&mut RawVec<Limb>)>(&mut self, f: F) {$/;"	f
wrap_item	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/quickcheck_macros-0.6.1/src/lib.rs	/^fn wrap_item(cx: &mut ExtCtxt,$/;"	f
wrapping_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_add(&self, v: &Self) -> Self {$/;"	f
wrapping_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_add(&self, v: &Self) -> Self;$/;"	f
wrapping_add	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_add<T: WrappingAdd>(a: T, b: T) -> T { a.wrapping_add(&b) }$/;"	f
wrapping_bounded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^fn wrapping_bounded() {$/;"	f
wrapping_from_str_radix	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn wrapping_from_str_radix() {$/;"	f
wrapping_identities	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^fn wrapping_identities() {$/;"	f
wrapping_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^macro_rules! wrapping_impl {$/;"	d
wrapping_is_bounded	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/bounds.rs	/^fn wrapping_is_bounded() {$/;"	f
wrapping_is_fromprimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^fn wrapping_is_fromprimitive() {$/;"	f
wrapping_is_num	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/lib.rs	/^fn wrapping_is_num() {$/;"	f
wrapping_is_numcast	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^fn wrapping_is_numcast() {$/;"	f
wrapping_is_one	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^fn wrapping_is_one() {$/;"	f
wrapping_is_toprimitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^fn wrapping_is_toprimitive() {$/;"	f
wrapping_is_wrappingadd	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^fn wrapping_is_wrappingadd() {$/;"	f
wrapping_is_wrappingmul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^fn wrapping_is_wrappingmul() {$/;"	f
wrapping_is_wrappingsub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^fn wrapping_is_wrappingsub() {$/;"	f
wrapping_is_zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^fn wrapping_is_zero() {$/;"	f
wrapping_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_mul(&self, v: &Self) -> Self {$/;"	f
wrapping_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_mul(&self, v: &Self) -> Self;$/;"	f
wrapping_mul	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_mul<T: WrappingMul>(a: T, b: T) -> T { a.wrapping_mul(&b) }$/;"	f
wrapping_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_sub(&self, v: &Self) -> Self {$/;"	f
wrapping_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_sub(&self, v: &Self) -> Self;$/;"	f
wrapping_sub	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/ops/wrapping.rs	/^    fn wrapping_sub<T: WrappingSub>(a: T, b: T) -> T { a.wrapping_sub(&b) }$/;"	f
wrapping_to_primitive	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/cast.rs	/^fn wrapping_to_primitive() {$/;"	f
write_radix	/Users/micro/projects/ramp/src/int.rs	/^    pub fn write_radix<W: io::Write>(&self, w: &mut W, base: u8, upper: bool) -> io::Result<()> {$/;"	f
xor_n	/Users/micro/projects/ramp/src/ll/bit.rs	/^pub unsafe fn xor_n(wp: LimbsMut,$/;"	f
zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/bigint.rs	/^    fn zero() -> BigInt {$/;"	f
zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.1.40/src/biguint.rs	/^    fn zero() -> BigUint {$/;"	f
zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^            fn zero() -> $t { $v }$/;"	f
zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn zero() -> Self {$/;"	f
zero	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^    fn zero() -> Self;$/;"	f
zero	/Users/micro/projects/ramp/src/int.rs	/^    fn zero() -> Int {$/;"	f
zero	/Users/micro/projects/ramp/src/int.rs	/^    pub fn zero() -> Int {$/;"	f
zero	/Users/micro/projects/ramp/src/ll/mod.rs	/^pub unsafe fn zero(mut np: LimbsMut, mut nn: i32) {$/;"	f
zero	/Users/micro/projects/ramp/src/rational.rs	/^    fn zero() -> Rational {$/;"	f
zero_case	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/exponential.rs	/^        fn zero_case<R:Rng>(rng: &mut R, _u: f64) -> f64 {$/;"	f
zero_case	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/normal.rs	/^        fn zero_case<R:Rng>(rng: &mut R, u: f64) -> f64 {$/;"	f
zero_impl	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.1.40/src/identities.rs	/^macro_rules! zero_impl {$/;"	d
ziggurat	/Users/micro/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.3.16/src/distributions/mod.rs	/^fn ziggurat<R: Rng, P, Z>($/;"	f