1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
/* automatically generated by rust-bindgen */

# [ repr ( C ) ] # [ derive ( Default ) ] pub struct __IncompleteArrayField < T > ( :: std :: marker :: PhantomData < T > ) ; impl < T > __IncompleteArrayField < T > { # [ inline ] pub fn new ( ) -> Self { __IncompleteArrayField ( :: std :: marker :: PhantomData ) } # [ inline ] pub unsafe fn as_ptr ( & self ) -> * const T { :: std :: mem :: transmute ( self ) } # [ inline ] pub unsafe fn as_mut_ptr ( & mut self ) -> * mut T { :: std :: mem :: transmute ( self ) } # [ inline ] pub unsafe fn as_slice ( & self , len : usize ) -> & [ T ] { :: std :: slice :: from_raw_parts ( self . as_ptr ( ) , len ) } # [ inline ] pub unsafe fn as_mut_slice ( & mut self , len : usize ) -> & mut [ T ] { :: std :: slice :: from_raw_parts_mut ( self . as_mut_ptr ( ) , len ) } } impl < T > :: std :: fmt :: Debug for __IncompleteArrayField < T > { fn fmt ( & self , fmt : & mut :: std :: fmt :: Formatter ) -> :: std :: fmt :: Result { fmt . write_str ( "__IncompleteArrayField" ) } } impl < T > :: std :: clone :: Clone for __IncompleteArrayField < T > { # [ inline ] fn clone ( & self ) -> Self { Self :: new ( ) } } impl < T > :: std :: marker :: Copy for __IncompleteArrayField < T > { } pub const _FEATURES_H : :: std :: os :: raw :: c_uint = 1 ; pub const _DEFAULT_SOURCE : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_ISOC11 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_ISOC99 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_ISOC95 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_POSIX_IMPLICITLY : :: std :: os :: raw :: c_uint = 1 ; pub const _POSIX_SOURCE : :: std :: os :: raw :: c_uint = 1 ; pub const _POSIX_C_SOURCE : :: std :: os :: raw :: c_uint = 200809 ; pub const __USE_POSIX : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_POSIX2 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_POSIX199309 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_POSIX199506 : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_XOPEN2K : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_XOPEN2K8 : :: std :: os :: raw :: c_uint = 1 ; pub const _ATFILE_SOURCE : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_MISC : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_ATFILE : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_FORTIFY_LEVEL : :: std :: os :: raw :: c_uint = 0 ; pub const _STDC_PREDEF_H : :: std :: os :: raw :: c_uint = 1 ; pub const __STDC_IEC_559__ : :: std :: os :: raw :: c_uint = 1 ; pub const __STDC_IEC_559_COMPLEX__ : :: std :: os :: raw :: c_uint = 1 ; pub const __STDC_ISO_10646__ : :: std :: os :: raw :: c_uint = 201605 ; pub const __STDC_NO_THREADS__ : :: std :: os :: raw :: c_uint = 1 ; pub const __GNU_LIBRARY__ : :: std :: os :: raw :: c_uint = 6 ; pub const __GLIBC__ : :: std :: os :: raw :: c_uint = 2 ; pub const __GLIBC_MINOR__ : :: std :: os :: raw :: c_uint = 24 ; pub const _SYS_CDEFS_H : :: std :: os :: raw :: c_uint = 1 ; pub const __WORDSIZE : :: std :: os :: raw :: c_uint = 64 ; pub const __WORDSIZE_TIME64_COMPAT32 : :: std :: os :: raw :: c_uint = 1 ; pub const __SYSCALL_WORDSIZE : :: std :: os :: raw :: c_uint = 64 ; pub const _STDLIB_H : :: std :: os :: raw :: c_uint = 1 ; pub const WNOHANG : :: std :: os :: raw :: c_uint = 1 ; pub const WUNTRACED : :: std :: os :: raw :: c_uint = 2 ; pub const WSTOPPED : :: std :: os :: raw :: c_uint = 2 ; pub const WEXITED : :: std :: os :: raw :: c_uint = 4 ; pub const WCONTINUED : :: std :: os :: raw :: c_uint = 8 ; pub const WNOWAIT : :: std :: os :: raw :: c_uint = 16777216 ; pub const __WNOTHREAD : :: std :: os :: raw :: c_uint = 536870912 ; pub const __WALL : :: std :: os :: raw :: c_uint = 1073741824 ; pub const __WCLONE : :: std :: os :: raw :: c_uint = 2147483648 ; pub const __ENUM_IDTYPE_T : :: std :: os :: raw :: c_uint = 1 ; pub const __W_CONTINUED : :: std :: os :: raw :: c_uint = 65535 ; pub const __WCOREFLAG : :: std :: os :: raw :: c_uint = 128 ; pub const __ldiv_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __lldiv_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const RAND_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const EXIT_FAILURE : :: std :: os :: raw :: c_uint = 1 ; pub const EXIT_SUCCESS : :: std :: os :: raw :: c_uint = 0 ; pub const _SYS_TYPES_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_TYPES_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_TYPESIZES_H : :: std :: os :: raw :: c_uint = 1 ; pub const __OFF_T_MATCHES_OFF64_T : :: std :: os :: raw :: c_uint = 1 ; pub const __INO_T_MATCHES_INO64_T : :: std :: os :: raw :: c_uint = 1 ; pub const __FD_SETSIZE : :: std :: os :: raw :: c_uint = 1024 ; pub const __clock_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __time_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __clockid_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __timer_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __BIT_TYPES_DEFINED__ : :: std :: os :: raw :: c_uint = 1 ; pub const _ENDIAN_H : :: std :: os :: raw :: c_uint = 1 ; pub const __LITTLE_ENDIAN : :: std :: os :: raw :: c_uint = 1234 ; pub const __BIG_ENDIAN : :: std :: os :: raw :: c_uint = 4321 ; pub const __PDP_ENDIAN : :: std :: os :: raw :: c_uint = 3412 ; pub const __BYTE_ORDER : :: std :: os :: raw :: c_uint = 1234 ; pub const __FLOAT_WORD_ORDER : :: std :: os :: raw :: c_uint = 1234 ; pub const LITTLE_ENDIAN : :: std :: os :: raw :: c_uint = 1234 ; pub const BIG_ENDIAN : :: std :: os :: raw :: c_uint = 4321 ; pub const PDP_ENDIAN : :: std :: os :: raw :: c_uint = 3412 ; pub const BYTE_ORDER : :: std :: os :: raw :: c_uint = 1234 ; pub const _BITS_BYTESWAP_H : :: std :: os :: raw :: c_uint = 1 ; pub const _SYS_SELECT_H : :: std :: os :: raw :: c_uint = 1 ; pub const __FD_ZERO_STOS : & 'static [ u8 ; 6usize ] = b"stosq\0" ; pub const _SIGSET_H_types : :: std :: os :: raw :: c_uint = 1 ; pub const __timespec_defined : :: std :: os :: raw :: c_uint = 1 ; pub const _STRUCT_TIMEVAL : :: std :: os :: raw :: c_uint = 1 ; pub const FD_SETSIZE : :: std :: os :: raw :: c_uint = 1024 ; pub const _SYS_SYSMACROS_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_PTHREADTYPES_H : :: std :: os :: raw :: c_uint = 1 ; pub const __SIZEOF_PTHREAD_ATTR_T : :: std :: os :: raw :: c_uint = 56 ; pub const __SIZEOF_PTHREAD_MUTEX_T : :: std :: os :: raw :: c_uint = 40 ; pub const __SIZEOF_PTHREAD_MUTEXATTR_T : :: std :: os :: raw :: c_uint = 4 ; pub const __SIZEOF_PTHREAD_COND_T : :: std :: os :: raw :: c_uint = 48 ; pub const __SIZEOF_PTHREAD_CONDATTR_T : :: std :: os :: raw :: c_uint = 4 ; pub const __SIZEOF_PTHREAD_RWLOCK_T : :: std :: os :: raw :: c_uint = 56 ; pub const __SIZEOF_PTHREAD_RWLOCKATTR_T : :: std :: os :: raw :: c_uint = 8 ; pub const __SIZEOF_PTHREAD_BARRIER_T : :: std :: os :: raw :: c_uint = 32 ; pub const __SIZEOF_PTHREAD_BARRIERATTR_T : :: std :: os :: raw :: c_uint = 4 ; pub const __have_pthread_attr_t : :: std :: os :: raw :: c_uint = 1 ; pub const __PTHREAD_MUTEX_HAVE_PREV : :: std :: os :: raw :: c_uint = 1 ; pub const __PTHREAD_RWLOCK_INT_FLAGS_SHARED : :: std :: os :: raw :: c_uint = 1 ; pub const _ALLOCA_H : :: std :: os :: raw :: c_uint = 1 ; pub const __GNUC_VA_LIST : :: std :: os :: raw :: c_uint = 1 ; pub const _ASSERT_H : :: std :: os :: raw :: c_uint = 1 ; pub const _STDINT_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_WCHAR_H : :: std :: os :: raw :: c_uint = 1 ; pub const INT8_MIN : :: std :: os :: raw :: c_int = -128 ; pub const INT16_MIN : :: std :: os :: raw :: c_int = -32768 ; pub const INT32_MIN : :: std :: os :: raw :: c_int = -2147483648 ; pub const INT8_MAX : :: std :: os :: raw :: c_uint = 127 ; pub const INT16_MAX : :: std :: os :: raw :: c_uint = 32767 ; pub const INT32_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const UINT8_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const UINT16_MAX : :: std :: os :: raw :: c_uint = 65535 ; pub const UINT32_MAX : :: std :: os :: raw :: c_uint = 4294967295 ; pub const INT_LEAST8_MIN : :: std :: os :: raw :: c_int = -128 ; pub const INT_LEAST16_MIN : :: std :: os :: raw :: c_int = -32768 ; pub const INT_LEAST32_MIN : :: std :: os :: raw :: c_int = -2147483648 ; pub const INT_LEAST8_MAX : :: std :: os :: raw :: c_uint = 127 ; pub const INT_LEAST16_MAX : :: std :: os :: raw :: c_uint = 32767 ; pub const INT_LEAST32_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const UINT_LEAST8_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const UINT_LEAST16_MAX : :: std :: os :: raw :: c_uint = 65535 ; pub const UINT_LEAST32_MAX : :: std :: os :: raw :: c_uint = 4294967295 ; pub const INT_FAST8_MIN : :: std :: os :: raw :: c_int = -128 ; pub const INT_FAST16_MIN : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const INT_FAST32_MIN : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const INT_FAST8_MAX : :: std :: os :: raw :: c_uint = 127 ; pub const INT_FAST16_MAX : :: std :: os :: raw :: c_ulonglong = 9223372036854775807 ; pub const INT_FAST32_MAX : :: std :: os :: raw :: c_ulonglong = 9223372036854775807 ; pub const UINT_FAST8_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const UINT_FAST16_MAX : :: std :: os :: raw :: c_int = -1 ; pub const UINT_FAST32_MAX : :: std :: os :: raw :: c_int = -1 ; pub const INTPTR_MIN : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const INTPTR_MAX : :: std :: os :: raw :: c_ulonglong = 9223372036854775807 ; pub const UINTPTR_MAX : :: std :: os :: raw :: c_int = -1 ; pub const PTRDIFF_MIN : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const PTRDIFF_MAX : :: std :: os :: raw :: c_ulonglong = 9223372036854775807 ; pub const SIG_ATOMIC_MIN : :: std :: os :: raw :: c_int = -2147483648 ; pub const SIG_ATOMIC_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const SIZE_MAX : :: std :: os :: raw :: c_int = -1 ; pub const WINT_MIN : :: std :: os :: raw :: c_uint = 0 ; pub const WINT_MAX : :: std :: os :: raw :: c_uint = 4294967295 ; pub const _MATH_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_LIBM_SIMD_DECL_STUBS_H : :: std :: os :: raw :: c_uint = 1 ; pub const _MATH_H_MATHDEF : :: std :: os :: raw :: c_uint = 1 ; pub const FP_ILOGB0 : :: std :: os :: raw :: c_int = -2147483648 ; pub const FP_ILOGBNAN : :: std :: os :: raw :: c_int = -2147483648 ; pub const __MATH_DECLARING_DOUBLE : :: std :: os :: raw :: c_uint = 1 ; pub const __MATH_DECLARE_LDOUBLE : :: std :: os :: raw :: c_uint = 1 ; pub const MATH_ERRNO : :: std :: os :: raw :: c_uint = 1 ; pub const MATH_ERREXCEPT : :: std :: os :: raw :: c_uint = 2 ; pub const math_errhandling : :: std :: os :: raw :: c_uint = 3 ; pub const DOMAIN : :: std :: os :: raw :: c_uint = 1 ; pub const SING : :: std :: os :: raw :: c_uint = 2 ; pub const OVERFLOW : :: std :: os :: raw :: c_uint = 3 ; pub const UNDERFLOW : :: std :: os :: raw :: c_uint = 4 ; pub const TLOSS : :: std :: os :: raw :: c_uint = 5 ; pub const PLOSS : :: std :: os :: raw :: c_uint = 6 ; pub const M_E : f64 = 2.718281828459045 ; pub const M_LOG2E : f64 = 1.4426950408889634 ; pub const M_LOG10E : f64 = 0.4342944819032518 ; pub const M_LN2 : f64 = 0.6931471805599453 ; pub const M_LN10 : f64 = 2.302585092994046 ; pub const M_PI : f64 = 3.141592653589793 ; pub const M_PI_2 : f64 = 1.5707963267948966 ; pub const M_PI_4 : f64 = 0.7853981633974483 ; pub const M_1_PI : f64 = 0.3183098861837907 ; pub const M_2_PI : f64 = 0.6366197723675814 ; pub const M_2_SQRTPI : f64 = 1.1283791670955126 ; pub const M_SQRT2 : f64 = 1.4142135623730951 ; pub const M_SQRT1_2 : f64 = 0.7071067811865476 ; pub const _INTTYPES_H : :: std :: os :: raw :: c_uint = 1 ; pub const ____gwchar_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const __PRI64_PREFIX : & 'static [ u8 ; 2usize ] = b"l\0" ; pub const __PRIPTR_PREFIX : & 'static [ u8 ; 2usize ] = b"l\0" ; pub const PRId8 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRId16 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRId32 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRId64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIdLEAST8 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRIdLEAST16 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRIdLEAST32 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRIdLEAST64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIdFAST8 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const PRIdFAST16 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIdFAST32 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIdFAST64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIi8 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIi16 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIi32 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIi64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIiLEAST8 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIiLEAST16 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIiLEAST32 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIiLEAST64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIiFAST8 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const PRIiFAST16 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIiFAST32 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIiFAST64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIo8 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIo16 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIo32 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIo64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIoLEAST8 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIoLEAST16 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIoLEAST32 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIoLEAST64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIoFAST8 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const PRIoFAST16 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIoFAST32 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIoFAST64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIu8 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIu16 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIu32 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIu64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIuLEAST8 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIuLEAST16 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIuLEAST32 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIuLEAST64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIuFAST8 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const PRIuFAST16 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIuFAST32 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIuFAST64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIx8 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIx16 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIx32 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIx64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIxLEAST8 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIxLEAST16 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIxLEAST32 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIxLEAST64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIxFAST8 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const PRIxFAST16 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIxFAST32 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIxFAST64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIX8 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIX16 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIX32 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIX64 : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIXLEAST8 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIXLEAST16 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIXLEAST32 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIXLEAST64 : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIXFAST8 : & 'static [ u8 ; 2usize ] = b"X\0" ; pub const PRIXFAST16 : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIXFAST32 : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIXFAST64 : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIdMAX : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIiMAX : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIoMAX : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIuMAX : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIxMAX : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIXMAX : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const PRIdPTR : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const PRIiPTR : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const PRIoPTR : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const PRIuPTR : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const PRIxPTR : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const PRIXPTR : & 'static [ u8 ; 3usize ] = b"lX\0" ; pub const SCNd8 : & 'static [ u8 ; 4usize ] = b"hhd\0" ; pub const SCNd16 : & 'static [ u8 ; 3usize ] = b"hd\0" ; pub const SCNd32 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const SCNd64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNdLEAST8 : & 'static [ u8 ; 4usize ] = b"hhd\0" ; pub const SCNdLEAST16 : & 'static [ u8 ; 3usize ] = b"hd\0" ; pub const SCNdLEAST32 : & 'static [ u8 ; 2usize ] = b"d\0" ; pub const SCNdLEAST64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNdFAST8 : & 'static [ u8 ; 4usize ] = b"hhd\0" ; pub const SCNdFAST16 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNdFAST32 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNdFAST64 : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNi8 : & 'static [ u8 ; 4usize ] = b"hhi\0" ; pub const SCNi16 : & 'static [ u8 ; 3usize ] = b"hi\0" ; pub const SCNi32 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const SCNi64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNiLEAST8 : & 'static [ u8 ; 4usize ] = b"hhi\0" ; pub const SCNiLEAST16 : & 'static [ u8 ; 3usize ] = b"hi\0" ; pub const SCNiLEAST32 : & 'static [ u8 ; 2usize ] = b"i\0" ; pub const SCNiLEAST64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNiFAST8 : & 'static [ u8 ; 4usize ] = b"hhi\0" ; pub const SCNiFAST16 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNiFAST32 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNiFAST64 : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNu8 : & 'static [ u8 ; 4usize ] = b"hhu\0" ; pub const SCNu16 : & 'static [ u8 ; 3usize ] = b"hu\0" ; pub const SCNu32 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const SCNu64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNuLEAST8 : & 'static [ u8 ; 4usize ] = b"hhu\0" ; pub const SCNuLEAST16 : & 'static [ u8 ; 3usize ] = b"hu\0" ; pub const SCNuLEAST32 : & 'static [ u8 ; 2usize ] = b"u\0" ; pub const SCNuLEAST64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNuFAST8 : & 'static [ u8 ; 4usize ] = b"hhu\0" ; pub const SCNuFAST16 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNuFAST32 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNuFAST64 : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNo8 : & 'static [ u8 ; 4usize ] = b"hho\0" ; pub const SCNo16 : & 'static [ u8 ; 3usize ] = b"ho\0" ; pub const SCNo32 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const SCNo64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNoLEAST8 : & 'static [ u8 ; 4usize ] = b"hho\0" ; pub const SCNoLEAST16 : & 'static [ u8 ; 3usize ] = b"ho\0" ; pub const SCNoLEAST32 : & 'static [ u8 ; 2usize ] = b"o\0" ; pub const SCNoLEAST64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNoFAST8 : & 'static [ u8 ; 4usize ] = b"hho\0" ; pub const SCNoFAST16 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNoFAST32 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNoFAST64 : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNx8 : & 'static [ u8 ; 4usize ] = b"hhx\0" ; pub const SCNx16 : & 'static [ u8 ; 3usize ] = b"hx\0" ; pub const SCNx32 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const SCNx64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNxLEAST8 : & 'static [ u8 ; 4usize ] = b"hhx\0" ; pub const SCNxLEAST16 : & 'static [ u8 ; 3usize ] = b"hx\0" ; pub const SCNxLEAST32 : & 'static [ u8 ; 2usize ] = b"x\0" ; pub const SCNxLEAST64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNxFAST8 : & 'static [ u8 ; 4usize ] = b"hhx\0" ; pub const SCNxFAST16 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNxFAST32 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNxFAST64 : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNdMAX : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNiMAX : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNoMAX : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNuMAX : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNxMAX : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const SCNdPTR : & 'static [ u8 ; 3usize ] = b"ld\0" ; pub const SCNiPTR : & 'static [ u8 ; 3usize ] = b"li\0" ; pub const SCNoPTR : & 'static [ u8 ; 3usize ] = b"lo\0" ; pub const SCNuPTR : & 'static [ u8 ; 3usize ] = b"lu\0" ; pub const SCNxPTR : & 'static [ u8 ; 3usize ] = b"lx\0" ; pub const TOP_BIT : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const NBITS : :: std :: os :: raw :: c_uint = 64 ; pub const DBL_MAXINT : :: std :: os :: raw :: c_ulonglong = 9007199254740992 ; pub const FLT_MAXINT : :: std :: os :: raw :: c_uint = 16777216 ; pub const U64_MAX : :: std :: os :: raw :: c_int = -1 ; pub const S64_MAX : :: std :: os :: raw :: c_ulonglong = 9223372036854775807 ; pub const S64_MIN : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const BIT63 : :: std :: os :: raw :: c_longlong = -9223372036854775808 ; pub const U32_MAX : :: std :: os :: raw :: c_uint = 4294967295 ; pub const S32_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const S32_MIN : :: std :: os :: raw :: c_int = -2147483648 ; pub const BIT31 : :: std :: os :: raw :: c_uint = 2147483648 ; pub const _ERRNO_H : :: std :: os :: raw :: c_uint = 1 ; pub const EPERM : :: std :: os :: raw :: c_uint = 1 ; pub const ENOENT : :: std :: os :: raw :: c_uint = 2 ; pub const ESRCH : :: std :: os :: raw :: c_uint = 3 ; pub const EINTR : :: std :: os :: raw :: c_uint = 4 ; pub const EIO : :: std :: os :: raw :: c_uint = 5 ; pub const ENXIO : :: std :: os :: raw :: c_uint = 6 ; pub const E2BIG : :: std :: os :: raw :: c_uint = 7 ; pub const ENOEXEC : :: std :: os :: raw :: c_uint = 8 ; pub const EBADF : :: std :: os :: raw :: c_uint = 9 ; pub const ECHILD : :: std :: os :: raw :: c_uint = 10 ; pub const EAGAIN : :: std :: os :: raw :: c_uint = 11 ; pub const ENOMEM : :: std :: os :: raw :: c_uint = 12 ; pub const EACCES : :: std :: os :: raw :: c_uint = 13 ; pub const EFAULT : :: std :: os :: raw :: c_uint = 14 ; pub const ENOTBLK : :: std :: os :: raw :: c_uint = 15 ; pub const EBUSY : :: std :: os :: raw :: c_uint = 16 ; pub const EEXIST : :: std :: os :: raw :: c_uint = 17 ; pub const EXDEV : :: std :: os :: raw :: c_uint = 18 ; pub const ENODEV : :: std :: os :: raw :: c_uint = 19 ; pub const ENOTDIR : :: std :: os :: raw :: c_uint = 20 ; pub const EISDIR : :: std :: os :: raw :: c_uint = 21 ; pub const EINVAL : :: std :: os :: raw :: c_uint = 22 ; pub const ENFILE : :: std :: os :: raw :: c_uint = 23 ; pub const EMFILE : :: std :: os :: raw :: c_uint = 24 ; pub const ENOTTY : :: std :: os :: raw :: c_uint = 25 ; pub const ETXTBSY : :: std :: os :: raw :: c_uint = 26 ; pub const EFBIG : :: std :: os :: raw :: c_uint = 27 ; pub const ENOSPC : :: std :: os :: raw :: c_uint = 28 ; pub const ESPIPE : :: std :: os :: raw :: c_uint = 29 ; pub const EROFS : :: std :: os :: raw :: c_uint = 30 ; pub const EMLINK : :: std :: os :: raw :: c_uint = 31 ; pub const EPIPE : :: std :: os :: raw :: c_uint = 32 ; pub const EDOM : :: std :: os :: raw :: c_uint = 33 ; pub const ERANGE : :: std :: os :: raw :: c_uint = 34 ; pub const EDEADLK : :: std :: os :: raw :: c_uint = 35 ; pub const ENAMETOOLONG : :: std :: os :: raw :: c_uint = 36 ; pub const ENOLCK : :: std :: os :: raw :: c_uint = 37 ; pub const ENOSYS : :: std :: os :: raw :: c_uint = 38 ; pub const ENOTEMPTY : :: std :: os :: raw :: c_uint = 39 ; pub const ELOOP : :: std :: os :: raw :: c_uint = 40 ; pub const EWOULDBLOCK : :: std :: os :: raw :: c_uint = 11 ; pub const ENOMSG : :: std :: os :: raw :: c_uint = 42 ; pub const EIDRM : :: std :: os :: raw :: c_uint = 43 ; pub const ECHRNG : :: std :: os :: raw :: c_uint = 44 ; pub const EL2NSYNC : :: std :: os :: raw :: c_uint = 45 ; pub const EL3HLT : :: std :: os :: raw :: c_uint = 46 ; pub const EL3RST : :: std :: os :: raw :: c_uint = 47 ; pub const ELNRNG : :: std :: os :: raw :: c_uint = 48 ; pub const EUNATCH : :: std :: os :: raw :: c_uint = 49 ; pub const ENOCSI : :: std :: os :: raw :: c_uint = 50 ; pub const EL2HLT : :: std :: os :: raw :: c_uint = 51 ; pub const EBADE : :: std :: os :: raw :: c_uint = 52 ; pub const EBADR : :: std :: os :: raw :: c_uint = 53 ; pub const EXFULL : :: std :: os :: raw :: c_uint = 54 ; pub const ENOANO : :: std :: os :: raw :: c_uint = 55 ; pub const EBADRQC : :: std :: os :: raw :: c_uint = 56 ; pub const EBADSLT : :: std :: os :: raw :: c_uint = 57 ; pub const EDEADLOCK : :: std :: os :: raw :: c_uint = 35 ; pub const EBFONT : :: std :: os :: raw :: c_uint = 59 ; pub const ENOSTR : :: std :: os :: raw :: c_uint = 60 ; pub const ENODATA : :: std :: os :: raw :: c_uint = 61 ; pub const ETIME : :: std :: os :: raw :: c_uint = 62 ; pub const ENOSR : :: std :: os :: raw :: c_uint = 63 ; pub const ENONET : :: std :: os :: raw :: c_uint = 64 ; pub const ENOPKG : :: std :: os :: raw :: c_uint = 65 ; pub const EREMOTE : :: std :: os :: raw :: c_uint = 66 ; pub const ENOLINK : :: std :: os :: raw :: c_uint = 67 ; pub const EADV : :: std :: os :: raw :: c_uint = 68 ; pub const ESRMNT : :: std :: os :: raw :: c_uint = 69 ; pub const ECOMM : :: std :: os :: raw :: c_uint = 70 ; pub const EPROTO : :: std :: os :: raw :: c_uint = 71 ; pub const EMULTIHOP : :: std :: os :: raw :: c_uint = 72 ; pub const EDOTDOT : :: std :: os :: raw :: c_uint = 73 ; pub const EBADMSG : :: std :: os :: raw :: c_uint = 74 ; pub const EOVERFLOW : :: std :: os :: raw :: c_uint = 75 ; pub const ENOTUNIQ : :: std :: os :: raw :: c_uint = 76 ; pub const EBADFD : :: std :: os :: raw :: c_uint = 77 ; pub const EREMCHG : :: std :: os :: raw :: c_uint = 78 ; pub const ELIBACC : :: std :: os :: raw :: c_uint = 79 ; pub const ELIBBAD : :: std :: os :: raw :: c_uint = 80 ; pub const ELIBSCN : :: std :: os :: raw :: c_uint = 81 ; pub const ELIBMAX : :: std :: os :: raw :: c_uint = 82 ; pub const ELIBEXEC : :: std :: os :: raw :: c_uint = 83 ; pub const EILSEQ : :: std :: os :: raw :: c_uint = 84 ; pub const ERESTART : :: std :: os :: raw :: c_uint = 85 ; pub const ESTRPIPE : :: std :: os :: raw :: c_uint = 86 ; pub const EUSERS : :: std :: os :: raw :: c_uint = 87 ; pub const ENOTSOCK : :: std :: os :: raw :: c_uint = 88 ; pub const EDESTADDRREQ : :: std :: os :: raw :: c_uint = 89 ; pub const EMSGSIZE : :: std :: os :: raw :: c_uint = 90 ; pub const EPROTOTYPE : :: std :: os :: raw :: c_uint = 91 ; pub const ENOPROTOOPT : :: std :: os :: raw :: c_uint = 92 ; pub const EPROTONOSUPPORT : :: std :: os :: raw :: c_uint = 93 ; pub const ESOCKTNOSUPPORT : :: std :: os :: raw :: c_uint = 94 ; pub const EOPNOTSUPP : :: std :: os :: raw :: c_uint = 95 ; pub const EPFNOSUPPORT : :: std :: os :: raw :: c_uint = 96 ; pub const EAFNOSUPPORT : :: std :: os :: raw :: c_uint = 97 ; pub const EADDRINUSE : :: std :: os :: raw :: c_uint = 98 ; pub const EADDRNOTAVAIL : :: std :: os :: raw :: c_uint = 99 ; pub const ENETDOWN : :: std :: os :: raw :: c_uint = 100 ; pub const ENETUNREACH : :: std :: os :: raw :: c_uint = 101 ; pub const ENETRESET : :: std :: os :: raw :: c_uint = 102 ; pub const ECONNABORTED : :: std :: os :: raw :: c_uint = 103 ; pub const ECONNRESET : :: std :: os :: raw :: c_uint = 104 ; pub const ENOBUFS : :: std :: os :: raw :: c_uint = 105 ; pub const EISCONN : :: std :: os :: raw :: c_uint = 106 ; pub const ENOTCONN : :: std :: os :: raw :: c_uint = 107 ; pub const ESHUTDOWN : :: std :: os :: raw :: c_uint = 108 ; pub const ETOOMANYREFS : :: std :: os :: raw :: c_uint = 109 ; pub const ETIMEDOUT : :: std :: os :: raw :: c_uint = 110 ; pub const ECONNREFUSED : :: std :: os :: raw :: c_uint = 111 ; pub const EHOSTDOWN : :: std :: os :: raw :: c_uint = 112 ; pub const EHOSTUNREACH : :: std :: os :: raw :: c_uint = 113 ; pub const EALREADY : :: std :: os :: raw :: c_uint = 114 ; pub const EINPROGRESS : :: std :: os :: raw :: c_uint = 115 ; pub const ESTALE : :: std :: os :: raw :: c_uint = 116 ; pub const EUCLEAN : :: std :: os :: raw :: c_uint = 117 ; pub const ENOTNAM : :: std :: os :: raw :: c_uint = 118 ; pub const ENAVAIL : :: std :: os :: raw :: c_uint = 119 ; pub const EISNAM : :: std :: os :: raw :: c_uint = 120 ; pub const EREMOTEIO : :: std :: os :: raw :: c_uint = 121 ; pub const EDQUOT : :: std :: os :: raw :: c_uint = 122 ; pub const ENOMEDIUM : :: std :: os :: raw :: c_uint = 123 ; pub const EMEDIUMTYPE : :: std :: os :: raw :: c_uint = 124 ; pub const ECANCELED : :: std :: os :: raw :: c_uint = 125 ; pub const ENOKEY : :: std :: os :: raw :: c_uint = 126 ; pub const EKEYEXPIRED : :: std :: os :: raw :: c_uint = 127 ; pub const EKEYREVOKED : :: std :: os :: raw :: c_uint = 128 ; pub const EKEYREJECTED : :: std :: os :: raw :: c_uint = 129 ; pub const EOWNERDEAD : :: std :: os :: raw :: c_uint = 130 ; pub const ENOTRECOVERABLE : :: std :: os :: raw :: c_uint = 131 ; pub const ERFKILL : :: std :: os :: raw :: c_uint = 132 ; pub const EHWPOISON : :: std :: os :: raw :: c_uint = 133 ; pub const ENOTSUP : :: std :: os :: raw :: c_uint = 95 ; pub const UV__EOF : :: std :: os :: raw :: c_int = -4095 ; pub const UV__UNKNOWN : :: std :: os :: raw :: c_int = -4094 ; pub const UV__EAI_ADDRFAMILY : :: std :: os :: raw :: c_int = -3000 ; pub const UV__EAI_AGAIN : :: std :: os :: raw :: c_int = -3001 ; pub const UV__EAI_BADFLAGS : :: std :: os :: raw :: c_int = -3002 ; pub const UV__EAI_CANCELED : :: std :: os :: raw :: c_int = -3003 ; pub const UV__EAI_FAIL : :: std :: os :: raw :: c_int = -3004 ; pub const UV__EAI_FAMILY : :: std :: os :: raw :: c_int = -3005 ; pub const UV__EAI_MEMORY : :: std :: os :: raw :: c_int = -3006 ; pub const UV__EAI_NODATA : :: std :: os :: raw :: c_int = -3007 ; pub const UV__EAI_NONAME : :: std :: os :: raw :: c_int = -3008 ; pub const UV__EAI_OVERFLOW : :: std :: os :: raw :: c_int = -3009 ; pub const UV__EAI_SERVICE : :: std :: os :: raw :: c_int = -3010 ; pub const UV__EAI_SOCKTYPE : :: std :: os :: raw :: c_int = -3011 ; pub const UV__EAI_BADHINTS : :: std :: os :: raw :: c_int = -3013 ; pub const UV__EAI_PROTOCOL : :: std :: os :: raw :: c_int = -3014 ; pub const UV__E2BIG : :: std :: os :: raw :: c_int = -7 ; pub const UV__EACCES : :: std :: os :: raw :: c_int = -13 ; pub const UV__EADDRINUSE : :: std :: os :: raw :: c_int = -98 ; pub const UV__EADDRNOTAVAIL : :: std :: os :: raw :: c_int = -99 ; pub const UV__EAFNOSUPPORT : :: std :: os :: raw :: c_int = -97 ; pub const UV__EAGAIN : :: std :: os :: raw :: c_int = -11 ; pub const UV__EALREADY : :: std :: os :: raw :: c_int = -114 ; pub const UV__EBADF : :: std :: os :: raw :: c_int = -9 ; pub const UV__EBUSY : :: std :: os :: raw :: c_int = -16 ; pub const UV__ECANCELED : :: std :: os :: raw :: c_int = -125 ; pub const UV__ECHARSET : :: std :: os :: raw :: c_int = -4080 ; pub const UV__ECONNABORTED : :: std :: os :: raw :: c_int = -103 ; pub const UV__ECONNREFUSED : :: std :: os :: raw :: c_int = -111 ; pub const UV__ECONNRESET : :: std :: os :: raw :: c_int = -104 ; pub const UV__EDESTADDRREQ : :: std :: os :: raw :: c_int = -89 ; pub const UV__EEXIST : :: std :: os :: raw :: c_int = -17 ; pub const UV__EFAULT : :: std :: os :: raw :: c_int = -14 ; pub const UV__EHOSTUNREACH : :: std :: os :: raw :: c_int = -113 ; pub const UV__EINTR : :: std :: os :: raw :: c_int = -4 ; pub const UV__EINVAL : :: std :: os :: raw :: c_int = -22 ; pub const UV__EIO : :: std :: os :: raw :: c_int = -5 ; pub const UV__EISCONN : :: std :: os :: raw :: c_int = -106 ; pub const UV__EISDIR : :: std :: os :: raw :: c_int = -21 ; pub const UV__ELOOP : :: std :: os :: raw :: c_int = -40 ; pub const UV__EMFILE : :: std :: os :: raw :: c_int = -24 ; pub const UV__EMSGSIZE : :: std :: os :: raw :: c_int = -90 ; pub const UV__ENAMETOOLONG : :: std :: os :: raw :: c_int = -36 ; pub const UV__ENETDOWN : :: std :: os :: raw :: c_int = -100 ; pub const UV__ENETUNREACH : :: std :: os :: raw :: c_int = -101 ; pub const UV__ENFILE : :: std :: os :: raw :: c_int = -23 ; pub const UV__ENOBUFS : :: std :: os :: raw :: c_int = -105 ; pub const UV__ENODEV : :: std :: os :: raw :: c_int = -19 ; pub const UV__ENOENT : :: std :: os :: raw :: c_int = -2 ; pub const UV__ENOMEM : :: std :: os :: raw :: c_int = -12 ; pub const UV__ENONET : :: std :: os :: raw :: c_int = -64 ; pub const UV__ENOSPC : :: std :: os :: raw :: c_int = -28 ; pub const UV__ENOSYS : :: std :: os :: raw :: c_int = -38 ; pub const UV__ENOTCONN : :: std :: os :: raw :: c_int = -107 ; pub const UV__ENOTDIR : :: std :: os :: raw :: c_int = -20 ; pub const UV__ENOTEMPTY : :: std :: os :: raw :: c_int = -39 ; pub const UV__ENOTSOCK : :: std :: os :: raw :: c_int = -88 ; pub const UV__ENOTSUP : :: std :: os :: raw :: c_int = -95 ; pub const UV__EPERM : :: std :: os :: raw :: c_int = -1 ; pub const UV__EPIPE : :: std :: os :: raw :: c_int = -32 ; pub const UV__EPROTO : :: std :: os :: raw :: c_int = -71 ; pub const UV__EPROTONOSUPPORT : :: std :: os :: raw :: c_int = -93 ; pub const UV__EPROTOTYPE : :: std :: os :: raw :: c_int = -91 ; pub const UV__EROFS : :: std :: os :: raw :: c_int = -30 ; pub const UV__ESHUTDOWN : :: std :: os :: raw :: c_int = -108 ; pub const UV__ESPIPE : :: std :: os :: raw :: c_int = -29 ; pub const UV__ESRCH : :: std :: os :: raw :: c_int = -3 ; pub const UV__ETIMEDOUT : :: std :: os :: raw :: c_int = -110 ; pub const UV__ETXTBSY : :: std :: os :: raw :: c_int = -26 ; pub const UV__EXDEV : :: std :: os :: raw :: c_int = -18 ; pub const UV__EFBIG : :: std :: os :: raw :: c_int = -27 ; pub const UV__ENOPROTOOPT : :: std :: os :: raw :: c_int = -92 ; pub const UV__ERANGE : :: std :: os :: raw :: c_int = -34 ; pub const UV__ENXIO : :: std :: os :: raw :: c_int = -6 ; pub const UV__EMLINK : :: std :: os :: raw :: c_int = -31 ; pub const UV__EHOSTDOWN : :: std :: os :: raw :: c_int = -112 ; pub const UV_VERSION_MAJOR : :: std :: os :: raw :: c_uint = 1 ; pub const UV_VERSION_MINOR : :: std :: os :: raw :: c_uint = 9 ; pub const UV_VERSION_PATCH : :: std :: os :: raw :: c_uint = 0 ; pub const UV_VERSION_IS_RELEASE : :: std :: os :: raw :: c_uint = 1 ; pub const UV_VERSION_SUFFIX : & 'static [ u8 ; 1usize ] = b"\0" ; pub const UV_VERSION_HEX : :: std :: os :: raw :: c_uint = 67840 ; pub const _STDIO_H : :: std :: os :: raw :: c_uint = 1 ; pub const __FILE_defined : :: std :: os :: raw :: c_uint = 1 ; pub const ____FILE_defined : :: std :: os :: raw :: c_uint = 1 ; pub const _G_config_h : :: std :: os :: raw :: c_uint = 1 ; pub const ____mbstate_t_defined : :: std :: os :: raw :: c_uint = 1 ; pub const _G_HAVE_MMAP : :: std :: os :: raw :: c_uint = 1 ; pub const _G_HAVE_MREMAP : :: std :: os :: raw :: c_uint = 1 ; pub const _G_IO_IO_FILE_VERSION : :: std :: os :: raw :: c_uint = 131073 ; pub const _G_BUFSIZ : :: std :: os :: raw :: c_uint = 8192 ; pub const _IO_BUFSIZ : :: std :: os :: raw :: c_uint = 8192 ; pub const _IO_UNIFIED_JUMPTABLES : :: std :: os :: raw :: c_uint = 1 ; pub const EOF : :: std :: os :: raw :: c_int = -1 ; pub const _IOS_INPUT : :: std :: os :: raw :: c_uint = 1 ; pub const _IOS_OUTPUT : :: std :: os :: raw :: c_uint = 2 ; pub const _IOS_ATEND : :: std :: os :: raw :: c_uint = 4 ; pub const _IOS_APPEND : :: std :: os :: raw :: c_uint = 8 ; pub const _IOS_TRUNC : :: std :: os :: raw :: c_uint = 16 ; pub const _IOS_NOCREATE : :: std :: os :: raw :: c_uint = 32 ; pub const _IOS_NOREPLACE : :: std :: os :: raw :: c_uint = 64 ; pub const _IOS_BIN : :: std :: os :: raw :: c_uint = 128 ; pub const _IO_MAGIC : :: std :: os :: raw :: c_uint = 4222418944 ; pub const _OLD_STDIO_MAGIC : :: std :: os :: raw :: c_uint = 4206624768 ; pub const _IO_MAGIC_MASK : :: std :: os :: raw :: c_uint = 4294901760 ; pub const _IO_USER_BUF : :: std :: os :: raw :: c_uint = 1 ; pub const _IO_UNBUFFERED : :: std :: os :: raw :: c_uint = 2 ; pub const _IO_NO_READS : :: std :: os :: raw :: c_uint = 4 ; pub const _IO_NO_WRITES : :: std :: os :: raw :: c_uint = 8 ; pub const _IO_EOF_SEEN : :: std :: os :: raw :: c_uint = 16 ; pub const _IO_ERR_SEEN : :: std :: os :: raw :: c_uint = 32 ; pub const _IO_DELETE_DONT_CLOSE : :: std :: os :: raw :: c_uint = 64 ; pub const _IO_LINKED : :: std :: os :: raw :: c_uint = 128 ; pub const _IO_IN_BACKUP : :: std :: os :: raw :: c_uint = 256 ; pub const _IO_LINE_BUF : :: std :: os :: raw :: c_uint = 512 ; pub const _IO_TIED_PUT_GET : :: std :: os :: raw :: c_uint = 1024 ; pub const _IO_CURRENTLY_PUTTING : :: std :: os :: raw :: c_uint = 2048 ; pub const _IO_IS_APPENDING : :: std :: os :: raw :: c_uint = 4096 ; pub const _IO_IS_FILEBUF : :: std :: os :: raw :: c_uint = 8192 ; pub const _IO_BAD_SEEN : :: std :: os :: raw :: c_uint = 16384 ; pub const _IO_USER_LOCK : :: std :: os :: raw :: c_uint = 32768 ; pub const _IO_FLAGS2_MMAP : :: std :: os :: raw :: c_uint = 1 ; pub const _IO_FLAGS2_NOTCANCEL : :: std :: os :: raw :: c_uint = 2 ; pub const _IO_FLAGS2_USER_WBUF : :: std :: os :: raw :: c_uint = 8 ; pub const _IO_SKIPWS : :: std :: os :: raw :: c_uint = 1 ; pub const _IO_LEFT : :: std :: os :: raw :: c_uint = 2 ; pub const _IO_RIGHT : :: std :: os :: raw :: c_uint = 4 ; pub const _IO_INTERNAL : :: std :: os :: raw :: c_uint = 8 ; pub const _IO_DEC : :: std :: os :: raw :: c_uint = 16 ; pub const _IO_OCT : :: std :: os :: raw :: c_uint = 32 ; pub const _IO_HEX : :: std :: os :: raw :: c_uint = 64 ; pub const _IO_SHOWBASE : :: std :: os :: raw :: c_uint = 128 ; pub const _IO_SHOWPOINT : :: std :: os :: raw :: c_uint = 256 ; pub const _IO_UPPERCASE : :: std :: os :: raw :: c_uint = 512 ; pub const _IO_SHOWPOS : :: std :: os :: raw :: c_uint = 1024 ; pub const _IO_SCIENTIFIC : :: std :: os :: raw :: c_uint = 2048 ; pub const _IO_FIXED : :: std :: os :: raw :: c_uint = 4096 ; pub const _IO_UNITBUF : :: std :: os :: raw :: c_uint = 8192 ; pub const _IO_STDIO : :: std :: os :: raw :: c_uint = 16384 ; pub const _IO_DONT_CLOSE : :: std :: os :: raw :: c_uint = 32768 ; pub const _IO_BOOLALPHA : :: std :: os :: raw :: c_uint = 65536 ; pub const _IOFBF : :: std :: os :: raw :: c_uint = 0 ; pub const _IOLBF : :: std :: os :: raw :: c_uint = 1 ; pub const _IONBF : :: std :: os :: raw :: c_uint = 2 ; pub const BUFSIZ : :: std :: os :: raw :: c_uint = 8192 ; pub const SEEK_SET : :: std :: os :: raw :: c_uint = 0 ; pub const SEEK_CUR : :: std :: os :: raw :: c_uint = 1 ; pub const SEEK_END : :: std :: os :: raw :: c_uint = 2 ; pub const P_tmpdir : & 'static [ u8 ; 5usize ] = b"/tmp\0" ; pub const L_tmpnam : :: std :: os :: raw :: c_uint = 20 ; pub const TMP_MAX : :: std :: os :: raw :: c_uint = 238328 ; pub const FILENAME_MAX : :: std :: os :: raw :: c_uint = 4096 ; pub const L_ctermid : :: std :: os :: raw :: c_uint = 9 ; pub const FOPEN_MAX : :: std :: os :: raw :: c_uint = 16 ; pub const _SYS_STAT_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_STAT_H : :: std :: os :: raw :: c_uint = 1 ; pub const _STAT_VER_KERNEL : :: std :: os :: raw :: c_uint = 0 ; pub const _STAT_VER_LINUX : :: std :: os :: raw :: c_uint = 1 ; pub const _MKNOD_VER_LINUX : :: std :: os :: raw :: c_uint = 0 ; pub const _STAT_VER : :: std :: os :: raw :: c_uint = 1 ; pub const __S_IFMT : :: std :: os :: raw :: c_uint = 61440 ; pub const __S_IFDIR : :: std :: os :: raw :: c_uint = 16384 ; pub const __S_IFCHR : :: std :: os :: raw :: c_uint = 8192 ; pub const __S_IFBLK : :: std :: os :: raw :: c_uint = 24576 ; pub const __S_IFREG : :: std :: os :: raw :: c_uint = 32768 ; pub const __S_IFIFO : :: std :: os :: raw :: c_uint = 4096 ; pub const __S_IFLNK : :: std :: os :: raw :: c_uint = 40960 ; pub const __S_IFSOCK : :: std :: os :: raw :: c_uint = 49152 ; pub const __S_ISUID : :: std :: os :: raw :: c_uint = 2048 ; pub const __S_ISGID : :: std :: os :: raw :: c_uint = 1024 ; pub const __S_ISVTX : :: std :: os :: raw :: c_uint = 512 ; pub const __S_IREAD : :: std :: os :: raw :: c_uint = 256 ; pub const __S_IWRITE : :: std :: os :: raw :: c_uint = 128 ; pub const __S_IEXEC : :: std :: os :: raw :: c_uint = 64 ; pub const UTIME_NOW : :: std :: os :: raw :: c_uint = 1073741823 ; pub const UTIME_OMIT : :: std :: os :: raw :: c_uint = 1073741822 ; pub const S_IFMT : :: std :: os :: raw :: c_uint = 61440 ; pub const S_IFDIR : :: std :: os :: raw :: c_uint = 16384 ; pub const S_IFCHR : :: std :: os :: raw :: c_uint = 8192 ; pub const S_IFBLK : :: std :: os :: raw :: c_uint = 24576 ; pub const S_IFREG : :: std :: os :: raw :: c_uint = 32768 ; pub const S_IFIFO : :: std :: os :: raw :: c_uint = 4096 ; pub const S_IFLNK : :: std :: os :: raw :: c_uint = 40960 ; pub const S_IFSOCK : :: std :: os :: raw :: c_uint = 49152 ; pub const S_ISUID : :: std :: os :: raw :: c_uint = 2048 ; pub const S_ISGID : :: std :: os :: raw :: c_uint = 1024 ; pub const S_ISVTX : :: std :: os :: raw :: c_uint = 512 ; pub const S_IRUSR : :: std :: os :: raw :: c_uint = 256 ; pub const S_IWUSR : :: std :: os :: raw :: c_uint = 128 ; pub const S_IXUSR : :: std :: os :: raw :: c_uint = 64 ; pub const S_IRWXU : :: std :: os :: raw :: c_uint = 448 ; pub const S_IREAD : :: std :: os :: raw :: c_uint = 256 ; pub const S_IWRITE : :: std :: os :: raw :: c_uint = 128 ; pub const S_IEXEC : :: std :: os :: raw :: c_uint = 64 ; pub const S_IRGRP : :: std :: os :: raw :: c_uint = 32 ; pub const S_IWGRP : :: std :: os :: raw :: c_uint = 16 ; pub const S_IXGRP : :: std :: os :: raw :: c_uint = 8 ; pub const S_IRWXG : :: std :: os :: raw :: c_uint = 56 ; pub const S_IROTH : :: std :: os :: raw :: c_uint = 4 ; pub const S_IWOTH : :: std :: os :: raw :: c_uint = 2 ; pub const S_IXOTH : :: std :: os :: raw :: c_uint = 1 ; pub const S_IRWXO : :: std :: os :: raw :: c_uint = 7 ; pub const ACCESSPERMS : :: std :: os :: raw :: c_uint = 511 ; pub const ALLPERMS : :: std :: os :: raw :: c_uint = 4095 ; pub const DEFFILEMODE : :: std :: os :: raw :: c_uint = 438 ; pub const S_BLKSIZE : :: std :: os :: raw :: c_uint = 512 ; pub const _MKNOD_VER : :: std :: os :: raw :: c_uint = 0 ; pub const _FCNTL_H : :: std :: os :: raw :: c_uint = 1 ; pub const __O_LARGEFILE : :: std :: os :: raw :: c_uint = 0 ; pub const F_GETLK64 : :: std :: os :: raw :: c_uint = 5 ; pub const F_SETLK64 : :: std :: os :: raw :: c_uint = 6 ; pub const F_SETLKW64 : :: std :: os :: raw :: c_uint = 7 ; pub const O_ACCMODE : :: std :: os :: raw :: c_uint = 3 ; pub const O_RDONLY : :: std :: os :: raw :: c_uint = 0 ; pub const O_WRONLY : :: std :: os :: raw :: c_uint = 1 ; pub const O_RDWR : :: std :: os :: raw :: c_uint = 2 ; pub const O_CREAT : :: std :: os :: raw :: c_uint = 64 ; pub const O_EXCL : :: std :: os :: raw :: c_uint = 128 ; pub const O_NOCTTY : :: std :: os :: raw :: c_uint = 256 ; pub const O_TRUNC : :: std :: os :: raw :: c_uint = 512 ; pub const O_APPEND : :: std :: os :: raw :: c_uint = 1024 ; pub const O_NONBLOCK : :: std :: os :: raw :: c_uint = 2048 ; pub const O_NDELAY : :: std :: os :: raw :: c_uint = 2048 ; pub const O_SYNC : :: std :: os :: raw :: c_uint = 1052672 ; pub const O_FSYNC : :: std :: os :: raw :: c_uint = 1052672 ; pub const O_ASYNC : :: std :: os :: raw :: c_uint = 8192 ; pub const __O_DIRECTORY : :: std :: os :: raw :: c_uint = 65536 ; pub const __O_NOFOLLOW : :: std :: os :: raw :: c_uint = 131072 ; pub const __O_CLOEXEC : :: std :: os :: raw :: c_uint = 524288 ; pub const __O_DIRECT : :: std :: os :: raw :: c_uint = 16384 ; pub const __O_NOATIME : :: std :: os :: raw :: c_uint = 262144 ; pub const __O_PATH : :: std :: os :: raw :: c_uint = 2097152 ; pub const __O_DSYNC : :: std :: os :: raw :: c_uint = 4096 ; pub const __O_TMPFILE : :: std :: os :: raw :: c_uint = 4259840 ; pub const F_GETLK : :: std :: os :: raw :: c_uint = 5 ; pub const F_SETLK : :: std :: os :: raw :: c_uint = 6 ; pub const F_SETLKW : :: std :: os :: raw :: c_uint = 7 ; pub const O_DIRECTORY : :: std :: os :: raw :: c_uint = 65536 ; pub const O_NOFOLLOW : :: std :: os :: raw :: c_uint = 131072 ; pub const O_CLOEXEC : :: std :: os :: raw :: c_uint = 524288 ; pub const O_DSYNC : :: std :: os :: raw :: c_uint = 4096 ; pub const O_RSYNC : :: std :: os :: raw :: c_uint = 1052672 ; pub const F_DUPFD : :: std :: os :: raw :: c_uint = 0 ; pub const F_GETFD : :: std :: os :: raw :: c_uint = 1 ; pub const F_SETFD : :: std :: os :: raw :: c_uint = 2 ; pub const F_GETFL : :: std :: os :: raw :: c_uint = 3 ; pub const F_SETFL : :: std :: os :: raw :: c_uint = 4 ; pub const __F_SETOWN : :: std :: os :: raw :: c_uint = 8 ; pub const __F_GETOWN : :: std :: os :: raw :: c_uint = 9 ; pub const F_SETOWN : :: std :: os :: raw :: c_uint = 8 ; pub const F_GETOWN : :: std :: os :: raw :: c_uint = 9 ; pub const __F_SETSIG : :: std :: os :: raw :: c_uint = 10 ; pub const __F_GETSIG : :: std :: os :: raw :: c_uint = 11 ; pub const __F_SETOWN_EX : :: std :: os :: raw :: c_uint = 15 ; pub const __F_GETOWN_EX : :: std :: os :: raw :: c_uint = 16 ; pub const F_DUPFD_CLOEXEC : :: std :: os :: raw :: c_uint = 1030 ; pub const FD_CLOEXEC : :: std :: os :: raw :: c_uint = 1 ; pub const F_RDLCK : :: std :: os :: raw :: c_uint = 0 ; pub const F_WRLCK : :: std :: os :: raw :: c_uint = 1 ; pub const F_UNLCK : :: std :: os :: raw :: c_uint = 2 ; pub const F_EXLCK : :: std :: os :: raw :: c_uint = 4 ; pub const F_SHLCK : :: std :: os :: raw :: c_uint = 8 ; pub const LOCK_SH : :: std :: os :: raw :: c_uint = 1 ; pub const LOCK_EX : :: std :: os :: raw :: c_uint = 2 ; pub const LOCK_NB : :: std :: os :: raw :: c_uint = 4 ; pub const LOCK_UN : :: std :: os :: raw :: c_uint = 8 ; pub const FAPPEND : :: std :: os :: raw :: c_uint = 1024 ; pub const FFSYNC : :: std :: os :: raw :: c_uint = 1052672 ; pub const FASYNC : :: std :: os :: raw :: c_uint = 8192 ; pub const FNONBLOCK : :: std :: os :: raw :: c_uint = 2048 ; pub const FNDELAY : :: std :: os :: raw :: c_uint = 2048 ; pub const __POSIX_FADV_DONTNEED : :: std :: os :: raw :: c_uint = 4 ; pub const __POSIX_FADV_NOREUSE : :: std :: os :: raw :: c_uint = 5 ; pub const POSIX_FADV_NORMAL : :: std :: os :: raw :: c_uint = 0 ; pub const POSIX_FADV_RANDOM : :: std :: os :: raw :: c_uint = 1 ; pub const POSIX_FADV_SEQUENTIAL : :: std :: os :: raw :: c_uint = 2 ; pub const POSIX_FADV_WILLNEED : :: std :: os :: raw :: c_uint = 3 ; pub const POSIX_FADV_DONTNEED : :: std :: os :: raw :: c_uint = 4 ; pub const POSIX_FADV_NOREUSE : :: std :: os :: raw :: c_uint = 5 ; pub const AT_FDCWD : :: std :: os :: raw :: c_int = -100 ; pub const AT_SYMLINK_NOFOLLOW : :: std :: os :: raw :: c_uint = 256 ; pub const AT_REMOVEDIR : :: std :: os :: raw :: c_uint = 512 ; pub const AT_SYMLINK_FOLLOW : :: std :: os :: raw :: c_uint = 1024 ; pub const AT_EACCESS : :: std :: os :: raw :: c_uint = 512 ; pub const R_OK : :: std :: os :: raw :: c_uint = 4 ; pub const W_OK : :: std :: os :: raw :: c_uint = 2 ; pub const X_OK : :: std :: os :: raw :: c_uint = 1 ; pub const F_OK : :: std :: os :: raw :: c_uint = 0 ; pub const F_ULOCK : :: std :: os :: raw :: c_uint = 0 ; pub const F_LOCK : :: std :: os :: raw :: c_uint = 1 ; pub const F_TLOCK : :: std :: os :: raw :: c_uint = 2 ; pub const F_TEST : :: std :: os :: raw :: c_uint = 3 ; pub const _DIRENT_H : :: std :: os :: raw :: c_uint = 1 ; pub const _DIRENT_MATCHES_DIRENT64 : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_POSIX1_LIM_H : :: std :: os :: raw :: c_uint = 1 ; pub const _POSIX_AIO_LISTIO_MAX : :: std :: os :: raw :: c_uint = 2 ; pub const _POSIX_AIO_MAX : :: std :: os :: raw :: c_uint = 1 ; pub const _POSIX_ARG_MAX : :: std :: os :: raw :: c_uint = 4096 ; pub const _POSIX_CHILD_MAX : :: std :: os :: raw :: c_uint = 25 ; pub const _POSIX_DELAYTIMER_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const _POSIX_HOST_NAME_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const _POSIX_LINK_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_LOGIN_NAME_MAX : :: std :: os :: raw :: c_uint = 9 ; pub const _POSIX_MAX_CANON : :: std :: os :: raw :: c_uint = 255 ; pub const _POSIX_MAX_INPUT : :: std :: os :: raw :: c_uint = 255 ; pub const _POSIX_MQ_OPEN_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_MQ_PRIO_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const _POSIX_NAME_MAX : :: std :: os :: raw :: c_uint = 14 ; pub const _POSIX_NGROUPS_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_OPEN_MAX : :: std :: os :: raw :: c_uint = 20 ; pub const _POSIX_PATH_MAX : :: std :: os :: raw :: c_uint = 256 ; pub const _POSIX_PIPE_BUF : :: std :: os :: raw :: c_uint = 512 ; pub const _POSIX_RE_DUP_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const _POSIX_RTSIG_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_SEM_NSEMS_MAX : :: std :: os :: raw :: c_uint = 256 ; pub const _POSIX_SEM_VALUE_MAX : :: std :: os :: raw :: c_uint = 32767 ; pub const _POSIX_SIGQUEUE_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const _POSIX_SSIZE_MAX : :: std :: os :: raw :: c_uint = 32767 ; pub const _POSIX_STREAM_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_SYMLINK_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const _POSIX_SYMLOOP_MAX : :: std :: os :: raw :: c_uint = 8 ; pub const _POSIX_TIMER_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const _POSIX_TTY_NAME_MAX : :: std :: os :: raw :: c_uint = 9 ; pub const _POSIX_TZNAME_MAX : :: std :: os :: raw :: c_uint = 6 ; pub const _POSIX_CLOCKRES_MIN : :: std :: os :: raw :: c_uint = 20000000 ; pub const NR_OPEN : :: std :: os :: raw :: c_uint = 1024 ; pub const NGROUPS_MAX : :: std :: os :: raw :: c_uint = 65536 ; pub const ARG_MAX : :: std :: os :: raw :: c_uint = 131072 ; pub const LINK_MAX : :: std :: os :: raw :: c_uint = 127 ; pub const MAX_CANON : :: std :: os :: raw :: c_uint = 255 ; pub const MAX_INPUT : :: std :: os :: raw :: c_uint = 255 ; pub const NAME_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const PATH_MAX : :: std :: os :: raw :: c_uint = 4096 ; pub const PIPE_BUF : :: std :: os :: raw :: c_uint = 4096 ; pub const XATTR_NAME_MAX : :: std :: os :: raw :: c_uint = 255 ; pub const XATTR_SIZE_MAX : :: std :: os :: raw :: c_uint = 65536 ; pub const XATTR_LIST_MAX : :: std :: os :: raw :: c_uint = 65536 ; pub const RTSIG_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const _POSIX_THREAD_KEYS_MAX : :: std :: os :: raw :: c_uint = 128 ; pub const PTHREAD_KEYS_MAX : :: std :: os :: raw :: c_uint = 1024 ; pub const _POSIX_THREAD_DESTRUCTOR_ITERATIONS : :: std :: os :: raw :: c_uint = 4 ; pub const PTHREAD_DESTRUCTOR_ITERATIONS : :: std :: os :: raw :: c_uint = 4 ; pub const _POSIX_THREAD_THREADS_MAX : :: std :: os :: raw :: c_uint = 64 ; pub const AIO_PRIO_DELTA_MAX : :: std :: os :: raw :: c_uint = 20 ; pub const PTHREAD_STACK_MIN : :: std :: os :: raw :: c_uint = 16384 ; pub const DELAYTIMER_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const TTY_NAME_MAX : :: std :: os :: raw :: c_uint = 32 ; pub const LOGIN_NAME_MAX : :: std :: os :: raw :: c_uint = 256 ; pub const HOST_NAME_MAX : :: std :: os :: raw :: c_uint = 64 ; pub const MQ_PRIO_MAX : :: std :: os :: raw :: c_uint = 32768 ; pub const SEM_VALUE_MAX : :: std :: os :: raw :: c_uint = 2147483647 ; pub const MAXNAMLEN : :: std :: os :: raw :: c_uint = 255 ; pub const _SYS_SOCKET_H : :: std :: os :: raw :: c_uint = 1 ; pub const _SYS_UIO_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_UIO_H : :: std :: os :: raw :: c_uint = 1 ; pub const UIO_MAXIOV : :: std :: os :: raw :: c_uint = 1024 ; pub const PF_UNSPEC : :: std :: os :: raw :: c_uint = 0 ; pub const PF_LOCAL : :: std :: os :: raw :: c_uint = 1 ; pub const PF_UNIX : :: std :: os :: raw :: c_uint = 1 ; pub const PF_FILE : :: std :: os :: raw :: c_uint = 1 ; pub const PF_INET : :: std :: os :: raw :: c_uint = 2 ; pub const PF_AX25 : :: std :: os :: raw :: c_uint = 3 ; pub const PF_IPX : :: std :: os :: raw :: c_uint = 4 ; pub const PF_APPLETALK : :: std :: os :: raw :: c_uint = 5 ; pub const PF_NETROM : :: std :: os :: raw :: c_uint = 6 ; pub const PF_BRIDGE : :: std :: os :: raw :: c_uint = 7 ; pub const PF_ATMPVC : :: std :: os :: raw :: c_uint = 8 ; pub const PF_X25 : :: std :: os :: raw :: c_uint = 9 ; pub const PF_INET6 : :: std :: os :: raw :: c_uint = 10 ; pub const PF_ROSE : :: std :: os :: raw :: c_uint = 11 ; pub const PF_DECnet : :: std :: os :: raw :: c_uint = 12 ; pub const PF_NETBEUI : :: std :: os :: raw :: c_uint = 13 ; pub const PF_SECURITY : :: std :: os :: raw :: c_uint = 14 ; pub const PF_KEY : :: std :: os :: raw :: c_uint = 15 ; pub const PF_NETLINK : :: std :: os :: raw :: c_uint = 16 ; pub const PF_ROUTE : :: std :: os :: raw :: c_uint = 16 ; pub const PF_PACKET : :: std :: os :: raw :: c_uint = 17 ; pub const PF_ASH : :: std :: os :: raw :: c_uint = 18 ; pub const PF_ECONET : :: std :: os :: raw :: c_uint = 19 ; pub const PF_ATMSVC : :: std :: os :: raw :: c_uint = 20 ; pub const PF_RDS : :: std :: os :: raw :: c_uint = 21 ; pub const PF_SNA : :: std :: os :: raw :: c_uint = 22 ; pub const PF_IRDA : :: std :: os :: raw :: c_uint = 23 ; pub const PF_PPPOX : :: std :: os :: raw :: c_uint = 24 ; pub const PF_WANPIPE : :: std :: os :: raw :: c_uint = 25 ; pub const PF_LLC : :: std :: os :: raw :: c_uint = 26 ; pub const PF_IB : :: std :: os :: raw :: c_uint = 27 ; pub const PF_MPLS : :: std :: os :: raw :: c_uint = 28 ; pub const PF_CAN : :: std :: os :: raw :: c_uint = 29 ; pub const PF_TIPC : :: std :: os :: raw :: c_uint = 30 ; pub const PF_BLUETOOTH : :: std :: os :: raw :: c_uint = 31 ; pub const PF_IUCV : :: std :: os :: raw :: c_uint = 32 ; pub const PF_RXRPC : :: std :: os :: raw :: c_uint = 33 ; pub const PF_ISDN : :: std :: os :: raw :: c_uint = 34 ; pub const PF_PHONET : :: std :: os :: raw :: c_uint = 35 ; pub const PF_IEEE802154 : :: std :: os :: raw :: c_uint = 36 ; pub const PF_CAIF : :: std :: os :: raw :: c_uint = 37 ; pub const PF_ALG : :: std :: os :: raw :: c_uint = 38 ; pub const PF_NFC : :: std :: os :: raw :: c_uint = 39 ; pub const PF_VSOCK : :: std :: os :: raw :: c_uint = 40 ; pub const PF_KCM : :: std :: os :: raw :: c_uint = 41 ; pub const PF_MAX : :: std :: os :: raw :: c_uint = 42 ; pub const AF_UNSPEC : :: std :: os :: raw :: c_uint = 0 ; pub const AF_LOCAL : :: std :: os :: raw :: c_uint = 1 ; pub const AF_UNIX : :: std :: os :: raw :: c_uint = 1 ; pub const AF_FILE : :: std :: os :: raw :: c_uint = 1 ; pub const AF_INET : :: std :: os :: raw :: c_uint = 2 ; pub const AF_AX25 : :: std :: os :: raw :: c_uint = 3 ; pub const AF_IPX : :: std :: os :: raw :: c_uint = 4 ; pub const AF_APPLETALK : :: std :: os :: raw :: c_uint = 5 ; pub const AF_NETROM : :: std :: os :: raw :: c_uint = 6 ; pub const AF_BRIDGE : :: std :: os :: raw :: c_uint = 7 ; pub const AF_ATMPVC : :: std :: os :: raw :: c_uint = 8 ; pub const AF_X25 : :: std :: os :: raw :: c_uint = 9 ; pub const AF_INET6 : :: std :: os :: raw :: c_uint = 10 ; pub const AF_ROSE : :: std :: os :: raw :: c_uint = 11 ; pub const AF_DECnet : :: std :: os :: raw :: c_uint = 12 ; pub const AF_NETBEUI : :: std :: os :: raw :: c_uint = 13 ; pub const AF_SECURITY : :: std :: os :: raw :: c_uint = 14 ; pub const AF_KEY : :: std :: os :: raw :: c_uint = 15 ; pub const AF_NETLINK : :: std :: os :: raw :: c_uint = 16 ; pub const AF_ROUTE : :: std :: os :: raw :: c_uint = 16 ; pub const AF_PACKET : :: std :: os :: raw :: c_uint = 17 ; pub const AF_ASH : :: std :: os :: raw :: c_uint = 18 ; pub const AF_ECONET : :: std :: os :: raw :: c_uint = 19 ; pub const AF_ATMSVC : :: std :: os :: raw :: c_uint = 20 ; pub const AF_RDS : :: std :: os :: raw :: c_uint = 21 ; pub const AF_SNA : :: std :: os :: raw :: c_uint = 22 ; pub const AF_IRDA : :: std :: os :: raw :: c_uint = 23 ; pub const AF_PPPOX : :: std :: os :: raw :: c_uint = 24 ; pub const AF_WANPIPE : :: std :: os :: raw :: c_uint = 25 ; pub const AF_LLC : :: std :: os :: raw :: c_uint = 26 ; pub const AF_IB : :: std :: os :: raw :: c_uint = 27 ; pub const AF_MPLS : :: std :: os :: raw :: c_uint = 28 ; pub const AF_CAN : :: std :: os :: raw :: c_uint = 29 ; pub const AF_TIPC : :: std :: os :: raw :: c_uint = 30 ; pub const AF_BLUETOOTH : :: std :: os :: raw :: c_uint = 31 ; pub const AF_IUCV : :: std :: os :: raw :: c_uint = 32 ; pub const AF_RXRPC : :: std :: os :: raw :: c_uint = 33 ; pub const AF_ISDN : :: std :: os :: raw :: c_uint = 34 ; pub const AF_PHONET : :: std :: os :: raw :: c_uint = 35 ; pub const AF_IEEE802154 : :: std :: os :: raw :: c_uint = 36 ; pub const AF_CAIF : :: std :: os :: raw :: c_uint = 37 ; pub const AF_ALG : :: std :: os :: raw :: c_uint = 38 ; pub const AF_NFC : :: std :: os :: raw :: c_uint = 39 ; pub const AF_VSOCK : :: std :: os :: raw :: c_uint = 40 ; pub const AF_KCM : :: std :: os :: raw :: c_uint = 41 ; pub const AF_MAX : :: std :: os :: raw :: c_uint = 42 ; pub const SOL_RAW : :: std :: os :: raw :: c_uint = 255 ; pub const SOL_DECNET : :: std :: os :: raw :: c_uint = 261 ; pub const SOL_X25 : :: std :: os :: raw :: c_uint = 262 ; pub const SOL_PACKET : :: std :: os :: raw :: c_uint = 263 ; pub const SOL_ATM : :: std :: os :: raw :: c_uint = 264 ; pub const SOL_AAL : :: std :: os :: raw :: c_uint = 265 ; pub const SOL_IRDA : :: std :: os :: raw :: c_uint = 266 ; pub const SOL_NETBEUI : :: std :: os :: raw :: c_uint = 267 ; pub const SOL_LLC : :: std :: os :: raw :: c_uint = 268 ; pub const SOL_DCCP : :: std :: os :: raw :: c_uint = 269 ; pub const SOL_NETLINK : :: std :: os :: raw :: c_uint = 270 ; pub const SOL_TIPC : :: std :: os :: raw :: c_uint = 271 ; pub const SOL_RXRPC : :: std :: os :: raw :: c_uint = 272 ; pub const SOL_PPPOL2TP : :: std :: os :: raw :: c_uint = 273 ; pub const SOL_BLUETOOTH : :: std :: os :: raw :: c_uint = 274 ; pub const SOL_PNPIPE : :: std :: os :: raw :: c_uint = 275 ; pub const SOL_RDS : :: std :: os :: raw :: c_uint = 276 ; pub const SOL_IUCV : :: std :: os :: raw :: c_uint = 277 ; pub const SOL_CAIF : :: std :: os :: raw :: c_uint = 278 ; pub const SOL_ALG : :: std :: os :: raw :: c_uint = 279 ; pub const SOL_NFC : :: std :: os :: raw :: c_uint = 280 ; pub const SOL_KCM : :: std :: os :: raw :: c_uint = 281 ; pub const SOMAXCONN : :: std :: os :: raw :: c_uint = 128 ; pub const _BITS_SOCKADDR_H : :: std :: os :: raw :: c_uint = 1 ; pub const _SS_SIZE : :: std :: os :: raw :: c_uint = 128 ; pub const FIOSETOWN : :: std :: os :: raw :: c_uint = 35073 ; pub const SIOCSPGRP : :: std :: os :: raw :: c_uint = 35074 ; pub const FIOGETOWN : :: std :: os :: raw :: c_uint = 35075 ; pub const SIOCGPGRP : :: std :: os :: raw :: c_uint = 35076 ; pub const SIOCATMARK : :: std :: os :: raw :: c_uint = 35077 ; pub const SIOCGSTAMP : :: std :: os :: raw :: c_uint = 35078 ; pub const SIOCGSTAMPNS : :: std :: os :: raw :: c_uint = 35079 ; pub const SOL_SOCKET : :: std :: os :: raw :: c_uint = 1 ; pub const SO_DEBUG : :: std :: os :: raw :: c_uint = 1 ; pub const SO_REUSEADDR : :: std :: os :: raw :: c_uint = 2 ; pub const SO_TYPE : :: std :: os :: raw :: c_uint = 3 ; pub const SO_ERROR : :: std :: os :: raw :: c_uint = 4 ; pub const SO_DONTROUTE : :: std :: os :: raw :: c_uint = 5 ; pub const SO_BROADCAST : :: std :: os :: raw :: c_uint = 6 ; pub const SO_SNDBUF : :: std :: os :: raw :: c_uint = 7 ; pub const SO_RCVBUF : :: std :: os :: raw :: c_uint = 8 ; pub const SO_SNDBUFFORCE : :: std :: os :: raw :: c_uint = 32 ; pub const SO_RCVBUFFORCE : :: std :: os :: raw :: c_uint = 33 ; pub const SO_KEEPALIVE : :: std :: os :: raw :: c_uint = 9 ; pub const SO_OOBINLINE : :: std :: os :: raw :: c_uint = 10 ; pub const SO_NO_CHECK : :: std :: os :: raw :: c_uint = 11 ; pub const SO_PRIORITY : :: std :: os :: raw :: c_uint = 12 ; pub const SO_LINGER : :: std :: os :: raw :: c_uint = 13 ; pub const SO_BSDCOMPAT : :: std :: os :: raw :: c_uint = 14 ; pub const SO_REUSEPORT : :: std :: os :: raw :: c_uint = 15 ; pub const SO_PASSCRED : :: std :: os :: raw :: c_uint = 16 ; pub const SO_PEERCRED : :: std :: os :: raw :: c_uint = 17 ; pub const SO_RCVLOWAT : :: std :: os :: raw :: c_uint = 18 ; pub const SO_SNDLOWAT : :: std :: os :: raw :: c_uint = 19 ; pub const SO_RCVTIMEO : :: std :: os :: raw :: c_uint = 20 ; pub const SO_SNDTIMEO : :: std :: os :: raw :: c_uint = 21 ; pub const SO_SECURITY_AUTHENTICATION : :: std :: os :: raw :: c_uint = 22 ; pub const SO_SECURITY_ENCRYPTION_TRANSPORT : :: std :: os :: raw :: c_uint = 23 ; pub const SO_SECURITY_ENCRYPTION_NETWORK : :: std :: os :: raw :: c_uint = 24 ; pub const SO_BINDTODEVICE : :: std :: os :: raw :: c_uint = 25 ; pub const SO_ATTACH_FILTER : :: std :: os :: raw :: c_uint = 26 ; pub const SO_DETACH_FILTER : :: std :: os :: raw :: c_uint = 27 ; pub const SO_GET_FILTER : :: std :: os :: raw :: c_uint = 26 ; pub const SO_PEERNAME : :: std :: os :: raw :: c_uint = 28 ; pub const SO_TIMESTAMP : :: std :: os :: raw :: c_uint = 29 ; pub const SCM_TIMESTAMP : :: std :: os :: raw :: c_uint = 29 ; pub const SO_ACCEPTCONN : :: std :: os :: raw :: c_uint = 30 ; pub const SO_PEERSEC : :: std :: os :: raw :: c_uint = 31 ; pub const SO_PASSSEC : :: std :: os :: raw :: c_uint = 34 ; pub const SO_TIMESTAMPNS : :: std :: os :: raw :: c_uint = 35 ; pub const SCM_TIMESTAMPNS : :: std :: os :: raw :: c_uint = 35 ; pub const SO_MARK : :: std :: os :: raw :: c_uint = 36 ; pub const SO_TIMESTAMPING : :: std :: os :: raw :: c_uint = 37 ; pub const SCM_TIMESTAMPING : :: std :: os :: raw :: c_uint = 37 ; pub const SO_PROTOCOL : :: std :: os :: raw :: c_uint = 38 ; pub const SO_DOMAIN : :: std :: os :: raw :: c_uint = 39 ; pub const SO_RXQ_OVFL : :: std :: os :: raw :: c_uint = 40 ; pub const SO_WIFI_STATUS : :: std :: os :: raw :: c_uint = 41 ; pub const SCM_WIFI_STATUS : :: std :: os :: raw :: c_uint = 41 ; pub const SO_PEEK_OFF : :: std :: os :: raw :: c_uint = 42 ; pub const SO_NOFCS : :: std :: os :: raw :: c_uint = 43 ; pub const SO_LOCK_FILTER : :: std :: os :: raw :: c_uint = 44 ; pub const SO_SELECT_ERR_QUEUE : :: std :: os :: raw :: c_uint = 45 ; pub const SO_BUSY_POLL : :: std :: os :: raw :: c_uint = 46 ; pub const SO_MAX_PACING_RATE : :: std :: os :: raw :: c_uint = 47 ; pub const SO_BPF_EXTENSIONS : :: std :: os :: raw :: c_uint = 48 ; pub const SO_INCOMING_CPU : :: std :: os :: raw :: c_uint = 49 ; pub const SO_ATTACH_BPF : :: std :: os :: raw :: c_uint = 50 ; pub const SO_DETACH_BPF : :: std :: os :: raw :: c_uint = 27 ; pub const SO_ATTACH_REUSEPORT_CBPF : :: std :: os :: raw :: c_uint = 51 ; pub const SO_ATTACH_REUSEPORT_EBPF : :: std :: os :: raw :: c_uint = 52 ; pub const SO_CNX_ADVICE : :: std :: os :: raw :: c_uint = 53 ; pub const _NETINET_IN_H : :: std :: os :: raw :: c_uint = 1 ; pub const __USE_KERNEL_IPV6_DEFS : :: std :: os :: raw :: c_uint = 0 ; pub const IP_OPTIONS : :: std :: os :: raw :: c_uint = 4 ; pub const IP_HDRINCL : :: std :: os :: raw :: c_uint = 3 ; pub const IP_TOS : :: std :: os :: raw :: c_uint = 1 ; pub const IP_TTL : :: std :: os :: raw :: c_uint = 2 ; pub const IP_RECVOPTS : :: std :: os :: raw :: c_uint = 6 ; pub const IP_RETOPTS : :: std :: os :: raw :: c_uint = 7 ; pub const IP_MULTICAST_IF : :: std :: os :: raw :: c_uint = 32 ; pub const IP_MULTICAST_TTL : :: std :: os :: raw :: c_uint = 33 ; pub const IP_MULTICAST_LOOP : :: std :: os :: raw :: c_uint = 34 ; pub const IP_ADD_MEMBERSHIP : :: std :: os :: raw :: c_uint = 35 ; pub const IP_DROP_MEMBERSHIP : :: std :: os :: raw :: c_uint = 36 ; pub const IP_UNBLOCK_SOURCE : :: std :: os :: raw :: c_uint = 37 ; pub const IP_BLOCK_SOURCE : :: std :: os :: raw :: c_uint = 38 ; pub const IP_ADD_SOURCE_MEMBERSHIP : :: std :: os :: raw :: c_uint = 39 ; pub const IP_DROP_SOURCE_MEMBERSHIP : :: std :: os :: raw :: c_uint = 40 ; pub const IP_MSFILTER : :: std :: os :: raw :: c_uint = 41 ; pub const MCAST_JOIN_GROUP : :: std :: os :: raw :: c_uint = 42 ; pub const MCAST_BLOCK_SOURCE : :: std :: os :: raw :: c_uint = 43 ; pub const MCAST_UNBLOCK_SOURCE : :: std :: os :: raw :: c_uint = 44 ; pub const MCAST_LEAVE_GROUP : :: std :: os :: raw :: c_uint = 45 ; pub const MCAST_JOIN_SOURCE_GROUP : :: std :: os :: raw :: c_uint = 46 ; pub const MCAST_LEAVE_SOURCE_GROUP : :: std :: os :: raw :: c_uint = 47 ; pub const MCAST_MSFILTER : :: std :: os :: raw :: c_uint = 48 ; pub const IP_MULTICAST_ALL : :: std :: os :: raw :: c_uint = 49 ; pub const IP_UNICAST_IF : :: std :: os :: raw :: c_uint = 50 ; pub const MCAST_EXCLUDE : :: std :: os :: raw :: c_uint = 0 ; pub const MCAST_INCLUDE : :: std :: os :: raw :: c_uint = 1 ; pub const IP_ROUTER_ALERT : :: std :: os :: raw :: c_uint = 5 ; pub const IP_PKTINFO : :: std :: os :: raw :: c_uint = 8 ; pub const IP_PKTOPTIONS : :: std :: os :: raw :: c_uint = 9 ; pub const IP_PMTUDISC : :: std :: os :: raw :: c_uint = 10 ; pub const IP_MTU_DISCOVER : :: std :: os :: raw :: c_uint = 10 ; pub const IP_RECVERR : :: std :: os :: raw :: c_uint = 11 ; pub const IP_RECVTTL : :: std :: os :: raw :: c_uint = 12 ; pub const IP_RECVTOS : :: std :: os :: raw :: c_uint = 13 ; pub const IP_MTU : :: std :: os :: raw :: c_uint = 14 ; pub const IP_FREEBIND : :: std :: os :: raw :: c_uint = 15 ; pub const IP_IPSEC_POLICY : :: std :: os :: raw :: c_uint = 16 ; pub const IP_XFRM_POLICY : :: std :: os :: raw :: c_uint = 17 ; pub const IP_PASSSEC : :: std :: os :: raw :: c_uint = 18 ; pub const IP_TRANSPARENT : :: std :: os :: raw :: c_uint = 19 ; pub const IP_ORIGDSTADDR : :: std :: os :: raw :: c_uint = 20 ; pub const IP_RECVORIGDSTADDR : :: std :: os :: raw :: c_uint = 20 ; pub const IP_MINTTL : :: std :: os :: raw :: c_uint = 21 ; pub const IP_NODEFRAG : :: std :: os :: raw :: c_uint = 22 ; pub const IP_CHECKSUM : :: std :: os :: raw :: c_uint = 23 ; pub const IP_BIND_ADDRESS_NO_PORT : :: std :: os :: raw :: c_uint = 24 ; pub const IP_PMTUDISC_DONT : :: std :: os :: raw :: c_uint = 0 ; pub const IP_PMTUDISC_WANT : :: std :: os :: raw :: c_uint = 1 ; pub const IP_PMTUDISC_DO : :: std :: os :: raw :: c_uint = 2 ; pub const IP_PMTUDISC_PROBE : :: std :: os :: raw :: c_uint = 3 ; pub const IP_PMTUDISC_INTERFACE : :: std :: os :: raw :: c_uint = 4 ; pub const IP_PMTUDISC_OMIT : :: std :: os :: raw :: c_uint = 5 ; pub const SOL_IP : :: std :: os :: raw :: c_uint = 0 ; pub const IP_DEFAULT_MULTICAST_TTL : :: std :: os :: raw :: c_uint = 1 ; pub const IP_DEFAULT_MULTICAST_LOOP : :: std :: os :: raw :: c_uint = 1 ; pub const IP_MAX_MEMBERSHIPS : :: std :: os :: raw :: c_uint = 20 ; pub const IPV6_ADDRFORM : :: std :: os :: raw :: c_uint = 1 ; pub const IPV6_2292PKTINFO : :: std :: os :: raw :: c_uint = 2 ; pub const IPV6_2292HOPOPTS : :: std :: os :: raw :: c_uint = 3 ; pub const IPV6_2292DSTOPTS : :: std :: os :: raw :: c_uint = 4 ; pub const IPV6_2292RTHDR : :: std :: os :: raw :: c_uint = 5 ; pub const IPV6_2292PKTOPTIONS : :: std :: os :: raw :: c_uint = 6 ; pub const IPV6_CHECKSUM : :: std :: os :: raw :: c_uint = 7 ; pub const IPV6_2292HOPLIMIT : :: std :: os :: raw :: c_uint = 8 ; pub const IPV6_NEXTHOP : :: std :: os :: raw :: c_uint = 9 ; pub const IPV6_AUTHHDR : :: std :: os :: raw :: c_uint = 10 ; pub const IPV6_UNICAST_HOPS : :: std :: os :: raw :: c_uint = 16 ; pub const IPV6_MULTICAST_IF : :: std :: os :: raw :: c_uint = 17 ; pub const IPV6_MULTICAST_HOPS : :: std :: os :: raw :: c_uint = 18 ; pub const IPV6_MULTICAST_LOOP : :: std :: os :: raw :: c_uint = 19 ; pub const IPV6_JOIN_GROUP : :: std :: os :: raw :: c_uint = 20 ; pub const IPV6_LEAVE_GROUP : :: std :: os :: raw :: c_uint = 21 ; pub const IPV6_ROUTER_ALERT : :: std :: os :: raw :: c_uint = 22 ; pub const IPV6_MTU_DISCOVER : :: std :: os :: raw :: c_uint = 23 ; pub const IPV6_MTU : :: std :: os :: raw :: c_uint = 24 ; pub const IPV6_RECVERR : :: std :: os :: raw :: c_uint = 25 ; pub const IPV6_V6ONLY : :: std :: os :: raw :: c_uint = 26 ; pub const IPV6_JOIN_ANYCAST : :: std :: os :: raw :: c_uint = 27 ; pub const IPV6_LEAVE_ANYCAST : :: std :: os :: raw :: c_uint = 28 ; pub const IPV6_IPSEC_POLICY : :: std :: os :: raw :: c_uint = 34 ; pub const IPV6_XFRM_POLICY : :: std :: os :: raw :: c_uint = 35 ; pub const IPV6_HDRINCL : :: std :: os :: raw :: c_uint = 36 ; pub const IPV6_RECVPKTINFO : :: std :: os :: raw :: c_uint = 49 ; pub const IPV6_PKTINFO : :: std :: os :: raw :: c_uint = 50 ; pub const IPV6_RECVHOPLIMIT : :: std :: os :: raw :: c_uint = 51 ; pub const IPV6_HOPLIMIT : :: std :: os :: raw :: c_uint = 52 ; pub const IPV6_RECVHOPOPTS : :: std :: os :: raw :: c_uint = 53 ; pub const IPV6_HOPOPTS : :: std :: os :: raw :: c_uint = 54 ; pub const IPV6_RTHDRDSTOPTS : :: std :: os :: raw :: c_uint = 55 ; pub const IPV6_RECVRTHDR : :: std :: os :: raw :: c_uint = 56 ; pub const IPV6_RTHDR : :: std :: os :: raw :: c_uint = 57 ; pub const IPV6_RECVDSTOPTS : :: std :: os :: raw :: c_uint = 58 ; pub const IPV6_DSTOPTS : :: std :: os :: raw :: c_uint = 59 ; pub const IPV6_RECVPATHMTU : :: std :: os :: raw :: c_uint = 60 ; pub const IPV6_PATHMTU : :: std :: os :: raw :: c_uint = 61 ; pub const IPV6_DONTFRAG : :: std :: os :: raw :: c_uint = 62 ; pub const IPV6_RECVTCLASS : :: std :: os :: raw :: c_uint = 66 ; pub const IPV6_TCLASS : :: std :: os :: raw :: c_uint = 67 ; pub const IPV6_ADD_MEMBERSHIP : :: std :: os :: raw :: c_uint = 20 ; pub const IPV6_DROP_MEMBERSHIP : :: std :: os :: raw :: c_uint = 21 ; pub const IPV6_RXHOPOPTS : :: std :: os :: raw :: c_uint = 54 ; pub const IPV6_RXDSTOPTS : :: std :: os :: raw :: c_uint = 59 ; pub const IPV6_PMTUDISC_DONT : :: std :: os :: raw :: c_uint = 0 ; pub const IPV6_PMTUDISC_WANT : :: std :: os :: raw :: c_uint = 1 ; pub const IPV6_PMTUDISC_DO : :: std :: os :: raw :: c_uint = 2 ; pub const IPV6_PMTUDISC_PROBE : :: std :: os :: raw :: c_uint = 3 ; pub const IPV6_PMTUDISC_INTERFACE : :: std :: os :: raw :: c_uint = 4 ; pub const IPV6_PMTUDISC_OMIT : :: std :: os :: raw :: c_uint = 5 ; pub const SOL_IPV6 : :: std :: os :: raw :: c_uint = 41 ; pub const SOL_ICMPV6 : :: std :: os :: raw :: c_uint = 58 ; pub const IPV6_RTHDR_LOOSE : :: std :: os :: raw :: c_uint = 0 ; pub const IPV6_RTHDR_STRICT : :: std :: os :: raw :: c_uint = 1 ; pub const IPV6_RTHDR_TYPE_0 : :: std :: os :: raw :: c_uint = 0 ; pub const IN_CLASSA_NET : :: std :: os :: raw :: c_uint = 4278190080 ; pub const IN_CLASSA_NSHIFT : :: std :: os :: raw :: c_uint = 24 ; pub const IN_CLASSA_HOST : :: std :: os :: raw :: c_uint = 16777215 ; pub const IN_CLASSA_MAX : :: std :: os :: raw :: c_uint = 128 ; pub const IN_CLASSB_NET : :: std :: os :: raw :: c_uint = 4294901760 ; pub const IN_CLASSB_NSHIFT : :: std :: os :: raw :: c_uint = 16 ; pub const IN_CLASSB_HOST : :: std :: os :: raw :: c_uint = 65535 ; pub const IN_CLASSB_MAX : :: std :: os :: raw :: c_uint = 65536 ; pub const IN_CLASSC_NET : :: std :: os :: raw :: c_uint = 4294967040 ; pub const IN_CLASSC_NSHIFT : :: std :: os :: raw :: c_uint = 8 ; pub const IN_CLASSC_HOST : :: std :: os :: raw :: c_uint = 255 ; pub const IN_LOOPBACKNET : :: std :: os :: raw :: c_uint = 127 ; pub const INET_ADDRSTRLEN : :: std :: os :: raw :: c_uint = 16 ; pub const INET6_ADDRSTRLEN : :: std :: os :: raw :: c_uint = 46 ; pub const _NETINET_TCP_H : :: std :: os :: raw :: c_uint = 1 ; pub const TCP_NODELAY : :: std :: os :: raw :: c_uint = 1 ; pub const TCP_MAXSEG : :: std :: os :: raw :: c_uint = 2 ; pub const TCP_CORK : :: std :: os :: raw :: c_uint = 3 ; pub const TCP_KEEPIDLE : :: std :: os :: raw :: c_uint = 4 ; pub const TCP_KEEPINTVL : :: std :: os :: raw :: c_uint = 5 ; pub const TCP_KEEPCNT : :: std :: os :: raw :: c_uint = 6 ; pub const TCP_SYNCNT : :: std :: os :: raw :: c_uint = 7 ; pub const TCP_LINGER2 : :: std :: os :: raw :: c_uint = 8 ; pub const TCP_DEFER_ACCEPT : :: std :: os :: raw :: c_uint = 9 ; pub const TCP_WINDOW_CLAMP : :: std :: os :: raw :: c_uint = 10 ; pub const TCP_INFO : :: std :: os :: raw :: c_uint = 11 ; pub const TCP_QUICKACK : :: std :: os :: raw :: c_uint = 12 ; pub const TCP_CONGESTION : :: std :: os :: raw :: c_uint = 13 ; pub const TCP_MD5SIG : :: std :: os :: raw :: c_uint = 14 ; pub const TCP_COOKIE_TRANSACTIONS : :: std :: os :: raw :: c_uint = 15 ; pub const TCP_THIN_LINEAR_TIMEOUTS : :: std :: os :: raw :: c_uint = 16 ; pub const TCP_THIN_DUPACK : :: std :: os :: raw :: c_uint = 17 ; pub const TCP_USER_TIMEOUT : :: std :: os :: raw :: c_uint = 18 ; pub const TCP_REPAIR : :: std :: os :: raw :: c_uint = 19 ; pub const TCP_REPAIR_QUEUE : :: std :: os :: raw :: c_uint = 20 ; pub const TCP_QUEUE_SEQ : :: std :: os :: raw :: c_uint = 21 ; pub const TCP_REPAIR_OPTIONS : :: std :: os :: raw :: c_uint = 22 ; pub const TCP_FASTOPEN : :: std :: os :: raw :: c_uint = 23 ; pub const TCP_TIMESTAMP : :: std :: os :: raw :: c_uint = 24 ; pub const TCP_NOTSENT_LOWAT : :: std :: os :: raw :: c_uint = 25 ; pub const TCP_CC_INFO : :: std :: os :: raw :: c_uint = 26 ; pub const TCP_SAVE_SYN : :: std :: os :: raw :: c_uint = 27 ; pub const TCP_SAVED_SYN : :: std :: os :: raw :: c_uint = 28 ; pub const TH_FIN : :: std :: os :: raw :: c_uint = 1 ; pub const TH_SYN : :: std :: os :: raw :: c_uint = 2 ; pub const TH_RST : :: std :: os :: raw :: c_uint = 4 ; pub const TH_PUSH : :: std :: os :: raw :: c_uint = 8 ; pub const TH_ACK : :: std :: os :: raw :: c_uint = 16 ; pub const TH_URG : :: std :: os :: raw :: c_uint = 32 ; pub const TCPOPT_EOL : :: std :: os :: raw :: c_uint = 0 ; pub const TCPOPT_NOP : :: std :: os :: raw :: c_uint = 1 ; pub const TCPOPT_MAXSEG : :: std :: os :: raw :: c_uint = 2 ; pub const TCPOLEN_MAXSEG : :: std :: os :: raw :: c_uint = 4 ; pub const TCPOPT_WINDOW : :: std :: os :: raw :: c_uint = 3 ; pub const TCPOLEN_WINDOW : :: std :: os :: raw :: c_uint = 3 ; pub const TCPOPT_SACK_PERMITTED : :: std :: os :: raw :: c_uint = 4 ; pub const TCPOLEN_SACK_PERMITTED : :: std :: os :: raw :: c_uint = 2 ; pub const TCPOPT_SACK : :: std :: os :: raw :: c_uint = 5 ; pub const TCPOPT_TIMESTAMP : :: std :: os :: raw :: c_uint = 8 ; pub const TCPOLEN_TIMESTAMP : :: std :: os :: raw :: c_uint = 10 ; pub const TCPOLEN_TSTAMP_APPA : :: std :: os :: raw :: c_uint = 12 ; pub const TCPOPT_TSTAMP_HDR : :: std :: os :: raw :: c_uint = 16844810 ; pub const TCP_MSS : :: std :: os :: raw :: c_uint = 512 ; pub const TCP_MAXWIN : :: std :: os :: raw :: c_uint = 65535 ; pub const TCP_MAX_WINSHIFT : :: std :: os :: raw :: c_uint = 14 ; pub const SOL_TCP : :: std :: os :: raw :: c_uint = 6 ; pub const TCPI_OPT_TIMESTAMPS : :: std :: os :: raw :: c_uint = 1 ; pub const TCPI_OPT_SACK : :: std :: os :: raw :: c_uint = 2 ; pub const TCPI_OPT_WSCALE : :: std :: os :: raw :: c_uint = 4 ; pub const TCPI_OPT_ECN : :: std :: os :: raw :: c_uint = 8 ; pub const TCPI_OPT_ECN_SEEN : :: std :: os :: raw :: c_uint = 16 ; pub const TCPI_OPT_SYN_DATA : :: std :: os :: raw :: c_uint = 32 ; pub const TCP_MD5SIG_MAXKEYLEN : :: std :: os :: raw :: c_uint = 80 ; pub const TCP_COOKIE_MIN : :: std :: os :: raw :: c_uint = 8 ; pub const TCP_COOKIE_MAX : :: std :: os :: raw :: c_uint = 16 ; pub const TCP_COOKIE_PAIR_SIZE : :: std :: os :: raw :: c_uint = 32 ; pub const TCP_COOKIE_IN_ALWAYS : :: std :: os :: raw :: c_uint = 1 ; pub const TCP_COOKIE_OUT_NEVER : :: std :: os :: raw :: c_uint = 2 ; pub const TCP_S_DATA_IN : :: std :: os :: raw :: c_uint = 4 ; pub const TCP_S_DATA_OUT : :: std :: os :: raw :: c_uint = 8 ; pub const TCP_MSS_DEFAULT : :: std :: os :: raw :: c_uint = 536 ; pub const TCP_MSS_DESIRED : :: std :: os :: raw :: c_uint = 1220 ; pub const _ARPA_INET_H : :: std :: os :: raw :: c_uint = 1 ; pub const _NETDB_H : :: std :: os :: raw :: c_uint = 1 ; pub const _RPC_NETDB_H : :: std :: os :: raw :: c_uint = 1 ; pub const _PATH_HEQUIV : & 'static [ u8 ; 17usize ] = b"/etc/hosts.equiv\0" ; pub const _PATH_HOSTS : & 'static [ u8 ; 11usize ] = b"/etc/hosts\0" ; pub const _PATH_NETWORKS : & 'static [ u8 ; 14usize ] = b"/etc/networks\0" ; pub const _PATH_NSSWITCH_CONF : & 'static [ u8 ; 19usize ] = b"/etc/nsswitch.conf\0" ; pub const _PATH_PROTOCOLS : & 'static [ u8 ; 15usize ] = b"/etc/protocols\0" ; pub const _PATH_SERVICES : & 'static [ u8 ; 14usize ] = b"/etc/services\0" ; pub const HOST_NOT_FOUND : :: std :: os :: raw :: c_uint = 1 ; pub const TRY_AGAIN : :: std :: os :: raw :: c_uint = 2 ; pub const NO_RECOVERY : :: std :: os :: raw :: c_uint = 3 ; pub const NO_DATA : :: std :: os :: raw :: c_uint = 4 ; pub const NETDB_INTERNAL : :: std :: os :: raw :: c_int = -1 ; pub const NETDB_SUCCESS : :: std :: os :: raw :: c_uint = 0 ; pub const NO_ADDRESS : :: std :: os :: raw :: c_uint = 4 ; pub const AI_PASSIVE : :: std :: os :: raw :: c_uint = 1 ; pub const AI_CANONNAME : :: std :: os :: raw :: c_uint = 2 ; pub const AI_NUMERICHOST : :: std :: os :: raw :: c_uint = 4 ; pub const AI_V4MAPPED : :: std :: os :: raw :: c_uint = 8 ; pub const AI_ALL : :: std :: os :: raw :: c_uint = 16 ; pub const AI_ADDRCONFIG : :: std :: os :: raw :: c_uint = 32 ; pub const AI_NUMERICSERV : :: std :: os :: raw :: c_uint = 1024 ; pub const EAI_BADFLAGS : :: std :: os :: raw :: c_int = -1 ; pub const EAI_NONAME : :: std :: os :: raw :: c_int = -2 ; pub const EAI_AGAIN : :: std :: os :: raw :: c_int = -3 ; pub const EAI_FAIL : :: std :: os :: raw :: c_int = -4 ; pub const EAI_FAMILY : :: std :: os :: raw :: c_int = -6 ; pub const EAI_SOCKTYPE : :: std :: os :: raw :: c_int = -7 ; pub const EAI_SERVICE : :: std :: os :: raw :: c_int = -8 ; pub const EAI_MEMORY : :: std :: os :: raw :: c_int = -10 ; pub const EAI_SYSTEM : :: std :: os :: raw :: c_int = -11 ; pub const EAI_OVERFLOW : :: std :: os :: raw :: c_int = -12 ; pub const NI_MAXHOST : :: std :: os :: raw :: c_uint = 1025 ; pub const NI_MAXSERV : :: std :: os :: raw :: c_uint = 32 ; pub const NI_NUMERICHOST : :: std :: os :: raw :: c_uint = 1 ; pub const NI_NUMERICSERV : :: std :: os :: raw :: c_uint = 2 ; pub const NI_NOFQDN : :: std :: os :: raw :: c_uint = 4 ; pub const NI_NAMEREQD : :: std :: os :: raw :: c_uint = 8 ; pub const NI_DGRAM : :: std :: os :: raw :: c_uint = 16 ; pub const _TERMIOS_H : :: std :: os :: raw :: c_uint = 1 ; pub const NCCS : :: std :: os :: raw :: c_uint = 32 ; pub const _HAVE_STRUCT_TERMIOS_C_ISPEED : :: std :: os :: raw :: c_uint = 1 ; pub const _HAVE_STRUCT_TERMIOS_C_OSPEED : :: std :: os :: raw :: c_uint = 1 ; pub const VINTR : :: std :: os :: raw :: c_uint = 0 ; pub const VQUIT : :: std :: os :: raw :: c_uint = 1 ; pub const VERASE : :: std :: os :: raw :: c_uint = 2 ; pub const VKILL : :: std :: os :: raw :: c_uint = 3 ; pub const VEOF : :: std :: os :: raw :: c_uint = 4 ; pub const VTIME : :: std :: os :: raw :: c_uint = 5 ; pub const VMIN : :: std :: os :: raw :: c_uint = 6 ; pub const VSWTC : :: std :: os :: raw :: c_uint = 7 ; pub const VSTART : :: std :: os :: raw :: c_uint = 8 ; pub const VSTOP : :: std :: os :: raw :: c_uint = 9 ; pub const VSUSP : :: std :: os :: raw :: c_uint = 10 ; pub const VEOL : :: std :: os :: raw :: c_uint = 11 ; pub const VREPRINT : :: std :: os :: raw :: c_uint = 12 ; pub const VDISCARD : :: std :: os :: raw :: c_uint = 13 ; pub const VWERASE : :: std :: os :: raw :: c_uint = 14 ; pub const VLNEXT : :: std :: os :: raw :: c_uint = 15 ; pub const VEOL2 : :: std :: os :: raw :: c_uint = 16 ; pub const IGNBRK : :: std :: os :: raw :: c_uint = 1 ; pub const BRKINT : :: std :: os :: raw :: c_uint = 2 ; pub const IGNPAR : :: std :: os :: raw :: c_uint = 4 ; pub const PARMRK : :: std :: os :: raw :: c_uint = 8 ; pub const INPCK : :: std :: os :: raw :: c_uint = 16 ; pub const ISTRIP : :: std :: os :: raw :: c_uint = 32 ; pub const INLCR : :: std :: os :: raw :: c_uint = 64 ; pub const IGNCR : :: std :: os :: raw :: c_uint = 128 ; pub const ICRNL : :: std :: os :: raw :: c_uint = 256 ; pub const IUCLC : :: std :: os :: raw :: c_uint = 512 ; pub const IXON : :: std :: os :: raw :: c_uint = 1024 ; pub const IXANY : :: std :: os :: raw :: c_uint = 2048 ; pub const IXOFF : :: std :: os :: raw :: c_uint = 4096 ; pub const IMAXBEL : :: std :: os :: raw :: c_uint = 8192 ; pub const IUTF8 : :: std :: os :: raw :: c_uint = 16384 ; pub const OPOST : :: std :: os :: raw :: c_uint = 1 ; pub const OLCUC : :: std :: os :: raw :: c_uint = 2 ; pub const ONLCR : :: std :: os :: raw :: c_uint = 4 ; pub const OCRNL : :: std :: os :: raw :: c_uint = 8 ; pub const ONOCR : :: std :: os :: raw :: c_uint = 16 ; pub const ONLRET : :: std :: os :: raw :: c_uint = 32 ; pub const OFILL : :: std :: os :: raw :: c_uint = 64 ; pub const OFDEL : :: std :: os :: raw :: c_uint = 128 ; pub const NLDLY : :: std :: os :: raw :: c_uint = 256 ; pub const NL0 : :: std :: os :: raw :: c_uint = 0 ; pub const NL1 : :: std :: os :: raw :: c_uint = 256 ; pub const CRDLY : :: std :: os :: raw :: c_uint = 1536 ; pub const CR0 : :: std :: os :: raw :: c_uint = 0 ; pub const CR1 : :: std :: os :: raw :: c_uint = 512 ; pub const CR2 : :: std :: os :: raw :: c_uint = 1024 ; pub const CR3 : :: std :: os :: raw :: c_uint = 1536 ; pub const TABDLY : :: std :: os :: raw :: c_uint = 6144 ; pub const TAB0 : :: std :: os :: raw :: c_uint = 0 ; pub const TAB1 : :: std :: os :: raw :: c_uint = 2048 ; pub const TAB2 : :: std :: os :: raw :: c_uint = 4096 ; pub const TAB3 : :: std :: os :: raw :: c_uint = 6144 ; pub const BSDLY : :: std :: os :: raw :: c_uint = 8192 ; pub const BS0 : :: std :: os :: raw :: c_uint = 0 ; pub const BS1 : :: std :: os :: raw :: c_uint = 8192 ; pub const FFDLY : :: std :: os :: raw :: c_uint = 32768 ; pub const FF0 : :: std :: os :: raw :: c_uint = 0 ; pub const FF1 : :: std :: os :: raw :: c_uint = 32768 ; pub const VTDLY : :: std :: os :: raw :: c_uint = 16384 ; pub const VT0 : :: std :: os :: raw :: c_uint = 0 ; pub const VT1 : :: std :: os :: raw :: c_uint = 16384 ; pub const XTABS : :: std :: os :: raw :: c_uint = 6144 ; pub const CBAUD : :: std :: os :: raw :: c_uint = 4111 ; pub const B0 : :: std :: os :: raw :: c_uint = 0 ; pub const B50 : :: std :: os :: raw :: c_uint = 1 ; pub const B75 : :: std :: os :: raw :: c_uint = 2 ; pub const B110 : :: std :: os :: raw :: c_uint = 3 ; pub const B134 : :: std :: os :: raw :: c_uint = 4 ; pub const B150 : :: std :: os :: raw :: c_uint = 5 ; pub const B200 : :: std :: os :: raw :: c_uint = 6 ; pub const B300 : :: std :: os :: raw :: c_uint = 7 ; pub const B600 : :: std :: os :: raw :: c_uint = 8 ; pub const B1200 : :: std :: os :: raw :: c_uint = 9 ; pub const B1800 : :: std :: os :: raw :: c_uint = 10 ; pub const B2400 : :: std :: os :: raw :: c_uint = 11 ; pub const B4800 : :: std :: os :: raw :: c_uint = 12 ; pub const B9600 : :: std :: os :: raw :: c_uint = 13 ; pub const B19200 : :: std :: os :: raw :: c_uint = 14 ; pub const B38400 : :: std :: os :: raw :: c_uint = 15 ; pub const EXTA : :: std :: os :: raw :: c_uint = 14 ; pub const EXTB : :: std :: os :: raw :: c_uint = 15 ; pub const CSIZE : :: std :: os :: raw :: c_uint = 48 ; pub const CS5 : :: std :: os :: raw :: c_uint = 0 ; pub const CS6 : :: std :: os :: raw :: c_uint = 16 ; pub const CS7 : :: std :: os :: raw :: c_uint = 32 ; pub const CS8 : :: std :: os :: raw :: c_uint = 48 ; pub const CSTOPB : :: std :: os :: raw :: c_uint = 64 ; pub const CREAD : :: std :: os :: raw :: c_uint = 128 ; pub const PARENB : :: std :: os :: raw :: c_uint = 256 ; pub const PARODD : :: std :: os :: raw :: c_uint = 512 ; pub const HUPCL : :: std :: os :: raw :: c_uint = 1024 ; pub const CLOCAL : :: std :: os :: raw :: c_uint = 2048 ; pub const CBAUDEX : :: std :: os :: raw :: c_uint = 4096 ; pub const B57600 : :: std :: os :: raw :: c_uint = 4097 ; pub const B115200 : :: std :: os :: raw :: c_uint = 4098 ; pub const B230400 : :: std :: os :: raw :: c_uint = 4099 ; pub const B460800 : :: std :: os :: raw :: c_uint = 4100 ; pub const B500000 : :: std :: os :: raw :: c_uint = 4101 ; pub const B576000 : :: std :: os :: raw :: c_uint = 4102 ; pub const B921600 : :: std :: os :: raw :: c_uint = 4103 ; pub const B1000000 : :: std :: os :: raw :: c_uint = 4104 ; pub const B1152000 : :: std :: os :: raw :: c_uint = 4105 ; pub const B1500000 : :: std :: os :: raw :: c_uint = 4106 ; pub const B2000000 : :: std :: os :: raw :: c_uint = 4107 ; pub const B2500000 : :: std :: os :: raw :: c_uint = 4108 ; pub const B3000000 : :: std :: os :: raw :: c_uint = 4109 ; pub const B3500000 : :: std :: os :: raw :: c_uint = 4110 ; pub const B4000000 : :: std :: os :: raw :: c_uint = 4111 ; pub const __MAX_BAUD : :: std :: os :: raw :: c_uint = 4111 ; pub const CIBAUD : :: std :: os :: raw :: c_uint = 269418496 ; pub const CMSPAR : :: std :: os :: raw :: c_uint = 1073741824 ; pub const CRTSCTS : :: std :: os :: raw :: c_uint = 2147483648 ; pub const ISIG : :: std :: os :: raw :: c_uint = 1 ; pub const ICANON : :: std :: os :: raw :: c_uint = 2 ; pub const XCASE : :: std :: os :: raw :: c_uint = 4 ; pub const ECHO : :: std :: os :: raw :: c_uint = 8 ; pub const ECHOE : :: std :: os :: raw :: c_uint = 16 ; pub const ECHOK : :: std :: os :: raw :: c_uint = 32 ; pub const ECHONL : :: std :: os :: raw :: c_uint = 64 ; pub const NOFLSH : :: std :: os :: raw :: c_uint = 128 ; pub const TOSTOP : :: std :: os :: raw :: c_uint = 256 ; pub const ECHOCTL : :: std :: os :: raw :: c_uint = 512 ; pub const ECHOPRT : :: std :: os :: raw :: c_uint = 1024 ; pub const ECHOKE : :: std :: os :: raw :: c_uint = 2048 ; pub const FLUSHO : :: std :: os :: raw :: c_uint = 4096 ; pub const PENDIN : :: std :: os :: raw :: c_uint = 16384 ; pub const IEXTEN : :: std :: os :: raw :: c_uint = 32768 ; pub const EXTPROC : :: std :: os :: raw :: c_uint = 65536 ; pub const TCOOFF : :: std :: os :: raw :: c_uint = 0 ; pub const TCOON : :: std :: os :: raw :: c_uint = 1 ; pub const TCIOFF : :: std :: os :: raw :: c_uint = 2 ; pub const TCION : :: std :: os :: raw :: c_uint = 3 ; pub const TCIFLUSH : :: std :: os :: raw :: c_uint = 0 ; pub const TCOFLUSH : :: std :: os :: raw :: c_uint = 1 ; pub const TCIOFLUSH : :: std :: os :: raw :: c_uint = 2 ; pub const TCSANOW : :: std :: os :: raw :: c_uint = 0 ; pub const TCSADRAIN : :: std :: os :: raw :: c_uint = 1 ; pub const TCSAFLUSH : :: std :: os :: raw :: c_uint = 2 ; pub const TTYDEF_IFLAG : :: std :: os :: raw :: c_uint = 11554 ; pub const TTYDEF_OFLAG : :: std :: os :: raw :: c_uint = 6149 ; pub const TTYDEF_LFLAG : :: std :: os :: raw :: c_uint = 35355 ; pub const TTYDEF_CFLAG : :: std :: os :: raw :: c_uint = 1440 ; pub const TTYDEF_SPEED : :: std :: os :: raw :: c_uint = 13 ; pub const CEOL : u8 = 0u8 ; pub const CERASE : :: std :: os :: raw :: c_uint = 127 ; pub const CSTATUS : u8 = 0u8 ; pub const CMIN : :: std :: os :: raw :: c_uint = 1 ; pub const CQUIT : :: std :: os :: raw :: c_uint = 28 ; pub const CTIME : :: std :: os :: raw :: c_uint = 0 ; pub const CBRK : u8 = 0u8 ; pub const _PWD_H : :: std :: os :: raw :: c_uint = 1 ; pub const NSS_BUFLEN_PASSWD : :: std :: os :: raw :: c_uint = 1024 ; pub const _SEMAPHORE_H : :: std :: os :: raw :: c_uint = 1 ; pub const __SIZEOF_SEM_T : :: std :: os :: raw :: c_uint = 32 ; pub const _PTHREAD_H : :: std :: os :: raw :: c_uint = 1 ; pub const _SCHED_H : :: std :: os :: raw :: c_uint = 1 ; pub const SCHED_OTHER : :: std :: os :: raw :: c_uint = 0 ; pub const SCHED_FIFO : :: std :: os :: raw :: c_uint = 1 ; pub const SCHED_RR : :: std :: os :: raw :: c_uint = 2 ; pub const __defined_schedparam : :: std :: os :: raw :: c_uint = 1 ; pub const __CPU_SETSIZE : :: std :: os :: raw :: c_uint = 1024 ; pub const _TIME_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_TIME_H : :: std :: os :: raw :: c_uint = 1 ; pub const CLOCK_REALTIME : :: std :: os :: raw :: c_uint = 0 ; pub const CLOCK_MONOTONIC : :: std :: os :: raw :: c_uint = 1 ; pub const CLOCK_PROCESS_CPUTIME_ID : :: std :: os :: raw :: c_uint = 2 ; pub const CLOCK_THREAD_CPUTIME_ID : :: std :: os :: raw :: c_uint = 3 ; pub const CLOCK_MONOTONIC_RAW : :: std :: os :: raw :: c_uint = 4 ; pub const CLOCK_REALTIME_COARSE : :: std :: os :: raw :: c_uint = 5 ; pub const CLOCK_MONOTONIC_COARSE : :: std :: os :: raw :: c_uint = 6 ; pub const CLOCK_BOOTTIME : :: std :: os :: raw :: c_uint = 7 ; pub const CLOCK_REALTIME_ALARM : :: std :: os :: raw :: c_uint = 8 ; pub const CLOCK_BOOTTIME_ALARM : :: std :: os :: raw :: c_uint = 9 ; pub const CLOCK_TAI : :: std :: os :: raw :: c_uint = 11 ; pub const TIMER_ABSTIME : :: std :: os :: raw :: c_uint = 1 ; pub const TIME_UTC : :: std :: os :: raw :: c_uint = 1 ; pub const _XLOCALE_H : :: std :: os :: raw :: c_uint = 1 ; pub const _BITS_SETJMP_H : :: std :: os :: raw :: c_uint = 1 ; pub const PTHREAD_ONCE_INIT : :: std :: os :: raw :: c_uint = 0 ; pub const PTHREAD_BARRIER_SERIAL_THREAD : :: std :: os :: raw :: c_int = -1 ; pub const _SIGSET_H_fns : :: std :: os :: raw :: c_uint = 1 ; pub const SIGHUP : :: std :: os :: raw :: c_uint = 1 ; pub const SIGINT : :: std :: os :: raw :: c_uint = 2 ; pub const SIGQUIT : :: std :: os :: raw :: c_uint = 3 ; pub const SIGILL : :: std :: os :: raw :: c_uint = 4 ; pub const SIGTRAP : :: std :: os :: raw :: c_uint = 5 ; pub const SIGABRT : :: std :: os :: raw :: c_uint = 6 ; pub const SIGIOT : :: std :: os :: raw :: c_uint = 6 ; pub const SIGBUS : :: std :: os :: raw :: c_uint = 7 ; pub const SIGFPE : :: std :: os :: raw :: c_uint = 8 ; pub const SIGKILL : :: std :: os :: raw :: c_uint = 9 ; pub const SIGUSR1 : :: std :: os :: raw :: c_uint = 10 ; pub const SIGSEGV : :: std :: os :: raw :: c_uint = 11 ; pub const SIGUSR2 : :: std :: os :: raw :: c_uint = 12 ; pub const SIGPIPE : :: std :: os :: raw :: c_uint = 13 ; pub const SIGALRM : :: std :: os :: raw :: c_uint = 14 ; pub const SIGTERM : :: std :: os :: raw :: c_uint = 15 ; pub const SIGSTKFLT : :: std :: os :: raw :: c_uint = 16 ; pub const SIGCHLD : :: std :: os :: raw :: c_uint = 17 ; pub const SIGCONT : :: std :: os :: raw :: c_uint = 18 ; pub const SIGSTOP : :: std :: os :: raw :: c_uint = 19 ; pub const SIGTSTP : :: std :: os :: raw :: c_uint = 20 ; pub const SIGTTIN : :: std :: os :: raw :: c_uint = 21 ; pub const SIGTTOU : :: std :: os :: raw :: c_uint = 22 ; pub const SIGURG : :: std :: os :: raw :: c_uint = 23 ; pub const SIGXCPU : :: std :: os :: raw :: c_uint = 24 ; pub const SIGXFSZ : :: std :: os :: raw :: c_uint = 25 ; pub const SIGVTALRM : :: std :: os :: raw :: c_uint = 26 ; pub const SIGPROF : :: std :: os :: raw :: c_uint = 27 ; pub const SIGWINCH : :: std :: os :: raw :: c_uint = 28 ; pub const SIGIO : :: std :: os :: raw :: c_uint = 29 ; pub const SIGPWR : :: std :: os :: raw :: c_uint = 30 ; pub const SIGSYS : :: std :: os :: raw :: c_uint = 31 ; pub const SIGUNUSED : :: std :: os :: raw :: c_uint = 31 ; pub const _NSIG : :: std :: os :: raw :: c_uint = 65 ; pub const __SIGRTMIN : :: std :: os :: raw :: c_uint = 32 ; pub const __SIGRTMAX : :: std :: os :: raw :: c_uint = 64 ; pub const __have_sigval_t : :: std :: os :: raw :: c_uint = 1 ; pub const __have_siginfo_t : :: std :: os :: raw :: c_uint = 1 ; pub const __SI_MAX_SIZE : :: std :: os :: raw :: c_uint = 128 ; pub const __have_sigevent_t : :: std :: os :: raw :: c_uint = 1 ; pub const __SIGEV_MAX_SIZE : :: std :: os :: raw :: c_uint = 64 ; pub const NSIG : :: std :: os :: raw :: c_uint = 65 ; pub const SA_NOCLDSTOP : :: std :: os :: raw :: c_uint = 1 ; pub const SA_NOCLDWAIT : :: std :: os :: raw :: c_uint = 2 ; pub const SA_SIGINFO : :: std :: os :: raw :: c_uint = 4 ; pub const SA_ONSTACK : :: std :: os :: raw :: c_uint = 134217728 ; pub const SA_RESTART : :: std :: os :: raw :: c_uint = 268435456 ; pub const SA_NODEFER : :: std :: os :: raw :: c_uint = 1073741824 ; pub const SA_RESETHAND : :: std :: os :: raw :: c_uint = 2147483648 ; pub const SA_INTERRUPT : :: std :: os :: raw :: c_uint = 536870912 ; pub const SA_NOMASK : :: std :: os :: raw :: c_uint = 1073741824 ; pub const SA_ONESHOT : :: std :: os :: raw :: c_uint = 2147483648 ; pub const SA_STACK : :: std :: os :: raw :: c_uint = 134217728 ; pub const SIG_BLOCK : :: std :: os :: raw :: c_uint = 0 ; pub const SIG_UNBLOCK : :: std :: os :: raw :: c_uint = 1 ; pub const SIG_SETMASK : :: std :: os :: raw :: c_uint = 2 ; pub const _BITS_SIGCONTEXT_H : :: std :: os :: raw :: c_uint = 1 ; pub const FP_XSTATE_MAGIC1 : :: std :: os :: raw :: c_uint = 1179670611 ; pub const FP_XSTATE_MAGIC2 : :: std :: os :: raw :: c_uint = 1179670597 ; pub const MINSIGSTKSZ : :: std :: os :: raw :: c_uint = 2048 ; pub const SIGSTKSZ : :: std :: os :: raw :: c_uint = 8192 ; pub const _SYS_UCONTEXT_H : :: std :: os :: raw :: c_uint = 1 ; pub const NGREG : :: std :: os :: raw :: c_uint = 23 ; pub const _BITS_SIGTHREAD_H : :: std :: os :: raw :: c_uint = 1 ; pub const UV_ONCE_INIT : :: std :: os :: raw :: c_uint = 0 ; pub const UV_FS_SYMLINK_DIR : :: std :: os :: raw :: c_uint = 1 ; pub const UV_FS_SYMLINK_JUNCTION : :: std :: os :: raw :: c_uint = 2 ; pub const IOS_INLSIZE : :: std :: os :: raw :: c_uint = 54 ; pub const IOS_BUFSIZE : :: std :: os :: raw :: c_uint = 131072 ; pub const IOS_EOF : :: std :: os :: raw :: c_int = -1 ; pub const HT_N_INLINE : :: std :: os :: raw :: c_uint = 32 ; pub const PATHSEPSTRING : & 'static [ u8 ; 2usize ] = b"/\0" ; pub const PATHLISTSEPSTRING : & 'static [ u8 ; 2usize ] = b":\0" ; pub const CRC32C_H : :: std :: os :: raw :: c_uint = 1 ; pub const _STRING_H : :: std :: os :: raw :: c_uint = 1 ; pub const AL_N_INLINE : :: std :: os :: raw :: c_uint = 29 ; pub const _SETJMP_H : :: std :: os :: raw :: c_uint = 1 ; pub const _MM_HINT_T0 : :: std :: os :: raw :: c_uint = 3 ; pub const _MM_HINT_T1 : :: std :: os :: raw :: c_uint = 2 ; pub const _MM_HINT_T2 : :: std :: os :: raw :: c_uint = 1 ; pub const _MM_HINT_NTA : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_EXCEPT_INVALID : :: std :: os :: raw :: c_uint = 1 ; pub const _MM_EXCEPT_DENORM : :: std :: os :: raw :: c_uint = 2 ; pub const _MM_EXCEPT_DIV_ZERO : :: std :: os :: raw :: c_uint = 4 ; pub const _MM_EXCEPT_OVERFLOW : :: std :: os :: raw :: c_uint = 8 ; pub const _MM_EXCEPT_UNDERFLOW : :: std :: os :: raw :: c_uint = 16 ; pub const _MM_EXCEPT_INEXACT : :: std :: os :: raw :: c_uint = 32 ; pub const _MM_EXCEPT_MASK : :: std :: os :: raw :: c_uint = 63 ; pub const _MM_MASK_INVALID : :: std :: os :: raw :: c_uint = 128 ; pub const _MM_MASK_DENORM : :: std :: os :: raw :: c_uint = 256 ; pub const _MM_MASK_DIV_ZERO : :: std :: os :: raw :: c_uint = 512 ; pub const _MM_MASK_OVERFLOW : :: std :: os :: raw :: c_uint = 1024 ; pub const _MM_MASK_UNDERFLOW : :: std :: os :: raw :: c_uint = 2048 ; pub const _MM_MASK_INEXACT : :: std :: os :: raw :: c_uint = 4096 ; pub const _MM_MASK_MASK : :: std :: os :: raw :: c_uint = 8064 ; pub const _MM_ROUND_NEAREST : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_ROUND_DOWN : :: std :: os :: raw :: c_uint = 8192 ; pub const _MM_ROUND_UP : :: std :: os :: raw :: c_uint = 16384 ; pub const _MM_ROUND_TOWARD_ZERO : :: std :: os :: raw :: c_uint = 24576 ; pub const _MM_ROUND_MASK : :: std :: os :: raw :: c_uint = 24576 ; pub const _MM_FLUSH_ZERO_MASK : :: std :: os :: raw :: c_uint = 32768 ; pub const _MM_FLUSH_ZERO_ON : :: std :: os :: raw :: c_uint = 32768 ; pub const _MM_FLUSH_ZERO_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_DENORMALS_ZERO_ON : :: std :: os :: raw :: c_uint = 64 ; pub const _MM_DENORMALS_ZERO_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_DENORMALS_ZERO_MASK : :: std :: os :: raw :: c_uint = 64 ; pub const _MM_FROUND_TO_NEAREST_INT : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_FROUND_TO_NEG_INF : :: std :: os :: raw :: c_uint = 1 ; pub const _MM_FROUND_TO_POS_INF : :: std :: os :: raw :: c_uint = 2 ; pub const _MM_FROUND_TO_ZERO : :: std :: os :: raw :: c_uint = 3 ; pub const _MM_FROUND_CUR_DIRECTION : :: std :: os :: raw :: c_uint = 4 ; pub const _MM_FROUND_RAISE_EXC : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_FROUND_NO_EXC : :: std :: os :: raw :: c_uint = 8 ; pub const _MM_FROUND_NINT : :: std :: os :: raw :: c_uint = 0 ; pub const _MM_FROUND_FLOOR : :: std :: os :: raw :: c_uint = 1 ; pub const _MM_FROUND_CEIL : :: std :: os :: raw :: c_uint = 2 ; pub const _MM_FROUND_TRUNC : :: std :: os :: raw :: c_uint = 3 ; pub const _MM_FROUND_RINT : :: std :: os :: raw :: c_uint = 4 ; pub const _MM_FROUND_NEARBYINT : :: std :: os :: raw :: c_uint = 12 ; pub const _SIDD_UBYTE_OPS : :: std :: os :: raw :: c_uint = 0 ; pub const _SIDD_UWORD_OPS : :: std :: os :: raw :: c_uint = 1 ; pub const _SIDD_SBYTE_OPS : :: std :: os :: raw :: c_uint = 2 ; pub const _SIDD_SWORD_OPS : :: std :: os :: raw :: c_uint = 3 ; pub const _SIDD_CMP_EQUAL_ANY : :: std :: os :: raw :: c_uint = 0 ; pub const _SIDD_CMP_RANGES : :: std :: os :: raw :: c_uint = 4 ; pub const _SIDD_CMP_EQUAL_EACH : :: std :: os :: raw :: c_uint = 8 ; pub const _SIDD_CMP_EQUAL_ORDERED : :: std :: os :: raw :: c_uint = 12 ; pub const _SIDD_POSITIVE_POLARITY : :: std :: os :: raw :: c_uint = 0 ; pub const _SIDD_NEGATIVE_POLARITY : :: std :: os :: raw :: c_uint = 16 ; pub const _SIDD_MASKED_POSITIVE_POLARITY : :: std :: os :: raw :: c_uint = 32 ; pub const _SIDD_MASKED_NEGATIVE_POLARITY : :: std :: os :: raw :: c_uint = 48 ; pub const _SIDD_LEAST_SIGNIFICANT : :: std :: os :: raw :: c_uint = 0 ; pub const _SIDD_MOST_SIGNIFICANT : :: std :: os :: raw :: c_uint = 64 ; pub const _SIDD_BIT_MASK : :: std :: os :: raw :: c_uint = 0 ; pub const _SIDD_UNIT_MASK : :: std :: os :: raw :: c_uint = 64 ; pub const _CMP_EQ_OQ : :: std :: os :: raw :: c_uint = 0 ; pub const _CMP_LT_OS : :: std :: os :: raw :: c_uint = 1 ; pub const _CMP_LE_OS : :: std :: os :: raw :: c_uint = 2 ; pub const _CMP_UNORD_Q : :: std :: os :: raw :: c_uint = 3 ; pub const _CMP_NEQ_UQ : :: std :: os :: raw :: c_uint = 4 ; pub const _CMP_NLT_US : :: std :: os :: raw :: c_uint = 5 ; pub const _CMP_NLE_US : :: std :: os :: raw :: c_uint = 6 ; pub const _CMP_ORD_Q : :: std :: os :: raw :: c_uint = 7 ; pub const _CMP_EQ_UQ : :: std :: os :: raw :: c_uint = 8 ; pub const _CMP_NGE_US : :: std :: os :: raw :: c_uint = 9 ; pub const _CMP_NGT_US : :: std :: os :: raw :: c_uint = 10 ; pub const _CMP_FALSE_OQ : :: std :: os :: raw :: c_uint = 11 ; pub const _CMP_NEQ_OQ : :: std :: os :: raw :: c_uint = 12 ; pub const _CMP_GE_OS : :: std :: os :: raw :: c_uint = 13 ; pub const _CMP_GT_OS : :: std :: os :: raw :: c_uint = 14 ; pub const _CMP_TRUE_UQ : :: std :: os :: raw :: c_uint = 15 ; pub const _CMP_EQ_OS : :: std :: os :: raw :: c_uint = 16 ; pub const _CMP_LT_OQ : :: std :: os :: raw :: c_uint = 17 ; pub const _CMP_LE_OQ : :: std :: os :: raw :: c_uint = 18 ; pub const _CMP_UNORD_S : :: std :: os :: raw :: c_uint = 19 ; pub const _CMP_NEQ_US : :: std :: os :: raw :: c_uint = 20 ; pub const _CMP_NLT_UQ : :: std :: os :: raw :: c_uint = 21 ; pub const _CMP_NLE_UQ : :: std :: os :: raw :: c_uint = 22 ; pub const _CMP_ORD_S : :: std :: os :: raw :: c_uint = 23 ; pub const _CMP_EQ_US : :: std :: os :: raw :: c_uint = 24 ; pub const _CMP_NGE_UQ : :: std :: os :: raw :: c_uint = 25 ; pub const _CMP_NGT_UQ : :: std :: os :: raw :: c_uint = 26 ; pub const _CMP_FALSE_OS : :: std :: os :: raw :: c_uint = 27 ; pub const _CMP_NEQ_OS : :: std :: os :: raw :: c_uint = 28 ; pub const _CMP_GE_OQ : :: std :: os :: raw :: c_uint = 29 ; pub const _CMP_GT_OQ : :: std :: os :: raw :: c_uint = 30 ; pub const _CMP_TRUE_US : :: std :: os :: raw :: c_uint = 31 ; pub const _XBEGIN_STARTED : :: std :: os :: raw :: c_int = -1 ; pub const _XABORT_EXPLICIT : :: std :: os :: raw :: c_uint = 1 ; pub const _XABORT_RETRY : :: std :: os :: raw :: c_uint = 2 ; pub const _XABORT_CONFLICT : :: std :: os :: raw :: c_uint = 4 ; pub const _XABORT_CAPACITY : :: std :: os :: raw :: c_uint = 8 ; pub const _XABORT_DEBUG : :: std :: os :: raw :: c_uint = 16 ; pub const _XABORT_NESTED : :: std :: os :: raw :: c_uint = 32 ; pub const JL_GC_N_POOLS : :: std :: os :: raw :: c_uint = 41 ; pub const JL_MAX_BT_SIZE : :: std :: os :: raw :: c_uint = 80000 ; pub const JL_GC_STATE_WAITING : :: std :: os :: raw :: c_uint = 1 ; pub const JL_GC_STATE_SAFE : :: std :: os :: raw :: c_uint = 2 ; pub const JL_CPU_WAKE_NOOP : :: std :: os :: raw :: c_uint = 1 ; pub const jl_setjmp_name : & 'static [ u8 ; 12usize ] = b"__sigsetjmp\0" ; pub const JL_LOG_NONE : :: std :: os :: raw :: c_uint = 0 ; pub const JL_LOG_USER : :: std :: os :: raw :: c_uint = 1 ; pub const JL_LOG_ALL : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_CHECK_BOUNDS_DEFAULT : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_CHECK_BOUNDS_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_CHECK_BOUNDS_OFF : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_COMPILE_DEFAULT : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_COMPILE_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_COMPILE_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_COMPILE_ALL : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_COMPILE_MIN : :: std :: os :: raw :: c_uint = 3 ; pub const JL_OPTIONS_COLOR_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_COLOR_OFF : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_HISTORYFILE_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_HISTORYFILE_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_STARTUPFILE_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_STARTUPFILE_OFF : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_DEPWARN_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_DEPWARN_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_DEPWARN_ERROR : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_POLLY_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_POLLY_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_FAST_MATH_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_FAST_MATH_OFF : :: std :: os :: raw :: c_uint = 2 ; pub const JL_OPTIONS_FAST_MATH_DEFAULT : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_HANDLE_SIGNALS_ON : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_HANDLE_SIGNALS_OFF : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_USE_PRECOMPILED_YES : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_USE_PRECOMPILED_NO : :: std :: os :: raw :: c_uint = 0 ; pub const JL_OPTIONS_USE_COMPILECACHE_YES : :: std :: os :: raw :: c_uint = 1 ; pub const JL_OPTIONS_USE_COMPILECACHE_NO : :: std :: os :: raw :: c_uint = 0 ; pub const JULIA_VERSION_STRING : & 'static [ u8 ; 6usize ] = b"0.6.0\0" ; pub const JULIA_VERSION_MAJOR : :: std :: os :: raw :: c_uint = 0 ; pub const JULIA_VERSION_MINOR : :: std :: os :: raw :: c_uint = 6 ; pub const JULIA_VERSION_PATCH : :: std :: os :: raw :: c_uint = 0 ; pub const JULIA_VERSION_IS_RELEASE : :: std :: os :: raw :: c_uint = 1 ; pub type wchar_t = :: std :: os :: raw :: c_int ; pub const idtype_t_P_ALL : idtype_t = 0 ; pub const idtype_t_P_PID : idtype_t = 1 ; pub const idtype_t_P_PGID : idtype_t = 2 ; pub type idtype_t = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct div_t { pub quot : :: std :: os :: raw :: c_int , pub rem : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_div_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < div_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( div_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < div_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( div_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const div_t ) ) . quot as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( div_t ) , "::" , stringify ! ( quot ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const div_t ) ) . rem as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( div_t ) , "::" , stringify ! ( rem ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ldiv_t { pub quot : :: std :: os :: raw :: c_long , pub rem : :: std :: os :: raw :: c_long , } # [ test ] fn bindgen_test_layout_ldiv_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ldiv_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( ldiv_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ldiv_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( ldiv_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ldiv_t ) ) . quot as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ldiv_t ) , "::" , stringify ! ( quot ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ldiv_t ) ) . rem as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ldiv_t ) , "::" , stringify ! ( rem ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct lldiv_t { pub quot : :: std :: os :: raw :: c_longlong , pub rem : :: std :: os :: raw :: c_longlong , } # [ test ] fn bindgen_test_layout_lldiv_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < lldiv_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( lldiv_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < lldiv_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( lldiv_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const lldiv_t ) ) . quot as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( lldiv_t ) , "::" , stringify ! ( quot ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const lldiv_t ) ) . rem as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( lldiv_t ) , "::" , stringify ! ( rem ) ) ) ; } extern "C" {
 pub fn __ctype_get_mb_cur_max ( ) -> usize ; 
} extern "C" {
 pub fn atof ( __nptr : * const :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn atoi ( __nptr : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn atol ( __nptr : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn atoll ( __nptr : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn strtod ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn strtof ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , ) -> f32 ; 
} extern "C" {
 pub fn strtold ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn strtol ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn strtoul ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_ulong ; 
} extern "C" {
 pub fn strtoq ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn strtouq ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_ulonglong ; 
} extern "C" {
 pub fn strtoll ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn strtoull ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_ulonglong ; 
} extern "C" {
 pub fn l64a ( __n : :: std :: os :: raw :: c_long , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn a64l ( __s : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_long ; 
} pub type __u_char = :: std :: os :: raw :: c_uchar ; pub type __u_short = :: std :: os :: raw :: c_ushort ; pub type __u_int = :: std :: os :: raw :: c_uint ; pub type __u_long = :: std :: os :: raw :: c_ulong ; pub type __int8_t = :: std :: os :: raw :: c_schar ; pub type __uint8_t = :: std :: os :: raw :: c_uchar ; pub type __int16_t = :: std :: os :: raw :: c_short ; pub type __uint16_t = :: std :: os :: raw :: c_ushort ; pub type __int32_t = :: std :: os :: raw :: c_int ; pub type __uint32_t = :: std :: os :: raw :: c_uint ; pub type __int64_t = :: std :: os :: raw :: c_long ; pub type __uint64_t = :: std :: os :: raw :: c_ulong ; pub type __quad_t = :: std :: os :: raw :: c_long ; pub type __u_quad_t = :: std :: os :: raw :: c_ulong ; pub type __dev_t = :: std :: os :: raw :: c_ulong ; pub type __uid_t = :: std :: os :: raw :: c_uint ; pub type __gid_t = :: std :: os :: raw :: c_uint ; pub type __ino_t = :: std :: os :: raw :: c_ulong ; pub type __ino64_t = :: std :: os :: raw :: c_ulong ; pub type __mode_t = :: std :: os :: raw :: c_uint ; pub type __nlink_t = :: std :: os :: raw :: c_ulong ; pub type __off_t = :: std :: os :: raw :: c_long ; pub type __off64_t = :: std :: os :: raw :: c_long ; pub type __pid_t = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __fsid_t { pub __val : [ :: std :: os :: raw :: c_int ; 2usize ] , } # [ test ] fn bindgen_test_layout___fsid_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __fsid_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( __fsid_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __fsid_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( __fsid_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __fsid_t ) ) . __val as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __fsid_t ) , "::" , stringify ! ( __val ) ) ) ; } pub type __clock_t = :: std :: os :: raw :: c_long ; pub type __rlim_t = :: std :: os :: raw :: c_ulong ; pub type __rlim64_t = :: std :: os :: raw :: c_ulong ; pub type __id_t = :: std :: os :: raw :: c_uint ; pub type __time_t = :: std :: os :: raw :: c_long ; pub type __useconds_t = :: std :: os :: raw :: c_uint ; pub type __suseconds_t = :: std :: os :: raw :: c_long ; pub type __daddr_t = :: std :: os :: raw :: c_int ; pub type __key_t = :: std :: os :: raw :: c_int ; pub type __clockid_t = :: std :: os :: raw :: c_int ; pub type __timer_t = * mut :: std :: os :: raw :: c_void ; pub type __blksize_t = :: std :: os :: raw :: c_long ; pub type __blkcnt_t = :: std :: os :: raw :: c_long ; pub type __blkcnt64_t = :: std :: os :: raw :: c_long ; pub type __fsblkcnt_t = :: std :: os :: raw :: c_ulong ; pub type __fsblkcnt64_t = :: std :: os :: raw :: c_ulong ; pub type __fsfilcnt_t = :: std :: os :: raw :: c_ulong ; pub type __fsfilcnt64_t = :: std :: os :: raw :: c_ulong ; pub type __fsword_t = :: std :: os :: raw :: c_long ; pub type __ssize_t = :: std :: os :: raw :: c_long ; pub type __syscall_slong_t = :: std :: os :: raw :: c_long ; pub type __syscall_ulong_t = :: std :: os :: raw :: c_ulong ; pub type __loff_t = __off64_t ; pub type __qaddr_t = * mut __quad_t ; pub type __caddr_t = * mut :: std :: os :: raw :: c_char ; pub type __intptr_t = :: std :: os :: raw :: c_long ; pub type __socklen_t = :: std :: os :: raw :: c_uint ; pub type u_char = __u_char ; pub type u_short = __u_short ; pub type u_int = __u_int ; pub type u_long = __u_long ; pub type quad_t = __quad_t ; pub type u_quad_t = __u_quad_t ; pub type fsid_t = __fsid_t ; pub type loff_t = __loff_t ; pub type ino_t = __ino_t ; pub type dev_t = __dev_t ; pub type gid_t = __gid_t ; pub type mode_t = __mode_t ; pub type nlink_t = __nlink_t ; pub type uid_t = __uid_t ; pub type off_t = __off_t ; pub type pid_t = __pid_t ; pub type id_t = __id_t ; pub type daddr_t = __daddr_t ; pub type caddr_t = __caddr_t ; pub type key_t = __key_t ; pub type clock_t = __clock_t ; pub type time_t = __time_t ; pub type clockid_t = __clockid_t ; pub type timer_t = __timer_t ; pub type ulong = :: std :: os :: raw :: c_ulong ; pub type ushort = :: std :: os :: raw :: c_ushort ; pub type uint = :: std :: os :: raw :: c_uint ; pub type u_int8_t = :: std :: os :: raw :: c_uchar ; pub type u_int16_t = :: std :: os :: raw :: c_ushort ; pub type u_int32_t = :: std :: os :: raw :: c_uint ; pub type u_int64_t = :: std :: os :: raw :: c_ulong ; pub type register_t = :: std :: os :: raw :: c_long ; pub type __sig_atomic_t = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __sigset_t { pub __val : [ :: std :: os :: raw :: c_ulong ; 16usize ] , } # [ test ] fn bindgen_test_layout___sigset_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __sigset_t > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( __sigset_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __sigset_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __sigset_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __sigset_t ) ) . __val as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __sigset_t ) , "::" , stringify ! ( __val ) ) ) ; } pub type sigset_t = __sigset_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct timespec { pub tv_sec : __time_t , pub tv_nsec : __syscall_slong_t , } # [ test ] fn bindgen_test_layout_timespec ( ) { assert_eq ! ( :: std :: mem :: size_of :: < timespec > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( timespec ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < timespec > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( timespec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const timespec ) ) . tv_sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( timespec ) , "::" , stringify ! ( tv_sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const timespec ) ) . tv_nsec as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( timespec ) , "::" , stringify ! ( tv_nsec ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct timeval { pub tv_sec : __time_t , pub tv_usec : __suseconds_t , } # [ test ] fn bindgen_test_layout_timeval ( ) { assert_eq ! ( :: std :: mem :: size_of :: < timeval > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( timeval ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < timeval > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( timeval ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const timeval ) ) . tv_sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( timeval ) , "::" , stringify ! ( tv_sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const timeval ) ) . tv_usec as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( timeval ) , "::" , stringify ! ( tv_usec ) ) ) ; } pub type suseconds_t = __suseconds_t ; pub type __fd_mask = :: std :: os :: raw :: c_long ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct fd_set { pub __fds_bits : [ __fd_mask ; 16usize ] , } # [ test ] fn bindgen_test_layout_fd_set ( ) { assert_eq ! ( :: std :: mem :: size_of :: < fd_set > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( fd_set ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < fd_set > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( fd_set ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const fd_set ) ) . __fds_bits as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( fd_set ) , "::" , stringify ! ( __fds_bits ) ) ) ; } pub type fd_mask = __fd_mask ; extern "C" {
 pub fn select ( __nfds : :: std :: os :: raw :: c_int , __readfds : * mut fd_set , __writefds : * mut fd_set , __exceptfds : * mut fd_set , __timeout : * mut timeval , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pselect ( __nfds : :: std :: os :: raw :: c_int , __readfds : * mut fd_set , __writefds : * mut fd_set , __exceptfds : * mut fd_set , __timeout : * const timespec , __sigmask : * const __sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn gnu_dev_major ( __dev : :: std :: os :: raw :: c_ulonglong , ) -> :: std :: os :: raw :: c_uint ; 
} extern "C" {
 pub fn gnu_dev_minor ( __dev : :: std :: os :: raw :: c_ulonglong , ) -> :: std :: os :: raw :: c_uint ; 
} extern "C" {
 pub fn gnu_dev_makedev ( __major : :: std :: os :: raw :: c_uint , __minor : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_ulonglong ; 
} pub type blksize_t = __blksize_t ; pub type blkcnt_t = __blkcnt_t ; pub type fsblkcnt_t = __fsblkcnt_t ; pub type fsfilcnt_t = __fsfilcnt_t ; pub type pthread_t = :: std :: os :: raw :: c_ulong ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_attr_t { pub __size : [ :: std :: os :: raw :: c_char ; 56usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : [ u64 ; 7usize ] , } # [ test ] fn bindgen_test_layout_pthread_attr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_attr_t > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( pthread_attr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_attr_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_attr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_attr_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_attr_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_attr_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_attr_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __pthread_internal_list { pub __prev : * mut __pthread_internal_list , pub __next : * mut __pthread_internal_list , } # [ test ] fn bindgen_test_layout___pthread_internal_list ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __pthread_internal_list > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( __pthread_internal_list ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __pthread_internal_list > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __pthread_internal_list ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_internal_list ) ) . __prev as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_internal_list ) , "::" , stringify ! ( __prev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_internal_list ) ) . __next as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_internal_list ) , "::" , stringify ! ( __next ) ) ) ; } pub type __pthread_list_t = __pthread_internal_list ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_mutex_t { pub __data : pthread_mutex_t___pthread_mutex_s , pub __size : [ :: std :: os :: raw :: c_char ; 40usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : [ u64 ; 5usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct pthread_mutex_t___pthread_mutex_s { pub __lock : :: std :: os :: raw :: c_int , pub __count : :: std :: os :: raw :: c_uint , pub __owner : :: std :: os :: raw :: c_int , pub __nusers : :: std :: os :: raw :: c_uint , pub __kind : :: std :: os :: raw :: c_int , pub __spins : :: std :: os :: raw :: c_short , pub __elision : :: std :: os :: raw :: c_short , pub __list : __pthread_list_t , } # [ test ] fn bindgen_test_layout_pthread_mutex_t___pthread_mutex_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_mutex_t___pthread_mutex_s > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_mutex_t___pthread_mutex_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __lock as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __lock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __count as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __count ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __owner as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __owner ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __nusers as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __nusers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __kind as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __kind ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __spins as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __spins ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __elision as * const _ as usize } , 22usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __elision ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t___pthread_mutex_s ) ) . __list as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t___pthread_mutex_s ) , "::" , stringify ! ( __list ) ) ) ; } # [ test ] fn bindgen_test_layout_pthread_mutex_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_mutex_t > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( pthread_mutex_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_mutex_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_mutex_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t ) ) . __data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t ) , "::" , stringify ! ( __data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutex_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutex_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_mutexattr_t { pub __size : [ :: std :: os :: raw :: c_char ; 4usize ] , pub __align : :: std :: os :: raw :: c_int , _bindgen_union_align : u32 , } # [ test ] fn bindgen_test_layout_pthread_mutexattr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_mutexattr_t > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( pthread_mutexattr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_mutexattr_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( pthread_mutexattr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutexattr_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutexattr_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_mutexattr_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_mutexattr_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_cond_t { pub __data : pthread_cond_t__bindgen_ty_1 , pub __size : [ :: std :: os :: raw :: c_char ; 48usize ] , pub __align : :: std :: os :: raw :: c_longlong , _bindgen_union_align : [ u64 ; 6usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct pthread_cond_t__bindgen_ty_1 { pub __lock : :: std :: os :: raw :: c_int , pub __futex : :: std :: os :: raw :: c_uint , pub __total_seq : :: std :: os :: raw :: c_ulonglong , pub __wakeup_seq : :: std :: os :: raw :: c_ulonglong , pub __woken_seq : :: std :: os :: raw :: c_ulonglong , pub __mutex : * mut :: std :: os :: raw :: c_void , pub __nwaiters : :: std :: os :: raw :: c_uint , pub __broadcast_seq : :: std :: os :: raw :: c_uint , } # [ test ] fn bindgen_test_layout_pthread_cond_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_cond_t__bindgen_ty_1 > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_cond_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __lock as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __lock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __futex as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __futex ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __total_seq as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __total_seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __wakeup_seq as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __wakeup_seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __woken_seq as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __woken_seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __mutex as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __mutex ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __nwaiters as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __nwaiters ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t__bindgen_ty_1 ) ) . __broadcast_seq as * const _ as usize } , 44usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t__bindgen_ty_1 ) , "::" , stringify ! ( __broadcast_seq ) ) ) ; } # [ test ] fn bindgen_test_layout_pthread_cond_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_cond_t > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( pthread_cond_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_cond_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_cond_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t ) ) . __data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::" , stringify ! ( __data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_cond_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_cond_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_condattr_t { pub __size : [ :: std :: os :: raw :: c_char ; 4usize ] , pub __align : :: std :: os :: raw :: c_int , _bindgen_union_align : u32 , } # [ test ] fn bindgen_test_layout_pthread_condattr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_condattr_t > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( pthread_condattr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_condattr_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( pthread_condattr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_condattr_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_condattr_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_condattr_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_condattr_t ) , "::" , stringify ! ( __align ) ) ) ; } pub type pthread_key_t = :: std :: os :: raw :: c_uint ; pub type pthread_once_t = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_rwlock_t { pub __data : pthread_rwlock_t__bindgen_ty_1 , pub __size : [ :: std :: os :: raw :: c_char ; 56usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : [ u64 ; 7usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct pthread_rwlock_t__bindgen_ty_1 { pub __lock : :: std :: os :: raw :: c_int , pub __nr_readers : :: std :: os :: raw :: c_uint , pub __readers_wakeup : :: std :: os :: raw :: c_uint , pub __writer_wakeup : :: std :: os :: raw :: c_uint , pub __nr_readers_queued : :: std :: os :: raw :: c_uint , pub __nr_writers_queued : :: std :: os :: raw :: c_uint , pub __writer : :: std :: os :: raw :: c_int , pub __shared : :: std :: os :: raw :: c_int , pub __rwelision : :: std :: os :: raw :: c_schar , pub __pad1 : [ :: std :: os :: raw :: c_uchar ; 7usize ] , pub __pad2 : :: std :: os :: raw :: c_ulong , pub __flags : :: std :: os :: raw :: c_uint , } # [ test ] fn bindgen_test_layout_pthread_rwlock_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_rwlock_t__bindgen_ty_1 > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_rwlock_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __lock as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __lock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __nr_readers as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __nr_readers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __readers_wakeup as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __readers_wakeup ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __writer_wakeup as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __writer_wakeup ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __nr_readers_queued as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __nr_readers_queued ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __nr_writers_queued as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __nr_writers_queued ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __writer as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __writer ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __shared as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __shared ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __rwelision as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __rwelision ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __pad1 as * const _ as usize } , 33usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __pad1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __pad2 as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __pad2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t__bindgen_ty_1 ) ) . __flags as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t__bindgen_ty_1 ) , "::" , stringify ! ( __flags ) ) ) ; } # [ test ] fn bindgen_test_layout_pthread_rwlock_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_rwlock_t > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( pthread_rwlock_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_rwlock_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_rwlock_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t ) ) . __data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t ) , "::" , stringify ! ( __data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlock_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlock_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_rwlockattr_t { pub __size : [ :: std :: os :: raw :: c_char ; 8usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_pthread_rwlockattr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_rwlockattr_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( pthread_rwlockattr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_rwlockattr_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_rwlockattr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlockattr_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlockattr_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_rwlockattr_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_rwlockattr_t ) , "::" , stringify ! ( __align ) ) ) ; } pub type pthread_spinlock_t = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_barrier_t { pub __size : [ :: std :: os :: raw :: c_char ; 32usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_pthread_barrier_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_barrier_t > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( pthread_barrier_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_barrier_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( pthread_barrier_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_barrier_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_barrier_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_barrier_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_barrier_t ) , "::" , stringify ! ( __align ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union pthread_barrierattr_t { pub __size : [ :: std :: os :: raw :: c_char ; 4usize ] , pub __align : :: std :: os :: raw :: c_int , _bindgen_union_align : u32 , } # [ test ] fn bindgen_test_layout_pthread_barrierattr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < pthread_barrierattr_t > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( pthread_barrierattr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < pthread_barrierattr_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( pthread_barrierattr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_barrierattr_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_barrierattr_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const pthread_barrierattr_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( pthread_barrierattr_t ) , "::" , stringify ! ( __align ) ) ) ; } extern "C" {
 pub fn random ( ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn srandom ( __seed : :: std :: os :: raw :: c_uint , ) ; 
} extern "C" {
 pub fn initstate ( __seed : :: std :: os :: raw :: c_uint , __statebuf : * mut :: std :: os :: raw :: c_char , __statelen : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn setstate ( __statebuf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct random_data { pub fptr : * mut i32 , pub rptr : * mut i32 , pub state : * mut i32 , pub rand_type : :: std :: os :: raw :: c_int , pub rand_deg : :: std :: os :: raw :: c_int , pub rand_sep : :: std :: os :: raw :: c_int , pub end_ptr : * mut i32 , } # [ test ] fn bindgen_test_layout_random_data ( ) { assert_eq ! ( :: std :: mem :: size_of :: < random_data > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( random_data ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < random_data > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( random_data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . fptr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( fptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . rptr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( rptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . state as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . rand_type as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( rand_type ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . rand_deg as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( rand_deg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . rand_sep as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( rand_sep ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const random_data ) ) . end_ptr as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( random_data ) , "::" , stringify ! ( end_ptr ) ) ) ; } extern "C" {
 pub fn random_r ( __buf : * mut random_data , __result : * mut i32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn srandom_r ( __seed : :: std :: os :: raw :: c_uint , __buf : * mut random_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn initstate_r ( __seed : :: std :: os :: raw :: c_uint , __statebuf : * mut :: std :: os :: raw :: c_char , __statelen : usize , __buf : * mut random_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setstate_r ( __statebuf : * mut :: std :: os :: raw :: c_char , __buf : * mut random_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rand ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn srand ( __seed : :: std :: os :: raw :: c_uint , ) ; 
} extern "C" {
 pub fn rand_r ( __seed : * mut :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn drand48 ( ) -> f64 ; 
} extern "C" {
 pub fn erand48 ( __xsubi : * mut :: std :: os :: raw :: c_ushort , ) -> f64 ; 
} extern "C" {
 pub fn lrand48 ( ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn nrand48 ( __xsubi : * mut :: std :: os :: raw :: c_ushort , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn mrand48 ( ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn jrand48 ( __xsubi : * mut :: std :: os :: raw :: c_ushort , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn srand48 ( __seedval : :: std :: os :: raw :: c_long , ) ; 
} extern "C" {
 pub fn seed48 ( __seed16v : * mut :: std :: os :: raw :: c_ushort , ) -> * mut :: std :: os :: raw :: c_ushort ; 
} extern "C" {
 pub fn lcong48 ( __param : * mut :: std :: os :: raw :: c_ushort , ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct drand48_data { pub __x : [ :: std :: os :: raw :: c_ushort ; 3usize ] , pub __old_x : [ :: std :: os :: raw :: c_ushort ; 3usize ] , pub __c : :: std :: os :: raw :: c_ushort , pub __init : :: std :: os :: raw :: c_ushort , pub __a : :: std :: os :: raw :: c_ulonglong , } # [ test ] fn bindgen_test_layout_drand48_data ( ) { assert_eq ! ( :: std :: mem :: size_of :: < drand48_data > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( drand48_data ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < drand48_data > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( drand48_data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const drand48_data ) ) . __x as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( drand48_data ) , "::" , stringify ! ( __x ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const drand48_data ) ) . __old_x as * const _ as usize } , 6usize , concat ! ( "Alignment of field: " , stringify ! ( drand48_data ) , "::" , stringify ! ( __old_x ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const drand48_data ) ) . __c as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( drand48_data ) , "::" , stringify ! ( __c ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const drand48_data ) ) . __init as * const _ as usize } , 14usize , concat ! ( "Alignment of field: " , stringify ! ( drand48_data ) , "::" , stringify ! ( __init ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const drand48_data ) ) . __a as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( drand48_data ) , "::" , stringify ! ( __a ) ) ) ; } extern "C" {
 pub fn drand48_r ( __buffer : * mut drand48_data , __result : * mut f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn erand48_r ( __xsubi : * mut :: std :: os :: raw :: c_ushort , __buffer : * mut drand48_data , __result : * mut f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn lrand48_r ( __buffer : * mut drand48_data , __result : * mut :: std :: os :: raw :: c_long , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn nrand48_r ( __xsubi : * mut :: std :: os :: raw :: c_ushort , __buffer : * mut drand48_data , __result : * mut :: std :: os :: raw :: c_long , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mrand48_r ( __buffer : * mut drand48_data , __result : * mut :: std :: os :: raw :: c_long , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jrand48_r ( __xsubi : * mut :: std :: os :: raw :: c_ushort , __buffer : * mut drand48_data , __result : * mut :: std :: os :: raw :: c_long , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn srand48_r ( __seedval : :: std :: os :: raw :: c_long , __buffer : * mut drand48_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn seed48_r ( __seed16v : * mut :: std :: os :: raw :: c_ushort , __buffer : * mut drand48_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn lcong48_r ( __param : * mut :: std :: os :: raw :: c_ushort , __buffer : * mut drand48_data , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn malloc ( __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn calloc ( __nmemb : usize , __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn realloc ( __ptr : * mut :: std :: os :: raw :: c_void , __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn free ( __ptr : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn cfree ( __ptr : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn alloca ( __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn valloc ( __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn posix_memalign ( __memptr : * mut * mut :: std :: os :: raw :: c_void , __alignment : usize , __size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn aligned_alloc ( __alignment : usize , __size : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn abort ( ) ; 
} extern "C" {
 pub fn atexit ( __func : :: std :: option :: Option < unsafe extern "C" fn ( ) > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn at_quick_exit ( __func : :: std :: option :: Option < unsafe extern "C" fn ( ) > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn on_exit ( __func : :: std :: option :: Option < unsafe extern "C" fn ( __status : :: std :: os :: raw :: c_int , __arg : * mut :: std :: os :: raw :: c_void ) > , __arg : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn exit ( __status : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn quick_exit ( __status : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn _Exit ( __status : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn getenv ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn putenv ( __string : * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setenv ( __name : * const :: std :: os :: raw :: c_char , __value : * const :: std :: os :: raw :: c_char , __replace : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn unsetenv ( __name : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clearenv ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mktemp ( __template : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn mkstemp ( __template : * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mkstemps ( __template : * mut :: std :: os :: raw :: c_char , __suffixlen : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mkdtemp ( __template : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn system ( __command : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn realpath ( __name : * const :: std :: os :: raw :: c_char , __resolved : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} pub type __compar_fn_t = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * const :: std :: os :: raw :: c_void , arg2 : * const :: std :: os :: raw :: c_void ) -> :: std :: os :: raw :: c_int > ; extern "C" {
 pub fn bsearch ( __key : * const :: std :: os :: raw :: c_void , __base : * const :: std :: os :: raw :: c_void , __nmemb : usize , __size : usize , __compar : __compar_fn_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn qsort ( __base : * mut :: std :: os :: raw :: c_void , __nmemb : usize , __size : usize , __compar : __compar_fn_t , ) ; 
} extern "C" {
 pub fn abs ( __x : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn labs ( __x : :: std :: os :: raw :: c_long , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llabs ( __x : :: std :: os :: raw :: c_longlong , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn div ( __numer : :: std :: os :: raw :: c_int , __denom : :: std :: os :: raw :: c_int , ) -> div_t ; 
} extern "C" {
 pub fn ldiv ( __numer : :: std :: os :: raw :: c_long , __denom : :: std :: os :: raw :: c_long , ) -> ldiv_t ; 
} extern "C" {
 pub fn lldiv ( __numer : :: std :: os :: raw :: c_longlong , __denom : :: std :: os :: raw :: c_longlong , ) -> lldiv_t ; 
} extern "C" {
 pub fn ecvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn fcvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn gcvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn qecvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn qfcvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn qgcvt ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ecvt_r ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fcvt_r ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn qecvt_r ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn qfcvt_r ( __value : f64 , __ndigit : :: std :: os :: raw :: c_int , __decpt : * mut :: std :: os :: raw :: c_int , __sign : * mut :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mblen ( __s : * const :: std :: os :: raw :: c_char , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mbtowc ( __pwc : * mut wchar_t , __s : * const :: std :: os :: raw :: c_char , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn wctomb ( __s : * mut :: std :: os :: raw :: c_char , __wchar : wchar_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mbstowcs ( __pwcs : * mut wchar_t , __s : * const :: std :: os :: raw :: c_char , __n : usize , ) -> usize ; 
} extern "C" {
 pub fn wcstombs ( __s : * mut :: std :: os :: raw :: c_char , __pwcs : * const wchar_t , __n : usize , ) -> usize ; 
} extern "C" {
 pub fn rpmatch ( __response : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getsubopt ( __optionp : * mut * mut :: std :: os :: raw :: c_char , __tokens : * const * const :: std :: os :: raw :: c_char , __valuep : * mut * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getloadavg ( __loadavg : * mut f64 , __nelem : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub type va_list = __builtin_va_list ; pub type __gnuc_va_list = __builtin_va_list ; extern "C" {
 pub fn __assert_fail ( __assertion : * const :: std :: os :: raw :: c_char , __file : * const :: std :: os :: raw :: c_char , __line : :: std :: os :: raw :: c_uint , __function : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn __assert_perror_fail ( __errnum : :: std :: os :: raw :: c_int , __file : * const :: std :: os :: raw :: c_char , __line : :: std :: os :: raw :: c_uint , __function : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn __assert ( __assertion : * const :: std :: os :: raw :: c_char , __file : * const :: std :: os :: raw :: c_char , __line : :: std :: os :: raw :: c_int , ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct max_align_t { pub __clang_max_align_nonce1 : :: std :: os :: raw :: c_longlong , pub __bindgen_padding_0 : u64 , pub __clang_max_align_nonce2 : f64 , } # [ test ] fn bindgen_test_layout_max_align_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < max_align_t > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( max_align_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const max_align_t ) ) . __clang_max_align_nonce1 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( max_align_t ) , "::" , stringify ! ( __clang_max_align_nonce1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const max_align_t ) ) . __clang_max_align_nonce2 as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( max_align_t ) , "::" , stringify ! ( __clang_max_align_nonce2 ) ) ) ; } pub type int_least8_t = :: std :: os :: raw :: c_schar ; pub type int_least16_t = :: std :: os :: raw :: c_short ; pub type int_least32_t = :: std :: os :: raw :: c_int ; pub type int_least64_t = :: std :: os :: raw :: c_long ; pub type uint_least8_t = :: std :: os :: raw :: c_uchar ; pub type uint_least16_t = :: std :: os :: raw :: c_ushort ; pub type uint_least32_t = :: std :: os :: raw :: c_uint ; pub type uint_least64_t = :: std :: os :: raw :: c_ulong ; pub type int_fast8_t = :: std :: os :: raw :: c_schar ; pub type int_fast16_t = :: std :: os :: raw :: c_long ; pub type int_fast32_t = :: std :: os :: raw :: c_long ; pub type int_fast64_t = :: std :: os :: raw :: c_long ; pub type uint_fast8_t = :: std :: os :: raw :: c_uchar ; pub type uint_fast16_t = :: std :: os :: raw :: c_ulong ; pub type uint_fast32_t = :: std :: os :: raw :: c_ulong ; pub type uint_fast64_t = :: std :: os :: raw :: c_ulong ; pub type intmax_t = :: std :: os :: raw :: c_long ; pub type uintmax_t = :: std :: os :: raw :: c_ulong ; pub type float_t = f32 ; pub type double_t = f64 ; extern "C" {
 pub fn acos ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __acos ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn asin ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __asin ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atan ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atan ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atan2 ( __y : f64 , __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atan2 ( __y : f64 , __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn cos ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __cos ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sin ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sin ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tan ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tan ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn cosh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __cosh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sinh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sinh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tanh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tanh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn acosh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __acosh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn asinh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __asinh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atanh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atanh ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn exp ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __exp ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn frexp ( __x : f64 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __frexp ( __x : f64 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn ldexp ( __x : f64 , __exponent : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __ldexp ( __x : f64 , __exponent : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn log ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log10 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log10 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn modf ( __x : f64 , __iptr : * mut f64 , ) -> f64 ; 
} extern "C" {
 pub fn __modf ( __x : f64 , __iptr : * mut f64 , ) -> f64 ; 
} extern "C" {
 pub fn expm1 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __expm1 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log1p ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log1p ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn logb ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __logb ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn exp2 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __exp2 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log2 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log2 ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn pow ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __pow ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sqrt ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sqrt ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn hypot ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __hypot ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn cbrt ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __cbrt ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn ceil ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __ceil ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fabs ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fabs ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn floor ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __floor ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fmod ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmod ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __isinf ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __finite ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isinf ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn finite ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn drem ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __drem ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn significand ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __significand ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn copysign ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __copysign ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nan ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn __nan ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn __isnan ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isnan ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn j0 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __j0 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn j1 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __j1 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn jn ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __jn ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn y0 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __y0 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn y1 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __y1 ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn yn ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __yn ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn erf ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __erf ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn erfc ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __erfc ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn lgamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __lgamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tgamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tgamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn gamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __gamma ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn lgamma_r ( arg1 : f64 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __lgamma_r ( arg1 : f64 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn rint ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __rint ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nextafter ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nextafter ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nexttoward ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nexttoward ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn remainder ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __remainder ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn scalbn ( __x : f64 , __n : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __scalbn ( __x : f64 , __n : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn ilogb ( __x : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __ilogb ( __x : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn scalbln ( __x : f64 , __n : :: std :: os :: raw :: c_long , ) -> f64 ; 
} extern "C" {
 pub fn __scalbln ( __x : f64 , __n : :: std :: os :: raw :: c_long , ) -> f64 ; 
} extern "C" {
 pub fn nearbyint ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nearbyint ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn round ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __round ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn trunc ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __trunc ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn remquo ( __x : f64 , __y : f64 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __remquo ( __x : f64 , __y : f64 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn lrint ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lrint ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llrint ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llrint ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn lround ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lround ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llround ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llround ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn fdim ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fdim ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fmax ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmax ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fmin ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmin ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fpclassify ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __signbit ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fma ( __x : f64 , __y : f64 , __z : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fma ( __x : f64 , __y : f64 , __z : f64 , ) -> f64 ; 
} extern "C" {
 pub fn scalb ( __x : f64 , __n : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __scalb ( __x : f64 , __n : f64 , ) -> f64 ; 
} extern "C" {
 pub fn acosf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __acosf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn asinf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __asinf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn atanf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __atanf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn atan2f ( __y : f32 , __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __atan2f ( __y : f32 , __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn cosf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __cosf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn sinf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __sinf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn tanf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __tanf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn coshf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __coshf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn sinhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __sinhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn tanhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __tanhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn acoshf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __acoshf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn asinhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __asinhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn atanhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __atanhf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn expf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __expf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn frexpf ( __x : f32 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn __frexpf ( __x : f32 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn ldexpf ( __x : f32 , __exponent : :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn __ldexpf ( __x : f32 , __exponent : :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn logf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __logf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn log10f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __log10f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn modff ( __x : f32 , __iptr : * mut f32 , ) -> f32 ; 
} extern "C" {
 pub fn __modff ( __x : f32 , __iptr : * mut f32 , ) -> f32 ; 
} extern "C" {
 pub fn expm1f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __expm1f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn log1pf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __log1pf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn logbf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __logbf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn exp2f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __exp2f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn log2f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __log2f ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn powf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __powf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn sqrtf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __sqrtf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn hypotf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __hypotf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn cbrtf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __cbrtf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn ceilf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __ceilf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn fabsf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fabsf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn floorf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __floorf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn fmodf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fmodf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __isinff ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __finitef ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isinff ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn finitef ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn dremf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __dremf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn significandf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __significandf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn copysignf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __copysignf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn nanf ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f32 ; 
} extern "C" {
 pub fn __nanf ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f32 ; 
} extern "C" {
 pub fn __isnanf ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isnanf ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn j0f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __j0f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn j1f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __j1f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn jnf ( arg1 : :: std :: os :: raw :: c_int , arg2 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __jnf ( arg1 : :: std :: os :: raw :: c_int , arg2 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn y0f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __y0f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn y1f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __y1f ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn ynf ( arg1 : :: std :: os :: raw :: c_int , arg2 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __ynf ( arg1 : :: std :: os :: raw :: c_int , arg2 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn erff ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __erff ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn erfcf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __erfcf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn lgammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __lgammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn tgammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __tgammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn gammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __gammaf ( arg1 : f32 , ) -> f32 ; 
} extern "C" {
 pub fn lgammaf_r ( arg1 : f32 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn __lgammaf_r ( arg1 : f32 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn rintf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __rintf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn nextafterf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __nextafterf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn nexttowardf ( __x : f32 , __y : f64 , ) -> f32 ; 
} extern "C" {
 pub fn __nexttowardf ( __x : f32 , __y : f64 , ) -> f32 ; 
} extern "C" {
 pub fn remainderf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __remainderf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn scalbnf ( __x : f32 , __n : :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn __scalbnf ( __x : f32 , __n : :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn ilogbf ( __x : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __ilogbf ( __x : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn scalblnf ( __x : f32 , __n : :: std :: os :: raw :: c_long , ) -> f32 ; 
} extern "C" {
 pub fn __scalblnf ( __x : f32 , __n : :: std :: os :: raw :: c_long , ) -> f32 ; 
} extern "C" {
 pub fn nearbyintf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __nearbyintf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn roundf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __roundf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn truncf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __truncf ( __x : f32 , ) -> f32 ; 
} extern "C" {
 pub fn remquof ( __x : f32 , __y : f32 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn __remquof ( __x : f32 , __y : f32 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f32 ; 
} extern "C" {
 pub fn lrintf ( __x : f32 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lrintf ( __x : f32 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llrintf ( __x : f32 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llrintf ( __x : f32 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn lroundf ( __x : f32 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lroundf ( __x : f32 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llroundf ( __x : f32 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llroundf ( __x : f32 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn fdimf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fdimf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn fmaxf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fmaxf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn fminf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fminf ( __x : f32 , __y : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fpclassifyf ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __signbitf ( __value : f32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fmaf ( __x : f32 , __y : f32 , __z : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __fmaf ( __x : f32 , __y : f32 , __z : f32 , ) -> f32 ; 
} extern "C" {
 pub fn scalbf ( __x : f32 , __n : f32 , ) -> f32 ; 
} extern "C" {
 pub fn __scalbf ( __x : f32 , __n : f32 , ) -> f32 ; 
} extern "C" {
 pub fn acosl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __acosl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn asinl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __asinl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atanl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atanl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atan2l ( __y : f64 , __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atan2l ( __y : f64 , __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn cosl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __cosl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sinl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sinl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tanl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tanl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn coshl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __coshl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sinhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sinhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tanhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tanhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn acoshl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __acoshl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn asinhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __asinhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn atanhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __atanhl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn expl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __expl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn frexpl ( __x : f64 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __frexpl ( __x : f64 , __exponent : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn ldexpl ( __x : f64 , __exponent : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __ldexpl ( __x : f64 , __exponent : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn logl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __logl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log10l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log10l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn modfl ( __x : f64 , __iptr : * mut f64 , ) -> f64 ; 
} extern "C" {
 pub fn __modfl ( __x : f64 , __iptr : * mut f64 , ) -> f64 ; 
} extern "C" {
 pub fn expm1l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __expm1l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log1pl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log1pl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn logbl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __logbl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn exp2l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __exp2l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn log2l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __log2l ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn powl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __powl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn sqrtl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __sqrtl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn hypotl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __hypotl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn cbrtl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __cbrtl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn ceill ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __ceill ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fabsl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fabsl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn floorl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __floorl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fmodl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmodl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __isinfl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __finitel ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isinfl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn finitel ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn dreml ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __dreml ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn significandl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __significandl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn copysignl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __copysignl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nanl ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn __nanl ( __tagb : * const :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn __isnanl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isnanl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn j0l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __j0l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn j1l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __j1l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn jnl ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __jnl ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn y0l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __y0l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn y1l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __y1l ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn ynl ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __ynl ( arg1 : :: std :: os :: raw :: c_int , arg2 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn erfl ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __erfl ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn erfcl ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __erfcl ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn lgammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __lgammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn tgammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __tgammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn gammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __gammal ( arg1 : f64 , ) -> f64 ; 
} extern "C" {
 pub fn lgammal_r ( arg1 : f64 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __lgammal_r ( arg1 : f64 , __signgamp : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn rintl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __rintl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nextafterl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nextafterl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn nexttowardl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nexttowardl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn remainderl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __remainderl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn scalbnl ( __x : f64 , __n : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __scalbnl ( __x : f64 , __n : :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn ilogbl ( __x : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __ilogbl ( __x : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn scalblnl ( __x : f64 , __n : :: std :: os :: raw :: c_long , ) -> f64 ; 
} extern "C" {
 pub fn __scalblnl ( __x : f64 , __n : :: std :: os :: raw :: c_long , ) -> f64 ; 
} extern "C" {
 pub fn nearbyintl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __nearbyintl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn roundl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __roundl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn truncl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __truncl ( __x : f64 , ) -> f64 ; 
} extern "C" {
 pub fn remquol ( __x : f64 , __y : f64 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn __remquol ( __x : f64 , __y : f64 , __quo : * mut :: std :: os :: raw :: c_int , ) -> f64 ; 
} extern "C" {
 pub fn lrintl ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lrintl ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llrintl ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llrintl ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn lroundl ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn __lroundl ( __x : f64 , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn llroundl ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn __llroundl ( __x : f64 , ) -> :: std :: os :: raw :: c_longlong ; 
} extern "C" {
 pub fn fdiml ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fdiml ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fmaxl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmaxl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn fminl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fminl ( __x : f64 , __y : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fpclassifyl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __signbitl ( __value : f64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fmal ( __x : f64 , __y : f64 , __z : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __fmal ( __x : f64 , __y : f64 , __z : f64 , ) -> f64 ; 
} extern "C" {
 pub fn scalbl ( __x : f64 , __n : f64 , ) -> f64 ; 
} extern "C" {
 pub fn __scalbl ( __x : f64 , __n : f64 , ) -> f64 ; 
} extern "C" {
 # [ link_name = "\u{1}signgam" ] 
 pub static mut  signgam  :  :: std :: os :: raw :: c_int ;
} pub const FP_NAN : _bindgen_ty_1 = 0 ; pub const FP_INFINITE : _bindgen_ty_1 = 1 ; pub const FP_ZERO : _bindgen_ty_1 = 2 ; pub const FP_SUBNORMAL : _bindgen_ty_1 = 3 ; pub const FP_NORMAL : _bindgen_ty_1 = 4 ; pub type _bindgen_ty_1 = :: std :: os :: raw :: c_uint ; pub const _LIB_VERSION_TYPE__IEEE_ : _LIB_VERSION_TYPE = -1 ; pub const _LIB_VERSION_TYPE__SVID_ : _LIB_VERSION_TYPE = 0 ; pub const _LIB_VERSION_TYPE__XOPEN_ : _LIB_VERSION_TYPE = 1 ; pub const _LIB_VERSION_TYPE__POSIX_ : _LIB_VERSION_TYPE = 2 ; pub const _LIB_VERSION_TYPE__ISOC_ : _LIB_VERSION_TYPE = 3 ; pub type _LIB_VERSION_TYPE = :: std :: os :: raw :: c_int ; extern "C" {
 # [ link_name = "\u{1}_LIB_VERSION" ] 
 pub static mut  _LIB_VERSION  :  _LIB_VERSION_TYPE ;
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct exception { pub type_ : :: std :: os :: raw :: c_int , pub name : * mut :: std :: os :: raw :: c_char , pub arg1 : f64 , pub arg2 : f64 , pub retval : f64 , } # [ test ] fn bindgen_test_layout_exception ( ) { assert_eq ! ( :: std :: mem :: size_of :: < exception > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( exception ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < exception > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( exception ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const exception ) ) . type_ as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( exception ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const exception ) ) . name as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( exception ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const exception ) ) . arg1 as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( exception ) , "::" , stringify ! ( arg1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const exception ) ) . arg2 as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( exception ) , "::" , stringify ! ( arg2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const exception ) ) . retval as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( exception ) , "::" , stringify ! ( retval ) ) ) ; } extern "C" {
 pub fn matherr ( __exc : * mut exception , ) -> :: std :: os :: raw :: c_int ; 
} pub type __gwchar_t = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct imaxdiv_t { pub quot : :: std :: os :: raw :: c_long , pub rem : :: std :: os :: raw :: c_long , } # [ test ] fn bindgen_test_layout_imaxdiv_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < imaxdiv_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( imaxdiv_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < imaxdiv_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( imaxdiv_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const imaxdiv_t ) ) . quot as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( imaxdiv_t ) , "::" , stringify ! ( quot ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const imaxdiv_t ) ) . rem as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( imaxdiv_t ) , "::" , stringify ! ( rem ) ) ) ; } extern "C" {
 pub fn imaxabs ( __n : intmax_t , ) -> intmax_t ; 
} extern "C" {
 pub fn imaxdiv ( __numer : intmax_t , __denom : intmax_t , ) -> imaxdiv_t ; 
} extern "C" {
 pub fn strtoimax ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> intmax_t ; 
} extern "C" {
 pub fn strtoumax ( __nptr : * const :: std :: os :: raw :: c_char , __endptr : * mut * mut :: std :: os :: raw :: c_char , __base : :: std :: os :: raw :: c_int , ) -> uintmax_t ; 
} extern "C" {
 pub fn wcstoimax ( __nptr : * const __gwchar_t , __endptr : * mut * mut __gwchar_t , __base : :: std :: os :: raw :: c_int , ) -> intmax_t ; 
} extern "C" {
 pub fn wcstoumax ( __nptr : * const __gwchar_t , __endptr : * mut * mut __gwchar_t , __base : :: std :: os :: raw :: c_int , ) -> uintmax_t ; 
} pub type bool_t = :: std :: os :: raw :: c_int ; pub type byte_t = :: std :: os :: raw :: c_uchar ; pub type uint_t = u64 ; pub type int_t = i64 ; pub const numerictype_t_T_INT8 : numerictype_t = 0 ; pub const numerictype_t_T_UINT8 : numerictype_t = 1 ; pub const numerictype_t_T_INT16 : numerictype_t = 2 ; pub const numerictype_t_T_UINT16 : numerictype_t = 3 ; pub const numerictype_t_T_INT32 : numerictype_t = 4 ; pub const numerictype_t_T_UINT32 : numerictype_t = 5 ; pub const numerictype_t_T_INT64 : numerictype_t = 6 ; pub const numerictype_t_T_UINT64 : numerictype_t = 7 ; pub const numerictype_t_T_FLOAT : numerictype_t = 8 ; pub const numerictype_t_T_DOUBLE : numerictype_t = 9 ; pub type numerictype_t = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uint2str ( dest : * mut :: std :: os :: raw :: c_char , len : usize , num : u64 , base : u32 , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn str2int ( str : * mut :: std :: os :: raw :: c_char , len : usize , res : * mut i64 , base : u32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isdigit_base ( c : :: std :: os :: raw :: c_char , base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn conv_to_double ( data : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> f64 ; 
} extern "C" {
 pub fn conv_to_int64 ( data : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> i64 ; 
} extern "C" {
 pub fn conv_to_uint64 ( data : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> u64 ; 
} extern "C" {
 pub fn conv_to_int32 ( data : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> i32 ; 
} extern "C" {
 pub fn conv_to_uint32 ( data : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> u32 ; 
} extern "C" {
 pub fn cmp_same_lt ( a : * mut :: std :: os :: raw :: c_void , b : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cmp_same_eq ( a : * mut :: std :: os :: raw :: c_void , b : * mut :: std :: os :: raw :: c_void , tag : numerictype_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cmp_lt ( a : * mut :: std :: os :: raw :: c_void , atag : numerictype_t , b : * mut :: std :: os :: raw :: c_void , btag : numerictype_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cmp_eq ( a : * mut :: std :: os :: raw :: c_void , atag : numerictype_t , b : * mut :: std :: os :: raw :: c_void , btag : numerictype_t , equalnans : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn u8_toucs ( dest : * mut u32 , sz : usize , src : * const :: std :: os :: raw :: c_char , srcsz : usize , ) -> usize ; 
} extern "C" {
 pub fn u8_toutf8 ( dest : * mut :: std :: os :: raw :: c_char , sz : usize , src : * const u32 , srcsz : usize , ) -> usize ; 
} extern "C" {
 pub fn u8_wc_toutf8 ( dest : * mut :: std :: os :: raw :: c_char , ch : u32 , ) -> usize ; 
} extern "C" {
 pub fn u8_offset ( str : * const :: std :: os :: raw :: c_char , charnum : usize , ) -> usize ; 
} extern "C" {
 pub fn u8_charnum ( str : * const :: std :: os :: raw :: c_char , offset : usize , ) -> usize ; 
} extern "C" {
 pub fn u8_nextchar ( s : * const :: std :: os :: raw :: c_char , i : * mut usize , ) -> u32 ; 
} extern "C" {
 pub fn u8_nextmemchar ( s : * const :: std :: os :: raw :: c_char , i : * mut usize , ) -> u32 ; 
} extern "C" {
 pub fn u8_inc ( s : * const :: std :: os :: raw :: c_char , i : * mut usize , ) ; 
} extern "C" {
 pub fn u8_dec ( s : * const :: std :: os :: raw :: c_char , i : * mut usize , ) ; 
} extern "C" {
 pub fn u8_seqlen ( s : * const :: std :: os :: raw :: c_char , ) -> usize ; 
} extern "C" {
 pub fn u8_charlen ( ch : u32 , ) -> usize ; 
} extern "C" {
 pub fn read_escape_control_char ( c : :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn u8_read_escape_sequence ( src : * const :: std :: os :: raw :: c_char , ssz : usize , dest : * mut u32 , ) -> usize ; 
} extern "C" {
 pub fn u8_escape_wchar ( buf : * mut :: std :: os :: raw :: c_char , sz : usize , ch : u32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn u8_escape ( buf : * mut :: std :: os :: raw :: c_char , sz : usize , src : * const :: std :: os :: raw :: c_char , pi : * mut usize , end : usize , escape_quotes : :: std :: os :: raw :: c_int , ascii : :: std :: os :: raw :: c_int , ) -> usize ; 
} extern "C" {
 pub fn octal_digit ( c : :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn hex_digit ( c : :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn u8_memchr ( s : * const :: std :: os :: raw :: c_char , ch : u32 , sz : usize , charn : * mut usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn u8_memrchr ( s : * const :: std :: os :: raw :: c_char , ch : u32 , sz : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn u8_strwidth ( s : * const :: std :: os :: raw :: c_char , ) -> usize ; 
} extern "C" {
 pub fn u8_vprintf ( fmt : * const :: std :: os :: raw :: c_char , ap : * mut __va_list_tag , ) -> usize ; 
} extern "C" {
 pub fn u8_printf ( fmt : * const :: std :: os :: raw :: c_char , ... ) -> usize ; 
} extern "C" {
 pub fn u8_isvalid ( str : * const :: std :: os :: raw :: c_char , length : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __errno_location ( ) -> * mut :: std :: os :: raw :: c_int ; 
} pub type FILE = _IO_FILE ; pub type __FILE = _IO_FILE ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct __mbstate_t { pub __count : :: std :: os :: raw :: c_int , pub __value : __mbstate_t__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union __mbstate_t__bindgen_ty_1 { pub __wch : :: std :: os :: raw :: c_uint , pub __wchb : [ :: std :: os :: raw :: c_char ; 4usize ] , _bindgen_union_align : u32 , } # [ test ] fn bindgen_test_layout___mbstate_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __mbstate_t__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( __mbstate_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __mbstate_t__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( __mbstate_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __mbstate_t__bindgen_ty_1 ) ) . __wch as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __mbstate_t__bindgen_ty_1 ) , "::" , stringify ! ( __wch ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __mbstate_t__bindgen_ty_1 ) ) . __wchb as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __mbstate_t__bindgen_ty_1 ) , "::" , stringify ! ( __wchb ) ) ) ; } # [ test ] fn bindgen_test_layout___mbstate_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __mbstate_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( __mbstate_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __mbstate_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( __mbstate_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __mbstate_t ) ) . __count as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __mbstate_t ) , "::" , stringify ! ( __count ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __mbstate_t ) ) . __value as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( __mbstate_t ) , "::" , stringify ! ( __value ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _G_fpos_t { pub __pos : __off_t , pub __state : __mbstate_t , } # [ test ] fn bindgen_test_layout__G_fpos_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _G_fpos_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _G_fpos_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _G_fpos_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _G_fpos_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _G_fpos_t ) ) . __pos as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _G_fpos_t ) , "::" , stringify ! ( __pos ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _G_fpos_t ) ) . __state as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _G_fpos_t ) , "::" , stringify ! ( __state ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _G_fpos64_t { pub __pos : __off64_t , pub __state : __mbstate_t , } # [ test ] fn bindgen_test_layout__G_fpos64_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _G_fpos64_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _G_fpos64_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _G_fpos64_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _G_fpos64_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _G_fpos64_t ) ) . __pos as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _G_fpos64_t ) , "::" , stringify ! ( __pos ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _G_fpos64_t ) ) . __state as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _G_fpos64_t ) , "::" , stringify ! ( __state ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_jump_t { _unused : [ u8 ; 0 ] } pub type _IO_lock_t = :: std :: os :: raw :: c_void ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_marker { pub _next : * mut _IO_marker , pub _sbuf : * mut _IO_FILE , pub _pos : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout__IO_marker ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _IO_marker > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( _IO_marker ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _IO_marker > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _IO_marker ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_marker ) ) . _next as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_marker ) , "::" , stringify ! ( _next ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_marker ) ) . _sbuf as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_marker ) , "::" , stringify ! ( _sbuf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_marker ) ) . _pos as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_marker ) , "::" , stringify ! ( _pos ) ) ) ; } pub const __codecvt_result___codecvt_ok : __codecvt_result = 0 ; pub const __codecvt_result___codecvt_partial : __codecvt_result = 1 ; pub const __codecvt_result___codecvt_error : __codecvt_result = 2 ; pub const __codecvt_result___codecvt_noconv : __codecvt_result = 3 ; pub type __codecvt_result = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_FILE { pub _flags : :: std :: os :: raw :: c_int , pub _IO_read_ptr : * mut :: std :: os :: raw :: c_char , pub _IO_read_end : * mut :: std :: os :: raw :: c_char , pub _IO_read_base : * mut :: std :: os :: raw :: c_char , pub _IO_write_base : * mut :: std :: os :: raw :: c_char , pub _IO_write_ptr : * mut :: std :: os :: raw :: c_char , pub _IO_write_end : * mut :: std :: os :: raw :: c_char , pub _IO_buf_base : * mut :: std :: os :: raw :: c_char , pub _IO_buf_end : * mut :: std :: os :: raw :: c_char , pub _IO_save_base : * mut :: std :: os :: raw :: c_char , pub _IO_backup_base : * mut :: std :: os :: raw :: c_char , pub _IO_save_end : * mut :: std :: os :: raw :: c_char , pub _markers : * mut _IO_marker , pub _chain : * mut _IO_FILE , pub _fileno : :: std :: os :: raw :: c_int , pub _flags2 : :: std :: os :: raw :: c_int , pub _old_offset : __off_t , pub _cur_column : :: std :: os :: raw :: c_ushort , pub _vtable_offset : :: std :: os :: raw :: c_schar , pub _shortbuf : [ :: std :: os :: raw :: c_char ; 1usize ] , pub _lock : * mut _IO_lock_t , pub _offset : __off64_t , pub __pad1 : * mut :: std :: os :: raw :: c_void , pub __pad2 : * mut :: std :: os :: raw :: c_void , pub __pad3 : * mut :: std :: os :: raw :: c_void , pub __pad4 : * mut :: std :: os :: raw :: c_void , pub __pad5 : usize , pub _mode : :: std :: os :: raw :: c_int , pub _unused2 : [ :: std :: os :: raw :: c_char ; 20usize ] , } # [ test ] fn bindgen_test_layout__IO_FILE ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _IO_FILE > ( ) , 216usize , concat ! ( "Size of: " , stringify ! ( _IO_FILE ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _IO_FILE > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _IO_FILE ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _flags as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_read_ptr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_read_ptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_read_end as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_read_end ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_read_base as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_read_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_write_base as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_write_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_write_ptr as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_write_ptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_write_end as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_write_end ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_buf_base as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_buf_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_buf_end as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_buf_end ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_save_base as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_save_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_backup_base as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_backup_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _IO_save_end as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _IO_save_end ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _markers as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _markers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _chain as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _chain ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _fileno as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _fileno ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _flags2 as * const _ as usize } , 116usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _flags2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _old_offset as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _old_offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _cur_column as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _cur_column ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _vtable_offset as * const _ as usize } , 130usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _vtable_offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _shortbuf as * const _ as usize } , 131usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _shortbuf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _lock as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _lock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _offset as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . __pad1 as * const _ as usize } , 152usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( __pad1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . __pad2 as * const _ as usize } , 160usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( __pad2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . __pad3 as * const _ as usize } , 168usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( __pad3 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . __pad4 as * const _ as usize } , 176usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( __pad4 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . __pad5 as * const _ as usize } , 184usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( __pad5 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _mode as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _mode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_FILE ) ) . _unused2 as * const _ as usize } , 196usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_FILE ) , "::" , stringify ! ( _unused2 ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_FILE_plus { _unused : [ u8 ; 0 ] } extern "C" {
 # [ link_name = "\u{1}_IO_2_1_stdin_" ] 
 pub static mut  _IO_2_1_stdin_  :  _IO_FILE_plus ;
} extern "C" {
 # [ link_name = "\u{1}_IO_2_1_stdout_" ] 
 pub static mut  _IO_2_1_stdout_  :  _IO_FILE_plus ;
} extern "C" {
 # [ link_name = "\u{1}_IO_2_1_stderr_" ] 
 pub static mut  _IO_2_1_stderr_  :  _IO_FILE_plus ;
} pub type __io_read_fn = :: std :: option :: Option < unsafe extern "C" fn ( __cookie : * mut :: std :: os :: raw :: c_void , __buf : * mut :: std :: os :: raw :: c_char , __nbytes : usize ) -> __ssize_t > ; pub type __io_write_fn = :: std :: option :: Option < unsafe extern "C" fn ( __cookie : * mut :: std :: os :: raw :: c_void , __buf : * const :: std :: os :: raw :: c_char , __n : usize ) -> __ssize_t > ; pub type __io_seek_fn = :: std :: option :: Option < unsafe extern "C" fn ( __cookie : * mut :: std :: os :: raw :: c_void , __pos : * mut __off64_t , __w : :: std :: os :: raw :: c_int ) -> :: std :: os :: raw :: c_int > ; pub type __io_close_fn = :: std :: option :: Option < unsafe extern "C" fn ( __cookie : * mut :: std :: os :: raw :: c_void ) -> :: std :: os :: raw :: c_int > ; pub type cookie_read_function_t = __io_read_fn ; pub type cookie_write_function_t = __io_write_fn ; pub type cookie_seek_function_t = __io_seek_fn ; pub type cookie_close_function_t = __io_close_fn ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_cookie_io_functions_t { pub read : __io_read_fn , pub write : __io_write_fn , pub seek : __io_seek_fn , pub close : __io_close_fn , } # [ test ] fn bindgen_test_layout__IO_cookie_io_functions_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _IO_cookie_io_functions_t > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( _IO_cookie_io_functions_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _IO_cookie_io_functions_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _IO_cookie_io_functions_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_cookie_io_functions_t ) ) . read as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_cookie_io_functions_t ) , "::" , stringify ! ( read ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_cookie_io_functions_t ) ) . write as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_cookie_io_functions_t ) , "::" , stringify ! ( write ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_cookie_io_functions_t ) ) . seek as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_cookie_io_functions_t ) , "::" , stringify ! ( seek ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _IO_cookie_io_functions_t ) ) . close as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _IO_cookie_io_functions_t ) , "::" , stringify ! ( close ) ) ) ; } pub type cookie_io_functions_t = _IO_cookie_io_functions_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _IO_cookie_file { _unused : [ u8 ; 0 ] } extern "C" {
 pub fn _IO_cookie_init ( __cfile : * mut _IO_cookie_file , __read_write : :: std :: os :: raw :: c_int , __cookie : * mut :: std :: os :: raw :: c_void , __fns : _IO_cookie_io_functions_t , ) ; 
} extern "C" {
 pub fn __underflow ( arg1 : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __uflow ( arg1 : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __overflow ( arg1 : * mut _IO_FILE , arg2 : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_getc ( __fp : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_putc ( __c : :: std :: os :: raw :: c_int , __fp : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_feof ( __fp : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_ferror ( __fp : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_peekc_locked ( __fp : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_flockfile ( arg1 : * mut _IO_FILE , ) ; 
} extern "C" {
 pub fn _IO_funlockfile ( arg1 : * mut _IO_FILE , ) ; 
} extern "C" {
 pub fn _IO_ftrylockfile ( arg1 : * mut _IO_FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_vfscanf ( arg1 : * mut _IO_FILE , arg2 : * const :: std :: os :: raw :: c_char , arg3 : * mut __va_list_tag , arg4 : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_vfprintf ( arg1 : * mut _IO_FILE , arg2 : * const :: std :: os :: raw :: c_char , arg3 : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _IO_padn ( arg1 : * mut _IO_FILE , arg2 : :: std :: os :: raw :: c_int , arg3 : __ssize_t , ) -> __ssize_t ; 
} extern "C" {
 pub fn _IO_sgetn ( arg1 : * mut _IO_FILE , arg2 : * mut :: std :: os :: raw :: c_void , arg3 : usize , ) -> usize ; 
} extern "C" {
 pub fn _IO_seekoff ( arg1 : * mut _IO_FILE , arg2 : __off64_t , arg3 : :: std :: os :: raw :: c_int , arg4 : :: std :: os :: raw :: c_int , ) -> __off64_t ; 
} extern "C" {
 pub fn _IO_seekpos ( arg1 : * mut _IO_FILE , arg2 : __off64_t , arg3 : :: std :: os :: raw :: c_int , ) -> __off64_t ; 
} extern "C" {
 pub fn _IO_free_backup_area ( arg1 : * mut _IO_FILE , ) ; 
} pub type fpos_t = _G_fpos_t ; extern "C" {
 # [ link_name = "\u{1}stdin" ] 
 pub static mut  stdin  :  * mut _IO_FILE ;
} extern "C" {
 # [ link_name = "\u{1}stdout" ] 
 pub static mut  stdout  :  * mut _IO_FILE ;
} extern "C" {
 # [ link_name = "\u{1}stderr" ] 
 pub static mut  stderr  :  * mut _IO_FILE ;
} extern "C" {
 pub fn remove ( __filename : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rename ( __old : * const :: std :: os :: raw :: c_char , __new : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn renameat ( __oldfd : :: std :: os :: raw :: c_int , __old : * const :: std :: os :: raw :: c_char , __newfd : :: std :: os :: raw :: c_int , __new : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tmpfile ( ) -> * mut FILE ; 
} extern "C" {
 pub fn tmpnam ( __s : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn tmpnam_r ( __s : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn tempnam ( __dir : * const :: std :: os :: raw :: c_char , __pfx : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn fclose ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fflush ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fflush_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fopen ( __filename : * const :: std :: os :: raw :: c_char , __modes : * const :: std :: os :: raw :: c_char , ) -> * mut FILE ; 
} extern "C" {
 pub fn freopen ( __filename : * const :: std :: os :: raw :: c_char , __modes : * const :: std :: os :: raw :: c_char , __stream : * mut FILE , ) -> * mut FILE ; 
} extern "C" {
 pub fn fdopen ( __fd : :: std :: os :: raw :: c_int , __modes : * const :: std :: os :: raw :: c_char , ) -> * mut FILE ; 
} extern "C" {
 pub fn fmemopen ( __s : * mut :: std :: os :: raw :: c_void , __len : usize , __modes : * const :: std :: os :: raw :: c_char , ) -> * mut FILE ; 
} extern "C" {
 pub fn open_memstream ( __bufloc : * mut * mut :: std :: os :: raw :: c_char , __sizeloc : * mut usize , ) -> * mut FILE ; 
} extern "C" {
 pub fn setbuf ( __stream : * mut FILE , __buf : * mut :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn setvbuf ( __stream : * mut FILE , __buf : * mut :: std :: os :: raw :: c_char , __modes : :: std :: os :: raw :: c_int , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setbuffer ( __stream : * mut FILE , __buf : * mut :: std :: os :: raw :: c_char , __size : usize , ) ; 
} extern "C" {
 pub fn setlinebuf ( __stream : * mut FILE , ) ; 
} extern "C" {
 pub fn fprintf ( __stream : * mut FILE , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn printf ( __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sprintf ( __s : * mut :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vfprintf ( __s : * mut FILE , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vprintf ( __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vsprintf ( __s : * mut :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn snprintf ( __s : * mut :: std :: os :: raw :: c_char , __maxlen : usize , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vsnprintf ( __s : * mut :: std :: os :: raw :: c_char , __maxlen : usize , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vdprintf ( __fd : :: std :: os :: raw :: c_int , __fmt : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn dprintf ( __fd : :: std :: os :: raw :: c_int , __fmt : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fscanf ( __stream : * mut FILE , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn scanf ( __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sscanf ( __s : * const :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_fscanf" ] 
 pub fn fscanf1 ( __stream : * mut FILE , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_scanf" ] 
 pub fn scanf1 ( __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_sscanf" ] 
 pub fn sscanf1 ( __s : * const :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vfscanf ( __s : * mut FILE , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vscanf ( __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn vsscanf ( __s : * const :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_vfscanf" ] 
 pub fn vfscanf1 ( __s : * mut FILE , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_vscanf" ] 
 pub fn vscanf1 ( __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}__isoc99_vsscanf" ] 
 pub fn vsscanf1 ( __s : * const :: std :: os :: raw :: c_char , __format : * const :: std :: os :: raw :: c_char , __arg : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fgetc ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getc ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getchar ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getc_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getchar_unlocked ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fgetc_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fputc ( __c : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn putc ( __c : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn putchar ( __c : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fputc_unlocked ( __c : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn putc_unlocked ( __c : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn putchar_unlocked ( __c : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getw ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn putw ( __w : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fgets ( __s : * mut :: std :: os :: raw :: c_char , __n : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn __getdelim ( __lineptr : * mut * mut :: std :: os :: raw :: c_char , __n : * mut usize , __delimiter : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> __ssize_t ; 
} extern "C" {
 pub fn getdelim ( __lineptr : * mut * mut :: std :: os :: raw :: c_char , __n : * mut usize , __delimiter : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> __ssize_t ; 
} extern "C" {
 pub fn getline ( __lineptr : * mut * mut :: std :: os :: raw :: c_char , __n : * mut usize , __stream : * mut FILE , ) -> __ssize_t ; 
} extern "C" {
 pub fn fputs ( __s : * const :: std :: os :: raw :: c_char , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn puts ( __s : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ungetc ( __c : :: std :: os :: raw :: c_int , __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fread ( __ptr : * mut :: std :: os :: raw :: c_void , __size : usize , __n : usize , __stream : * mut FILE , ) -> usize ; 
} extern "C" {
 pub fn fwrite ( __ptr : * const :: std :: os :: raw :: c_void , __size : usize , __n : usize , __s : * mut FILE , ) -> usize ; 
} extern "C" {
 pub fn fread_unlocked ( __ptr : * mut :: std :: os :: raw :: c_void , __size : usize , __n : usize , __stream : * mut FILE , ) -> usize ; 
} extern "C" {
 pub fn fwrite_unlocked ( __ptr : * const :: std :: os :: raw :: c_void , __size : usize , __n : usize , __stream : * mut FILE , ) -> usize ; 
} extern "C" {
 pub fn fseek ( __stream : * mut FILE , __off : :: std :: os :: raw :: c_long , __whence : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ftell ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn rewind ( __stream : * mut FILE , ) ; 
} extern "C" {
 pub fn fseeko ( __stream : * mut FILE , __off : __off_t , __whence : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ftello ( __stream : * mut FILE , ) -> __off_t ; 
} extern "C" {
 pub fn fgetpos ( __stream : * mut FILE , __pos : * mut fpos_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fsetpos ( __stream : * mut FILE , __pos : * const fpos_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clearerr ( __stream : * mut FILE , ) ; 
} extern "C" {
 pub fn feof ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ferror ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clearerr_unlocked ( __stream : * mut FILE , ) ; 
} extern "C" {
 pub fn feof_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ferror_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn perror ( __s : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 # [ link_name = "\u{1}sys_nerr" ] 
 pub static mut  sys_nerr  :  :: std :: os :: raw :: c_int ;
} extern "C" {
 # [ link_name = "\u{1}sys_errlist" ] 
 pub static mut  sys_errlist  :  [ * const :: std :: os :: raw :: c_char ; 0usize ] ;
} extern "C" {
 pub fn fileno ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fileno_unlocked ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn popen ( __command : * const :: std :: os :: raw :: c_char , __modes : * const :: std :: os :: raw :: c_char , ) -> * mut FILE ; 
} extern "C" {
 pub fn pclose ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ctermid ( __s : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn flockfile ( __stream : * mut FILE , ) ; 
} extern "C" {
 pub fn ftrylockfile ( __stream : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn funlockfile ( __stream : * mut FILE , ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct stat { pub st_dev : __dev_t , pub st_ino : __ino_t , pub st_nlink : __nlink_t , pub st_mode : __mode_t , pub st_uid : __uid_t , pub st_gid : __gid_t , pub __pad0 : :: std :: os :: raw :: c_int , pub st_rdev : __dev_t , pub st_size : __off_t , pub st_blksize : __blksize_t , pub st_blocks : __blkcnt_t , pub st_atim : timespec , pub st_mtim : timespec , pub st_ctim : timespec , pub __glibc_reserved : [ __syscall_slong_t ; 3usize ] , } # [ test ] fn bindgen_test_layout_stat ( ) { assert_eq ! ( :: std :: mem :: size_of :: < stat > ( ) , 144usize , concat ! ( "Size of: " , stringify ! ( stat ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < stat > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( stat ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_dev as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_dev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_ino as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_ino ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_nlink as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_nlink ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_mode as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_mode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_uid as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_gid as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_gid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . __pad0 as * const _ as usize } , 36usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( __pad0 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_rdev as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_rdev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_size as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_blksize as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_blksize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_blocks as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_blocks ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_atim as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_atim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_mtim as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_mtim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . st_ctim as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( st_ctim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const stat ) ) . __glibc_reserved as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( stat ) , "::" , stringify ! ( __glibc_reserved ) ) ) ; } extern "C" {
 pub fn stat ( __file : * const :: std :: os :: raw :: c_char , __buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fstat ( __fd : :: std :: os :: raw :: c_int , __buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fstatat ( __fd : :: std :: os :: raw :: c_int , __file : * const :: std :: os :: raw :: c_char , __buf : * mut stat , __flag : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn lstat ( __file : * const :: std :: os :: raw :: c_char , __buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn chmod ( __file : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn lchmod ( __file : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fchmod ( __fd : :: std :: os :: raw :: c_int , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fchmodat ( __fd : :: std :: os :: raw :: c_int , __file : * const :: std :: os :: raw :: c_char , __mode : __mode_t , __flag : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn umask ( __mask : __mode_t , ) -> __mode_t ; 
} extern "C" {
 pub fn mkdir ( __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mkdirat ( __fd : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mknod ( __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , __dev : __dev_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mknodat ( __fd : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , __dev : __dev_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mkfifo ( __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn mkfifoat ( __fd : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn utimensat ( __fd : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __times : * const timespec , __flags : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn futimens ( __fd : :: std :: os :: raw :: c_int , __times : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __fxstat ( __ver : :: std :: os :: raw :: c_int , __fildes : :: std :: os :: raw :: c_int , __stat_buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __xstat ( __ver : :: std :: os :: raw :: c_int , __filename : * const :: std :: os :: raw :: c_char , __stat_buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __lxstat ( __ver : :: std :: os :: raw :: c_int , __filename : * const :: std :: os :: raw :: c_char , __stat_buf : * mut stat , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __fxstatat ( __ver : :: std :: os :: raw :: c_int , __fildes : :: std :: os :: raw :: c_int , __filename : * const :: std :: os :: raw :: c_char , __stat_buf : * mut stat , __flag : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __xmknod ( __ver : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , __dev : * mut __dev_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __xmknodat ( __ver : :: std :: os :: raw :: c_int , __fd : :: std :: os :: raw :: c_int , __path : * const :: std :: os :: raw :: c_char , __mode : __mode_t , __dev : * mut __dev_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct flock { pub l_type : :: std :: os :: raw :: c_short , pub l_whence : :: std :: os :: raw :: c_short , pub l_start : __off_t , pub l_len : __off_t , pub l_pid : __pid_t , } # [ test ] fn bindgen_test_layout_flock ( ) { assert_eq ! ( :: std :: mem :: size_of :: < flock > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( flock ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < flock > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( flock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const flock ) ) . l_type as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( flock ) , "::" , stringify ! ( l_type ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const flock ) ) . l_whence as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( flock ) , "::" , stringify ! ( l_whence ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const flock ) ) . l_start as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( flock ) , "::" , stringify ! ( l_start ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const flock ) ) . l_len as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( flock ) , "::" , stringify ! ( l_len ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const flock ) ) . l_pid as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( flock ) , "::" , stringify ! ( l_pid ) ) ) ; } extern "C" {
 pub fn fcntl ( __fd : :: std :: os :: raw :: c_int , __cmd : :: std :: os :: raw :: c_int , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn open ( __file : * const :: std :: os :: raw :: c_char , __oflag : :: std :: os :: raw :: c_int , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn openat ( __fd : :: std :: os :: raw :: c_int , __file : * const :: std :: os :: raw :: c_char , __oflag : :: std :: os :: raw :: c_int , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn creat ( __file : * const :: std :: os :: raw :: c_char , __mode : mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn lockf ( __fd : :: std :: os :: raw :: c_int , __cmd : :: std :: os :: raw :: c_int , __len : off_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn posix_fadvise ( __fd : :: std :: os :: raw :: c_int , __offset : off_t , __len : off_t , __advise : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn posix_fallocate ( __fd : :: std :: os :: raw :: c_int , __offset : off_t , __len : off_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct dirent { pub d_ino : __ino_t , pub d_off : __off_t , pub d_reclen : :: std :: os :: raw :: c_ushort , pub d_type : :: std :: os :: raw :: c_uchar , pub d_name : [ :: std :: os :: raw :: c_char ; 256usize ] , } # [ test ] fn bindgen_test_layout_dirent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < dirent > ( ) , 280usize , concat ! ( "Size of: " , stringify ! ( dirent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < dirent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( dirent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const dirent ) ) . d_ino as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( dirent ) , "::" , stringify ! ( d_ino ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const dirent ) ) . d_off as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( dirent ) , "::" , stringify ! ( d_off ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const dirent ) ) . d_reclen as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( dirent ) , "::" , stringify ! ( d_reclen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const dirent ) ) . d_type as * const _ as usize } , 18usize , concat ! ( "Alignment of field: " , stringify ! ( dirent ) , "::" , stringify ! ( d_type ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const dirent ) ) . d_name as * const _ as usize } , 19usize , concat ! ( "Alignment of field: " , stringify ! ( dirent ) , "::" , stringify ! ( d_name ) ) ) ; } pub const DT_UNKNOWN : _bindgen_ty_2 = 0 ; pub const DT_FIFO : _bindgen_ty_2 = 1 ; pub const DT_CHR : _bindgen_ty_2 = 2 ; pub const DT_DIR : _bindgen_ty_2 = 4 ; pub const DT_BLK : _bindgen_ty_2 = 6 ; pub const DT_REG : _bindgen_ty_2 = 8 ; pub const DT_LNK : _bindgen_ty_2 = 10 ; pub const DT_SOCK : _bindgen_ty_2 = 12 ; pub const DT_WHT : _bindgen_ty_2 = 14 ; pub type _bindgen_ty_2 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __dirstream { _unused : [ u8 ; 0 ] } pub type DIR = __dirstream ; extern "C" {
 pub fn opendir ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut DIR ; 
} extern "C" {
 pub fn fdopendir ( __fd : :: std :: os :: raw :: c_int , ) -> * mut DIR ; 
} extern "C" {
 pub fn closedir ( __dirp : * mut DIR , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn readdir ( __dirp : * mut DIR , ) -> * mut dirent ; 
} extern "C" {
 pub fn readdir_r ( __dirp : * mut DIR , __entry : * mut dirent , __result : * mut * mut dirent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rewinddir ( __dirp : * mut DIR , ) ; 
} extern "C" {
 pub fn seekdir ( __dirp : * mut DIR , __pos : :: std :: os :: raw :: c_long , ) ; 
} extern "C" {
 pub fn telldir ( __dirp : * mut DIR , ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn dirfd ( __dirp : * mut DIR , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn scandir ( __dir : * const :: std :: os :: raw :: c_char , __namelist : * mut * mut * mut dirent , __selector : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * const dirent ) -> :: std :: os :: raw :: c_int > , __cmp : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut * const dirent , arg2 : * mut * const dirent ) -> :: std :: os :: raw :: c_int > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn alphasort ( __e1 : * mut * const dirent , __e2 : * mut * const dirent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getdirentries ( __fd : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __nbytes : usize , __basep : * mut __off_t , ) -> __ssize_t ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct iovec { pub iov_base : * mut :: std :: os :: raw :: c_void , pub iov_len : usize , } # [ test ] fn bindgen_test_layout_iovec ( ) { assert_eq ! ( :: std :: mem :: size_of :: < iovec > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( iovec ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < iovec > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( iovec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const iovec ) ) . iov_base as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( iovec ) , "::" , stringify ! ( iov_base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const iovec ) ) . iov_len as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( iovec ) , "::" , stringify ! ( iov_len ) ) ) ; } extern "C" {
 pub fn readv ( __fd : :: std :: os :: raw :: c_int , __iovec : * const iovec , __count : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn writev ( __fd : :: std :: os :: raw :: c_int , __iovec : * const iovec , __count : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn preadv ( __fd : :: std :: os :: raw :: c_int , __iovec : * const iovec , __count : :: std :: os :: raw :: c_int , __offset : __off_t , ) -> isize ; 
} extern "C" {
 pub fn pwritev ( __fd : :: std :: os :: raw :: c_int , __iovec : * const iovec , __count : :: std :: os :: raw :: c_int , __offset : __off_t , ) -> isize ; 
} pub type socklen_t = __socklen_t ; pub const __socket_type_SOCK_STREAM : __socket_type = 1 ; pub const __socket_type_SOCK_DGRAM : __socket_type = 2 ; pub const __socket_type_SOCK_RAW : __socket_type = 3 ; pub const __socket_type_SOCK_RDM : __socket_type = 4 ; pub const __socket_type_SOCK_SEQPACKET : __socket_type = 5 ; pub const __socket_type_SOCK_DCCP : __socket_type = 6 ; pub const __socket_type_SOCK_PACKET : __socket_type = 10 ; pub const __socket_type_SOCK_CLOEXEC : __socket_type = 524288 ; pub const __socket_type_SOCK_NONBLOCK : __socket_type = 2048 ; pub type __socket_type = :: std :: os :: raw :: c_uint ; pub type sa_family_t = :: std :: os :: raw :: c_ushort ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sockaddr { pub sa_family : sa_family_t , pub sa_data : [ :: std :: os :: raw :: c_char ; 14usize ] , } # [ test ] fn bindgen_test_layout_sockaddr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sockaddr > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( sockaddr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sockaddr > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( sockaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr ) ) . sa_family as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr ) , "::" , stringify ! ( sa_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr ) ) . sa_data as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr ) , "::" , stringify ! ( sa_data ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct sockaddr_storage { pub ss_family : sa_family_t , pub __ss_padding : [ :: std :: os :: raw :: c_char ; 118usize ] , pub __ss_align : :: std :: os :: raw :: c_ulong , } # [ test ] fn bindgen_test_layout_sockaddr_storage ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sockaddr_storage > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( sockaddr_storage ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sockaddr_storage > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sockaddr_storage ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_storage ) ) . ss_family as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_storage ) , "::" , stringify ! ( ss_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_storage ) ) . __ss_padding as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_storage ) , "::" , stringify ! ( __ss_padding ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_storage ) ) . __ss_align as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_storage ) , "::" , stringify ! ( __ss_align ) ) ) ; } pub const MSG_OOB : _bindgen_ty_3 = 1 ; pub const MSG_PEEK : _bindgen_ty_3 = 2 ; pub const MSG_DONTROUTE : _bindgen_ty_3 = 4 ; pub const MSG_CTRUNC : _bindgen_ty_3 = 8 ; pub const MSG_PROXY : _bindgen_ty_3 = 16 ; pub const MSG_TRUNC : _bindgen_ty_3 = 32 ; pub const MSG_DONTWAIT : _bindgen_ty_3 = 64 ; pub const MSG_EOR : _bindgen_ty_3 = 128 ; pub const MSG_WAITALL : _bindgen_ty_3 = 256 ; pub const MSG_FIN : _bindgen_ty_3 = 512 ; pub const MSG_SYN : _bindgen_ty_3 = 1024 ; pub const MSG_CONFIRM : _bindgen_ty_3 = 2048 ; pub const MSG_RST : _bindgen_ty_3 = 4096 ; pub const MSG_ERRQUEUE : _bindgen_ty_3 = 8192 ; pub const MSG_NOSIGNAL : _bindgen_ty_3 = 16384 ; pub const MSG_MORE : _bindgen_ty_3 = 32768 ; pub const MSG_WAITFORONE : _bindgen_ty_3 = 65536 ; pub const MSG_BATCH : _bindgen_ty_3 = 262144 ; pub const MSG_FASTOPEN : _bindgen_ty_3 = 536870912 ; pub const MSG_CMSG_CLOEXEC : _bindgen_ty_3 = 1073741824 ; pub type _bindgen_ty_3 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct msghdr { pub msg_name : * mut :: std :: os :: raw :: c_void , pub msg_namelen : socklen_t , pub msg_iov : * mut iovec , pub msg_iovlen : usize , pub msg_control : * mut :: std :: os :: raw :: c_void , pub msg_controllen : usize , pub msg_flags : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_msghdr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < msghdr > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( msghdr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < msghdr > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( msghdr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_namelen as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_namelen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_iov as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_iov ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_iovlen as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_iovlen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_control as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_control ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_controllen as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_controllen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const msghdr ) ) . msg_flags as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( msghdr ) , "::" , stringify ! ( msg_flags ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug ) ] pub struct cmsghdr { pub cmsg_len : usize , pub cmsg_level : :: std :: os :: raw :: c_int , pub cmsg_type : :: std :: os :: raw :: c_int , pub __cmsg_data : __IncompleteArrayField < :: std :: os :: raw :: c_uchar > , } # [ test ] fn bindgen_test_layout_cmsghdr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < cmsghdr > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( cmsghdr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < cmsghdr > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( cmsghdr ) ) ) ; } extern "C" {
 pub fn __cmsg_nxthdr ( __mhdr : * mut msghdr , __cmsg : * mut cmsghdr , ) -> * mut cmsghdr ; 
} pub const SCM_RIGHTS : _bindgen_ty_4 = 1 ; pub type _bindgen_ty_4 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct linger { pub l_onoff : :: std :: os :: raw :: c_int , pub l_linger : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_linger ( ) { assert_eq ! ( :: std :: mem :: size_of :: < linger > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( linger ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < linger > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( linger ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const linger ) ) . l_onoff as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( linger ) , "::" , stringify ! ( l_onoff ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const linger ) ) . l_linger as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( linger ) , "::" , stringify ! ( l_linger ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct osockaddr { pub sa_family : :: std :: os :: raw :: c_ushort , pub sa_data : [ :: std :: os :: raw :: c_uchar ; 14usize ] , } # [ test ] fn bindgen_test_layout_osockaddr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < osockaddr > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( osockaddr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < osockaddr > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( osockaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const osockaddr ) ) . sa_family as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( osockaddr ) , "::" , stringify ! ( sa_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const osockaddr ) ) . sa_data as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( osockaddr ) , "::" , stringify ! ( sa_data ) ) ) ; } pub const SHUT_RD : _bindgen_ty_5 = 0 ; pub const SHUT_WR : _bindgen_ty_5 = 1 ; pub const SHUT_RDWR : _bindgen_ty_5 = 2 ; pub type _bindgen_ty_5 = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn socket ( __domain : :: std :: os :: raw :: c_int , __type : :: std :: os :: raw :: c_int , __protocol : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn socketpair ( __domain : :: std :: os :: raw :: c_int , __type : :: std :: os :: raw :: c_int , __protocol : :: std :: os :: raw :: c_int , __fds : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn bind ( __fd : :: std :: os :: raw :: c_int , __addr : * const sockaddr , __len : socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getsockname ( __fd : :: std :: os :: raw :: c_int , __addr : * mut sockaddr , __len : * mut socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn connect ( __fd : :: std :: os :: raw :: c_int , __addr : * const sockaddr , __len : socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getpeername ( __fd : :: std :: os :: raw :: c_int , __addr : * mut sockaddr , __len : * mut socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn send ( __fd : :: std :: os :: raw :: c_int , __buf : * const :: std :: os :: raw :: c_void , __n : usize , __flags : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn recv ( __fd : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_void , __n : usize , __flags : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn sendto ( __fd : :: std :: os :: raw :: c_int , __buf : * const :: std :: os :: raw :: c_void , __n : usize , __flags : :: std :: os :: raw :: c_int , __addr : * const sockaddr , __addr_len : socklen_t , ) -> isize ; 
} extern "C" {
 pub fn recvfrom ( __fd : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_void , __n : usize , __flags : :: std :: os :: raw :: c_int , __addr : * mut sockaddr , __addr_len : * mut socklen_t , ) -> isize ; 
} extern "C" {
 pub fn sendmsg ( __fd : :: std :: os :: raw :: c_int , __message : * const msghdr , __flags : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn recvmsg ( __fd : :: std :: os :: raw :: c_int , __message : * mut msghdr , __flags : :: std :: os :: raw :: c_int , ) -> isize ; 
} extern "C" {
 pub fn getsockopt ( __fd : :: std :: os :: raw :: c_int , __level : :: std :: os :: raw :: c_int , __optname : :: std :: os :: raw :: c_int , __optval : * mut :: std :: os :: raw :: c_void , __optlen : * mut socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setsockopt ( __fd : :: std :: os :: raw :: c_int , __level : :: std :: os :: raw :: c_int , __optname : :: std :: os :: raw :: c_int , __optval : * const :: std :: os :: raw :: c_void , __optlen : socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn listen ( __fd : :: std :: os :: raw :: c_int , __n : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn accept ( __fd : :: std :: os :: raw :: c_int , __addr : * mut sockaddr , __addr_len : * mut socklen_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn shutdown ( __fd : :: std :: os :: raw :: c_int , __how : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sockatmark ( __fd : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn isfdtype ( __fd : :: std :: os :: raw :: c_int , __fdtype : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub type in_addr_t = u32 ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct in_addr { pub s_addr : in_addr_t , } # [ test ] fn bindgen_test_layout_in_addr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < in_addr > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( in_addr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < in_addr > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( in_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in_addr ) ) . s_addr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in_addr ) , "::" , stringify ! ( s_addr ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct ip_opts { pub ip_dst : in_addr , pub ip_opts : [ :: std :: os :: raw :: c_char ; 40usize ] , } # [ test ] fn bindgen_test_layout_ip_opts ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ip_opts > ( ) , 44usize , concat ! ( "Size of: " , stringify ! ( ip_opts ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ip_opts > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ip_opts ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_opts ) ) . ip_dst as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ip_opts ) , "::" , stringify ! ( ip_dst ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_opts ) ) . ip_opts as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( ip_opts ) , "::" , stringify ! ( ip_opts ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ip_mreqn { pub imr_multiaddr : in_addr , pub imr_address : in_addr , pub imr_ifindex : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_ip_mreqn ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ip_mreqn > ( ) , 12usize , concat ! ( "Size of: " , stringify ! ( ip_mreqn ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ip_mreqn > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ip_mreqn ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreqn ) ) . imr_multiaddr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreqn ) , "::" , stringify ! ( imr_multiaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreqn ) ) . imr_address as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreqn ) , "::" , stringify ! ( imr_address ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreqn ) ) . imr_ifindex as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreqn ) , "::" , stringify ! ( imr_ifindex ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct in_pktinfo { pub ipi_ifindex : :: std :: os :: raw :: c_int , pub ipi_spec_dst : in_addr , pub ipi_addr : in_addr , } # [ test ] fn bindgen_test_layout_in_pktinfo ( ) { assert_eq ! ( :: std :: mem :: size_of :: < in_pktinfo > ( ) , 12usize , concat ! ( "Size of: " , stringify ! ( in_pktinfo ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < in_pktinfo > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( in_pktinfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in_pktinfo ) ) . ipi_ifindex as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in_pktinfo ) , "::" , stringify ! ( ipi_ifindex ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in_pktinfo ) ) . ipi_spec_dst as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( in_pktinfo ) , "::" , stringify ! ( ipi_spec_dst ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in_pktinfo ) ) . ipi_addr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( in_pktinfo ) , "::" , stringify ! ( ipi_addr ) ) ) ; } pub const IPPROTO_IP : _bindgen_ty_6 = 0 ; pub const IPPROTO_ICMP : _bindgen_ty_6 = 1 ; pub const IPPROTO_IGMP : _bindgen_ty_6 = 2 ; pub const IPPROTO_IPIP : _bindgen_ty_6 = 4 ; pub const IPPROTO_TCP : _bindgen_ty_6 = 6 ; pub const IPPROTO_EGP : _bindgen_ty_6 = 8 ; pub const IPPROTO_PUP : _bindgen_ty_6 = 12 ; pub const IPPROTO_UDP : _bindgen_ty_6 = 17 ; pub const IPPROTO_IDP : _bindgen_ty_6 = 22 ; pub const IPPROTO_TP : _bindgen_ty_6 = 29 ; pub const IPPROTO_DCCP : _bindgen_ty_6 = 33 ; pub const IPPROTO_IPV6 : _bindgen_ty_6 = 41 ; pub const IPPROTO_RSVP : _bindgen_ty_6 = 46 ; pub const IPPROTO_GRE : _bindgen_ty_6 = 47 ; pub const IPPROTO_ESP : _bindgen_ty_6 = 50 ; pub const IPPROTO_AH : _bindgen_ty_6 = 51 ; pub const IPPROTO_MTP : _bindgen_ty_6 = 92 ; pub const IPPROTO_BEETPH : _bindgen_ty_6 = 94 ; pub const IPPROTO_ENCAP : _bindgen_ty_6 = 98 ; pub const IPPROTO_PIM : _bindgen_ty_6 = 103 ; pub const IPPROTO_COMP : _bindgen_ty_6 = 108 ; pub const IPPROTO_SCTP : _bindgen_ty_6 = 132 ; pub const IPPROTO_UDPLITE : _bindgen_ty_6 = 136 ; pub const IPPROTO_MPLS : _bindgen_ty_6 = 137 ; pub const IPPROTO_RAW : _bindgen_ty_6 = 255 ; pub const IPPROTO_MAX : _bindgen_ty_6 = 256 ; pub type _bindgen_ty_6 = :: std :: os :: raw :: c_uint ; pub const IPPROTO_HOPOPTS : _bindgen_ty_7 = 0 ; pub const IPPROTO_ROUTING : _bindgen_ty_7 = 43 ; pub const IPPROTO_FRAGMENT : _bindgen_ty_7 = 44 ; pub const IPPROTO_ICMPV6 : _bindgen_ty_7 = 58 ; pub const IPPROTO_NONE : _bindgen_ty_7 = 59 ; pub const IPPROTO_DSTOPTS : _bindgen_ty_7 = 60 ; pub const IPPROTO_MH : _bindgen_ty_7 = 135 ; pub type _bindgen_ty_7 = :: std :: os :: raw :: c_uint ; pub type in_port_t = u16 ; pub const IPPORT_ECHO : _bindgen_ty_8 = 7 ; pub const IPPORT_DISCARD : _bindgen_ty_8 = 9 ; pub const IPPORT_SYSTAT : _bindgen_ty_8 = 11 ; pub const IPPORT_DAYTIME : _bindgen_ty_8 = 13 ; pub const IPPORT_NETSTAT : _bindgen_ty_8 = 15 ; pub const IPPORT_FTP : _bindgen_ty_8 = 21 ; pub const IPPORT_TELNET : _bindgen_ty_8 = 23 ; pub const IPPORT_SMTP : _bindgen_ty_8 = 25 ; pub const IPPORT_TIMESERVER : _bindgen_ty_8 = 37 ; pub const IPPORT_NAMESERVER : _bindgen_ty_8 = 42 ; pub const IPPORT_WHOIS : _bindgen_ty_8 = 43 ; pub const IPPORT_MTP : _bindgen_ty_8 = 57 ; pub const IPPORT_TFTP : _bindgen_ty_8 = 69 ; pub const IPPORT_RJE : _bindgen_ty_8 = 77 ; pub const IPPORT_FINGER : _bindgen_ty_8 = 79 ; pub const IPPORT_TTYLINK : _bindgen_ty_8 = 87 ; pub const IPPORT_SUPDUP : _bindgen_ty_8 = 95 ; pub const IPPORT_EXECSERVER : _bindgen_ty_8 = 512 ; pub const IPPORT_LOGINSERVER : _bindgen_ty_8 = 513 ; pub const IPPORT_CMDSERVER : _bindgen_ty_8 = 514 ; pub const IPPORT_EFSSERVER : _bindgen_ty_8 = 520 ; pub const IPPORT_BIFFUDP : _bindgen_ty_8 = 512 ; pub const IPPORT_WHOSERVER : _bindgen_ty_8 = 513 ; pub const IPPORT_ROUTESERVER : _bindgen_ty_8 = 520 ; pub const IPPORT_RESERVED : _bindgen_ty_8 = 1024 ; pub const IPPORT_USERRESERVED : _bindgen_ty_8 = 5000 ; pub type _bindgen_ty_8 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct in6_addr { pub __in6_u : in6_addr__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union in6_addr__bindgen_ty_1 { pub __u6_addr8 : [ u8 ; 16usize ] , pub __u6_addr16 : [ u16 ; 8usize ] , pub __u6_addr32 : [ u32 ; 4usize ] , _bindgen_union_align : [ u32 ; 4usize ] , } # [ test ] fn bindgen_test_layout_in6_addr__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < in6_addr__bindgen_ty_1 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( in6_addr__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < in6_addr__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( in6_addr__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in6_addr__bindgen_ty_1 ) ) . __u6_addr8 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in6_addr__bindgen_ty_1 ) , "::" , stringify ! ( __u6_addr8 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in6_addr__bindgen_ty_1 ) ) . __u6_addr16 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in6_addr__bindgen_ty_1 ) , "::" , stringify ! ( __u6_addr16 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in6_addr__bindgen_ty_1 ) ) . __u6_addr32 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in6_addr__bindgen_ty_1 ) , "::" , stringify ! ( __u6_addr32 ) ) ) ; } # [ test ] fn bindgen_test_layout_in6_addr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < in6_addr > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( in6_addr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < in6_addr > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( in6_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const in6_addr ) ) . __in6_u as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( in6_addr ) , "::" , stringify ! ( __in6_u ) ) ) ; } extern "C" {
 # [ link_name = "\u{1}in6addr_any" ] 
 pub static mut  in6addr_any  :  in6_addr ;
} extern "C" {
 # [ link_name = "\u{1}in6addr_loopback" ] 
 pub static mut  in6addr_loopback  :  in6_addr ;
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sockaddr_in { pub sin_family : sa_family_t , pub sin_port : in_port_t , pub sin_addr : in_addr , pub sin_zero : [ :: std :: os :: raw :: c_uchar ; 8usize ] , } # [ test ] fn bindgen_test_layout_sockaddr_in ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sockaddr_in > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( sockaddr_in ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sockaddr_in > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( sockaddr_in ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in ) ) . sin_family as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in ) , "::" , stringify ! ( sin_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in ) ) . sin_port as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in ) , "::" , stringify ! ( sin_port ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in ) ) . sin_addr as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in ) , "::" , stringify ! ( sin_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in ) ) . sin_zero as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in ) , "::" , stringify ! ( sin_zero ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct sockaddr_in6 { pub sin6_family : sa_family_t , pub sin6_port : in_port_t , pub sin6_flowinfo : u32 , pub sin6_addr : in6_addr , pub sin6_scope_id : u32 , } # [ test ] fn bindgen_test_layout_sockaddr_in6 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sockaddr_in6 > ( ) , 28usize , concat ! ( "Size of: " , stringify ! ( sockaddr_in6 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sockaddr_in6 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( sockaddr_in6 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in6 ) ) . sin6_family as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in6 ) , "::" , stringify ! ( sin6_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in6 ) ) . sin6_port as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in6 ) , "::" , stringify ! ( sin6_port ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in6 ) ) . sin6_flowinfo as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in6 ) , "::" , stringify ! ( sin6_flowinfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in6 ) ) . sin6_addr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in6 ) , "::" , stringify ! ( sin6_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sockaddr_in6 ) ) . sin6_scope_id as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( sockaddr_in6 ) , "::" , stringify ! ( sin6_scope_id ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ip_mreq { pub imr_multiaddr : in_addr , pub imr_interface : in_addr , } # [ test ] fn bindgen_test_layout_ip_mreq ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ip_mreq > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( ip_mreq ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ip_mreq > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ip_mreq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreq ) ) . imr_multiaddr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreq ) , "::" , stringify ! ( imr_multiaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreq ) ) . imr_interface as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreq ) , "::" , stringify ! ( imr_interface ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ip_mreq_source { pub imr_multiaddr : in_addr , pub imr_interface : in_addr , pub imr_sourceaddr : in_addr , } # [ test ] fn bindgen_test_layout_ip_mreq_source ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ip_mreq_source > ( ) , 12usize , concat ! ( "Size of: " , stringify ! ( ip_mreq_source ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ip_mreq_source > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ip_mreq_source ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreq_source ) ) . imr_multiaddr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreq_source ) , "::" , stringify ! ( imr_multiaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreq_source ) ) . imr_interface as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreq_source ) , "::" , stringify ! ( imr_interface ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_mreq_source ) ) . imr_sourceaddr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ip_mreq_source ) , "::" , stringify ! ( imr_sourceaddr ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct ipv6_mreq { pub ipv6mr_multiaddr : in6_addr , pub ipv6mr_interface : :: std :: os :: raw :: c_uint , } # [ test ] fn bindgen_test_layout_ipv6_mreq ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ipv6_mreq > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( ipv6_mreq ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ipv6_mreq > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ipv6_mreq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ipv6_mreq ) ) . ipv6mr_multiaddr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ipv6_mreq ) , "::" , stringify ! ( ipv6mr_multiaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ipv6_mreq ) ) . ipv6mr_interface as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( ipv6_mreq ) , "::" , stringify ! ( ipv6mr_interface ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct group_req { pub gr_interface : u32 , pub gr_group : sockaddr_storage , } # [ test ] fn bindgen_test_layout_group_req ( ) { assert_eq ! ( :: std :: mem :: size_of :: < group_req > ( ) , 136usize , concat ! ( "Size of: " , stringify ! ( group_req ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < group_req > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( group_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_req ) ) . gr_interface as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( group_req ) , "::" , stringify ! ( gr_interface ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_req ) ) . gr_group as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( group_req ) , "::" , stringify ! ( gr_group ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct group_source_req { pub gsr_interface : u32 , pub gsr_group : sockaddr_storage , pub gsr_source : sockaddr_storage , } # [ test ] fn bindgen_test_layout_group_source_req ( ) { assert_eq ! ( :: std :: mem :: size_of :: < group_source_req > ( ) , 264usize , concat ! ( "Size of: " , stringify ! ( group_source_req ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < group_source_req > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( group_source_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_source_req ) ) . gsr_interface as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( group_source_req ) , "::" , stringify ! ( gsr_interface ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_source_req ) ) . gsr_group as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( group_source_req ) , "::" , stringify ! ( gsr_group ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_source_req ) ) . gsr_source as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( group_source_req ) , "::" , stringify ! ( gsr_source ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ip_msfilter { pub imsf_multiaddr : in_addr , pub imsf_interface : in_addr , pub imsf_fmode : u32 , pub imsf_numsrc : u32 , pub imsf_slist : [ in_addr ; 1usize ] , } # [ test ] fn bindgen_test_layout_ip_msfilter ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ip_msfilter > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( ip_msfilter ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ip_msfilter > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( ip_msfilter ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_msfilter ) ) . imsf_multiaddr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ip_msfilter ) , "::" , stringify ! ( imsf_multiaddr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_msfilter ) ) . imsf_interface as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( ip_msfilter ) , "::" , stringify ! ( imsf_interface ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_msfilter ) ) . imsf_fmode as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ip_msfilter ) , "::" , stringify ! ( imsf_fmode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_msfilter ) ) . imsf_numsrc as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( ip_msfilter ) , "::" , stringify ! ( imsf_numsrc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ip_msfilter ) ) . imsf_slist as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( ip_msfilter ) , "::" , stringify ! ( imsf_slist ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct group_filter { pub gf_interface : u32 , pub gf_group : sockaddr_storage , pub gf_fmode : u32 , pub gf_numsrc : u32 , pub gf_slist : [ sockaddr_storage ; 1usize ] , } # [ test ] fn bindgen_test_layout_group_filter ( ) { assert_eq ! ( :: std :: mem :: size_of :: < group_filter > ( ) , 272usize , concat ! ( "Size of: " , stringify ! ( group_filter ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < group_filter > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( group_filter ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_filter ) ) . gf_interface as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( group_filter ) , "::" , stringify ! ( gf_interface ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_filter ) ) . gf_group as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( group_filter ) , "::" , stringify ! ( gf_group ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_filter ) ) . gf_fmode as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( group_filter ) , "::" , stringify ! ( gf_fmode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_filter ) ) . gf_numsrc as * const _ as usize } , 140usize , concat ! ( "Alignment of field: " , stringify ! ( group_filter ) , "::" , stringify ! ( gf_numsrc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const group_filter ) ) . gf_slist as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( group_filter ) , "::" , stringify ! ( gf_slist ) ) ) ; } extern "C" {
 pub fn ntohl ( __netlong : u32 , ) -> u32 ; 
} extern "C" {
 pub fn ntohs ( __netshort : u16 , ) -> u16 ; 
} extern "C" {
 pub fn htonl ( __hostlong : u32 , ) -> u32 ; 
} extern "C" {
 pub fn htons ( __hostshort : u16 , ) -> u16 ; 
} extern "C" {
 pub fn bindresvport ( __sockfd : :: std :: os :: raw :: c_int , __sock_in : * mut sockaddr_in , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn bindresvport6 ( __sockfd : :: std :: os :: raw :: c_int , __sock_in : * mut sockaddr_in6 , ) -> :: std :: os :: raw :: c_int ; 
} pub type tcp_seq = u_int32_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct tcphdr { pub __bindgen_anon_1 : tcphdr__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union tcphdr__bindgen_ty_1 { pub __bindgen_anon_1 : tcphdr__bindgen_ty_1__bindgen_ty_1 , pub __bindgen_anon_2 : tcphdr__bindgen_ty_1__bindgen_ty_2 , _bindgen_union_align : [ u32 ; 5usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct tcphdr__bindgen_ty_1__bindgen_ty_1 { pub th_sport : u_int16_t , pub th_dport : u_int16_t , pub th_seq : tcp_seq , pub th_ack : tcp_seq , pub _bitfield_1 : u8 , pub th_flags : u_int8_t , pub th_win : u_int16_t , pub th_sum : u_int16_t , pub th_urp : u_int16_t , } # [ test ] fn bindgen_test_layout_tcphdr__bindgen_ty_1__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcphdr__bindgen_ty_1__bindgen_ty_1 > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcphdr__bindgen_ty_1__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_sport as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_sport ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_dport as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_dport ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_seq as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_ack as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_ack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_flags as * const _ as usize } , 13usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_win as * const _ as usize } , 14usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_win ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_sum as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_sum ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_1 ) ) . th_urp as * const _ as usize } , 18usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( th_urp ) ) ) ; } impl tcphdr__bindgen_ty_1__bindgen_ty_1 { # [ inline ] pub fn th_x2 ( & self ) -> u_int8_t { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0xf as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_th_x2 ( & mut self , val : u_int8_t ) { let mask = 0xf as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn th_off ( & self ) -> u_int8_t { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0xf0 as u8 ; let val = ( unit_field_val & mask ) >> 4usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_th_off ( & mut self , val : u_int8_t ) { let mask = 0xf0 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 4usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( th_x2 : u_int8_t , th_off : u_int8_t ) -> u8 { ( ( 0 | ( ( th_x2 as u8 as u8 ) << 0usize ) & ( 0xf as u8 ) ) | ( ( th_off as u8 as u8 ) << 4usize ) & ( 0xf0 as u8 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct tcphdr__bindgen_ty_1__bindgen_ty_2 { pub source : u_int16_t , pub dest : u_int16_t , pub seq : u_int32_t , pub ack_seq : u_int32_t , pub _bitfield_1 : [ u8 ; 2usize ] , pub window : u_int16_t , pub check : u_int16_t , pub urg_ptr : u_int16_t , } # [ test ] fn bindgen_test_layout_tcphdr__bindgen_ty_1__bindgen_ty_2 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcphdr__bindgen_ty_1__bindgen_ty_2 > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcphdr__bindgen_ty_1__bindgen_ty_2 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . source as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( source ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . dest as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( dest ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . seq as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . ack_seq as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( ack_seq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . window as * const _ as usize } , 14usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( window ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . check as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( check ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcphdr__bindgen_ty_1__bindgen_ty_2 ) ) . urg_ptr as * const _ as usize } , 18usize , concat ! ( "Alignment of field: " , stringify ! ( tcphdr__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( urg_ptr ) ) ) ; } impl tcphdr__bindgen_ty_1__bindgen_ty_2 { # [ inline ] pub fn res1 ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0xf as u16 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_res1 ( & mut self , val : u_int16_t ) { let mask = 0xf as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn doff ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0xf0 as u16 ; let val = ( unit_field_val & mask ) >> 4usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_doff ( & mut self , val : u_int16_t ) { let mask = 0xf0 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 4usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn fin ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x100 as u16 ; let val = ( unit_field_val & mask ) >> 8usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_fin ( & mut self , val : u_int16_t ) { let mask = 0x100 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 8usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn syn ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x200 as u16 ; let val = ( unit_field_val & mask ) >> 9usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_syn ( & mut self , val : u_int16_t ) { let mask = 0x200 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 9usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn rst ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x400 as u16 ; let val = ( unit_field_val & mask ) >> 10usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_rst ( & mut self , val : u_int16_t ) { let mask = 0x400 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 10usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn psh ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x800 as u16 ; let val = ( unit_field_val & mask ) >> 11usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_psh ( & mut self , val : u_int16_t ) { let mask = 0x800 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 11usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn ack ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x1000 as u16 ; let val = ( unit_field_val & mask ) >> 12usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_ack ( & mut self , val : u_int16_t ) { let mask = 0x1000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 12usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn urg ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x2000 as u16 ; let val = ( unit_field_val & mask ) >> 13usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_urg ( & mut self , val : u_int16_t ) { let mask = 0x2000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 13usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn res2 ( & self ) -> u_int16_t { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0xc000 as u16 ; let val = ( unit_field_val & mask ) >> 14usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_res2 ( & mut self , val : u_int16_t ) { let mask = 0xc000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 14usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( res1 : u_int16_t , doff : u_int16_t , fin : u_int16_t , syn : u_int16_t , rst : u_int16_t , psh : u_int16_t , ack : u_int16_t , urg : u_int16_t , res2 : u_int16_t ) -> u16 { ( ( ( ( ( ( ( ( ( 0 | ( ( res1 as u16 as u16 ) << 0usize ) & ( 0xf as u16 ) ) | ( ( doff as u16 as u16 ) << 4usize ) & ( 0xf0 as u16 ) ) | ( ( fin as u16 as u16 ) << 8usize ) & ( 0x100 as u16 ) ) | ( ( syn as u16 as u16 ) << 9usize ) & ( 0x200 as u16 ) ) | ( ( rst as u16 as u16 ) << 10usize ) & ( 0x400 as u16 ) ) | ( ( psh as u16 as u16 ) << 11usize ) & ( 0x800 as u16 ) ) | ( ( ack as u16 as u16 ) << 12usize ) & ( 0x1000 as u16 ) ) | ( ( urg as u16 as u16 ) << 13usize ) & ( 0x2000 as u16 ) ) | ( ( res2 as u16 as u16 ) << 14usize ) & ( 0xc000 as u16 ) ) } } # [ test ] fn bindgen_test_layout_tcphdr__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcphdr__bindgen_ty_1 > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( tcphdr__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcphdr__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcphdr__bindgen_ty_1 ) ) ) ; } # [ test ] fn bindgen_test_layout_tcphdr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcphdr > ( ) , 20usize , concat ! ( "Size of: " , stringify ! ( tcphdr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcphdr > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcphdr ) ) ) ; } pub const TCP_ESTABLISHED : _bindgen_ty_9 = 1 ; pub const TCP_SYN_SENT : _bindgen_ty_9 = 2 ; pub const TCP_SYN_RECV : _bindgen_ty_9 = 3 ; pub const TCP_FIN_WAIT1 : _bindgen_ty_9 = 4 ; pub const TCP_FIN_WAIT2 : _bindgen_ty_9 = 5 ; pub const TCP_TIME_WAIT : _bindgen_ty_9 = 6 ; pub const TCP_CLOSE : _bindgen_ty_9 = 7 ; pub const TCP_CLOSE_WAIT : _bindgen_ty_9 = 8 ; pub const TCP_LAST_ACK : _bindgen_ty_9 = 9 ; pub const TCP_LISTEN : _bindgen_ty_9 = 10 ; pub const TCP_CLOSING : _bindgen_ty_9 = 11 ; pub type _bindgen_ty_9 = :: std :: os :: raw :: c_uint ; pub const tcp_ca_state_TCP_CA_Open : tcp_ca_state = 0 ; pub const tcp_ca_state_TCP_CA_Disorder : tcp_ca_state = 1 ; pub const tcp_ca_state_TCP_CA_CWR : tcp_ca_state = 2 ; pub const tcp_ca_state_TCP_CA_Recovery : tcp_ca_state = 3 ; pub const tcp_ca_state_TCP_CA_Loss : tcp_ca_state = 4 ; pub type tcp_ca_state = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct tcp_info { pub tcpi_state : u_int8_t , pub tcpi_ca_state : u_int8_t , pub tcpi_retransmits : u_int8_t , pub tcpi_probes : u_int8_t , pub tcpi_backoff : u_int8_t , pub tcpi_options : u_int8_t , pub _bitfield_1 : u8 , pub tcpi_rto : u_int32_t , pub tcpi_ato : u_int32_t , pub tcpi_snd_mss : u_int32_t , pub tcpi_rcv_mss : u_int32_t , pub tcpi_unacked : u_int32_t , pub tcpi_sacked : u_int32_t , pub tcpi_lost : u_int32_t , pub tcpi_retrans : u_int32_t , pub tcpi_fackets : u_int32_t , pub tcpi_last_data_sent : u_int32_t , pub tcpi_last_ack_sent : u_int32_t , pub tcpi_last_data_recv : u_int32_t , pub tcpi_last_ack_recv : u_int32_t , pub tcpi_pmtu : u_int32_t , pub tcpi_rcv_ssthresh : u_int32_t , pub tcpi_rtt : u_int32_t , pub tcpi_rttvar : u_int32_t , pub tcpi_snd_ssthresh : u_int32_t , pub tcpi_snd_cwnd : u_int32_t , pub tcpi_advmss : u_int32_t , pub tcpi_reordering : u_int32_t , pub tcpi_rcv_rtt : u_int32_t , pub tcpi_rcv_space : u_int32_t , pub tcpi_total_retrans : u_int32_t , } # [ test ] fn bindgen_test_layout_tcp_info ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcp_info > ( ) , 104usize , concat ! ( "Size of: " , stringify ! ( tcp_info ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcp_info > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcp_info ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_state as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_ca_state as * const _ as usize } , 1usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_ca_state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_retransmits as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_retransmits ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_probes as * const _ as usize } , 3usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_probes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_backoff as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_backoff ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_options as * const _ as usize } , 5usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_options ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rto as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rto ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_ato as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_ato ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_snd_mss as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_snd_mss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rcv_mss as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rcv_mss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_unacked as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_unacked ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_sacked as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_sacked ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_lost as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_lost ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_retrans as * const _ as usize } , 36usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_retrans ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_fackets as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_fackets ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_last_data_sent as * const _ as usize } , 44usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_last_data_sent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_last_ack_sent as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_last_ack_sent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_last_data_recv as * const _ as usize } , 52usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_last_data_recv ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_last_ack_recv as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_last_ack_recv ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_pmtu as * const _ as usize } , 60usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_pmtu ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rcv_ssthresh as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rcv_ssthresh ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rtt as * const _ as usize } , 68usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rtt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rttvar as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rttvar ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_snd_ssthresh as * const _ as usize } , 76usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_snd_ssthresh ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_snd_cwnd as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_snd_cwnd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_advmss as * const _ as usize } , 84usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_advmss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_reordering as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_reordering ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rcv_rtt as * const _ as usize } , 92usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rcv_rtt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_rcv_space as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_rcv_space ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_info ) ) . tcpi_total_retrans as * const _ as usize } , 100usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_info ) , "::" , stringify ! ( tcpi_total_retrans ) ) ) ; } impl tcp_info { # [ inline ] pub fn tcpi_snd_wscale ( & self ) -> u_int8_t { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0xf as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_tcpi_snd_wscale ( & mut self , val : u_int8_t ) { let mask = 0xf as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn tcpi_rcv_wscale ( & self ) -> u_int8_t { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0xf0 as u8 ; let val = ( unit_field_val & mask ) >> 4usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_tcpi_rcv_wscale ( & mut self , val : u_int8_t ) { let mask = 0xf0 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 4usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( tcpi_snd_wscale : u_int8_t , tcpi_rcv_wscale : u_int8_t ) -> u8 { ( ( 0 | ( ( tcpi_snd_wscale as u8 as u8 ) << 0usize ) & ( 0xf as u8 ) ) | ( ( tcpi_rcv_wscale as u8 as u8 ) << 4usize ) & ( 0xf0 as u8 ) ) } } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct tcp_md5sig { pub tcpm_addr : sockaddr_storage , pub __tcpm_pad1 : u_int16_t , pub tcpm_keylen : u_int16_t , pub __tcpm_pad2 : u_int32_t , pub tcpm_key : [ u_int8_t ; 80usize ] , } # [ test ] fn bindgen_test_layout_tcp_md5sig ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcp_md5sig > ( ) , 216usize , concat ! ( "Size of: " , stringify ! ( tcp_md5sig ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcp_md5sig > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( tcp_md5sig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_md5sig ) ) . tcpm_addr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_md5sig ) , "::" , stringify ! ( tcpm_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_md5sig ) ) . __tcpm_pad1 as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_md5sig ) , "::" , stringify ! ( __tcpm_pad1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_md5sig ) ) . tcpm_keylen as * const _ as usize } , 130usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_md5sig ) , "::" , stringify ! ( tcpm_keylen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_md5sig ) ) . __tcpm_pad2 as * const _ as usize } , 132usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_md5sig ) , "::" , stringify ! ( __tcpm_pad2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_md5sig ) ) . tcpm_key as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_md5sig ) , "::" , stringify ! ( tcpm_key ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct tcp_repair_opt { pub opt_code : u_int32_t , pub opt_val : u_int32_t , } # [ test ] fn bindgen_test_layout_tcp_repair_opt ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcp_repair_opt > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( tcp_repair_opt ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcp_repair_opt > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( tcp_repair_opt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_repair_opt ) ) . opt_code as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_repair_opt ) , "::" , stringify ! ( opt_code ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_repair_opt ) ) . opt_val as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_repair_opt ) , "::" , stringify ! ( opt_val ) ) ) ; } pub const TCP_NO_QUEUE : _bindgen_ty_10 = 0 ; pub const TCP_RECV_QUEUE : _bindgen_ty_10 = 1 ; pub const TCP_SEND_QUEUE : _bindgen_ty_10 = 2 ; pub const TCP_QUEUES_NR : _bindgen_ty_10 = 3 ; pub type _bindgen_ty_10 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct tcp_cookie_transactions { pub tcpct_flags : u_int16_t , pub __tcpct_pad1 : u_int8_t , pub tcpct_cookie_desired : u_int8_t , pub tcpct_s_data_desired : u_int16_t , pub tcpct_used : u_int16_t , pub tcpct_value : [ u_int8_t ; 536usize ] , } # [ test ] fn bindgen_test_layout_tcp_cookie_transactions ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tcp_cookie_transactions > ( ) , 544usize , concat ! ( "Size of: " , stringify ! ( tcp_cookie_transactions ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tcp_cookie_transactions > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( tcp_cookie_transactions ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . tcpct_flags as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( tcpct_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . __tcpct_pad1 as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( __tcpct_pad1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . tcpct_cookie_desired as * const _ as usize } , 3usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( tcpct_cookie_desired ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . tcpct_s_data_desired as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( tcpct_s_data_desired ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . tcpct_used as * const _ as usize } , 6usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( tcpct_used ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tcp_cookie_transactions ) ) . tcpct_value as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( tcp_cookie_transactions ) , "::" , stringify ! ( tcpct_value ) ) ) ; } extern "C" {
 pub fn inet_addr ( __cp : * const :: std :: os :: raw :: c_char , ) -> in_addr_t ; 
} extern "C" {
 pub fn inet_lnaof ( __in : in_addr , ) -> in_addr_t ; 
} extern "C" {
 pub fn inet_makeaddr ( __net : in_addr_t , __host : in_addr_t , ) -> in_addr ; 
} extern "C" {
 pub fn inet_netof ( __in : in_addr , ) -> in_addr_t ; 
} extern "C" {
 pub fn inet_network ( __cp : * const :: std :: os :: raw :: c_char , ) -> in_addr_t ; 
} extern "C" {
 pub fn inet_ntoa ( __in : in_addr , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn inet_pton ( __af : :: std :: os :: raw :: c_int , __cp : * const :: std :: os :: raw :: c_char , __buf : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn inet_ntop ( __af : :: std :: os :: raw :: c_int , __cp : * const :: std :: os :: raw :: c_void , __buf : * mut :: std :: os :: raw :: c_char , __len : socklen_t , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn inet_aton ( __cp : * const :: std :: os :: raw :: c_char , __inp : * mut in_addr , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn inet_neta ( __net : in_addr_t , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn inet_net_ntop ( __af : :: std :: os :: raw :: c_int , __cp : * const :: std :: os :: raw :: c_void , __bits : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __len : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn inet_net_pton ( __af : :: std :: os :: raw :: c_int , __cp : * const :: std :: os :: raw :: c_char , __buf : * mut :: std :: os :: raw :: c_void , __len : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn inet_nsap_addr ( __cp : * const :: std :: os :: raw :: c_char , __buf : * mut :: std :: os :: raw :: c_uchar , __len : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_uint ; 
} extern "C" {
 pub fn inet_nsap_ntoa ( __len : :: std :: os :: raw :: c_int , __cp : * const :: std :: os :: raw :: c_uchar , __buf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct rpcent { pub r_name : * mut :: std :: os :: raw :: c_char , pub r_aliases : * mut * mut :: std :: os :: raw :: c_char , pub r_number : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_rpcent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < rpcent > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( rpcent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < rpcent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( rpcent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const rpcent ) ) . r_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( rpcent ) , "::" , stringify ! ( r_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const rpcent ) ) . r_aliases as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( rpcent ) , "::" , stringify ! ( r_aliases ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const rpcent ) ) . r_number as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( rpcent ) , "::" , stringify ! ( r_number ) ) ) ; } extern "C" {
 pub fn setrpcent ( __stayopen : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn endrpcent ( ) ; 
} extern "C" {
 pub fn getrpcbyname ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut rpcent ; 
} extern "C" {
 pub fn getrpcbynumber ( __number : :: std :: os :: raw :: c_int , ) -> * mut rpcent ; 
} extern "C" {
 pub fn getrpcent ( ) -> * mut rpcent ; 
} extern "C" {
 pub fn getrpcbyname_r ( __name : * const :: std :: os :: raw :: c_char , __result_buf : * mut rpcent , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut rpcent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getrpcbynumber_r ( __number : :: std :: os :: raw :: c_int , __result_buf : * mut rpcent , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut rpcent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getrpcent_r ( __result_buf : * mut rpcent , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut rpcent , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct netent { pub n_name : * mut :: std :: os :: raw :: c_char , pub n_aliases : * mut * mut :: std :: os :: raw :: c_char , pub n_addrtype : :: std :: os :: raw :: c_int , pub n_net : u32 , } # [ test ] fn bindgen_test_layout_netent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < netent > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( netent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < netent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( netent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const netent ) ) . n_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( netent ) , "::" , stringify ! ( n_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const netent ) ) . n_aliases as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( netent ) , "::" , stringify ! ( n_aliases ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const netent ) ) . n_addrtype as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( netent ) , "::" , stringify ! ( n_addrtype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const netent ) ) . n_net as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( netent ) , "::" , stringify ! ( n_net ) ) ) ; } extern "C" {
 pub fn __h_errno_location ( ) -> * mut :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn herror ( __str : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn hstrerror ( __err_num : :: std :: os :: raw :: c_int , ) -> * const :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct hostent { pub h_name : * mut :: std :: os :: raw :: c_char , pub h_aliases : * mut * mut :: std :: os :: raw :: c_char , pub h_addrtype : :: std :: os :: raw :: c_int , pub h_length : :: std :: os :: raw :: c_int , pub h_addr_list : * mut * mut :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_hostent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < hostent > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( hostent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < hostent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( hostent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const hostent ) ) . h_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( hostent ) , "::" , stringify ! ( h_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const hostent ) ) . h_aliases as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( hostent ) , "::" , stringify ! ( h_aliases ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const hostent ) ) . h_addrtype as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( hostent ) , "::" , stringify ! ( h_addrtype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const hostent ) ) . h_length as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( hostent ) , "::" , stringify ! ( h_length ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const hostent ) ) . h_addr_list as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( hostent ) , "::" , stringify ! ( h_addr_list ) ) ) ; } extern "C" {
 pub fn sethostent ( __stay_open : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn endhostent ( ) ; 
} extern "C" {
 pub fn gethostent ( ) -> * mut hostent ; 
} extern "C" {
 pub fn gethostbyaddr ( __addr : * const :: std :: os :: raw :: c_void , __len : __socklen_t , __type : :: std :: os :: raw :: c_int , ) -> * mut hostent ; 
} extern "C" {
 pub fn gethostbyname ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut hostent ; 
} extern "C" {
 pub fn gethostbyname2 ( __name : * const :: std :: os :: raw :: c_char , __af : :: std :: os :: raw :: c_int , ) -> * mut hostent ; 
} extern "C" {
 pub fn gethostent_r ( __result_buf : * mut hostent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut hostent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn gethostbyaddr_r ( __addr : * const :: std :: os :: raw :: c_void , __len : __socklen_t , __type : :: std :: os :: raw :: c_int , __result_buf : * mut hostent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut hostent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn gethostbyname_r ( __name : * const :: std :: os :: raw :: c_char , __result_buf : * mut hostent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut hostent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn gethostbyname2_r ( __name : * const :: std :: os :: raw :: c_char , __af : :: std :: os :: raw :: c_int , __result_buf : * mut hostent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut hostent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setnetent ( __stay_open : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn endnetent ( ) ; 
} extern "C" {
 pub fn getnetent ( ) -> * mut netent ; 
} extern "C" {
 pub fn getnetbyaddr ( __net : u32 , __type : :: std :: os :: raw :: c_int , ) -> * mut netent ; 
} extern "C" {
 pub fn getnetbyname ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut netent ; 
} extern "C" {
 pub fn getnetent_r ( __result_buf : * mut netent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut netent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getnetbyaddr_r ( __net : u32 , __type : :: std :: os :: raw :: c_int , __result_buf : * mut netent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut netent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getnetbyname_r ( __name : * const :: std :: os :: raw :: c_char , __result_buf : * mut netent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut netent , __h_errnop : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct servent { pub s_name : * mut :: std :: os :: raw :: c_char , pub s_aliases : * mut * mut :: std :: os :: raw :: c_char , pub s_port : :: std :: os :: raw :: c_int , pub s_proto : * mut :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_servent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < servent > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( servent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < servent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( servent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const servent ) ) . s_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( servent ) , "::" , stringify ! ( s_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const servent ) ) . s_aliases as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( servent ) , "::" , stringify ! ( s_aliases ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const servent ) ) . s_port as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( servent ) , "::" , stringify ! ( s_port ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const servent ) ) . s_proto as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( servent ) , "::" , stringify ! ( s_proto ) ) ) ; } extern "C" {
 pub fn setservent ( __stay_open : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn endservent ( ) ; 
} extern "C" {
 pub fn getservent ( ) -> * mut servent ; 
} extern "C" {
 pub fn getservbyname ( __name : * const :: std :: os :: raw :: c_char , __proto : * const :: std :: os :: raw :: c_char , ) -> * mut servent ; 
} extern "C" {
 pub fn getservbyport ( __port : :: std :: os :: raw :: c_int , __proto : * const :: std :: os :: raw :: c_char , ) -> * mut servent ; 
} extern "C" {
 pub fn getservent_r ( __result_buf : * mut servent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut servent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getservbyname_r ( __name : * const :: std :: os :: raw :: c_char , __proto : * const :: std :: os :: raw :: c_char , __result_buf : * mut servent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut servent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getservbyport_r ( __port : :: std :: os :: raw :: c_int , __proto : * const :: std :: os :: raw :: c_char , __result_buf : * mut servent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut servent , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct protoent { pub p_name : * mut :: std :: os :: raw :: c_char , pub p_aliases : * mut * mut :: std :: os :: raw :: c_char , pub p_proto : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_protoent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < protoent > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( protoent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < protoent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( protoent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const protoent ) ) . p_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( protoent ) , "::" , stringify ! ( p_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const protoent ) ) . p_aliases as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( protoent ) , "::" , stringify ! ( p_aliases ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const protoent ) ) . p_proto as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( protoent ) , "::" , stringify ! ( p_proto ) ) ) ; } extern "C" {
 pub fn setprotoent ( __stay_open : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn endprotoent ( ) ; 
} extern "C" {
 pub fn getprotoent ( ) -> * mut protoent ; 
} extern "C" {
 pub fn getprotobyname ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut protoent ; 
} extern "C" {
 pub fn getprotobynumber ( __proto : :: std :: os :: raw :: c_int , ) -> * mut protoent ; 
} extern "C" {
 pub fn getprotoent_r ( __result_buf : * mut protoent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut protoent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getprotobyname_r ( __name : * const :: std :: os :: raw :: c_char , __result_buf : * mut protoent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut protoent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getprotobynumber_r ( __proto : :: std :: os :: raw :: c_int , __result_buf : * mut protoent , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut protoent , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn setnetgrent ( __netgroup : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn endnetgrent ( ) ; 
} extern "C" {
 pub fn getnetgrent ( __hostp : * mut * mut :: std :: os :: raw :: c_char , __userp : * mut * mut :: std :: os :: raw :: c_char , __domainp : * mut * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn innetgr ( __netgroup : * const :: std :: os :: raw :: c_char , __host : * const :: std :: os :: raw :: c_char , __user : * const :: std :: os :: raw :: c_char , __domain : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getnetgrent_r ( __hostp : * mut * mut :: std :: os :: raw :: c_char , __userp : * mut * mut :: std :: os :: raw :: c_char , __domainp : * mut * mut :: std :: os :: raw :: c_char , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rcmd ( __ahost : * mut * mut :: std :: os :: raw :: c_char , __rport : :: std :: os :: raw :: c_ushort , __locuser : * const :: std :: os :: raw :: c_char , __remuser : * const :: std :: os :: raw :: c_char , __cmd : * const :: std :: os :: raw :: c_char , __fd2p : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rcmd_af ( __ahost : * mut * mut :: std :: os :: raw :: c_char , __rport : :: std :: os :: raw :: c_ushort , __locuser : * const :: std :: os :: raw :: c_char , __remuser : * const :: std :: os :: raw :: c_char , __cmd : * const :: std :: os :: raw :: c_char , __fd2p : * mut :: std :: os :: raw :: c_int , __af : sa_family_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rexec ( __ahost : * mut * mut :: std :: os :: raw :: c_char , __rport : :: std :: os :: raw :: c_int , __name : * const :: std :: os :: raw :: c_char , __pass : * const :: std :: os :: raw :: c_char , __cmd : * const :: std :: os :: raw :: c_char , __fd2p : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rexec_af ( __ahost : * mut * mut :: std :: os :: raw :: c_char , __rport : :: std :: os :: raw :: c_int , __name : * const :: std :: os :: raw :: c_char , __pass : * const :: std :: os :: raw :: c_char , __cmd : * const :: std :: os :: raw :: c_char , __fd2p : * mut :: std :: os :: raw :: c_int , __af : sa_family_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ruserok ( __rhost : * const :: std :: os :: raw :: c_char , __suser : :: std :: os :: raw :: c_int , __remuser : * const :: std :: os :: raw :: c_char , __locuser : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ruserok_af ( __rhost : * const :: std :: os :: raw :: c_char , __suser : :: std :: os :: raw :: c_int , __remuser : * const :: std :: os :: raw :: c_char , __locuser : * const :: std :: os :: raw :: c_char , __af : sa_family_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn iruserok ( __raddr : u32 , __suser : :: std :: os :: raw :: c_int , __remuser : * const :: std :: os :: raw :: c_char , __locuser : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn iruserok_af ( __raddr : * const :: std :: os :: raw :: c_void , __suser : :: std :: os :: raw :: c_int , __remuser : * const :: std :: os :: raw :: c_char , __locuser : * const :: std :: os :: raw :: c_char , __af : sa_family_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rresvport ( __alport : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn rresvport_af ( __alport : * mut :: std :: os :: raw :: c_int , __af : sa_family_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct addrinfo { pub ai_flags : :: std :: os :: raw :: c_int , pub ai_family : :: std :: os :: raw :: c_int , pub ai_socktype : :: std :: os :: raw :: c_int , pub ai_protocol : :: std :: os :: raw :: c_int , pub ai_addrlen : socklen_t , pub ai_addr : * mut sockaddr , pub ai_canonname : * mut :: std :: os :: raw :: c_char , pub ai_next : * mut addrinfo , } # [ test ] fn bindgen_test_layout_addrinfo ( ) { assert_eq ! ( :: std :: mem :: size_of :: < addrinfo > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( addrinfo ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < addrinfo > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( addrinfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_flags as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_family as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_family ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_socktype as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_socktype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_protocol as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_protocol ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_addrlen as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_addrlen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_addr as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_canonname as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_canonname ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const addrinfo ) ) . ai_next as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( addrinfo ) , "::" , stringify ! ( ai_next ) ) ) ; } extern "C" {
 pub fn getaddrinfo ( __name : * const :: std :: os :: raw :: c_char , __service : * const :: std :: os :: raw :: c_char , __req : * const addrinfo , __pai : * mut * mut addrinfo , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn freeaddrinfo ( __ai : * mut addrinfo , ) ; 
} extern "C" {
 pub fn gai_strerror ( __ecode : :: std :: os :: raw :: c_int , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn getnameinfo ( __sa : * const sockaddr , __salen : socklen_t , __host : * mut :: std :: os :: raw :: c_char , __hostlen : socklen_t , __serv : * mut :: std :: os :: raw :: c_char , __servlen : socklen_t , __flags : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub type cc_t = :: std :: os :: raw :: c_uchar ; pub type speed_t = :: std :: os :: raw :: c_uint ; pub type tcflag_t = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct termios { pub c_iflag : tcflag_t , pub c_oflag : tcflag_t , pub c_cflag : tcflag_t , pub c_lflag : tcflag_t , pub c_line : cc_t , pub c_cc : [ cc_t ; 32usize ] , pub c_ispeed : speed_t , pub c_ospeed : speed_t , } # [ test ] fn bindgen_test_layout_termios ( ) { assert_eq ! ( :: std :: mem :: size_of :: < termios > ( ) , 60usize , concat ! ( "Size of: " , stringify ! ( termios ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < termios > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( termios ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_iflag as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_iflag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_oflag as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_oflag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_cflag as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_cflag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_lflag as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_lflag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_line as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_line ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_cc as * const _ as usize } , 17usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_cc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_ispeed as * const _ as usize } , 52usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_ispeed ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const termios ) ) . c_ospeed as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( termios ) , "::" , stringify ! ( c_ospeed ) ) ) ; } extern "C" {
 pub fn cfgetospeed ( __termios_p : * const termios , ) -> speed_t ; 
} extern "C" {
 pub fn cfgetispeed ( __termios_p : * const termios , ) -> speed_t ; 
} extern "C" {
 pub fn cfsetospeed ( __termios_p : * mut termios , __speed : speed_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cfsetispeed ( __termios_p : * mut termios , __speed : speed_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cfsetspeed ( __termios_p : * mut termios , __speed : speed_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcgetattr ( __fd : :: std :: os :: raw :: c_int , __termios_p : * mut termios , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcsetattr ( __fd : :: std :: os :: raw :: c_int , __optional_actions : :: std :: os :: raw :: c_int , __termios_p : * const termios , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn cfmakeraw ( __termios_p : * mut termios , ) ; 
} extern "C" {
 pub fn tcsendbreak ( __fd : :: std :: os :: raw :: c_int , __duration : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcdrain ( __fd : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcflush ( __fd : :: std :: os :: raw :: c_int , __queue_selector : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcflow ( __fd : :: std :: os :: raw :: c_int , __action : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn tcgetsid ( __fd : :: std :: os :: raw :: c_int , ) -> __pid_t ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct passwd { pub pw_name : * mut :: std :: os :: raw :: c_char , pub pw_passwd : * mut :: std :: os :: raw :: c_char , pub pw_uid : __uid_t , pub pw_gid : __gid_t , pub pw_gecos : * mut :: std :: os :: raw :: c_char , pub pw_dir : * mut :: std :: os :: raw :: c_char , pub pw_shell : * mut :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_passwd ( ) { assert_eq ! ( :: std :: mem :: size_of :: < passwd > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( passwd ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < passwd > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( passwd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_passwd as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_passwd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_uid as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_gid as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_gid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_gecos as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_gecos ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_dir as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_dir ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const passwd ) ) . pw_shell as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( passwd ) , "::" , stringify ! ( pw_shell ) ) ) ; } extern "C" {
 pub fn setpwent ( ) ; 
} extern "C" {
 pub fn endpwent ( ) ; 
} extern "C" {
 pub fn getpwent ( ) -> * mut passwd ; 
} extern "C" {
 pub fn fgetpwent ( __stream : * mut FILE , ) -> * mut passwd ; 
} extern "C" {
 pub fn putpwent ( __p : * const passwd , __f : * mut FILE , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getpwuid ( __uid : __uid_t , ) -> * mut passwd ; 
} extern "C" {
 pub fn getpwnam ( __name : * const :: std :: os :: raw :: c_char , ) -> * mut passwd ; 
} extern "C" {
 pub fn getpwent_r ( __resultbuf : * mut passwd , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut passwd , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getpwuid_r ( __uid : __uid_t , __resultbuf : * mut passwd , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut passwd , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn getpwnam_r ( __name : * const :: std :: os :: raw :: c_char , __resultbuf : * mut passwd , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut passwd , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn fgetpwent_r ( __stream : * mut FILE , __resultbuf : * mut passwd , __buffer : * mut :: std :: os :: raw :: c_char , __buflen : usize , __result : * mut * mut passwd , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union sem_t { pub __size : [ :: std :: os :: raw :: c_char ; 32usize ] , pub __align : :: std :: os :: raw :: c_long , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_sem_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sem_t > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( sem_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sem_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sem_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sem_t ) ) . __size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sem_t ) , "::" , stringify ! ( __size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sem_t ) ) . __align as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sem_t ) , "::" , stringify ! ( __align ) ) ) ; } extern "C" {
 pub fn sem_init ( __sem : * mut sem_t , __pshared : :: std :: os :: raw :: c_int , __value : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_destroy ( __sem : * mut sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_open ( __name : * const :: std :: os :: raw :: c_char , __oflag : :: std :: os :: raw :: c_int , ... ) -> * mut sem_t ; 
} extern "C" {
 pub fn sem_close ( __sem : * mut sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_unlink ( __name : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_wait ( __sem : * mut sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_timedwait ( __sem : * mut sem_t , __abstime : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_trywait ( __sem : * mut sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_post ( __sem : * mut sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sem_getvalue ( __sem : * mut sem_t , __sval : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sched_param { pub __sched_priority : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_sched_param ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sched_param > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( sched_param ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sched_param > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( sched_param ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sched_param ) ) . __sched_priority as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sched_param ) , "::" , stringify ! ( __sched_priority ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __sched_param { pub __sched_priority : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout___sched_param ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __sched_param > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( __sched_param ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __sched_param > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( __sched_param ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __sched_param ) ) . __sched_priority as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __sched_param ) , "::" , stringify ! ( __sched_priority ) ) ) ; } pub type __cpu_mask = :: std :: os :: raw :: c_ulong ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct cpu_set_t { pub __bits : [ __cpu_mask ; 16usize ] , } # [ test ] fn bindgen_test_layout_cpu_set_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < cpu_set_t > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( cpu_set_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < cpu_set_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( cpu_set_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const cpu_set_t ) ) . __bits as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( cpu_set_t ) , "::" , stringify ! ( __bits ) ) ) ; } extern "C" {
 pub fn __sched_cpucount ( __setsize : usize , __setp : * const cpu_set_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __sched_cpualloc ( __count : usize , ) -> * mut cpu_set_t ; 
} extern "C" {
 pub fn __sched_cpufree ( __set : * mut cpu_set_t , ) ; 
} extern "C" {
 pub fn sched_setparam ( __pid : __pid_t , __param : * const sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_getparam ( __pid : __pid_t , __param : * mut sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_setscheduler ( __pid : __pid_t , __policy : :: std :: os :: raw :: c_int , __param : * const sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_getscheduler ( __pid : __pid_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_yield ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_get_priority_max ( __algorithm : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_get_priority_min ( __algorithm : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sched_rr_get_interval ( __pid : __pid_t , __t : * mut timespec , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct tm { pub tm_sec : :: std :: os :: raw :: c_int , pub tm_min : :: std :: os :: raw :: c_int , pub tm_hour : :: std :: os :: raw :: c_int , pub tm_mday : :: std :: os :: raw :: c_int , pub tm_mon : :: std :: os :: raw :: c_int , pub tm_year : :: std :: os :: raw :: c_int , pub tm_wday : :: std :: os :: raw :: c_int , pub tm_yday : :: std :: os :: raw :: c_int , pub tm_isdst : :: std :: os :: raw :: c_int , pub tm_gmtoff : :: std :: os :: raw :: c_long , pub tm_zone : * const :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_tm ( ) { assert_eq ! ( :: std :: mem :: size_of :: < tm > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( tm ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < tm > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( tm ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_min as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_min ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_hour as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_hour ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_mday as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_mday ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_mon as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_mon ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_year as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_year ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_wday as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_wday ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_yday as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_yday ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_isdst as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_isdst ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_gmtoff as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_gmtoff ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const tm ) ) . tm_zone as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( tm ) , "::" , stringify ! ( tm_zone ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct itimerspec { pub it_interval : timespec , pub it_value : timespec , } # [ test ] fn bindgen_test_layout_itimerspec ( ) { assert_eq ! ( :: std :: mem :: size_of :: < itimerspec > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( itimerspec ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < itimerspec > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( itimerspec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const itimerspec ) ) . it_interval as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( itimerspec ) , "::" , stringify ! ( it_interval ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const itimerspec ) ) . it_value as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( itimerspec ) , "::" , stringify ! ( it_value ) ) ) ; } extern "C" {
 pub fn clock ( ) -> clock_t ; 
} extern "C" {
 pub fn time ( __timer : * mut time_t , ) -> time_t ; 
} extern "C" {
 pub fn difftime ( __time1 : time_t , __time0 : time_t , ) -> f64 ; 
} extern "C" {
 pub fn mktime ( __tp : * mut tm , ) -> time_t ; 
} extern "C" {
 pub fn strftime ( __s : * mut :: std :: os :: raw :: c_char , __maxsize : usize , __format : * const :: std :: os :: raw :: c_char , __tp : * const tm , ) -> usize ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __locale_struct { pub __locales : [ * mut __locale_data ; 13usize ] , pub __ctype_b : * const :: std :: os :: raw :: c_ushort , pub __ctype_tolower : * const :: std :: os :: raw :: c_int , pub __ctype_toupper : * const :: std :: os :: raw :: c_int , pub __names : [ * const :: std :: os :: raw :: c_char ; 13usize ] , } # [ test ] fn bindgen_test_layout___locale_struct ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __locale_struct > ( ) , 232usize , concat ! ( "Size of: " , stringify ! ( __locale_struct ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __locale_struct > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __locale_struct ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __locale_struct ) ) . __locales as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __locale_struct ) , "::" , stringify ! ( __locales ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __locale_struct ) ) . __ctype_b as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( __locale_struct ) , "::" , stringify ! ( __ctype_b ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __locale_struct ) ) . __ctype_tolower as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( __locale_struct ) , "::" , stringify ! ( __ctype_tolower ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __locale_struct ) ) . __ctype_toupper as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( __locale_struct ) , "::" , stringify ! ( __ctype_toupper ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __locale_struct ) ) . __names as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( __locale_struct ) , "::" , stringify ! ( __names ) ) ) ; } pub type __locale_t = * mut __locale_struct ; pub type locale_t = __locale_t ; extern "C" {
 pub fn strftime_l ( __s : * mut :: std :: os :: raw :: c_char , __maxsize : usize , __format : * const :: std :: os :: raw :: c_char , __tp : * const tm , __loc : __locale_t , ) -> usize ; 
} extern "C" {
 pub fn gmtime ( __timer : * const time_t , ) -> * mut tm ; 
} extern "C" {
 pub fn localtime ( __timer : * const time_t , ) -> * mut tm ; 
} extern "C" {
 pub fn gmtime_r ( __timer : * const time_t , __tp : * mut tm , ) -> * mut tm ; 
} extern "C" {
 pub fn localtime_r ( __timer : * const time_t , __tp : * mut tm , ) -> * mut tm ; 
} extern "C" {
 pub fn asctime ( __tp : * const tm , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ctime ( __timer : * const time_t , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn asctime_r ( __tp : * const tm , __buf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ctime_r ( __timer : * const time_t , __buf : * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 # [ link_name = "\u{1}__tzname" ] 
 pub static mut  __tzname  :  [ * mut :: std :: os :: raw :: c_char ; 2usize ] ;
} extern "C" {
 # [ link_name = "\u{1}__daylight" ] 
 pub static mut  __daylight  :  :: std :: os :: raw :: c_int ;
} extern "C" {
 # [ link_name = "\u{1}__timezone" ] 
 pub static mut  __timezone  :  :: std :: os :: raw :: c_long ;
} extern "C" {
 # [ link_name = "\u{1}tzname" ] 
 pub static mut  tzname  :  [ * mut :: std :: os :: raw :: c_char ; 2usize ] ;
} extern "C" {
 pub fn tzset ( ) ; 
} extern "C" {
 # [ link_name = "\u{1}daylight" ] 
 pub static mut  daylight  :  :: std :: os :: raw :: c_int ;
} extern "C" {
 # [ link_name = "\u{1}timezone" ] 
 pub static mut  timezone  :  :: std :: os :: raw :: c_long ;
} extern "C" {
 pub fn stime ( __when : * const time_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timegm ( __tp : * mut tm , ) -> time_t ; 
} extern "C" {
 pub fn timelocal ( __tp : * mut tm , ) -> time_t ; 
} extern "C" {
 pub fn dysize ( __year : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn nanosleep ( __requested_time : * const timespec , __remaining : * mut timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clock_getres ( __clock_id : clockid_t , __res : * mut timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clock_gettime ( __clock_id : clockid_t , __tp : * mut timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clock_settime ( __clock_id : clockid_t , __tp : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clock_nanosleep ( __clock_id : clockid_t , __flags : :: std :: os :: raw :: c_int , __req : * const timespec , __rem : * mut timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn clock_getcpuclockid ( __pid : pid_t , __clock_id : * mut clockid_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timer_create ( __clock_id : clockid_t , __evp : * mut sigevent , __timerid : * mut timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timer_delete ( __timerid : timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timer_settime ( __timerid : timer_t , __flags : :: std :: os :: raw :: c_int , __value : * const itimerspec , __ovalue : * mut itimerspec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timer_gettime ( __timerid : timer_t , __value : * mut itimerspec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timer_getoverrun ( __timerid : timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn timespec_get ( __ts : * mut timespec , __base : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub type __jmp_buf = [ :: std :: os :: raw :: c_long ; 8usize ] ; pub const PTHREAD_CREATE_JOINABLE : _bindgen_ty_11 = 0 ; pub const PTHREAD_CREATE_DETACHED : _bindgen_ty_11 = 1 ; pub type _bindgen_ty_11 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_MUTEX_TIMED_NP : _bindgen_ty_12 = 0 ; pub const PTHREAD_MUTEX_RECURSIVE_NP : _bindgen_ty_12 = 1 ; pub const PTHREAD_MUTEX_ERRORCHECK_NP : _bindgen_ty_12 = 2 ; pub const PTHREAD_MUTEX_ADAPTIVE_NP : _bindgen_ty_12 = 3 ; pub const PTHREAD_MUTEX_NORMAL : _bindgen_ty_12 = 0 ; pub const PTHREAD_MUTEX_RECURSIVE : _bindgen_ty_12 = 1 ; pub const PTHREAD_MUTEX_ERRORCHECK : _bindgen_ty_12 = 2 ; pub const PTHREAD_MUTEX_DEFAULT : _bindgen_ty_12 = 0 ; pub type _bindgen_ty_12 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_MUTEX_STALLED : _bindgen_ty_13 = 0 ; pub const PTHREAD_MUTEX_STALLED_NP : _bindgen_ty_13 = 0 ; pub const PTHREAD_MUTEX_ROBUST : _bindgen_ty_13 = 1 ; pub const PTHREAD_MUTEX_ROBUST_NP : _bindgen_ty_13 = 1 ; pub type _bindgen_ty_13 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_PRIO_NONE : _bindgen_ty_14 = 0 ; pub const PTHREAD_PRIO_INHERIT : _bindgen_ty_14 = 1 ; pub const PTHREAD_PRIO_PROTECT : _bindgen_ty_14 = 2 ; pub type _bindgen_ty_14 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_RWLOCK_PREFER_READER_NP : _bindgen_ty_15 = 0 ; pub const PTHREAD_RWLOCK_PREFER_WRITER_NP : _bindgen_ty_15 = 1 ; pub const PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP : _bindgen_ty_15 = 2 ; pub const PTHREAD_RWLOCK_DEFAULT_NP : _bindgen_ty_15 = 0 ; pub type _bindgen_ty_15 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_INHERIT_SCHED : _bindgen_ty_16 = 0 ; pub const PTHREAD_EXPLICIT_SCHED : _bindgen_ty_16 = 1 ; pub type _bindgen_ty_16 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_SCOPE_SYSTEM : _bindgen_ty_17 = 0 ; pub const PTHREAD_SCOPE_PROCESS : _bindgen_ty_17 = 1 ; pub type _bindgen_ty_17 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_PROCESS_PRIVATE : _bindgen_ty_18 = 0 ; pub const PTHREAD_PROCESS_SHARED : _bindgen_ty_18 = 1 ; pub type _bindgen_ty_18 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _pthread_cleanup_buffer { pub __routine : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut :: std :: os :: raw :: c_void ) > , pub __arg : * mut :: std :: os :: raw :: c_void , pub __canceltype : :: std :: os :: raw :: c_int , pub __prev : * mut _pthread_cleanup_buffer , } # [ test ] fn bindgen_test_layout__pthread_cleanup_buffer ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _pthread_cleanup_buffer > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( _pthread_cleanup_buffer ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _pthread_cleanup_buffer > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _pthread_cleanup_buffer ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _pthread_cleanup_buffer ) ) . __routine as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _pthread_cleanup_buffer ) , "::" , stringify ! ( __routine ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _pthread_cleanup_buffer ) ) . __arg as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _pthread_cleanup_buffer ) , "::" , stringify ! ( __arg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _pthread_cleanup_buffer ) ) . __canceltype as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _pthread_cleanup_buffer ) , "::" , stringify ! ( __canceltype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _pthread_cleanup_buffer ) ) . __prev as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _pthread_cleanup_buffer ) , "::" , stringify ! ( __prev ) ) ) ; } pub const PTHREAD_CANCEL_ENABLE : _bindgen_ty_19 = 0 ; pub const PTHREAD_CANCEL_DISABLE : _bindgen_ty_19 = 1 ; pub type _bindgen_ty_19 = :: std :: os :: raw :: c_uint ; pub const PTHREAD_CANCEL_DEFERRED : _bindgen_ty_20 = 0 ; pub const PTHREAD_CANCEL_ASYNCHRONOUS : _bindgen_ty_20 = 1 ; pub type _bindgen_ty_20 = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn pthread_create ( __newthread : * mut pthread_t , __attr : * const pthread_attr_t , __start_routine : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut :: std :: os :: raw :: c_void ) -> * mut :: std :: os :: raw :: c_void > , __arg : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_exit ( __retval : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn pthread_join ( __th : pthread_t , __thread_return : * mut * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_detach ( __th : pthread_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_self ( ) -> pthread_t ; 
} extern "C" {
 pub fn pthread_equal ( __thread1 : pthread_t , __thread2 : pthread_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_init ( __attr : * mut pthread_attr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_destroy ( __attr : * mut pthread_attr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getdetachstate ( __attr : * const pthread_attr_t , __detachstate : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setdetachstate ( __attr : * mut pthread_attr_t , __detachstate : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getguardsize ( __attr : * const pthread_attr_t , __guardsize : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setguardsize ( __attr : * mut pthread_attr_t , __guardsize : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getschedparam ( __attr : * const pthread_attr_t , __param : * mut sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setschedparam ( __attr : * mut pthread_attr_t , __param : * const sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getschedpolicy ( __attr : * const pthread_attr_t , __policy : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setschedpolicy ( __attr : * mut pthread_attr_t , __policy : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getinheritsched ( __attr : * const pthread_attr_t , __inherit : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setinheritsched ( __attr : * mut pthread_attr_t , __inherit : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getscope ( __attr : * const pthread_attr_t , __scope : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setscope ( __attr : * mut pthread_attr_t , __scope : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getstackaddr ( __attr : * const pthread_attr_t , __stackaddr : * mut * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setstackaddr ( __attr : * mut pthread_attr_t , __stackaddr : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getstacksize ( __attr : * const pthread_attr_t , __stacksize : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setstacksize ( __attr : * mut pthread_attr_t , __stacksize : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_getstack ( __attr : * const pthread_attr_t , __stackaddr : * mut * mut :: std :: os :: raw :: c_void , __stacksize : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_attr_setstack ( __attr : * mut pthread_attr_t , __stackaddr : * mut :: std :: os :: raw :: c_void , __stacksize : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_setschedparam ( __target_thread : pthread_t , __policy : :: std :: os :: raw :: c_int , __param : * const sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_getschedparam ( __target_thread : pthread_t , __policy : * mut :: std :: os :: raw :: c_int , __param : * mut sched_param , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_setschedprio ( __target_thread : pthread_t , __prio : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_once ( __once_control : * mut pthread_once_t , __init_routine : :: std :: option :: Option < unsafe extern "C" fn ( ) > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_setcancelstate ( __state : :: std :: os :: raw :: c_int , __oldstate : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_setcanceltype ( __type : :: std :: os :: raw :: c_int , __oldtype : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cancel ( __th : pthread_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_testcancel ( ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __pthread_unwind_buf_t { pub __cancel_jmp_buf : [ __pthread_unwind_buf_t__bindgen_ty_1 ; 1usize ] , pub __pad : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __pthread_unwind_buf_t__bindgen_ty_1 { pub __cancel_jmp_buf : __jmp_buf , pub __mask_was_saved : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout___pthread_unwind_buf_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __pthread_unwind_buf_t__bindgen_ty_1 > ( ) , 72usize , concat ! ( "Size of: " , stringify ! ( __pthread_unwind_buf_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __pthread_unwind_buf_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __pthread_unwind_buf_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_unwind_buf_t__bindgen_ty_1 ) ) . __cancel_jmp_buf as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_unwind_buf_t__bindgen_ty_1 ) , "::" , stringify ! ( __cancel_jmp_buf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_unwind_buf_t__bindgen_ty_1 ) ) . __mask_was_saved as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_unwind_buf_t__bindgen_ty_1 ) , "::" , stringify ! ( __mask_was_saved ) ) ) ; } # [ test ] fn bindgen_test_layout___pthread_unwind_buf_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __pthread_unwind_buf_t > ( ) , 104usize , concat ! ( "Size of: " , stringify ! ( __pthread_unwind_buf_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __pthread_unwind_buf_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __pthread_unwind_buf_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_unwind_buf_t ) ) . __cancel_jmp_buf as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_unwind_buf_t ) , "::" , stringify ! ( __cancel_jmp_buf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_unwind_buf_t ) ) . __pad as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_unwind_buf_t ) , "::" , stringify ! ( __pad ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __pthread_cleanup_frame { pub __cancel_routine : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut :: std :: os :: raw :: c_void ) > , pub __cancel_arg : * mut :: std :: os :: raw :: c_void , pub __do_it : :: std :: os :: raw :: c_int , pub __cancel_type : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout___pthread_cleanup_frame ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __pthread_cleanup_frame > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( __pthread_cleanup_frame ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __pthread_cleanup_frame > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __pthread_cleanup_frame ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_cleanup_frame ) ) . __cancel_routine as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_cleanup_frame ) , "::" , stringify ! ( __cancel_routine ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_cleanup_frame ) ) . __cancel_arg as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_cleanup_frame ) , "::" , stringify ! ( __cancel_arg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_cleanup_frame ) ) . __do_it as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_cleanup_frame ) , "::" , stringify ! ( __do_it ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __pthread_cleanup_frame ) ) . __cancel_type as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( __pthread_cleanup_frame ) , "::" , stringify ! ( __cancel_type ) ) ) ; } extern "C" {
 pub fn __pthread_register_cancel ( __buf : * mut __pthread_unwind_buf_t , ) ; 
} extern "C" {
 pub fn __pthread_unregister_cancel ( __buf : * mut __pthread_unwind_buf_t , ) ; 
} extern "C" {
 pub fn __pthread_unwind_next ( __buf : * mut __pthread_unwind_buf_t , ) ; 
} extern "C" {
 pub fn __sigsetjmp ( __env : * mut __jmp_buf_tag , __savemask : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_init ( __mutex : * mut pthread_mutex_t , __mutexattr : * const pthread_mutexattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_destroy ( __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_trylock ( __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_lock ( __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_timedlock ( __mutex : * mut pthread_mutex_t , __abstime : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_unlock ( __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_getprioceiling ( __mutex : * const pthread_mutex_t , __prioceiling : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_setprioceiling ( __mutex : * mut pthread_mutex_t , __prioceiling : :: std :: os :: raw :: c_int , __old_ceiling : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutex_consistent ( __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_init ( __attr : * mut pthread_mutexattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_destroy ( __attr : * mut pthread_mutexattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_getpshared ( __attr : * const pthread_mutexattr_t , __pshared : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_setpshared ( __attr : * mut pthread_mutexattr_t , __pshared : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_gettype ( __attr : * const pthread_mutexattr_t , __kind : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_settype ( __attr : * mut pthread_mutexattr_t , __kind : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_getprotocol ( __attr : * const pthread_mutexattr_t , __protocol : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_setprotocol ( __attr : * mut pthread_mutexattr_t , __protocol : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_getprioceiling ( __attr : * const pthread_mutexattr_t , __prioceiling : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_setprioceiling ( __attr : * mut pthread_mutexattr_t , __prioceiling : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_getrobust ( __attr : * const pthread_mutexattr_t , __robustness : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_mutexattr_setrobust ( __attr : * mut pthread_mutexattr_t , __robustness : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_init ( __rwlock : * mut pthread_rwlock_t , __attr : * const pthread_rwlockattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_destroy ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_rdlock ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_tryrdlock ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_timedrdlock ( __rwlock : * mut pthread_rwlock_t , __abstime : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_wrlock ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_trywrlock ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_timedwrlock ( __rwlock : * mut pthread_rwlock_t , __abstime : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlock_unlock ( __rwlock : * mut pthread_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_init ( __attr : * mut pthread_rwlockattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_destroy ( __attr : * mut pthread_rwlockattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_getpshared ( __attr : * const pthread_rwlockattr_t , __pshared : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_setpshared ( __attr : * mut pthread_rwlockattr_t , __pshared : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_getkind_np ( __attr : * const pthread_rwlockattr_t , __pref : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_rwlockattr_setkind_np ( __attr : * mut pthread_rwlockattr_t , __pref : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_init ( __cond : * mut pthread_cond_t , __cond_attr : * const pthread_condattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_destroy ( __cond : * mut pthread_cond_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_signal ( __cond : * mut pthread_cond_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_broadcast ( __cond : * mut pthread_cond_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_wait ( __cond : * mut pthread_cond_t , __mutex : * mut pthread_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_cond_timedwait ( __cond : * mut pthread_cond_t , __mutex : * mut pthread_mutex_t , __abstime : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_init ( __attr : * mut pthread_condattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_destroy ( __attr : * mut pthread_condattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_getpshared ( __attr : * const pthread_condattr_t , __pshared : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_setpshared ( __attr : * mut pthread_condattr_t , __pshared : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_getclock ( __attr : * const pthread_condattr_t , __clock_id : * mut __clockid_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_condattr_setclock ( __attr : * mut pthread_condattr_t , __clock_id : __clockid_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_spin_init ( __lock : * mut pthread_spinlock_t , __pshared : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_spin_destroy ( __lock : * mut pthread_spinlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_spin_lock ( __lock : * mut pthread_spinlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_spin_trylock ( __lock : * mut pthread_spinlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_spin_unlock ( __lock : * mut pthread_spinlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrier_init ( __barrier : * mut pthread_barrier_t , __attr : * const pthread_barrierattr_t , __count : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrier_destroy ( __barrier : * mut pthread_barrier_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrier_wait ( __barrier : * mut pthread_barrier_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrierattr_init ( __attr : * mut pthread_barrierattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrierattr_destroy ( __attr : * mut pthread_barrierattr_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrierattr_getpshared ( __attr : * const pthread_barrierattr_t , __pshared : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_barrierattr_setpshared ( __attr : * mut pthread_barrierattr_t , __pshared : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_key_create ( __key : * mut pthread_key_t , __destr_function : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut :: std :: os :: raw :: c_void ) > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_key_delete ( __key : pthread_key_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_getspecific ( __key : pthread_key_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn pthread_setspecific ( __key : pthread_key_t , __pointer : * const :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_getcpuclockid ( __thread_id : pthread_t , __clock_id : * mut __clockid_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_atfork ( __prepare : :: std :: option :: Option < unsafe extern "C" fn ( ) > , __parent : :: std :: option :: Option < unsafe extern "C" fn ( ) > , __child : :: std :: option :: Option < unsafe extern "C" fn ( ) > , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __sigismember ( arg1 : * const __sigset_t , arg2 : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __sigaddset ( arg1 : * mut __sigset_t , arg2 : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __sigdelset ( arg1 : * mut __sigset_t , arg2 : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub type sig_atomic_t = __sig_atomic_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union sigval { pub sival_int : :: std :: os :: raw :: c_int , pub sival_ptr : * mut :: std :: os :: raw :: c_void , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_sigval ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigval > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( sigval ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigval > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigval ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigval ) ) . sival_int as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigval ) , "::" , stringify ! ( sival_int ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigval ) ) . sival_ptr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigval ) , "::" , stringify ! ( sival_ptr ) ) ) ; } pub type sigval_t = sigval ; pub type __sigchld_clock_t = __clock_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct siginfo_t { pub si_signo : :: std :: os :: raw :: c_int , pub si_errno : :: std :: os :: raw :: c_int , pub si_code : :: std :: os :: raw :: c_int , pub _sifields : siginfo_t__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union siginfo_t__bindgen_ty_1 { pub _pad : [ :: std :: os :: raw :: c_int ; 28usize ] , pub _kill : siginfo_t__bindgen_ty_1__bindgen_ty_1 , pub _timer : siginfo_t__bindgen_ty_1__bindgen_ty_2 , pub _rt : siginfo_t__bindgen_ty_1__bindgen_ty_3 , pub _sigchld : siginfo_t__bindgen_ty_1__bindgen_ty_4 , pub _sigfault : siginfo_t__bindgen_ty_1__bindgen_ty_5 , pub _sigpoll : siginfo_t__bindgen_ty_1__bindgen_ty_6 , pub _sigsys : siginfo_t__bindgen_ty_1__bindgen_ty_7 , _bindgen_union_align : [ u64 ; 14usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_1 { pub si_pid : __pid_t , pub si_uid : __uid_t , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_1 ) ) . si_pid as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( si_pid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_1 ) ) . si_uid as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( si_uid ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_2 { pub si_tid : :: std :: os :: raw :: c_int , pub si_overrun : :: std :: os :: raw :: c_int , pub si_sigval : sigval_t , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_2 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_2 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_2 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_2 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_2 ) ) . si_tid as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( si_tid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_2 ) ) . si_overrun as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( si_overrun ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_2 ) ) . si_sigval as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_2 ) , "::" , stringify ! ( si_sigval ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_3 { pub si_pid : __pid_t , pub si_uid : __uid_t , pub si_sigval : sigval_t , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_3 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_3 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_3 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_3 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_3 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_3 ) ) . si_pid as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_3 ) , "::" , stringify ! ( si_pid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_3 ) ) . si_uid as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_3 ) , "::" , stringify ! ( si_uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_3 ) ) . si_sigval as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_3 ) , "::" , stringify ! ( si_sigval ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_4 { pub si_pid : __pid_t , pub si_uid : __uid_t , pub si_status : :: std :: os :: raw :: c_int , pub si_utime : __sigchld_clock_t , pub si_stime : __sigchld_clock_t , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_4 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_4 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_4 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) . si_pid as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) , "::" , stringify ! ( si_pid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) . si_uid as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) , "::" , stringify ! ( si_uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) . si_status as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) , "::" , stringify ! ( si_status ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) . si_utime as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) , "::" , stringify ! ( si_utime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_4 ) ) . si_stime as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_4 ) , "::" , stringify ! ( si_stime ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_5 { pub si_addr : * mut :: std :: os :: raw :: c_void , pub si_addr_lsb : :: std :: os :: raw :: c_short , pub si_addr_bnd : siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 { pub _lower : * mut :: std :: os :: raw :: c_void , pub _upper : * mut :: std :: os :: raw :: c_void , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) ) . _lower as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) , "::" , stringify ! ( _lower ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) ) . _upper as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5__bindgen_ty_1 ) , "::" , stringify ! ( _upper ) ) ) ; } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_5 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_5 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_5 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_5 ) ) . si_addr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5 ) , "::" , stringify ! ( si_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_5 ) ) . si_addr_lsb as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5 ) , "::" , stringify ! ( si_addr_lsb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_5 ) ) . si_addr_bnd as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_5 ) , "::" , stringify ! ( si_addr_bnd ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_6 { pub si_band : :: std :: os :: raw :: c_long , pub si_fd : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_6 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_6 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_6 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_6 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_6 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_6 ) ) . si_band as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_6 ) , "::" , stringify ! ( si_band ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_6 ) ) . si_fd as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_6 ) , "::" , stringify ! ( si_fd ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct siginfo_t__bindgen_ty_1__bindgen_ty_7 { pub _call_addr : * mut :: std :: os :: raw :: c_void , pub _syscall : :: std :: os :: raw :: c_int , pub _arch : :: std :: os :: raw :: c_uint , } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1__bindgen_ty_7 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_7 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_7 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1__bindgen_ty_7 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_7 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_7 ) ) . _call_addr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_7 ) , "::" , stringify ! ( _call_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_7 ) ) . _syscall as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_7 ) , "::" , stringify ! ( _syscall ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1__bindgen_ty_7 ) ) . _arch as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1__bindgen_ty_7 ) , "::" , stringify ! ( _arch ) ) ) ; } # [ test ] fn bindgen_test_layout_siginfo_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t__bindgen_ty_1 > ( ) , 112usize , concat ! ( "Size of: " , stringify ! ( siginfo_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _pad as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _pad ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _kill as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _kill ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _timer as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _timer ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _rt as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _rt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _sigchld as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _sigchld ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _sigfault as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _sigfault ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _sigpoll as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _sigpoll ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t__bindgen_ty_1 ) ) . _sigsys as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t__bindgen_ty_1 ) , "::" , stringify ! ( _sigsys ) ) ) ; } # [ test ] fn bindgen_test_layout_siginfo_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < siginfo_t > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( siginfo_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < siginfo_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( siginfo_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t ) ) . si_signo as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t ) , "::" , stringify ! ( si_signo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t ) ) . si_errno as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t ) , "::" , stringify ! ( si_errno ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t ) ) . si_code as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t ) , "::" , stringify ! ( si_code ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const siginfo_t ) ) . _sifields as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( siginfo_t ) , "::" , stringify ! ( _sifields ) ) ) ; } pub const SI_ASYNCNL : _bindgen_ty_21 = -60 ; pub const SI_TKILL : _bindgen_ty_21 = -6 ; pub const SI_SIGIO : _bindgen_ty_21 = -5 ; pub const SI_ASYNCIO : _bindgen_ty_21 = -4 ; pub const SI_MESGQ : _bindgen_ty_21 = -3 ; pub const SI_TIMER : _bindgen_ty_21 = -2 ; pub const SI_QUEUE : _bindgen_ty_21 = -1 ; pub const SI_USER : _bindgen_ty_21 = 0 ; pub const SI_KERNEL : _bindgen_ty_21 = 128 ; pub type _bindgen_ty_21 = :: std :: os :: raw :: c_int ; pub const ILL_ILLOPC : _bindgen_ty_22 = 1 ; pub const ILL_ILLOPN : _bindgen_ty_22 = 2 ; pub const ILL_ILLADR : _bindgen_ty_22 = 3 ; pub const ILL_ILLTRP : _bindgen_ty_22 = 4 ; pub const ILL_PRVOPC : _bindgen_ty_22 = 5 ; pub const ILL_PRVREG : _bindgen_ty_22 = 6 ; pub const ILL_COPROC : _bindgen_ty_22 = 7 ; pub const ILL_BADSTK : _bindgen_ty_22 = 8 ; pub type _bindgen_ty_22 = :: std :: os :: raw :: c_uint ; pub const FPE_INTDIV : _bindgen_ty_23 = 1 ; pub const FPE_INTOVF : _bindgen_ty_23 = 2 ; pub const FPE_FLTDIV : _bindgen_ty_23 = 3 ; pub const FPE_FLTOVF : _bindgen_ty_23 = 4 ; pub const FPE_FLTUND : _bindgen_ty_23 = 5 ; pub const FPE_FLTRES : _bindgen_ty_23 = 6 ; pub const FPE_FLTINV : _bindgen_ty_23 = 7 ; pub const FPE_FLTSUB : _bindgen_ty_23 = 8 ; pub type _bindgen_ty_23 = :: std :: os :: raw :: c_uint ; pub const SEGV_MAPERR : _bindgen_ty_24 = 1 ; pub const SEGV_ACCERR : _bindgen_ty_24 = 2 ; pub type _bindgen_ty_24 = :: std :: os :: raw :: c_uint ; pub const BUS_ADRALN : _bindgen_ty_25 = 1 ; pub const BUS_ADRERR : _bindgen_ty_25 = 2 ; pub const BUS_OBJERR : _bindgen_ty_25 = 3 ; pub const BUS_MCEERR_AR : _bindgen_ty_25 = 4 ; pub const BUS_MCEERR_AO : _bindgen_ty_25 = 5 ; pub type _bindgen_ty_25 = :: std :: os :: raw :: c_uint ; pub const CLD_EXITED : _bindgen_ty_26 = 1 ; pub const CLD_KILLED : _bindgen_ty_26 = 2 ; pub const CLD_DUMPED : _bindgen_ty_26 = 3 ; pub const CLD_TRAPPED : _bindgen_ty_26 = 4 ; pub const CLD_STOPPED : _bindgen_ty_26 = 5 ; pub const CLD_CONTINUED : _bindgen_ty_26 = 6 ; pub type _bindgen_ty_26 = :: std :: os :: raw :: c_uint ; pub const POLL_IN : _bindgen_ty_27 = 1 ; pub const POLL_OUT : _bindgen_ty_27 = 2 ; pub const POLL_MSG : _bindgen_ty_27 = 3 ; pub const POLL_ERR : _bindgen_ty_27 = 4 ; pub const POLL_PRI : _bindgen_ty_27 = 5 ; pub const POLL_HUP : _bindgen_ty_27 = 6 ; pub type _bindgen_ty_27 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct sigevent { pub sigev_value : sigval_t , pub sigev_signo : :: std :: os :: raw :: c_int , pub sigev_notify : :: std :: os :: raw :: c_int , pub _sigev_un : sigevent__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union sigevent__bindgen_ty_1 { pub _pad : [ :: std :: os :: raw :: c_int ; 12usize ] , pub _tid : __pid_t , pub _sigev_thread : sigevent__bindgen_ty_1__bindgen_ty_1 , _bindgen_union_align : [ u64 ; 6usize ] , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sigevent__bindgen_ty_1__bindgen_ty_1 { pub _function : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : sigval_t ) > , pub _attribute : * mut pthread_attr_t , } # [ test ] fn bindgen_test_layout_sigevent__bindgen_ty_1__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigevent__bindgen_ty_1__bindgen_ty_1 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( sigevent__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigevent__bindgen_ty_1__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigevent__bindgen_ty_1__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent__bindgen_ty_1__bindgen_ty_1 ) ) . _function as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( _function ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent__bindgen_ty_1__bindgen_ty_1 ) ) . _attribute as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent__bindgen_ty_1__bindgen_ty_1 ) , "::" , stringify ! ( _attribute ) ) ) ; } # [ test ] fn bindgen_test_layout_sigevent__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigevent__bindgen_ty_1 > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( sigevent__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigevent__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigevent__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent__bindgen_ty_1 ) ) . _pad as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent__bindgen_ty_1 ) , "::" , stringify ! ( _pad ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent__bindgen_ty_1 ) ) . _tid as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent__bindgen_ty_1 ) , "::" , stringify ! ( _tid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent__bindgen_ty_1 ) ) . _sigev_thread as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent__bindgen_ty_1 ) , "::" , stringify ! ( _sigev_thread ) ) ) ; } # [ test ] fn bindgen_test_layout_sigevent ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigevent > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( sigevent ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigevent > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigevent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent ) ) . sigev_value as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent ) , "::" , stringify ! ( sigev_value ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent ) ) . sigev_signo as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent ) , "::" , stringify ! ( sigev_signo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent ) ) . sigev_notify as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent ) , "::" , stringify ! ( sigev_notify ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigevent ) ) . _sigev_un as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( sigevent ) , "::" , stringify ! ( _sigev_un ) ) ) ; } pub type sigevent_t = sigevent ; pub const SIGEV_SIGNAL : _bindgen_ty_28 = 0 ; pub const SIGEV_NONE : _bindgen_ty_28 = 1 ; pub const SIGEV_THREAD : _bindgen_ty_28 = 2 ; pub const SIGEV_THREAD_ID : _bindgen_ty_28 = 4 ; pub type _bindgen_ty_28 = :: std :: os :: raw :: c_uint ; pub type __sighandler_t = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : :: std :: os :: raw :: c_int ) > ; extern "C" {
 pub fn __sysv_signal ( __sig : :: std :: os :: raw :: c_int , __handler : __sighandler_t , ) -> __sighandler_t ; 
} extern "C" {
 pub fn signal ( __sig : :: std :: os :: raw :: c_int , __handler : __sighandler_t , ) -> __sighandler_t ; 
} extern "C" {
 pub fn kill ( __pid : __pid_t , __sig : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn killpg ( __pgrp : __pid_t , __sig : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn raise ( __sig : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ssignal ( __sig : :: std :: os :: raw :: c_int , __handler : __sighandler_t , ) -> __sighandler_t ; 
} extern "C" {
 pub fn gsignal ( __sig : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn psignal ( __sig : :: std :: os :: raw :: c_int , __s : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn psiginfo ( __pinfo : * const siginfo_t , __s : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn sigblock ( __mask : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigsetmask ( __mask : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn siggetmask ( ) -> :: std :: os :: raw :: c_int ; 
} pub type sig_t = __sighandler_t ; extern "C" {
 pub fn sigemptyset ( __set : * mut sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigfillset ( __set : * mut sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigaddset ( __set : * mut sigset_t , __signo : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigdelset ( __set : * mut sigset_t , __signo : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigismember ( __set : * const sigset_t , __signo : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct sigaction { pub __sigaction_handler : sigaction__bindgen_ty_1 , pub sa_mask : __sigset_t , pub sa_flags : :: std :: os :: raw :: c_int , pub sa_restorer : :: std :: option :: Option < unsafe extern "C" fn ( ) > , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union sigaction__bindgen_ty_1 { pub sa_handler : __sighandler_t , pub sa_sigaction : :: std :: option :: Option < unsafe extern "C" fn ( arg1 : :: std :: os :: raw :: c_int , arg2 : * mut siginfo_t , arg3 : * mut :: std :: os :: raw :: c_void ) > , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_sigaction__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigaction__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( sigaction__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigaction__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigaction__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction__bindgen_ty_1 ) ) . sa_handler as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction__bindgen_ty_1 ) , "::" , stringify ! ( sa_handler ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction__bindgen_ty_1 ) ) . sa_sigaction as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction__bindgen_ty_1 ) , "::" , stringify ! ( sa_sigaction ) ) ) ; } # [ test ] fn bindgen_test_layout_sigaction ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigaction > ( ) , 152usize , concat ! ( "Size of: " , stringify ! ( sigaction ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigaction > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigaction ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction ) ) . __sigaction_handler as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction ) , "::" , stringify ! ( __sigaction_handler ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction ) ) . sa_mask as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction ) , "::" , stringify ! ( sa_mask ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction ) ) . sa_flags as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction ) , "::" , stringify ! ( sa_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaction ) ) . sa_restorer as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( sigaction ) , "::" , stringify ! ( sa_restorer ) ) ) ; } extern "C" {
 pub fn sigprocmask ( __how : :: std :: os :: raw :: c_int , __set : * const sigset_t , __oset : * mut sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigsuspend ( __set : * const sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigaction ( __sig : :: std :: os :: raw :: c_int , __act : * const sigaction , __oact : * mut sigaction , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigpending ( __set : * mut sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigwait ( __set : * const sigset_t , __sig : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigwaitinfo ( __set : * const sigset_t , __info : * mut siginfo_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigtimedwait ( __set : * const sigset_t , __info : * mut siginfo_t , __timeout : * const timespec , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigqueue ( __pid : __pid_t , __sig : :: std :: os :: raw :: c_int , __val : sigval , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 # [ link_name = "\u{1}_sys_siglist" ] 
 pub static mut  _sys_siglist  :  [ * const :: std :: os :: raw :: c_char ; 65usize ] ;
} extern "C" {
 # [ link_name = "\u{1}sys_siglist" ] 
 pub static mut  sys_siglist  :  [ * const :: std :: os :: raw :: c_char ; 65usize ] ;
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _fpx_sw_bytes { pub magic1 : __uint32_t , pub extended_size : __uint32_t , pub xstate_bv : __uint64_t , pub xstate_size : __uint32_t , pub padding : [ __uint32_t ; 7usize ] , } # [ test ] fn bindgen_test_layout__fpx_sw_bytes ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _fpx_sw_bytes > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( _fpx_sw_bytes ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _fpx_sw_bytes > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _fpx_sw_bytes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpx_sw_bytes ) ) . magic1 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _fpx_sw_bytes ) , "::" , stringify ! ( magic1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpx_sw_bytes ) ) . extended_size as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( _fpx_sw_bytes ) , "::" , stringify ! ( extended_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpx_sw_bytes ) ) . xstate_bv as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _fpx_sw_bytes ) , "::" , stringify ! ( xstate_bv ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpx_sw_bytes ) ) . xstate_size as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _fpx_sw_bytes ) , "::" , stringify ! ( xstate_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpx_sw_bytes ) ) . padding as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( _fpx_sw_bytes ) , "::" , stringify ! ( padding ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _fpreg { pub significand : [ :: std :: os :: raw :: c_ushort ; 4usize ] , pub exponent : :: std :: os :: raw :: c_ushort , } # [ test ] fn bindgen_test_layout__fpreg ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _fpreg > ( ) , 10usize , concat ! ( "Size of: " , stringify ! ( _fpreg ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _fpreg > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( _fpreg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpreg ) ) . significand as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _fpreg ) , "::" , stringify ! ( significand ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpreg ) ) . exponent as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _fpreg ) , "::" , stringify ! ( exponent ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _fpxreg { pub significand : [ :: std :: os :: raw :: c_ushort ; 4usize ] , pub exponent : :: std :: os :: raw :: c_ushort , pub padding : [ :: std :: os :: raw :: c_ushort ; 3usize ] , } # [ test ] fn bindgen_test_layout__fpxreg ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _fpxreg > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _fpxreg ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _fpxreg > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( _fpxreg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpxreg ) ) . significand as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _fpxreg ) , "::" , stringify ! ( significand ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpxreg ) ) . exponent as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _fpxreg ) , "::" , stringify ! ( exponent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpxreg ) ) . padding as * const _ as usize } , 10usize , concat ! ( "Alignment of field: " , stringify ! ( _fpxreg ) , "::" , stringify ! ( padding ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _xmmreg { pub element : [ __uint32_t ; 4usize ] , } # [ test ] fn bindgen_test_layout__xmmreg ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _xmmreg > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _xmmreg ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _xmmreg > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( _xmmreg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xmmreg ) ) . element as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _xmmreg ) , "::" , stringify ! ( element ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _fpstate { pub cwd : __uint16_t , pub swd : __uint16_t , pub ftw : __uint16_t , pub fop : __uint16_t , pub rip : __uint64_t , pub rdp : __uint64_t , pub mxcsr : __uint32_t , pub mxcr_mask : __uint32_t , pub _st : [ _fpxreg ; 8usize ] , pub _xmm : [ _xmmreg ; 16usize ] , pub padding : [ __uint32_t ; 24usize ] , } # [ test ] fn bindgen_test_layout__fpstate ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _fpstate > ( ) , 512usize , concat ! ( "Size of: " , stringify ! ( _fpstate ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _fpstate > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _fpstate ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . cwd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( cwd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . swd as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( swd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . ftw as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( ftw ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . fop as * const _ as usize } , 6usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( fop ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . rip as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( rip ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . rdp as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( rdp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . mxcsr as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( mxcsr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . mxcr_mask as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( mxcr_mask ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . _st as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( _st ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . _xmm as * const _ as usize } , 160usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( _xmm ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _fpstate ) ) . padding as * const _ as usize } , 416usize , concat ! ( "Alignment of field: " , stringify ! ( _fpstate ) , "::" , stringify ! ( padding ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct sigcontext { pub r8 : __uint64_t , pub r9 : __uint64_t , pub r10 : __uint64_t , pub r11 : __uint64_t , pub r12 : __uint64_t , pub r13 : __uint64_t , pub r14 : __uint64_t , pub r15 : __uint64_t , pub rdi : __uint64_t , pub rsi : __uint64_t , pub rbp : __uint64_t , pub rbx : __uint64_t , pub rdx : __uint64_t , pub rax : __uint64_t , pub rcx : __uint64_t , pub rsp : __uint64_t , pub rip : __uint64_t , pub eflags : __uint64_t , pub cs : :: std :: os :: raw :: c_ushort , pub gs : :: std :: os :: raw :: c_ushort , pub fs : :: std :: os :: raw :: c_ushort , pub __pad0 : :: std :: os :: raw :: c_ushort , pub err : __uint64_t , pub trapno : __uint64_t , pub oldmask : __uint64_t , pub cr2 : __uint64_t , pub __bindgen_anon_1 : sigcontext__bindgen_ty_1 , pub __reserved1 : [ __uint64_t ; 8usize ] , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union sigcontext__bindgen_ty_1 { pub fpstate : * mut _fpstate , pub __fpstate_word : __uint64_t , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_sigcontext__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigcontext__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( sigcontext__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigcontext__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigcontext__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext__bindgen_ty_1 ) ) . fpstate as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext__bindgen_ty_1 ) , "::" , stringify ! ( fpstate ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext__bindgen_ty_1 ) ) . __fpstate_word as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext__bindgen_ty_1 ) , "::" , stringify ! ( __fpstate_word ) ) ) ; } # [ test ] fn bindgen_test_layout_sigcontext ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigcontext > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( sigcontext ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigcontext > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigcontext ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r8 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r8 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r9 as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r9 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r10 as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r10 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r11 as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r11 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r12 as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r12 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r13 as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r13 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r14 as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r14 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . r15 as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( r15 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rdi as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rdi ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rsi as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rsi ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rbp as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rbp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rbx as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rbx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rdx as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rdx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rax as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rax ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rcx as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rcx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rsp as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rsp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . rip as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( rip ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . eflags as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( eflags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . cs as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( cs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . gs as * const _ as usize } , 146usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( gs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . fs as * const _ as usize } , 148usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( fs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . __pad0 as * const _ as usize } , 150usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( __pad0 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . err as * const _ as usize } , 152usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( err ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . trapno as * const _ as usize } , 160usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( trapno ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . oldmask as * const _ as usize } , 168usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( oldmask ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . cr2 as * const _ as usize } , 176usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( cr2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigcontext ) ) . __reserved1 as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( sigcontext ) , "::" , stringify ! ( __reserved1 ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _xsave_hdr { pub xstate_bv : __uint64_t , pub reserved1 : [ __uint64_t ; 2usize ] , pub reserved2 : [ __uint64_t ; 5usize ] , } # [ test ] fn bindgen_test_layout__xsave_hdr ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _xsave_hdr > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( _xsave_hdr ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _xsave_hdr > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _xsave_hdr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xsave_hdr ) ) . xstate_bv as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _xsave_hdr ) , "::" , stringify ! ( xstate_bv ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xsave_hdr ) ) . reserved1 as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _xsave_hdr ) , "::" , stringify ! ( reserved1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xsave_hdr ) ) . reserved2 as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _xsave_hdr ) , "::" , stringify ! ( reserved2 ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _ymmh_state { pub ymmh_space : [ __uint32_t ; 64usize ] , } # [ test ] fn bindgen_test_layout__ymmh_state ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _ymmh_state > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( _ymmh_state ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _ymmh_state > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( _ymmh_state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _ymmh_state ) ) . ymmh_space as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _ymmh_state ) , "::" , stringify ! ( ymmh_space ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _xstate { pub fpstate : _fpstate , pub xstate_hdr : _xsave_hdr , pub ymmh : _ymmh_state , } # [ test ] fn bindgen_test_layout__xstate ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _xstate > ( ) , 832usize , concat ! ( "Size of: " , stringify ! ( _xstate ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _xstate > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _xstate ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xstate ) ) . fpstate as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _xstate ) , "::" , stringify ! ( fpstate ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xstate ) ) . xstate_hdr as * const _ as usize } , 512usize , concat ! ( "Alignment of field: " , stringify ! ( _xstate ) , "::" , stringify ! ( xstate_hdr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _xstate ) ) . ymmh as * const _ as usize } , 576usize , concat ! ( "Alignment of field: " , stringify ! ( _xstate ) , "::" , stringify ! ( ymmh ) ) ) ; } extern "C" {
 pub fn sigreturn ( __scp : * mut sigcontext , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn siginterrupt ( __sig : :: std :: os :: raw :: c_int , __interrupt : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sigstack { pub ss_sp : * mut :: std :: os :: raw :: c_void , pub ss_onstack : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_sigstack ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigstack > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( sigstack ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigstack > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigstack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigstack ) ) . ss_sp as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigstack ) , "::" , stringify ! ( ss_sp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigstack ) ) . ss_onstack as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigstack ) , "::" , stringify ! ( ss_onstack ) ) ) ; } pub const SS_ONSTACK : _bindgen_ty_29 = 1 ; pub const SS_DISABLE : _bindgen_ty_29 = 2 ; pub type _bindgen_ty_29 = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct sigaltstack { pub ss_sp : * mut :: std :: os :: raw :: c_void , pub ss_flags : :: std :: os :: raw :: c_int , pub ss_size : usize , } # [ test ] fn bindgen_test_layout_sigaltstack ( ) { assert_eq ! ( :: std :: mem :: size_of :: < sigaltstack > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( sigaltstack ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < sigaltstack > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( sigaltstack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaltstack ) ) . ss_sp as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( sigaltstack ) , "::" , stringify ! ( ss_sp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaltstack ) ) . ss_flags as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( sigaltstack ) , "::" , stringify ! ( ss_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const sigaltstack ) ) . ss_size as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( sigaltstack ) , "::" , stringify ! ( ss_size ) ) ) ; } pub type stack_t = sigaltstack ; pub type greg_t = :: std :: os :: raw :: c_longlong ; pub type gregset_t = [ greg_t ; 23usize ] ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _libc_fpxreg { pub significand : [ :: std :: os :: raw :: c_ushort ; 4usize ] , pub exponent : :: std :: os :: raw :: c_ushort , pub padding : [ :: std :: os :: raw :: c_ushort ; 3usize ] , } # [ test ] fn bindgen_test_layout__libc_fpxreg ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _libc_fpxreg > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _libc_fpxreg ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _libc_fpxreg > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( _libc_fpxreg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpxreg ) ) . significand as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpxreg ) , "::" , stringify ! ( significand ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpxreg ) ) . exponent as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpxreg ) , "::" , stringify ! ( exponent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpxreg ) ) . padding as * const _ as usize } , 10usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpxreg ) , "::" , stringify ! ( padding ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _libc_xmmreg { pub element : [ __uint32_t ; 4usize ] , } # [ test ] fn bindgen_test_layout__libc_xmmreg ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _libc_xmmreg > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _libc_xmmreg ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _libc_xmmreg > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( _libc_xmmreg ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_xmmreg ) ) . element as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_xmmreg ) , "::" , stringify ! ( element ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _libc_fpstate { pub cwd : __uint16_t , pub swd : __uint16_t , pub ftw : __uint16_t , pub fop : __uint16_t , pub rip : __uint64_t , pub rdp : __uint64_t , pub mxcsr : __uint32_t , pub mxcr_mask : __uint32_t , pub _st : [ _libc_fpxreg ; 8usize ] , pub _xmm : [ _libc_xmmreg ; 16usize ] , pub padding : [ __uint32_t ; 24usize ] , } # [ test ] fn bindgen_test_layout__libc_fpstate ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _libc_fpstate > ( ) , 512usize , concat ! ( "Size of: " , stringify ! ( _libc_fpstate ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _libc_fpstate > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _libc_fpstate ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . cwd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( cwd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . swd as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( swd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . ftw as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( ftw ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . fop as * const _ as usize } , 6usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( fop ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . rip as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( rip ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . rdp as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( rdp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . mxcsr as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( mxcsr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . mxcr_mask as * const _ as usize } , 28usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( mxcr_mask ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . _st as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( _st ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . _xmm as * const _ as usize } , 160usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( _xmm ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _libc_fpstate ) ) . padding as * const _ as usize } , 416usize , concat ! ( "Alignment of field: " , stringify ! ( _libc_fpstate ) , "::" , stringify ! ( padding ) ) ) ; } pub type fpregset_t = * mut _libc_fpstate ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct mcontext_t { pub gregs : gregset_t , pub fpregs : fpregset_t , pub __reserved1 : [ :: std :: os :: raw :: c_ulonglong ; 8usize ] , } # [ test ] fn bindgen_test_layout_mcontext_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < mcontext_t > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( mcontext_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < mcontext_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( mcontext_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const mcontext_t ) ) . gregs as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( mcontext_t ) , "::" , stringify ! ( gregs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const mcontext_t ) ) . fpregs as * const _ as usize } , 184usize , concat ! ( "Alignment of field: " , stringify ! ( mcontext_t ) , "::" , stringify ! ( fpregs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const mcontext_t ) ) . __reserved1 as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( mcontext_t ) , "::" , stringify ! ( __reserved1 ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct ucontext { pub uc_flags : :: std :: os :: raw :: c_ulong , pub uc_link : * mut ucontext , pub uc_stack : stack_t , pub uc_mcontext : mcontext_t , pub uc_sigmask : __sigset_t , pub __fpregs_mem : _libc_fpstate , } # [ test ] fn bindgen_test_layout_ucontext ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ucontext > ( ) , 936usize , concat ! ( "Size of: " , stringify ! ( ucontext ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ucontext > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( ucontext ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . uc_flags as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( uc_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . uc_link as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( uc_link ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . uc_stack as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( uc_stack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . uc_mcontext as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( uc_mcontext ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . uc_sigmask as * const _ as usize } , 296usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( uc_sigmask ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ucontext ) ) . __fpregs_mem as * const _ as usize } , 424usize , concat ! ( "Alignment of field: " , stringify ! ( ucontext ) , "::" , stringify ! ( __fpregs_mem ) ) ) ; } pub type ucontext_t = ucontext ; extern "C" {
 pub fn sigstack ( __ss : * mut sigstack , __oss : * mut sigstack , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn sigaltstack ( __ss : * const sigaltstack , __oss : * mut sigaltstack , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_sigmask ( __how : :: std :: os :: raw :: c_int , __newmask : * const __sigset_t , __oldmask : * mut __sigset_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn pthread_kill ( __threadid : pthread_t , __signo : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __libc_current_sigrtmin ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn __libc_current_sigrtmax ( ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv__work { pub work : :: std :: option :: Option < unsafe extern "C" fn ( w : * mut uv__work ) > , pub done : :: std :: option :: Option < unsafe extern "C" fn ( w : * mut uv__work , status : :: std :: os :: raw :: c_int ) > , pub loop_ : * mut uv_loop_s , pub wq : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ test ] fn bindgen_test_layout_uv__work ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv__work > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( uv__work ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv__work > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv__work ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__work ) ) . work as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv__work ) , "::" , stringify ! ( work ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__work ) ) . done as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv__work ) , "::" , stringify ! ( done ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__work ) ) . loop_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv__work ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__work ) ) . wq as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv__work ) , "::" , stringify ! ( wq ) ) ) ; } pub type uv__io_cb = :: std :: option :: Option < unsafe extern "C" fn ( loop_ : * mut uv_loop_s , w : * mut uv__io_s , events : :: std :: os :: raw :: c_uint ) > ; pub type uv__io_t = uv__io_s ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv__io_s { pub cb : uv__io_cb , pub pending_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub watcher_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub pevents : :: std :: os :: raw :: c_uint , pub events : :: std :: os :: raw :: c_uint , pub fd : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_uv__io_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv__io_s > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( uv__io_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv__io_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv__io_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . cb as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . pending_queue as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( pending_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . watcher_queue as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( watcher_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . pevents as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( pevents ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . events as * const _ as usize } , 44usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( events ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__io_s ) ) . fd as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv__io_s ) , "::" , stringify ! ( fd ) ) ) ; } pub type uv__async_cb = :: std :: option :: Option < unsafe extern "C" fn ( loop_ : * mut uv_loop_s , w : * mut uv__async , nevents : :: std :: os :: raw :: c_uint ) > ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv__async { pub cb : uv__async_cb , pub io_watcher : uv__io_t , pub wfd : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_uv__async ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv__async > ( ) , 72usize , concat ! ( "Size of: " , stringify ! ( uv__async ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv__async > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv__async ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__async ) ) . cb as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv__async ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__async ) ) . io_watcher as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv__async ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv__async ) ) . wfd as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv__async ) , "::" , stringify ! ( wfd ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_buf_t { pub base : * mut :: std :: os :: raw :: c_char , pub len : usize , } # [ test ] fn bindgen_test_layout_uv_buf_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_buf_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_buf_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_buf_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_buf_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_buf_t ) ) . base as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_buf_t ) , "::" , stringify ! ( base ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_buf_t ) ) . len as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_buf_t ) , "::" , stringify ! ( len ) ) ) ; } pub type uv_file = :: std :: os :: raw :: c_int ; pub type uv_os_sock_t = :: std :: os :: raw :: c_int ; pub type uv_os_fd_t = :: std :: os :: raw :: c_int ; pub type uv_once_t = pthread_once_t ; pub type uv_thread_t = pthread_t ; pub type uv_mutex_t = pthread_mutex_t ; pub type uv_rwlock_t = pthread_rwlock_t ; pub type uv_sem_t = sem_t ; pub type uv_cond_t = pthread_cond_t ; pub type uv_key_t = pthread_key_t ; pub type uv_barrier_t = pthread_barrier_t ; pub type uv_gid_t = gid_t ; pub type uv_uid_t = uid_t ; pub type uv__dirent_t = dirent ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_lib_t { pub handle : * mut :: std :: os :: raw :: c_void , pub errmsg : * mut :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_uv_lib_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_lib_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_lib_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_lib_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_lib_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_lib_t ) ) . handle as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_lib_t ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_lib_t ) ) . errmsg as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_lib_t ) , "::" , stringify ! ( errmsg ) ) ) ; } pub const uv_errno_t_UV_E2BIG : uv_errno_t = -7 ; pub const uv_errno_t_UV_EACCES : uv_errno_t = -13 ; pub const uv_errno_t_UV_EADDRINUSE : uv_errno_t = -98 ; pub const uv_errno_t_UV_EADDRNOTAVAIL : uv_errno_t = -99 ; pub const uv_errno_t_UV_EAFNOSUPPORT : uv_errno_t = -97 ; pub const uv_errno_t_UV_EAGAIN : uv_errno_t = -11 ; pub const uv_errno_t_UV_EAI_ADDRFAMILY : uv_errno_t = -3000 ; pub const uv_errno_t_UV_EAI_AGAIN : uv_errno_t = -3001 ; pub const uv_errno_t_UV_EAI_BADFLAGS : uv_errno_t = -3002 ; pub const uv_errno_t_UV_EAI_BADHINTS : uv_errno_t = -3013 ; pub const uv_errno_t_UV_EAI_CANCELED : uv_errno_t = -3003 ; pub const uv_errno_t_UV_EAI_FAIL : uv_errno_t = -3004 ; pub const uv_errno_t_UV_EAI_FAMILY : uv_errno_t = -3005 ; pub const uv_errno_t_UV_EAI_MEMORY : uv_errno_t = -3006 ; pub const uv_errno_t_UV_EAI_NODATA : uv_errno_t = -3007 ; pub const uv_errno_t_UV_EAI_NONAME : uv_errno_t = -3008 ; pub const uv_errno_t_UV_EAI_OVERFLOW : uv_errno_t = -3009 ; pub const uv_errno_t_UV_EAI_PROTOCOL : uv_errno_t = -3014 ; pub const uv_errno_t_UV_EAI_SERVICE : uv_errno_t = -3010 ; pub const uv_errno_t_UV_EAI_SOCKTYPE : uv_errno_t = -3011 ; pub const uv_errno_t_UV_EALREADY : uv_errno_t = -114 ; pub const uv_errno_t_UV_EBADF : uv_errno_t = -9 ; pub const uv_errno_t_UV_EBUSY : uv_errno_t = -16 ; pub const uv_errno_t_UV_ECANCELED : uv_errno_t = -125 ; pub const uv_errno_t_UV_ECHARSET : uv_errno_t = -4080 ; pub const uv_errno_t_UV_ECONNABORTED : uv_errno_t = -103 ; pub const uv_errno_t_UV_ECONNREFUSED : uv_errno_t = -111 ; pub const uv_errno_t_UV_ECONNRESET : uv_errno_t = -104 ; pub const uv_errno_t_UV_EDESTADDRREQ : uv_errno_t = -89 ; pub const uv_errno_t_UV_EEXIST : uv_errno_t = -17 ; pub const uv_errno_t_UV_EFAULT : uv_errno_t = -14 ; pub const uv_errno_t_UV_EFBIG : uv_errno_t = -27 ; pub const uv_errno_t_UV_EHOSTUNREACH : uv_errno_t = -113 ; pub const uv_errno_t_UV_EINTR : uv_errno_t = -4 ; pub const uv_errno_t_UV_EINVAL : uv_errno_t = -22 ; pub const uv_errno_t_UV_EIO : uv_errno_t = -5 ; pub const uv_errno_t_UV_EISCONN : uv_errno_t = -106 ; pub const uv_errno_t_UV_EISDIR : uv_errno_t = -21 ; pub const uv_errno_t_UV_ELOOP : uv_errno_t = -40 ; pub const uv_errno_t_UV_EMFILE : uv_errno_t = -24 ; pub const uv_errno_t_UV_EMSGSIZE : uv_errno_t = -90 ; pub const uv_errno_t_UV_ENAMETOOLONG : uv_errno_t = -36 ; pub const uv_errno_t_UV_ENETDOWN : uv_errno_t = -100 ; pub const uv_errno_t_UV_ENETUNREACH : uv_errno_t = -101 ; pub const uv_errno_t_UV_ENFILE : uv_errno_t = -23 ; pub const uv_errno_t_UV_ENOBUFS : uv_errno_t = -105 ; pub const uv_errno_t_UV_ENODEV : uv_errno_t = -19 ; pub const uv_errno_t_UV_ENOENT : uv_errno_t = -2 ; pub const uv_errno_t_UV_ENOMEM : uv_errno_t = -12 ; pub const uv_errno_t_UV_ENONET : uv_errno_t = -64 ; pub const uv_errno_t_UV_ENOPROTOOPT : uv_errno_t = -92 ; pub const uv_errno_t_UV_ENOSPC : uv_errno_t = -28 ; pub const uv_errno_t_UV_ENOSYS : uv_errno_t = -38 ; pub const uv_errno_t_UV_ENOTCONN : uv_errno_t = -107 ; pub const uv_errno_t_UV_ENOTDIR : uv_errno_t = -20 ; pub const uv_errno_t_UV_ENOTEMPTY : uv_errno_t = -39 ; pub const uv_errno_t_UV_ENOTSOCK : uv_errno_t = -88 ; pub const uv_errno_t_UV_ENOTSUP : uv_errno_t = -95 ; pub const uv_errno_t_UV_EPERM : uv_errno_t = -1 ; pub const uv_errno_t_UV_EPIPE : uv_errno_t = -32 ; pub const uv_errno_t_UV_EPROTO : uv_errno_t = -71 ; pub const uv_errno_t_UV_EPROTONOSUPPORT : uv_errno_t = -93 ; pub const uv_errno_t_UV_EPROTOTYPE : uv_errno_t = -91 ; pub const uv_errno_t_UV_ERANGE : uv_errno_t = -34 ; pub const uv_errno_t_UV_EROFS : uv_errno_t = -30 ; pub const uv_errno_t_UV_ESHUTDOWN : uv_errno_t = -108 ; pub const uv_errno_t_UV_ESPIPE : uv_errno_t = -29 ; pub const uv_errno_t_UV_ESRCH : uv_errno_t = -3 ; pub const uv_errno_t_UV_ETIMEDOUT : uv_errno_t = -110 ; pub const uv_errno_t_UV_ETXTBSY : uv_errno_t = -26 ; pub const uv_errno_t_UV_EXDEV : uv_errno_t = -18 ; pub const uv_errno_t_UV_UNKNOWN : uv_errno_t = -4094 ; pub const uv_errno_t_UV_EOF : uv_errno_t = -4095 ; pub const uv_errno_t_UV_ENXIO : uv_errno_t = -6 ; pub const uv_errno_t_UV_EMLINK : uv_errno_t = -31 ; pub const uv_errno_t_UV_EHOSTDOWN : uv_errno_t = -112 ; pub const uv_errno_t_UV_ERRNO_MAX : uv_errno_t = -4096 ; pub type uv_errno_t = :: std :: os :: raw :: c_int ; pub const uv_handle_type_UV_UNKNOWN_HANDLE : uv_handle_type = 0 ; pub const uv_handle_type_UV_ASYNC : uv_handle_type = 1 ; pub const uv_handle_type_UV_CHECK : uv_handle_type = 2 ; pub const uv_handle_type_UV_FS_EVENT : uv_handle_type = 3 ; pub const uv_handle_type_UV_FS_POLL : uv_handle_type = 4 ; pub const uv_handle_type_UV_HANDLE : uv_handle_type = 5 ; pub const uv_handle_type_UV_IDLE : uv_handle_type = 6 ; pub const uv_handle_type_UV_NAMED_PIPE : uv_handle_type = 7 ; pub const uv_handle_type_UV_POLL : uv_handle_type = 8 ; pub const uv_handle_type_UV_PREPARE : uv_handle_type = 9 ; pub const uv_handle_type_UV_PROCESS : uv_handle_type = 10 ; pub const uv_handle_type_UV_STREAM : uv_handle_type = 11 ; pub const uv_handle_type_UV_TCP : uv_handle_type = 12 ; pub const uv_handle_type_UV_TIMER : uv_handle_type = 13 ; pub const uv_handle_type_UV_TTY : uv_handle_type = 14 ; pub const uv_handle_type_UV_UDP : uv_handle_type = 15 ; pub const uv_handle_type_UV_SIGNAL : uv_handle_type = 16 ; pub const uv_handle_type_UV_FILE : uv_handle_type = 17 ; pub const uv_handle_type_UV_HANDLE_TYPE_MAX : uv_handle_type = 18 ; pub const uv_handle_type_UV_RAW_FD : uv_handle_type = 19 ; pub const uv_handle_type_UV_RAW_HANDLE : uv_handle_type = 20 ; pub type uv_handle_type = :: std :: os :: raw :: c_uint ; pub const uv_req_type_UV_UNKNOWN_REQ : uv_req_type = 0 ; pub const uv_req_type_UV_REQ : uv_req_type = 1 ; pub const uv_req_type_UV_CONNECT : uv_req_type = 2 ; pub const uv_req_type_UV_WRITE : uv_req_type = 3 ; pub const uv_req_type_UV_SHUTDOWN : uv_req_type = 4 ; pub const uv_req_type_UV_UDP_SEND : uv_req_type = 5 ; pub const uv_req_type_UV_FS : uv_req_type = 6 ; pub const uv_req_type_UV_WORK : uv_req_type = 7 ; pub const uv_req_type_UV_GETADDRINFO : uv_req_type = 8 ; pub const uv_req_type_UV_GETNAMEINFO : uv_req_type = 9 ; pub const uv_req_type_UV_REQ_TYPE_MAX : uv_req_type = 10 ; pub type uv_req_type = :: std :: os :: raw :: c_uint ; pub type uv_loop_t = uv_loop_s ; pub type uv_handle_t = uv_handle_s ; pub type uv_stream_t = uv_stream_s ; pub type uv_tcp_t = uv_tcp_s ; pub type uv_udp_t = uv_udp_s ; pub type uv_pipe_t = uv_pipe_s ; pub type uv_tty_t = uv_tty_s ; pub type uv_poll_t = uv_poll_s ; pub type uv_timer_t = uv_timer_s ; pub type uv_prepare_t = uv_prepare_s ; pub type uv_check_t = uv_check_s ; pub type uv_idle_t = uv_idle_s ; pub type uv_async_t = uv_async_s ; pub type uv_process_t = uv_process_s ; pub type uv_fs_event_t = uv_fs_event_s ; pub type uv_fs_poll_t = uv_fs_poll_s ; pub type uv_signal_t = uv_signal_s ; pub type uv_req_t = uv_req_s ; pub type uv_getaddrinfo_t = uv_getaddrinfo_s ; pub type uv_getnameinfo_t = uv_getnameinfo_s ; pub type uv_shutdown_t = uv_shutdown_s ; pub type uv_write_t = uv_write_s ; pub type uv_connect_t = uv_connect_s ; pub type uv_udp_send_t = uv_udp_send_s ; pub type uv_fs_t = uv_fs_s ; pub type uv_work_t = uv_work_s ; pub type uv_cpu_info_t = uv_cpu_info_s ; pub type uv_interface_address_t = uv_interface_address_s ; pub type uv_dirent_t = uv_dirent_s ; pub type uv_passwd_t = uv_passwd_s ; pub const uv_loop_option_UV_LOOP_BLOCK_SIGNAL : uv_loop_option = 0 ; pub type uv_loop_option = :: std :: os :: raw :: c_uint ; pub const uv_run_mode_UV_RUN_DEFAULT : uv_run_mode = 0 ; pub const uv_run_mode_UV_RUN_ONCE : uv_run_mode = 1 ; pub const uv_run_mode_UV_RUN_NOWAIT : uv_run_mode = 2 ; pub type uv_run_mode = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_version ( ) -> :: std :: os :: raw :: c_uint ; 
} extern "C" {
 pub fn uv_version_string ( ) -> * const :: std :: os :: raw :: c_char ; 
} pub type uv_malloc_func = :: std :: option :: Option < unsafe extern "C" fn ( size : usize ) -> * mut :: std :: os :: raw :: c_void > ; pub type uv_realloc_func = :: std :: option :: Option < unsafe extern "C" fn ( ptr : * mut :: std :: os :: raw :: c_void , size : usize ) -> * mut :: std :: os :: raw :: c_void > ; pub type uv_calloc_func = :: std :: option :: Option < unsafe extern "C" fn ( count : usize , size : usize ) -> * mut :: std :: os :: raw :: c_void > ; pub type uv_free_func = :: std :: option :: Option < unsafe extern "C" fn ( ptr : * mut :: std :: os :: raw :: c_void ) > ; extern "C" {
 pub fn uv_replace_allocator ( malloc_func : uv_malloc_func , realloc_func : uv_realloc_func , calloc_func : uv_calloc_func , free_func : uv_free_func , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_default_loop ( ) -> * mut uv_loop_t ; 
} extern "C" {
 pub fn uv_loop_init ( loop_ : * mut uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_loop_close ( loop_ : * mut uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_loop_new ( ) -> * mut uv_loop_t ; 
} extern "C" {
 pub fn uv_loop_delete ( arg1 : * mut uv_loop_t , ) ; 
} extern "C" {
 pub fn uv_loop_size ( ) -> usize ; 
} extern "C" {
 pub fn uv_loop_alive ( loop_ : * const uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_loop_configure ( loop_ : * mut uv_loop_t , option : uv_loop_option , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_run ( arg1 : * mut uv_loop_t , mode : uv_run_mode , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_stop ( arg1 : * mut uv_loop_t , ) ; 
} extern "C" {
 pub fn uv_ref ( arg1 : * mut uv_handle_t , ) ; 
} extern "C" {
 pub fn uv_unref ( arg1 : * mut uv_handle_t , ) ; 
} extern "C" {
 pub fn uv_has_ref ( arg1 : * const uv_handle_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_update_time ( arg1 : * mut uv_loop_t , ) ; 
} extern "C" {
 pub fn uv_now ( arg1 : * const uv_loop_t , ) -> u64 ; 
} extern "C" {
 pub fn uv_backend_fd ( arg1 : * const uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_backend_timeout ( arg1 : * const uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} pub type uv_alloc_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_handle_t , suggested_size : usize , buf : * mut uv_buf_t ) > ; pub type uv_read_cb = :: std :: option :: Option < unsafe extern "C" fn ( stream : * mut uv_stream_t , nread : isize , buf : * const uv_buf_t ) > ; pub type uv_write_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_write_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_connect_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_connect_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_shutdown_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_shutdown_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_connection_cb = :: std :: option :: Option < unsafe extern "C" fn ( server : * mut uv_stream_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_close_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_handle_t ) > ; pub type uv_poll_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_poll_t , status : :: std :: os :: raw :: c_int , events : :: std :: os :: raw :: c_int ) > ; pub type uv_timer_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_timer_t ) > ; pub type uv_async_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_async_t ) > ; pub type uv_prepare_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_prepare_t ) > ; pub type uv_check_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_check_t ) > ; pub type uv_idle_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_idle_t ) > ; pub type uv_exit_cb = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut uv_process_t , exit_status : i64 , term_signal : :: std :: os :: raw :: c_int ) > ; pub type uv_walk_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_handle_t , arg : * mut :: std :: os :: raw :: c_void ) > ; pub type uv_fs_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_fs_t ) > ; pub type uv_work_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_work_t ) > ; pub type uv_after_work_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_work_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_getaddrinfo_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_getaddrinfo_t , status : :: std :: os :: raw :: c_int , res : * mut addrinfo ) > ; pub type uv_getnameinfo_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_getnameinfo_t , status : :: std :: os :: raw :: c_int , hostname : * const :: std :: os :: raw :: c_char , service : * const :: std :: os :: raw :: c_char ) > ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_timespec_t { pub tv_sec : :: std :: os :: raw :: c_long , pub tv_nsec : :: std :: os :: raw :: c_long , } # [ test ] fn bindgen_test_layout_uv_timespec_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_timespec_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_timespec_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_timespec_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_timespec_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timespec_t ) ) . tv_sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timespec_t ) , "::" , stringify ! ( tv_sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timespec_t ) ) . tv_nsec as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timespec_t ) , "::" , stringify ! ( tv_nsec ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_stat_t { pub st_dev : u64 , pub st_mode : u64 , pub st_nlink : u64 , pub st_uid : u64 , pub st_gid : u64 , pub st_rdev : u64 , pub st_ino : u64 , pub st_size : u64 , pub st_blksize : u64 , pub st_blocks : u64 , pub st_flags : u64 , pub st_gen : u64 , pub st_atim : uv_timespec_t , pub st_mtim : uv_timespec_t , pub st_ctim : uv_timespec_t , pub st_birthtim : uv_timespec_t , } # [ test ] fn bindgen_test_layout_uv_stat_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_stat_t > ( ) , 160usize , concat ! ( "Size of: " , stringify ! ( uv_stat_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_stat_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_stat_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_dev as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_dev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_mode as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_mode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_nlink as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_nlink ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_uid as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_gid as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_gid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_rdev as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_rdev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_ino as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_ino ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_size as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_blksize as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_blksize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_blocks as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_blocks ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_flags as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_gen as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_gen ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_atim as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_atim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_mtim as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_mtim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_ctim as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_ctim ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stat_t ) ) . st_birthtim as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stat_t ) , "::" , stringify ! ( st_birthtim ) ) ) ; } pub type uv_fs_event_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_fs_event_t , filename : * const :: std :: os :: raw :: c_char , events : :: std :: os :: raw :: c_int , status : :: std :: os :: raw :: c_int ) > ; pub type uv_fs_poll_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_fs_poll_t , status : :: std :: os :: raw :: c_int , prev : * const uv_stat_t , curr : * const uv_stat_t ) > ; pub type uv_signal_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_signal_t , signum : :: std :: os :: raw :: c_int ) > ; pub const uv_membership_UV_LEAVE_GROUP : uv_membership = 0 ; pub const uv_membership_UV_JOIN_GROUP : uv_membership = 1 ; pub type uv_membership = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_strerror ( err : :: std :: os :: raw :: c_int , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn uv_err_name ( err : :: std :: os :: raw :: c_int , ) -> * const :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_req_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_req_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_req_s > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( uv_req_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_req_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_req_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_req_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_req_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_req_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_req_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_req_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_req_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_req_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_req_s ) , "::" , stringify ! ( reserved ) ) ) ; } extern "C" {
 pub fn uv_shutdown ( req : * mut uv_shutdown_t , handle : * mut uv_stream_t , cb : uv_shutdown_cb , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_shutdown_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub handle : * mut uv_stream_t , pub cb : uv_shutdown_cb , } # [ test ] fn bindgen_test_layout_uv_shutdown_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_shutdown_s > ( ) , 80usize , concat ! ( "Size of: " , stringify ! ( uv_shutdown_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_shutdown_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_shutdown_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . handle as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_shutdown_s ) ) . cb as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_shutdown_s ) , "::" , stringify ! ( cb ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_handle_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_handle_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_handle_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_handle_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_handle_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_handle_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_handle_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_handle_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_handle_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_handle_s > ( ) , 96usize , concat ! ( "Size of: " , stringify ! ( uv_handle_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_handle_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_handle_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_handle_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_handle_s ) , "::" , stringify ! ( flags ) ) ) ; } extern "C" {
 pub fn uv_handle_size ( type_ : uv_handle_type , ) -> usize ; 
} extern "C" {
 pub fn uv_req_size ( type_ : uv_req_type , ) -> usize ; 
} extern "C" {
 pub fn uv_is_active ( handle : * const uv_handle_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_walk ( loop_ : * mut uv_loop_t , walk_cb : uv_walk_cb , arg : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn uv_print_all_handles ( loop_ : * mut uv_loop_t , stream : * mut FILE , ) ; 
} extern "C" {
 pub fn uv_print_active_handles ( loop_ : * mut uv_loop_t , stream : * mut FILE , ) ; 
} extern "C" {
 pub fn uv_close ( handle : * mut uv_handle_t , close_cb : uv_close_cb , ) ; 
} extern "C" {
 pub fn uv_send_buffer_size ( handle : * mut uv_handle_t , value : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_recv_buffer_size ( handle : * mut uv_handle_t , value : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fileno ( handle : * const uv_handle_t , fd : * mut uv_os_fd_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_buf_init ( base : * mut :: std :: os :: raw :: c_char , len : :: std :: os :: raw :: c_uint , ) -> uv_buf_t ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_stream_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_stream_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub write_queue_size : usize , pub alloc_cb : uv_alloc_cb , pub read_cb : uv_read_cb , pub connect_req : * mut uv_connect_t , pub shutdown_req : * mut uv_shutdown_t , pub io_watcher : uv__io_t , pub write_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_completed_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub connection_cb : uv_connection_cb , pub delayed_error : :: std :: os :: raw :: c_int , pub accepted_fd : :: std :: os :: raw :: c_int , pub queued_fds : * mut :: std :: os :: raw :: c_void , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_stream_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_stream_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_stream_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_stream_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_stream_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_stream_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_stream_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_stream_s > ( ) , 248usize , concat ! ( "Size of: " , stringify ! ( uv_stream_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_stream_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_stream_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . write_queue_size as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( write_queue_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . alloc_cb as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( alloc_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . read_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( read_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . connect_req as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( connect_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . shutdown_req as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( shutdown_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . io_watcher as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . write_queue as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( write_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . write_completed_queue as * const _ as usize } , 208usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( write_completed_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . connection_cb as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( connection_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . delayed_error as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( delayed_error ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . accepted_fd as * const _ as usize } , 236usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( accepted_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stream_s ) ) . queued_fds as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stream_s ) , "::" , stringify ! ( queued_fds ) ) ) ; } extern "C" {
 pub fn uv_listen ( stream : * mut uv_stream_t , backlog : :: std :: os :: raw :: c_int , cb : uv_connection_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_accept ( server : * mut uv_stream_t , client : * mut uv_stream_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_read_start ( arg1 : * mut uv_stream_t , alloc_cb : uv_alloc_cb , read_cb : uv_read_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_read_stop ( arg1 : * mut uv_stream_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_write ( req : * mut uv_write_t , handle : * mut uv_stream_t , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , cb : uv_write_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_write2 ( req : * mut uv_write_t , handle : * mut uv_stream_t , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , send_handle : * mut uv_stream_t , cb : uv_write_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_try_write ( handle : * mut uv_stream_t , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_write_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub cb : uv_write_cb , pub send_handle : * mut uv_stream_t , pub handle : * mut uv_stream_t , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_index : :: std :: os :: raw :: c_uint , pub bufs : * mut uv_buf_t , pub nbufs : :: std :: os :: raw :: c_uint , pub error : :: std :: os :: raw :: c_int , pub bufsml : [ uv_buf_t ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_write_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_write_s > ( ) , 192usize , concat ! ( "Size of: " , stringify ! ( uv_write_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_write_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_write_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . cb as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . send_handle as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( send_handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . handle as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . queue as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . write_index as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( write_index ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . bufs as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( bufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . nbufs as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( nbufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . error as * const _ as usize } , 124usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( error ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_write_s ) ) . bufsml as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_write_s ) , "::" , stringify ! ( bufsml ) ) ) ; } extern "C" {
 pub fn uv_is_readable ( handle : * const uv_stream_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_is_writable ( handle : * const uv_stream_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_stream_set_blocking ( handle : * mut uv_stream_t , blocking : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_is_closing ( handle : * const uv_handle_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_tcp_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_tcp_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub write_queue_size : usize , pub alloc_cb : uv_alloc_cb , pub read_cb : uv_read_cb , pub connect_req : * mut uv_connect_t , pub shutdown_req : * mut uv_shutdown_t , pub io_watcher : uv__io_t , pub write_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_completed_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub connection_cb : uv_connection_cb , pub delayed_error : :: std :: os :: raw :: c_int , pub accepted_fd : :: std :: os :: raw :: c_int , pub queued_fds : * mut :: std :: os :: raw :: c_void , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_tcp_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_tcp_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_tcp_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_tcp_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_tcp_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_tcp_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_tcp_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_tcp_s > ( ) , 248usize , concat ! ( "Size of: " , stringify ! ( uv_tcp_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_tcp_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_tcp_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . write_queue_size as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( write_queue_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . alloc_cb as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( alloc_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . read_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( read_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . connect_req as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( connect_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . shutdown_req as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( shutdown_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . io_watcher as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . write_queue as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( write_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . write_completed_queue as * const _ as usize } , 208usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( write_completed_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . connection_cb as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( connection_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . delayed_error as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( delayed_error ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . accepted_fd as * const _ as usize } , 236usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( accepted_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tcp_s ) ) . queued_fds as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tcp_s ) , "::" , stringify ! ( queued_fds ) ) ) ; } extern "C" {
 pub fn uv_tcp_init ( arg1 : * mut uv_loop_t , handle : * mut uv_tcp_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_init_ex ( arg1 : * mut uv_loop_t , handle : * mut uv_tcp_t , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_open ( handle : * mut uv_tcp_t , sock : uv_os_sock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_nodelay ( handle : * mut uv_tcp_t , enable : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_keepalive ( handle : * mut uv_tcp_t , enable : :: std :: os :: raw :: c_int , delay : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_simultaneous_accepts ( handle : * mut uv_tcp_t , enable : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} pub const uv_tcp_flags_UV_TCP_IPV6ONLY : uv_tcp_flags = 1 ; pub type uv_tcp_flags = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_tcp_bind ( handle : * mut uv_tcp_t , addr : * const sockaddr , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_getsockname ( handle : * const uv_tcp_t , name : * mut sockaddr , namelen : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_getpeername ( handle : * const uv_tcp_t , name : * mut sockaddr , namelen : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tcp_connect ( req : * mut uv_connect_t , handle : * mut uv_tcp_t , addr : * const sockaddr , cb : uv_connect_cb , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_connect_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub cb : uv_connect_cb , pub handle : * mut uv_stream_t , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ test ] fn bindgen_test_layout_uv_connect_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_connect_s > ( ) , 96usize , concat ! ( "Size of: " , stringify ! ( uv_connect_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_connect_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_connect_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . cb as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . handle as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_connect_s ) ) . queue as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_connect_s ) , "::" , stringify ! ( queue ) ) ) ; } pub const uv_udp_flags_UV_UDP_IPV6ONLY : uv_udp_flags = 1 ; pub const uv_udp_flags_UV_UDP_PARTIAL : uv_udp_flags = 2 ; pub const uv_udp_flags_UV_UDP_REUSEADDR : uv_udp_flags = 4 ; pub type uv_udp_flags = :: std :: os :: raw :: c_uint ; pub type uv_udp_send_cb = :: std :: option :: Option < unsafe extern "C" fn ( req : * mut uv_udp_send_t , status : :: std :: os :: raw :: c_int ) > ; pub type uv_udp_recv_cb = :: std :: option :: Option < unsafe extern "C" fn ( handle : * mut uv_udp_t , nread : isize , buf : * const uv_buf_t , addr : * const sockaddr , flags : :: std :: os :: raw :: c_uint ) > ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_udp_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_udp_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub send_queue_size : usize , pub send_queue_count : usize , pub alloc_cb : uv_alloc_cb , pub recv_cb : uv_udp_recv_cb , pub io_watcher : uv__io_t , pub write_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_completed_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_udp_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_udp_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_udp_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_udp_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_udp_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_udp_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_udp_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_udp_s > ( ) , 216usize , concat ! ( "Size of: " , stringify ! ( uv_udp_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_udp_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_udp_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . send_queue_size as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( send_queue_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . send_queue_count as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( send_queue_count ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . alloc_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( alloc_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . recv_cb as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( recv_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . io_watcher as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . write_queue as * const _ as usize } , 184usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( write_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_s ) ) . write_completed_queue as * const _ as usize } , 200usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_s ) , "::" , stringify ! ( write_completed_queue ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_udp_send_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub handle : * mut uv_udp_t , pub cb : uv_udp_send_cb , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub addr : sockaddr_storage , pub nbufs : :: std :: os :: raw :: c_uint , pub bufs : * mut uv_buf_t , pub status : isize , pub send_cb : uv_udp_send_cb , pub bufsml : [ uv_buf_t ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_udp_send_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_udp_send_s > ( ) , 320usize , concat ! ( "Size of: " , stringify ! ( uv_udp_send_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_udp_send_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_udp_send_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . handle as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . cb as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . queue as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . addr as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . nbufs as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( nbufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . bufs as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( bufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . status as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( status ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . send_cb as * const _ as usize } , 248usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( send_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_udp_send_s ) ) . bufsml as * const _ as usize } , 256usize , concat ! ( "Alignment of field: " , stringify ! ( uv_udp_send_s ) , "::" , stringify ! ( bufsml ) ) ) ; } extern "C" {
 pub fn uv_udp_init ( arg1 : * mut uv_loop_t , handle : * mut uv_udp_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_init_ex ( arg1 : * mut uv_loop_t , handle : * mut uv_udp_t , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_open ( handle : * mut uv_udp_t , sock : uv_os_sock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_bind ( handle : * mut uv_udp_t , addr : * const sockaddr , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_getsockname ( handle : * const uv_udp_t , name : * mut sockaddr , namelen : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_membership ( handle : * mut uv_udp_t , multicast_addr : * const :: std :: os :: raw :: c_char , interface_addr : * const :: std :: os :: raw :: c_char , membership : uv_membership , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_multicast_loop ( handle : * mut uv_udp_t , on : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_multicast_ttl ( handle : * mut uv_udp_t , ttl : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_multicast_interface ( handle : * mut uv_udp_t , interface_addr : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_broadcast ( handle : * mut uv_udp_t , on : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_set_ttl ( handle : * mut uv_udp_t , ttl : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_send ( req : * mut uv_udp_send_t , handle : * mut uv_udp_t , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , addr : * const sockaddr , send_cb : uv_udp_send_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_try_send ( handle : * mut uv_udp_t , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , addr : * const sockaddr , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_recv_start ( handle : * mut uv_udp_t , alloc_cb : uv_alloc_cb , recv_cb : uv_udp_recv_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_udp_recv_stop ( handle : * mut uv_udp_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_tty_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_tty_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub write_queue_size : usize , pub alloc_cb : uv_alloc_cb , pub read_cb : uv_read_cb , pub connect_req : * mut uv_connect_t , pub shutdown_req : * mut uv_shutdown_t , pub io_watcher : uv__io_t , pub write_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_completed_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub connection_cb : uv_connection_cb , pub delayed_error : :: std :: os :: raw :: c_int , pub accepted_fd : :: std :: os :: raw :: c_int , pub queued_fds : * mut :: std :: os :: raw :: c_void , pub orig_termios : termios , pub mode : :: std :: os :: raw :: c_int , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_tty_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_tty_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_tty_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_tty_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_tty_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_tty_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_tty_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_tty_s > ( ) , 312usize , concat ! ( "Size of: " , stringify ! ( uv_tty_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_tty_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_tty_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . write_queue_size as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( write_queue_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . alloc_cb as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( alloc_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . read_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( read_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . connect_req as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( connect_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . shutdown_req as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( shutdown_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . io_watcher as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . write_queue as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( write_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . write_completed_queue as * const _ as usize } , 208usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( write_completed_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . connection_cb as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( connection_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . delayed_error as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( delayed_error ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . accepted_fd as * const _ as usize } , 236usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( accepted_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . queued_fds as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( queued_fds ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . orig_termios as * const _ as usize } , 248usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( orig_termios ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_tty_s ) ) . mode as * const _ as usize } , 308usize , concat ! ( "Alignment of field: " , stringify ! ( uv_tty_s ) , "::" , stringify ! ( mode ) ) ) ; } pub const uv_tty_mode_t_UV_TTY_MODE_NORMAL : uv_tty_mode_t = 0 ; pub const uv_tty_mode_t_UV_TTY_MODE_RAW : uv_tty_mode_t = 1 ; pub const uv_tty_mode_t_UV_TTY_MODE_IO : uv_tty_mode_t = 2 ; pub type uv_tty_mode_t = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_tty_init ( arg1 : * mut uv_loop_t , arg2 : * mut uv_tty_t , fd : uv_file , readable : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tty_set_mode ( arg1 : * mut uv_tty_t , mode : uv_tty_mode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tty_reset_mode ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_tty_get_winsize ( arg1 : * mut uv_tty_t , width : * mut :: std :: os :: raw :: c_int , height : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_guess_handle ( file : uv_file , ) -> uv_handle_type ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_pipe_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_pipe_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub write_queue_size : usize , pub alloc_cb : uv_alloc_cb , pub read_cb : uv_read_cb , pub connect_req : * mut uv_connect_t , pub shutdown_req : * mut uv_shutdown_t , pub io_watcher : uv__io_t , pub write_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub write_completed_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub connection_cb : uv_connection_cb , pub delayed_error : :: std :: os :: raw :: c_int , pub accepted_fd : :: std :: os :: raw :: c_int , pub queued_fds : * mut :: std :: os :: raw :: c_void , pub pipe_fname : * const :: std :: os :: raw :: c_char , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_pipe_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_pipe_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_pipe_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_pipe_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_pipe_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_pipe_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_pipe_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_pipe_s > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( uv_pipe_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_pipe_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_pipe_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . write_queue_size as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( write_queue_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . alloc_cb as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( alloc_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . read_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( read_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . connect_req as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( connect_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . shutdown_req as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( shutdown_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . io_watcher as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . write_queue as * const _ as usize } , 192usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( write_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . write_completed_queue as * const _ as usize } , 208usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( write_completed_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . connection_cb as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( connection_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . delayed_error as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( delayed_error ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . accepted_fd as * const _ as usize } , 236usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( accepted_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . queued_fds as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( queued_fds ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_pipe_s ) ) . pipe_fname as * const _ as usize } , 248usize , concat ! ( "Alignment of field: " , stringify ! ( uv_pipe_s ) , "::" , stringify ! ( pipe_fname ) ) ) ; } pub const uv_pipe_flags_UV_PIPE_IPC : uv_pipe_flags = 1 ; pub const uv_pipe_flags_UV_PIPE_SPAWN_SAFE : uv_pipe_flags = 2 ; pub const uv_pipe_flags_UV_PIPE_READABLE : uv_pipe_flags = 4 ; pub const uv_pipe_flags_UV_PIPE_WRITABLE : uv_pipe_flags = 8 ; pub type uv_pipe_flags = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_pipe_init ( arg1 : * mut uv_loop_t , handle : * mut uv_pipe_t , flags : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_link ( read : * mut uv_pipe_t , write : * mut uv_pipe_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_close_sync ( pipe : * mut uv_pipe_t , ) ; 
} extern "C" {
 pub fn uv_pipe_open ( arg1 : * mut uv_pipe_t , file : uv_file , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_bind ( handle : * mut uv_pipe_t , name : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_connect ( req : * mut uv_connect_t , handle : * mut uv_pipe_t , name : * const :: std :: os :: raw :: c_char , cb : uv_connect_cb , ) ; 
} extern "C" {
 pub fn uv_pipe_getsockname ( handle : * const uv_pipe_t , buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_getpeername ( handle : * const uv_pipe_t , buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_pending_instances ( handle : * mut uv_pipe_t , count : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn uv_pipe_pending_count ( handle : * mut uv_pipe_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_pipe_pending_type ( handle : * mut uv_pipe_t , ) -> uv_handle_type ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_poll_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_poll_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub poll_cb : uv_poll_cb , pub io_watcher : uv__io_t , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_poll_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_poll_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_poll_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_poll_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_poll_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_poll_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_poll_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_poll_s > ( ) , 160usize , concat ! ( "Size of: " , stringify ! ( uv_poll_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_poll_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_poll_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . poll_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( poll_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_poll_s ) ) . io_watcher as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_poll_s ) , "::" , stringify ! ( io_watcher ) ) ) ; } pub const uv_poll_event_UV_READABLE : uv_poll_event = 1 ; pub const uv_poll_event_UV_WRITABLE : uv_poll_event = 2 ; pub const uv_poll_event_UV_DISCONNECT : uv_poll_event = 4 ; pub type uv_poll_event = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_poll_init ( loop_ : * mut uv_loop_t , handle : * mut uv_poll_t , fd : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_poll_init_socket ( loop_ : * mut uv_loop_t , handle : * mut uv_poll_t , socket : uv_os_sock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_poll_start ( handle : * mut uv_poll_t , events : :: std :: os :: raw :: c_int , cb : uv_poll_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_poll_stop ( handle : * mut uv_poll_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_prepare_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_prepare_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub prepare_cb : uv_prepare_cb , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_prepare_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_prepare_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_prepare_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_prepare_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_prepare_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_prepare_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_prepare_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_prepare_s > ( ) , 120usize , concat ! ( "Size of: " , stringify ! ( uv_prepare_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_prepare_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_prepare_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . prepare_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( prepare_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_prepare_s ) ) . queue as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_prepare_s ) , "::" , stringify ! ( queue ) ) ) ; } extern "C" {
 pub fn uv_prepare_init ( arg1 : * mut uv_loop_t , prepare : * mut uv_prepare_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_prepare_start ( prepare : * mut uv_prepare_t , cb : uv_prepare_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_prepare_stop ( prepare : * mut uv_prepare_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_check_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_check_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub check_cb : uv_check_cb , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_check_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_check_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_check_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_check_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_check_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_check_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_check_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_check_s > ( ) , 120usize , concat ! ( "Size of: " , stringify ! ( uv_check_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_check_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_check_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . check_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( check_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_check_s ) ) . queue as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_check_s ) , "::" , stringify ! ( queue ) ) ) ; } extern "C" {
 pub fn uv_check_init ( arg1 : * mut uv_loop_t , check : * mut uv_check_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_check_start ( check : * mut uv_check_t , cb : uv_check_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_check_stop ( check : * mut uv_check_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_idle_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_idle_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub idle_cb : uv_idle_cb , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_idle_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_idle_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_idle_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_idle_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_idle_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_idle_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_idle_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_idle_s > ( ) , 120usize , concat ! ( "Size of: " , stringify ! ( uv_idle_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_idle_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_idle_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . idle_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( idle_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_idle_s ) ) . queue as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_idle_s ) , "::" , stringify ! ( queue ) ) ) ; } extern "C" {
 pub fn uv_idle_init ( arg1 : * mut uv_loop_t , idle : * mut uv_idle_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_idle_start ( idle : * mut uv_idle_t , cb : uv_idle_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_idle_stop ( idle : * mut uv_idle_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_async_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_async_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub async_cb : uv_async_cb , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub pending : :: std :: os :: raw :: c_int , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_async_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_async_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_async_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_async_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_async_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_async_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_async_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_async_s > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( uv_async_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_async_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_async_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . async_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( async_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . queue as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_async_s ) ) . pending as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_async_s ) , "::" , stringify ! ( pending ) ) ) ; } extern "C" {
 pub fn uv_async_init ( arg1 : * mut uv_loop_t , async : * mut uv_async_t , async_cb : uv_async_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_async_send ( async : * mut uv_async_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_timer_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_timer_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub timer_cb : uv_timer_cb , pub heap_node : [ * mut :: std :: os :: raw :: c_void ; 3usize ] , pub timeout : u64 , pub repeat : u64 , pub start_id : u64 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_timer_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_timer_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_timer_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_timer_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_timer_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_timer_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_timer_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_timer_s > ( ) , 152usize , concat ! ( "Size of: " , stringify ! ( uv_timer_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_timer_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_timer_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . timer_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( timer_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . heap_node as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( heap_node ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . timeout as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( timeout ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . repeat as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( repeat ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timer_s ) ) . start_id as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timer_s ) , "::" , stringify ! ( start_id ) ) ) ; } extern "C" {
 pub fn uv_timer_init ( arg1 : * mut uv_loop_t , handle : * mut uv_timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_timer_start ( handle : * mut uv_timer_t , cb : uv_timer_cb , timeout : u64 , repeat : u64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_timer_stop ( handle : * mut uv_timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_timer_again ( handle : * mut uv_timer_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_timer_set_repeat ( handle : * mut uv_timer_t , repeat : u64 , ) ; 
} extern "C" {
 pub fn uv_timer_get_repeat ( handle : * const uv_timer_t , ) -> u64 ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_getaddrinfo_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub loop_ : * mut uv_loop_t , pub work_req : uv__work , pub cb : uv_getaddrinfo_cb , pub hints : * mut addrinfo , pub hostname : * mut :: std :: os :: raw :: c_char , pub service : * mut :: std :: os :: raw :: c_char , pub addrinfo : * mut addrinfo , pub retcode : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_uv_getaddrinfo_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_getaddrinfo_s > ( ) , 160usize , concat ! ( "Size of: " , stringify ! ( uv_getaddrinfo_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_getaddrinfo_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_getaddrinfo_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . loop_ as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . work_req as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( work_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . hints as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( hints ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . hostname as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( hostname ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . service as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( service ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . addrinfo as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( addrinfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getaddrinfo_s ) ) . retcode as * const _ as usize } , 152usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getaddrinfo_s ) , "::" , stringify ! ( retcode ) ) ) ; } extern "C" {
 pub fn uv_getaddrinfo ( loop_ : * mut uv_loop_t , req : * mut uv_getaddrinfo_t , getaddrinfo_cb : uv_getaddrinfo_cb , node : * const :: std :: os :: raw :: c_char , service : * const :: std :: os :: raw :: c_char , hints : * const addrinfo , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_freeaddrinfo ( ai : * mut addrinfo , ) ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_getnameinfo_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub loop_ : * mut uv_loop_t , pub work_req : uv__work , pub getnameinfo_cb : uv_getnameinfo_cb , pub storage : sockaddr_storage , pub flags : :: std :: os :: raw :: c_int , pub host : [ :: std :: os :: raw :: c_char ; 1025usize ] , pub service : [ :: std :: os :: raw :: c_char ; 32usize ] , pub retcode : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_uv_getnameinfo_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_getnameinfo_s > ( ) , 1320usize , concat ! ( "Size of: " , stringify ! ( uv_getnameinfo_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_getnameinfo_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_getnameinfo_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . loop_ as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . work_req as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( work_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . getnameinfo_cb as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( getnameinfo_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . storage as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( storage ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . flags as * const _ as usize } , 248usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . host as * const _ as usize } , 252usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( host ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . service as * const _ as usize } , 1277usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( service ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_getnameinfo_s ) ) . retcode as * const _ as usize } , 1312usize , concat ! ( "Alignment of field: " , stringify ! ( uv_getnameinfo_s ) , "::" , stringify ! ( retcode ) ) ) ; } extern "C" {
 pub fn uv_getnameinfo ( loop_ : * mut uv_loop_t , req : * mut uv_getnameinfo_t , getnameinfo_cb : uv_getnameinfo_cb , addr : * const sockaddr , flags : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_stdio_container_s { pub type_ : uv_handle_type , pub data : uv_stdio_container_s__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_stdio_container_s__bindgen_ty_1 { pub stream : * mut uv_stream_t , pub fd : uv_file , pub os_handle : uv_os_fd_t , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_uv_stdio_container_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_stdio_container_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( uv_stdio_container_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_stdio_container_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_stdio_container_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stdio_container_s__bindgen_ty_1 ) ) . stream as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stdio_container_s__bindgen_ty_1 ) , "::" , stringify ! ( stream ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stdio_container_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stdio_container_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stdio_container_s__bindgen_ty_1 ) ) . os_handle as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stdio_container_s__bindgen_ty_1 ) , "::" , stringify ! ( os_handle ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_stdio_container_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_stdio_container_s > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_stdio_container_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_stdio_container_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_stdio_container_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stdio_container_s ) ) . type_ as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stdio_container_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_stdio_container_s ) ) . data as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_stdio_container_s ) , "::" , stringify ! ( data ) ) ) ; } pub type uv_stdio_container_t = uv_stdio_container_s ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_process_options_s { pub exit_cb : uv_exit_cb , pub file : * const :: std :: os :: raw :: c_char , pub args : * mut * mut :: std :: os :: raw :: c_char , pub env : * mut * mut :: std :: os :: raw :: c_char , pub cwd : * const :: std :: os :: raw :: c_char , pub flags : :: std :: os :: raw :: c_uint , pub stdio_count : :: std :: os :: raw :: c_int , pub stdio : * mut uv_stdio_container_t , pub uid : uv_uid_t , pub gid : uv_gid_t , } # [ test ] fn bindgen_test_layout_uv_process_options_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_process_options_s > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( uv_process_options_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_process_options_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_process_options_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . exit_cb as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( exit_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . file as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( file ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . args as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( args ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . env as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( env ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . cwd as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( cwd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . flags as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . stdio_count as * const _ as usize } , 44usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( stdio_count ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . stdio as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( stdio ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . uid as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_options_s ) ) . gid as * const _ as usize } , 60usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_options_s ) , "::" , stringify ! ( gid ) ) ) ; } pub type uv_process_options_t = uv_process_options_s ; pub const uv_process_flags_UV_PROCESS_SETUID : uv_process_flags = 1 ; pub const uv_process_flags_UV_PROCESS_SETGID : uv_process_flags = 2 ; pub const uv_process_flags_UV_PROCESS_WINDOWS_VERBATIM_ARGUMENTS : uv_process_flags = 4 ; pub const uv_process_flags_UV_PROCESS_DETACHED : uv_process_flags = 8 ; pub const uv_process_flags_UV_PROCESS_WINDOWS_HIDE : uv_process_flags = 16 ; pub const uv_process_flags_UV_PROCESS_RESET_SIGPIPE : uv_process_flags = 32 ; pub type uv_process_flags = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_process_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_process_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub exit_cb : uv_exit_cb , pub pid : :: std :: os :: raw :: c_int , pub queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub status : :: std :: os :: raw :: c_int , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_process_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_process_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_process_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_process_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_process_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_process_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_process_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_process_s > ( ) , 136usize , concat ! ( "Size of: " , stringify ! ( uv_process_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_process_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_process_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . exit_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( exit_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . pid as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( pid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . queue as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_process_s ) ) . status as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_process_s ) , "::" , stringify ! ( status ) ) ) ; } extern "C" {
 pub fn uv_spawn ( loop_ : * mut uv_loop_t , handle : * mut uv_process_t , options : * const uv_process_options_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_process_kill ( arg1 : * mut uv_process_t , signum : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_kill ( pid : :: std :: os :: raw :: c_int , signum : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_work_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub loop_ : * mut uv_loop_t , pub work_cb : uv_work_cb , pub after_work_cb : uv_after_work_cb , pub work_req : uv__work , } # [ test ] fn bindgen_test_layout_uv_work_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_work_s > ( ) , 128usize , concat ! ( "Size of: " , stringify ! ( uv_work_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_work_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_work_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . loop_ as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . work_cb as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( work_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . after_work_cb as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( after_work_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_work_s ) ) . work_req as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_work_s ) , "::" , stringify ! ( work_req ) ) ) ; } extern "C" {
 pub fn uv_queue_work ( loop_ : * mut uv_loop_t , req : * mut uv_work_t , work_cb : uv_work_cb , after_work_cb : uv_after_work_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_cancel ( req : * mut uv_req_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_cpu_info_s { pub model : * mut :: std :: os :: raw :: c_char , pub speed : :: std :: os :: raw :: c_int , pub cpu_times : uv_cpu_info_s_uv_cpu_times_s , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_cpu_info_s_uv_cpu_times_s { pub user : u64 , pub nice : u64 , pub sys : u64 , pub idle : u64 , pub irq : u64 , } # [ test ] fn bindgen_test_layout_uv_cpu_info_s_uv_cpu_times_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_cpu_info_s_uv_cpu_times_s > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_cpu_info_s_uv_cpu_times_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s_uv_cpu_times_s ) ) . user as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) , "::" , stringify ! ( user ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s_uv_cpu_times_s ) ) . nice as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) , "::" , stringify ! ( nice ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s_uv_cpu_times_s ) ) . sys as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) , "::" , stringify ! ( sys ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s_uv_cpu_times_s ) ) . idle as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) , "::" , stringify ! ( idle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s_uv_cpu_times_s ) ) . irq as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s_uv_cpu_times_s ) , "::" , stringify ! ( irq ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_cpu_info_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_cpu_info_s > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( uv_cpu_info_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_cpu_info_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_cpu_info_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s ) ) . model as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s ) , "::" , stringify ! ( model ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s ) ) . speed as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s ) , "::" , stringify ! ( speed ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_cpu_info_s ) ) . cpu_times as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_cpu_info_s ) , "::" , stringify ! ( cpu_times ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_interface_address_s { pub name : * mut :: std :: os :: raw :: c_char , pub phys_addr : [ :: std :: os :: raw :: c_char ; 6usize ] , pub is_internal : :: std :: os :: raw :: c_int , pub address : uv_interface_address_s__bindgen_ty_1 , pub netmask : uv_interface_address_s__bindgen_ty_2 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_interface_address_s__bindgen_ty_1 { pub address4 : sockaddr_in , pub address6 : sockaddr_in6 , _bindgen_union_align : [ u32 ; 7usize ] , } # [ test ] fn bindgen_test_layout_uv_interface_address_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_interface_address_s__bindgen_ty_1 > ( ) , 28usize , concat ! ( "Size of: " , stringify ! ( uv_interface_address_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_interface_address_s__bindgen_ty_1 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( uv_interface_address_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s__bindgen_ty_1 ) ) . address4 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s__bindgen_ty_1 ) , "::" , stringify ! ( address4 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s__bindgen_ty_1 ) ) . address6 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s__bindgen_ty_1 ) , "::" , stringify ! ( address6 ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_interface_address_s__bindgen_ty_2 { pub netmask4 : sockaddr_in , pub netmask6 : sockaddr_in6 , _bindgen_union_align : [ u32 ; 7usize ] , } # [ test ] fn bindgen_test_layout_uv_interface_address_s__bindgen_ty_2 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_interface_address_s__bindgen_ty_2 > ( ) , 28usize , concat ! ( "Size of: " , stringify ! ( uv_interface_address_s__bindgen_ty_2 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_interface_address_s__bindgen_ty_2 > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( uv_interface_address_s__bindgen_ty_2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s__bindgen_ty_2 ) ) . netmask4 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s__bindgen_ty_2 ) , "::" , stringify ! ( netmask4 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s__bindgen_ty_2 ) ) . netmask6 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s__bindgen_ty_2 ) , "::" , stringify ! ( netmask6 ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_interface_address_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_interface_address_s > ( ) , 80usize , concat ! ( "Size of: " , stringify ! ( uv_interface_address_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_interface_address_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_interface_address_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s ) ) . phys_addr as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s ) , "::" , stringify ! ( phys_addr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s ) ) . is_internal as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s ) , "::" , stringify ! ( is_internal ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s ) ) . address as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s ) , "::" , stringify ! ( address ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_interface_address_s ) ) . netmask as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_interface_address_s ) , "::" , stringify ! ( netmask ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_passwd_s { pub username : * mut :: std :: os :: raw :: c_char , pub uid : :: std :: os :: raw :: c_long , pub gid : :: std :: os :: raw :: c_long , pub shell : * mut :: std :: os :: raw :: c_char , pub homedir : * mut :: std :: os :: raw :: c_char , } # [ test ] fn bindgen_test_layout_uv_passwd_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_passwd_s > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( uv_passwd_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_passwd_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_passwd_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_passwd_s ) ) . username as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_passwd_s ) , "::" , stringify ! ( username ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_passwd_s ) ) . uid as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_passwd_s ) , "::" , stringify ! ( uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_passwd_s ) ) . gid as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_passwd_s ) , "::" , stringify ! ( gid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_passwd_s ) ) . shell as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_passwd_s ) , "::" , stringify ! ( shell ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_passwd_s ) ) . homedir as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_passwd_s ) , "::" , stringify ! ( homedir ) ) ) ; } pub const uv_dirent_type_t_UV_DIRENT_UNKNOWN : uv_dirent_type_t = 0 ; pub const uv_dirent_type_t_UV_DIRENT_FILE : uv_dirent_type_t = 1 ; pub const uv_dirent_type_t_UV_DIRENT_DIR : uv_dirent_type_t = 2 ; pub const uv_dirent_type_t_UV_DIRENT_LINK : uv_dirent_type_t = 3 ; pub const uv_dirent_type_t_UV_DIRENT_FIFO : uv_dirent_type_t = 4 ; pub const uv_dirent_type_t_UV_DIRENT_SOCKET : uv_dirent_type_t = 5 ; pub const uv_dirent_type_t_UV_DIRENT_CHAR : uv_dirent_type_t = 6 ; pub const uv_dirent_type_t_UV_DIRENT_BLOCK : uv_dirent_type_t = 7 ; pub type uv_dirent_type_t = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_dirent_s { pub name : * const :: std :: os :: raw :: c_char , pub type_ : uv_dirent_type_t , } # [ test ] fn bindgen_test_layout_uv_dirent_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_dirent_s > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_dirent_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_dirent_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_dirent_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_dirent_s ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_dirent_s ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_dirent_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_dirent_s ) , "::" , stringify ! ( type_ ) ) ) ; } extern "C" {
 pub fn uv_setup_args ( argc : :: std :: os :: raw :: c_int , argv : * mut * mut :: std :: os :: raw :: c_char , ) -> * mut * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn uv_get_process_title ( buffer : * mut :: std :: os :: raw :: c_char , size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_set_process_title ( title : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_resident_set_memory ( rss : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_uptime ( uptime : * mut f64 , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_timeval_t { pub tv_sec : :: std :: os :: raw :: c_long , pub tv_usec : :: std :: os :: raw :: c_long , } # [ test ] fn bindgen_test_layout_uv_timeval_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_timeval_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_timeval_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_timeval_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_timeval_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timeval_t ) ) . tv_sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timeval_t ) , "::" , stringify ! ( tv_sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_timeval_t ) ) . tv_usec as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_timeval_t ) , "::" , stringify ! ( tv_usec ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_rusage_t { pub ru_utime : uv_timeval_t , pub ru_stime : uv_timeval_t , pub ru_maxrss : u64 , pub ru_ixrss : u64 , pub ru_idrss : u64 , pub ru_isrss : u64 , pub ru_minflt : u64 , pub ru_majflt : u64 , pub ru_nswap : u64 , pub ru_inblock : u64 , pub ru_oublock : u64 , pub ru_msgsnd : u64 , pub ru_msgrcv : u64 , pub ru_nsignals : u64 , pub ru_nvcsw : u64 , pub ru_nivcsw : u64 , } # [ test ] fn bindgen_test_layout_uv_rusage_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_rusage_t > ( ) , 144usize , concat ! ( "Size of: " , stringify ! ( uv_rusage_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_rusage_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_rusage_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_utime as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_utime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_stime as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_stime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_maxrss as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_maxrss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_ixrss as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_ixrss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_idrss as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_idrss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_isrss as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_isrss ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_minflt as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_minflt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_majflt as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_majflt ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_nswap as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_nswap ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_inblock as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_inblock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_oublock as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_oublock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_msgsnd as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_msgsnd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_msgrcv as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_msgrcv ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_nsignals as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_nsignals ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_nvcsw as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_nvcsw ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_rusage_t ) ) . ru_nivcsw as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_rusage_t ) , "::" , stringify ! ( ru_nivcsw ) ) ) ; } extern "C" {
 pub fn uv_getrusage ( rusage : * mut uv_rusage_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_os_homedir ( buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_os_tmpdir ( buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_os_get_passwd ( pwd : * mut uv_passwd_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_os_free_passwd ( pwd : * mut uv_passwd_t , ) ; 
} extern "C" {
 pub fn uv_cpu_info ( cpu_infos : * mut * mut uv_cpu_info_t , count : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_free_cpu_info ( cpu_infos : * mut uv_cpu_info_t , count : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn uv_interface_addresses ( addresses : * mut * mut uv_interface_address_t , count : * mut :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_free_interface_addresses ( addresses : * mut uv_interface_address_t , count : :: std :: os :: raw :: c_int , ) ; 
} pub const uv_fs_type_UV_FS_UNKNOWN : uv_fs_type = -1 ; pub const uv_fs_type_UV_FS_CUSTOM : uv_fs_type = 0 ; pub const uv_fs_type_UV_FS_OPEN : uv_fs_type = 1 ; pub const uv_fs_type_UV_FS_CLOSE : uv_fs_type = 2 ; pub const uv_fs_type_UV_FS_READ : uv_fs_type = 3 ; pub const uv_fs_type_UV_FS_WRITE : uv_fs_type = 4 ; pub const uv_fs_type_UV_FS_SENDFILE : uv_fs_type = 5 ; pub const uv_fs_type_UV_FS_STAT : uv_fs_type = 6 ; pub const uv_fs_type_UV_FS_LSTAT : uv_fs_type = 7 ; pub const uv_fs_type_UV_FS_FSTAT : uv_fs_type = 8 ; pub const uv_fs_type_UV_FS_FTRUNCATE : uv_fs_type = 9 ; pub const uv_fs_type_UV_FS_UTIME : uv_fs_type = 10 ; pub const uv_fs_type_UV_FS_FUTIME : uv_fs_type = 11 ; pub const uv_fs_type_UV_FS_ACCESS : uv_fs_type = 12 ; pub const uv_fs_type_UV_FS_CHMOD : uv_fs_type = 13 ; pub const uv_fs_type_UV_FS_FCHMOD : uv_fs_type = 14 ; pub const uv_fs_type_UV_FS_FSYNC : uv_fs_type = 15 ; pub const uv_fs_type_UV_FS_FDATASYNC : uv_fs_type = 16 ; pub const uv_fs_type_UV_FS_UNLINK : uv_fs_type = 17 ; pub const uv_fs_type_UV_FS_RMDIR : uv_fs_type = 18 ; pub const uv_fs_type_UV_FS_MKDIR : uv_fs_type = 19 ; pub const uv_fs_type_UV_FS_MKDTEMP : uv_fs_type = 20 ; pub const uv_fs_type_UV_FS_RENAME : uv_fs_type = 21 ; pub const uv_fs_type_UV_FS_SCANDIR : uv_fs_type = 22 ; pub const uv_fs_type_UV_FS_LINK : uv_fs_type = 23 ; pub const uv_fs_type_UV_FS_SYMLINK : uv_fs_type = 24 ; pub const uv_fs_type_UV_FS_READLINK : uv_fs_type = 25 ; pub const uv_fs_type_UV_FS_CHOWN : uv_fs_type = 26 ; pub const uv_fs_type_UV_FS_FCHOWN : uv_fs_type = 27 ; pub const uv_fs_type_UV_FS_REALPATH : uv_fs_type = 28 ; pub type uv_fs_type = :: std :: os :: raw :: c_int ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_fs_s { pub data : * mut :: std :: os :: raw :: c_void , pub type_ : uv_req_type , pub active_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , pub fs_type : uv_fs_type , pub loop_ : * mut uv_loop_t , pub cb : uv_fs_cb , pub result : isize , pub ptr : * mut :: std :: os :: raw :: c_void , pub path : * const :: std :: os :: raw :: c_char , pub statbuf : uv_stat_t , pub new_path : * const :: std :: os :: raw :: c_char , pub file : uv_file , pub flags : :: std :: os :: raw :: c_int , pub mode : mode_t , pub nbufs : :: std :: os :: raw :: c_uint , pub bufs : * mut uv_buf_t , pub off : off_t , pub uid : uv_uid_t , pub gid : uv_gid_t , pub atime : f64 , pub mtime : f64 , pub work_req : uv__work , pub bufsml : [ uv_buf_t ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_fs_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_fs_s > ( ) , 440usize , concat ! ( "Size of: " , stringify ! ( uv_fs_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_fs_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_fs_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . type_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . active_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( active_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . reserved as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( reserved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . fs_type as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( fs_type ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . loop_ as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . cb as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . result as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( result ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . ptr as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( ptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . path as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( path ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . statbuf as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( statbuf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . new_path as * const _ as usize } , 272usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( new_path ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . file as * const _ as usize } , 280usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( file ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . flags as * const _ as usize } , 284usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . mode as * const _ as usize } , 288usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( mode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . nbufs as * const _ as usize } , 292usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( nbufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . bufs as * const _ as usize } , 296usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( bufs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . off as * const _ as usize } , 304usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( off ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . uid as * const _ as usize } , 312usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . gid as * const _ as usize } , 316usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( gid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . atime as * const _ as usize } , 320usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( atime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . mtime as * const _ as usize } , 328usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( mtime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . work_req as * const _ as usize } , 336usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( work_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_s ) ) . bufsml as * const _ as usize } , 376usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_s ) , "::" , stringify ! ( bufsml ) ) ) ; } extern "C" {
 pub fn uv_fs_req_cleanup ( req : * mut uv_fs_t , ) ; 
} extern "C" {
 pub fn uv_fs_close ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_open ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_int , mode : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_read ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , offset : i64 , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_unlink ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_write ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , bufs : * const uv_buf_t , nbufs : :: std :: os :: raw :: c_uint , offset : i64 , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_mkdir ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , mode : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_mkdtemp ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , tpl : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_rmdir ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_scandir ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_scandir_next ( req : * mut uv_fs_t , ent : * mut uv_dirent_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_stat ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_fstat ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_rename ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , new_path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_fsync ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_fdatasync ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_ftruncate ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , offset : i64 , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_sendfile ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , out_fd : uv_file , in_fd : uv_file , in_offset : i64 , length : usize , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_access ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , mode : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_chmod ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , mode : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_utime ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , atime : f64 , mtime : f64 , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_futime ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , atime : f64 , mtime : f64 , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_lstat ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_link ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , new_path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_symlink ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , new_path : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_readlink ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_realpath ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_fchmod ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , mode : :: std :: os :: raw :: c_int , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_chown ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , path : * const :: std :: os :: raw :: c_char , uid : uv_uid_t , gid : uv_gid_t , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_fchown ( loop_ : * mut uv_loop_t , req : * mut uv_fs_t , file : uv_file , uid : uv_uid_t , gid : uv_gid_t , cb : uv_fs_cb , ) -> :: std :: os :: raw :: c_int ; 
} pub const uv_fs_event_UV_RENAME : uv_fs_event = 1 ; pub const uv_fs_event_UV_CHANGE : uv_fs_event = 2 ; pub type uv_fs_event = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_fs_event_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_fs_event_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub path : * mut :: std :: os :: raw :: c_char , pub cb : uv_fs_event_cb , pub watchers : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub wd : :: std :: os :: raw :: c_int , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_fs_event_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_fs_event_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_fs_event_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_fs_event_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_fs_event_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_fs_event_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_fs_event_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_fs_event_s > ( ) , 136usize , concat ! ( "Size of: " , stringify ! ( uv_fs_event_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_fs_event_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_fs_event_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . path as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( path ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . cb as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . watchers as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( watchers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_event_s ) ) . wd as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_event_s ) , "::" , stringify ! ( wd ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_fs_poll_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_fs_poll_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub poll_ctx : * mut :: std :: os :: raw :: c_void , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_fs_poll_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_fs_poll_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_fs_poll_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_fs_poll_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_fs_poll_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_fs_poll_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_fs_poll_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_fs_poll_s > ( ) , 104usize , concat ! ( "Size of: " , stringify ! ( uv_fs_poll_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_fs_poll_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_fs_poll_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_fs_poll_s ) ) . poll_ctx as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_fs_poll_s ) , "::" , stringify ! ( poll_ctx ) ) ) ; } extern "C" {
 pub fn uv_fs_poll_init ( loop_ : * mut uv_loop_t , handle : * mut uv_fs_poll_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_poll_start ( handle : * mut uv_fs_poll_t , poll_cb : uv_fs_poll_cb , path : * const :: std :: os :: raw :: c_char , interval : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_poll_stop ( handle : * mut uv_fs_poll_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_poll_getpath ( handle : * mut uv_fs_poll_t , buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_signal_s { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub close_cb : uv_close_cb , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub u : uv_signal_s__bindgen_ty_1 , pub next_closing : * mut uv_handle_t , pub flags : :: std :: os :: raw :: c_uint , pub signal_cb : uv_signal_cb , pub signum : :: std :: os :: raw :: c_int , pub tree_entry : uv_signal_s__bindgen_ty_2 , pub caught_signals : :: std :: os :: raw :: c_uint , pub dispatched_signals : :: std :: os :: raw :: c_uint , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_signal_s__bindgen_ty_1 { pub fd : :: std :: os :: raw :: c_int , pub reserved : [ * mut :: std :: os :: raw :: c_void ; 4usize ] , _bindgen_union_align : [ u64 ; 4usize ] , } # [ test ] fn bindgen_test_layout_uv_signal_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_signal_s__bindgen_ty_1 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_signal_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_signal_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_signal_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_1 ) ) . fd as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_1 ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_1 ) ) . reserved as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_1 ) , "::" , stringify ! ( reserved ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_signal_s__bindgen_ty_2 { pub rbe_left : * mut uv_signal_s , pub rbe_right : * mut uv_signal_s , pub rbe_parent : * mut uv_signal_s , pub rbe_color : :: std :: os :: raw :: c_int , } # [ test ] fn bindgen_test_layout_uv_signal_s__bindgen_ty_2 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_signal_s__bindgen_ty_2 > ( ) , 32usize , concat ! ( "Size of: " , stringify ! ( uv_signal_s__bindgen_ty_2 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_signal_s__bindgen_ty_2 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_signal_s__bindgen_ty_2 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_2 ) ) . rbe_left as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_2 ) , "::" , stringify ! ( rbe_left ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_2 ) ) . rbe_right as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_2 ) , "::" , stringify ! ( rbe_right ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_2 ) ) . rbe_parent as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_2 ) , "::" , stringify ! ( rbe_parent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s__bindgen_ty_2 ) ) . rbe_color as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s__bindgen_ty_2 ) , "::" , stringify ! ( rbe_color ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_signal_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_signal_s > ( ) , 152usize , concat ! ( "Size of: " , stringify ! ( uv_signal_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_signal_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_signal_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . close_cb as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( close_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . handle_queue as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . u as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( u ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . next_closing as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( next_closing ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . flags as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . signal_cb as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( signal_cb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . signum as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( signum ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . tree_entry as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( tree_entry ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . caught_signals as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( caught_signals ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_signal_s ) ) . dispatched_signals as * const _ as usize } , 148usize , concat ! ( "Alignment of field: " , stringify ! ( uv_signal_s ) , "::" , stringify ! ( dispatched_signals ) ) ) ; } extern "C" {
 pub fn uv_signal_init ( loop_ : * mut uv_loop_t , handle : * mut uv_signal_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_signal_start ( handle : * mut uv_signal_t , signal_cb : uv_signal_cb , signum : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_signal_stop ( handle : * mut uv_signal_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_loadavg ( avg : * mut f64 , ) ; 
} pub const uv_fs_event_flags_UV_FS_EVENT_WATCH_ENTRY : uv_fs_event_flags = 1 ; pub const uv_fs_event_flags_UV_FS_EVENT_STAT : uv_fs_event_flags = 2 ; pub const uv_fs_event_flags_UV_FS_EVENT_RECURSIVE : uv_fs_event_flags = 4 ; pub type uv_fs_event_flags = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn uv_fs_event_init ( loop_ : * mut uv_loop_t , handle : * mut uv_fs_event_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_event_start ( handle : * mut uv_fs_event_t , cb : uv_fs_event_cb , path : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_event_stop ( handle : * mut uv_fs_event_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_fs_event_getpath ( handle : * mut uv_fs_event_t , buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_ip4_addr ( ip : * const :: std :: os :: raw :: c_char , port : :: std :: os :: raw :: c_int , addr : * mut sockaddr_in , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_ip6_addr ( ip : * const :: std :: os :: raw :: c_char , port : :: std :: os :: raw :: c_int , addr : * mut sockaddr_in6 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_ip4_name ( src : * const sockaddr_in , dst : * mut :: std :: os :: raw :: c_char , size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_ip6_name ( src : * const sockaddr_in6 , dst : * mut :: std :: os :: raw :: c_char , size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_inet_ntop ( af : :: std :: os :: raw :: c_int , src : * const :: std :: os :: raw :: c_void , dst : * mut :: std :: os :: raw :: c_char , size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_inet_pton ( af : :: std :: os :: raw :: c_int , src : * const :: std :: os :: raw :: c_char , dst : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_exepath ( buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_cwd ( buffer : * mut :: std :: os :: raw :: c_char , size : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_chdir ( dir : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_get_free_memory ( ) -> u64 ; 
} extern "C" {
 pub fn uv_get_total_memory ( ) -> u64 ; 
} extern "C" {
 pub fn uv_hrtime ( ) -> u64 ; 
} extern "C" {
 pub fn uv_disable_stdio_inheritance ( ) ; 
} extern "C" {
 pub fn uv_dlopen ( filename : * const :: std :: os :: raw :: c_char , lib : * mut uv_lib_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_dlclose ( lib : * mut uv_lib_t , ) ; 
} extern "C" {
 pub fn uv_dlsym ( lib : * mut uv_lib_t , name : * const :: std :: os :: raw :: c_char , ptr : * mut * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_dlerror ( lib : * const uv_lib_t , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn uv_mutex_init ( handle : * mut uv_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_mutex_destroy ( handle : * mut uv_mutex_t , ) ; 
} extern "C" {
 pub fn uv_mutex_lock ( handle : * mut uv_mutex_t , ) ; 
} extern "C" {
 pub fn uv_mutex_trylock ( handle : * mut uv_mutex_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_mutex_unlock ( handle : * mut uv_mutex_t , ) ; 
} extern "C" {
 pub fn uv_rwlock_init ( rwlock : * mut uv_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_rwlock_destroy ( rwlock : * mut uv_rwlock_t , ) ; 
} extern "C" {
 pub fn uv_rwlock_rdlock ( rwlock : * mut uv_rwlock_t , ) ; 
} extern "C" {
 pub fn uv_rwlock_tryrdlock ( rwlock : * mut uv_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_rwlock_rdunlock ( rwlock : * mut uv_rwlock_t , ) ; 
} extern "C" {
 pub fn uv_rwlock_wrlock ( rwlock : * mut uv_rwlock_t , ) ; 
} extern "C" {
 pub fn uv_rwlock_trywrlock ( rwlock : * mut uv_rwlock_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_rwlock_wrunlock ( rwlock : * mut uv_rwlock_t , ) ; 
} extern "C" {
 pub fn uv_sem_init ( sem : * mut uv_sem_t , value : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_sem_destroy ( sem : * mut uv_sem_t , ) ; 
} extern "C" {
 pub fn uv_sem_post ( sem : * mut uv_sem_t , ) ; 
} extern "C" {
 pub fn uv_sem_wait ( sem : * mut uv_sem_t , ) ; 
} extern "C" {
 pub fn uv_sem_trywait ( sem : * mut uv_sem_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_cond_init ( cond : * mut uv_cond_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_cond_destroy ( cond : * mut uv_cond_t , ) ; 
} extern "C" {
 pub fn uv_cond_signal ( cond : * mut uv_cond_t , ) ; 
} extern "C" {
 pub fn uv_cond_broadcast ( cond : * mut uv_cond_t , ) ; 
} extern "C" {
 pub fn uv_barrier_init ( barrier : * mut uv_barrier_t , count : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_barrier_destroy ( barrier : * mut uv_barrier_t , ) ; 
} extern "C" {
 pub fn uv_barrier_wait ( barrier : * mut uv_barrier_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_cond_wait ( cond : * mut uv_cond_t , mutex : * mut uv_mutex_t , ) ; 
} extern "C" {
 pub fn uv_cond_timedwait ( cond : * mut uv_cond_t , mutex : * mut uv_mutex_t , timeout : u64 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_once ( guard : * mut uv_once_t , callback : :: std :: option :: Option < unsafe extern "C" fn ( ) > , ) ; 
} extern "C" {
 pub fn uv_key_create ( key : * mut uv_key_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_key_delete ( key : * mut uv_key_t , ) ; 
} extern "C" {
 pub fn uv_key_get ( key : * mut uv_key_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn uv_key_set ( key : * mut uv_key_t , value : * mut :: std :: os :: raw :: c_void , ) ; 
} pub type uv_thread_cb = :: std :: option :: Option < unsafe extern "C" fn ( arg : * mut :: std :: os :: raw :: c_void ) > ; extern "C" {
 pub fn uv_thread_create ( tid : * mut uv_thread_t , entry : uv_thread_cb , arg : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_thread_setaffinity ( tid : * mut uv_thread_t , cpumask : * mut :: std :: os :: raw :: c_char , oldmask : * mut :: std :: os :: raw :: c_char , mask_size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_thread_getaffinity ( tid : * mut uv_thread_t , cpumask : * mut :: std :: os :: raw :: c_char , mask_size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_thread_detach ( tid : * mut uv_thread_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_thread_self ( ) -> uv_thread_t ; 
} extern "C" {
 pub fn uv_thread_join ( tid : * mut uv_thread_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn uv_thread_equal ( t1 : * const uv_thread_t , t2 : * const uv_thread_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_any_handle { pub async : uv_async_t , pub check : uv_check_t , pub fs_event : uv_fs_event_t , pub fs_poll : uv_fs_poll_t , pub handle : uv_handle_t , pub idle : uv_idle_t , pub pipe : uv_pipe_t , pub poll : uv_poll_t , pub prepare : uv_prepare_t , pub process : uv_process_t , pub stream : uv_stream_t , pub tcp : uv_tcp_t , pub timer : uv_timer_t , pub tty : uv_tty_t , pub udp : uv_udp_t , pub signal : uv_signal_t , _bindgen_union_align : [ u64 ; 39usize ] , } # [ test ] fn bindgen_test_layout_uv_any_handle ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_any_handle > ( ) , 312usize , concat ! ( "Size of: " , stringify ! ( uv_any_handle ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_any_handle > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_any_handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . async as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( async ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . check as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( check ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . fs_event as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( fs_event ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . fs_poll as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( fs_poll ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . handle as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( handle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . idle as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( idle ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . pipe as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( pipe ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . poll as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( poll ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . prepare as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( prepare ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . process as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( process ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . stream as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( stream ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . tcp as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( tcp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . timer as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( timer ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . tty as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( tty ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . udp as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( udp ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_handle ) ) . signal as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_handle ) , "::" , stringify ! ( signal ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union uv_any_req { pub req : uv_req_t , pub connect : uv_connect_t , pub write : uv_write_t , pub shutdown : uv_shutdown_t , pub udp_send : uv_udp_send_t , pub fs : uv_fs_t , pub work : uv_work_t , pub getaddrinfo : uv_getaddrinfo_t , pub getnameinfo : uv_getnameinfo_t , _bindgen_union_align : [ u64 ; 165usize ] , } # [ test ] fn bindgen_test_layout_uv_any_req ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_any_req > ( ) , 1320usize , concat ! ( "Size of: " , stringify ! ( uv_any_req ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_any_req > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_any_req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . req as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( req ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . connect as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( connect ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . write as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( write ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . shutdown as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( shutdown ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . udp_send as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( udp_send ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . fs as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( fs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . work as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( work ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . getaddrinfo as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( getaddrinfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_any_req ) ) . getnameinfo as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_any_req ) , "::" , stringify ! ( getnameinfo ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct uv_loop_s { pub data : * mut :: std :: os :: raw :: c_void , pub active_handles : :: std :: os :: raw :: c_uint , pub handle_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub active_reqs : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub stop_flag : :: std :: os :: raw :: c_uint , pub flags : :: std :: os :: raw :: c_ulong , pub backend_fd : :: std :: os :: raw :: c_int , pub pending_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub watcher_queue : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub watchers : * mut * mut uv__io_t , pub nwatchers : :: std :: os :: raw :: c_uint , pub nfds : :: std :: os :: raw :: c_uint , pub wq : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub wq_mutex : uv_mutex_t , pub wq_async : uv_async_t , pub cloexec_lock : uv_rwlock_t , pub closing_handles : * mut uv_handle_t , pub process_handles : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub prepare_handles : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub check_handles : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub idle_handles : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub async_handles : [ * mut :: std :: os :: raw :: c_void ; 2usize ] , pub async_watcher : uv__async , pub timer_heap : uv_loop_s__bindgen_ty_1 , pub timer_counter : u64 , pub time : u64 , pub signal_pipefd : [ :: std :: os :: raw :: c_int ; 2usize ] , pub signal_io_watcher : uv__io_t , pub child_watcher : uv_signal_t , pub emfile_fd : :: std :: os :: raw :: c_int , pub inotify_read_watcher : uv__io_t , pub inotify_watchers : * mut :: std :: os :: raw :: c_void , pub inotify_fd : :: std :: os :: raw :: c_int , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct uv_loop_s__bindgen_ty_1 { pub min : * mut :: std :: os :: raw :: c_void , pub nelts : :: std :: os :: raw :: c_uint , } # [ test ] fn bindgen_test_layout_uv_loop_s__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_loop_s__bindgen_ty_1 > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( uv_loop_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_loop_s__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_loop_s__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s__bindgen_ty_1 ) ) . min as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s__bindgen_ty_1 ) , "::" , stringify ! ( min ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s__bindgen_ty_1 ) ) . nelts as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s__bindgen_ty_1 ) , "::" , stringify ! ( nelts ) ) ) ; } # [ test ] fn bindgen_test_layout_uv_loop_s ( ) { assert_eq ! ( :: std :: mem :: size_of :: < uv_loop_s > ( ) , 848usize , concat ! ( "Size of: " , stringify ! ( uv_loop_s ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < uv_loop_s > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( uv_loop_s ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . active_handles as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( active_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . handle_queue as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( handle_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . active_reqs as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( active_reqs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . stop_flag as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( stop_flag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . flags as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . backend_fd as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( backend_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . pending_queue as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( pending_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . watcher_queue as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( watcher_queue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . watchers as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( watchers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . nwatchers as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( nwatchers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . nfds as * const _ as usize } , 116usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( nfds ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . wq as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( wq ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . wq_mutex as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( wq_mutex ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . wq_async as * const _ as usize } , 176usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( wq_async ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . cloexec_lock as * const _ as usize } , 304usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( cloexec_lock ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . closing_handles as * const _ as usize } , 360usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( closing_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . process_handles as * const _ as usize } , 368usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( process_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . prepare_handles as * const _ as usize } , 384usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( prepare_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . check_handles as * const _ as usize } , 400usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( check_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . idle_handles as * const _ as usize } , 416usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( idle_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . async_handles as * const _ as usize } , 432usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( async_handles ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . async_watcher as * const _ as usize } , 448usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( async_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . timer_heap as * const _ as usize } , 520usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( timer_heap ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . timer_counter as * const _ as usize } , 536usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( timer_counter ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . time as * const _ as usize } , 544usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( time ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . signal_pipefd as * const _ as usize } , 552usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( signal_pipefd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . signal_io_watcher as * const _ as usize } , 560usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( signal_io_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . child_watcher as * const _ as usize } , 616usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( child_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . emfile_fd as * const _ as usize } , 768usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( emfile_fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . inotify_read_watcher as * const _ as usize } , 776usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( inotify_read_watcher ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . inotify_watchers as * const _ as usize } , 832usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( inotify_watchers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const uv_loop_s ) ) . inotify_fd as * const _ as usize } , 840usize , concat ! ( "Alignment of field: " , stringify ! ( uv_loop_s ) , "::" , stringify ! ( inotify_fd ) ) ) ; } pub const bufmode_t_bm_none : bufmode_t = 19 ; pub const bufmode_t_bm_line : bufmode_t = 20 ; pub const bufmode_t_bm_block : bufmode_t = 21 ; pub const bufmode_t_bm_mem : bufmode_t = 22 ; pub type bufmode_t = :: std :: os :: raw :: c_uint ; pub const bufstate_t_bst_none : bufstate_t = 0 ; pub const bufstate_t_bst_rd : bufstate_t = 1 ; pub const bufstate_t_bst_wr : bufstate_t = 2 ; pub type bufstate_t = :: std :: os :: raw :: c_uint ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct ios_t { pub buf : * mut :: std :: os :: raw :: c_char , pub errcode : :: std :: os :: raw :: c_int , pub _pad_bm : :: std :: os :: raw :: c_int , pub bm : bufmode_t , pub state : bufstate_t , pub maxsize : i64 , pub size : i64 , pub bpos : i64 , pub ndirty : i64 , pub fpos : i64 , pub lineno : usize , pub fd : :: std :: os :: raw :: c_long , pub _bitfield_1 : u8 , pub userdata : i64 , pub local : [ :: std :: os :: raw :: c_char ; 54usize ] , } # [ test ] fn bindgen_test_layout_ios_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < ios_t > ( ) , 152usize , concat ! ( "Size of: " , stringify ! ( ios_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < ios_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( ios_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . buf as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( buf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . errcode as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( errcode ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . _pad_bm as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( _pad_bm ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . bm as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( bm ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . state as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . maxsize as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( maxsize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . size as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . bpos as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( bpos ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . ndirty as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( ndirty ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . fpos as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( fpos ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . lineno as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( lineno ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . fd as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( fd ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . userdata as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( userdata ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const ios_t ) ) . local as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( ios_t ) , "::" , stringify ! ( local ) ) ) ; } impl ios_t { # [ inline ] pub fn readable ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x1 as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_readable ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x1 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn writable ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x2 as u8 ; let val = ( unit_field_val & mask ) >> 1usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_writable ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x2 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 1usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn ownbuf ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x4 as u8 ; let val = ( unit_field_val & mask ) >> 2usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_ownbuf ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x4 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 2usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn ownfd ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x8 as u8 ; let val = ( unit_field_val & mask ) >> 3usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_ownfd ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x8 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 3usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn _eof ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x10 as u8 ; let val = ( unit_field_val & mask ) >> 4usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set__eof ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x10 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 4usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn rereadable ( & self ) -> :: std :: os :: raw :: c_uchar { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x20 as u8 ; let val = ( unit_field_val & mask ) >> 5usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_rereadable ( & mut self , val : :: std :: os :: raw :: c_uchar ) { let mask = 0x20 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 5usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( readable : :: std :: os :: raw :: c_uchar , writable : :: std :: os :: raw :: c_uchar , ownbuf : :: std :: os :: raw :: c_uchar , ownfd : :: std :: os :: raw :: c_uchar , _eof : :: std :: os :: raw :: c_uchar , rereadable : :: std :: os :: raw :: c_uchar ) -> u8 { ( ( ( ( ( ( 0 | ( ( readable as u8 as u8 ) << 0usize ) & ( 0x1 as u8 ) ) | ( ( writable as u8 as u8 ) << 1usize ) & ( 0x2 as u8 ) ) | ( ( ownbuf as u8 as u8 ) << 2usize ) & ( 0x4 as u8 ) ) | ( ( ownfd as u8 as u8 ) << 3usize ) & ( 0x8 as u8 ) ) | ( ( _eof as u8 as u8 ) << 4usize ) & ( 0x10 as u8 ) ) | ( ( rereadable as u8 as u8 ) << 5usize ) & ( 0x20 as u8 ) ) } } extern "C" {
 # [ link_name = "\u{1}ios_set_io_wait_func" ] 
 pub static mut  ios_set_io_wait_func  :  :: std :: option :: Option < unsafe extern "C" fn ( arg1 : :: std :: os :: raw :: c_int ) > ;
} extern "C" {
 pub fn ios_read ( s : * mut ios_t , dest : * mut :: std :: os :: raw :: c_char , n : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_readall ( s : * mut ios_t , dest : * mut :: std :: os :: raw :: c_char , n : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_write ( s : * mut ios_t , data : * const :: std :: os :: raw :: c_char , n : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_seek ( s : * mut ios_t , pos : i64 , ) -> i64 ; 
} extern "C" {
 pub fn ios_seek_end ( s : * mut ios_t , ) -> i64 ; 
} extern "C" {
 pub fn ios_skip ( s : * mut ios_t , offs : i64 , ) -> i64 ; 
} extern "C" {
 pub fn ios_pos ( s : * mut ios_t , ) -> i64 ; 
} extern "C" {
 pub fn ios_trunc ( s : * mut ios_t , size : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_eof ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_eof_blocking ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_flush ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_close ( s : * mut ios_t , ) ; 
} extern "C" {
 pub fn ios_isopen ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_take_buffer ( s : * mut ios_t , psize : * mut usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ios_setbuf ( s : * mut ios_t , buf : * mut :: std :: os :: raw :: c_char , size : usize , own : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_bufmode ( s : * mut ios_t , mode : bufmode_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_get_readable ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_get_writable ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_set_readonly ( s : * mut ios_t , ) ; 
} extern "C" {
 pub fn ios_copy ( to : * mut ios_t , from : * mut ios_t , nbytes : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_copyall ( to : * mut ios_t , from : * mut ios_t , ) -> usize ; 
} extern "C" {
 pub fn ios_copyuntil ( to : * mut ios_t , from : * mut ios_t , delim : :: std :: os :: raw :: c_char , chomp : u8 , ) -> usize ; 
} extern "C" {
 pub fn ios_nchomp ( from : * mut ios_t , ntowrite : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_readprep ( from : * mut ios_t , n : usize , ) -> usize ; 
} extern "C" {
 pub fn ios_file ( s : * mut ios_t , fname : * const :: std :: os :: raw :: c_char , rd : :: std :: os :: raw :: c_int , wr : :: std :: os :: raw :: c_int , create : :: std :: os :: raw :: c_int , trunc : :: std :: os :: raw :: c_int , ) -> * mut ios_t ; 
} extern "C" {
 pub fn ios_mkstemp ( f : * mut ios_t , fname : * mut :: std :: os :: raw :: c_char , ) -> * mut ios_t ; 
} extern "C" {
 pub fn ios_mem ( s : * mut ios_t , initsize : usize , ) -> * mut ios_t ; 
} extern "C" {
 pub fn ios_str ( s : * mut ios_t , str : * mut :: std :: os :: raw :: c_char , ) -> * mut ios_t ; 
} extern "C" {
 pub fn ios_static_buffer ( s : * mut ios_t , buf : * mut :: std :: os :: raw :: c_char , sz : usize , ) -> * mut ios_t ; 
} extern "C" {
 pub fn ios_fd ( s : * mut ios_t , fd : :: std :: os :: raw :: c_long , isfile : :: std :: os :: raw :: c_int , own : :: std :: os :: raw :: c_int , ) -> * mut ios_t ; 
} extern "C" {
 # [ link_name = "\u{1}ios_stdin" ] 
 pub static mut  ios_stdin  :  * mut ios_t ;
} extern "C" {
 # [ link_name = "\u{1}ios_stdout" ] 
 pub static mut  ios_stdout  :  * mut ios_t ;
} extern "C" {
 # [ link_name = "\u{1}ios_stderr" ] 
 pub static mut  ios_stderr  :  * mut ios_t ;
} extern "C" {
 pub fn ios_init_stdstreams ( ) ; 
} extern "C" {
 pub fn ios_pututf8 ( s : * mut ios_t , wc : u32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_printf ( s : * mut ios_t , format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_vprintf ( s : * mut ios_t , format : * const :: std :: os :: raw :: c_char , args : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_getutf8 ( s : * mut ios_t , pwc : * mut u32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_peekutf8 ( s : * mut ios_t , pwc : * mut u32 , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_readline ( s : * mut ios_t , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ios_purge ( s : * mut ios_t , ) ; 
} extern "C" {
 pub fn ios_putc ( c : :: std :: os :: raw :: c_int , s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_getc ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_peekc ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ios_ungetc ( c : :: std :: os :: raw :: c_int , s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_timeval { pub sec : i64 , pub usec : i64 , } # [ test ] fn bindgen_test_layout_jl_timeval ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_timeval > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_timeval ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_timeval > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_timeval ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_timeval ) ) . sec as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_timeval ) , "::" , stringify ! ( sec ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_timeval ) ) . usec as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_timeval ) , "::" , stringify ! ( usec ) ) ) ; } extern "C" {
 pub fn jl_gettimeofday ( jtv : * mut jl_timeval , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_clock_now ( ) -> f64 ; 
} extern "C" {
 pub fn sleep_ms ( ms : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn nextipow2 ( i : uint_t , ) -> uint_t ; 
} extern "C" {
 pub fn int32hash ( a : u32 , ) -> u32 ; 
} extern "C" {
 pub fn int64hash ( key : u64 , ) -> u64 ; 
} extern "C" {
 pub fn int64to32hash ( key : u64 , ) -> u32 ; 
} extern "C" {
 pub fn memhash ( buf : * const :: std :: os :: raw :: c_char , n : usize , ) -> u64 ; 
} extern "C" {
 pub fn memhash_seed ( buf : * const :: std :: os :: raw :: c_char , n : usize , seed : u32 , ) -> u64 ; 
} extern "C" {
 pub fn memhash32 ( buf : * const :: std :: os :: raw :: c_char , n : usize , ) -> u32 ; 
} extern "C" {
 pub fn memhash32_seed ( buf : * const :: std :: os :: raw :: c_char , n : usize , seed : u32 , ) -> u32 ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct htable_t { pub size : usize , pub table : * mut * mut :: std :: os :: raw :: c_void , pub _space : [ * mut :: std :: os :: raw :: c_void ; 32usize ] , } # [ test ] fn bindgen_test_layout_htable_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < htable_t > ( ) , 272usize , concat ! ( "Size of: " , stringify ! ( htable_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < htable_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( htable_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const htable_t ) ) . size as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( htable_t ) , "::" , stringify ! ( size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const htable_t ) ) . table as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( htable_t ) , "::" , stringify ! ( table ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const htable_t ) ) . _space as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( htable_t ) , "::" , stringify ! ( _space ) ) ) ; } extern "C" {
 pub fn htable_new ( h : * mut htable_t , size : usize , ) -> * mut htable_t ; 
} extern "C" {
 pub fn htable_free ( h : * mut htable_t , ) ; 
} extern "C" {
 pub fn htable_reset ( h : * mut htable_t , sz : usize , ) ; 
} extern "C" {
 pub fn ptrhash_get ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn ptrhash_put ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , val : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn ptrhash_adjoin ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , val : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn ptrhash_has ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ptrhash_remove ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn ptrhash_bp ( h : * mut htable_t , key : * mut :: std :: os :: raw :: c_void , ) -> * mut * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn bitvector_new ( n : u64 , initzero : :: std :: os :: raw :: c_int , ) -> * mut u32 ; 
} extern "C" {
 pub fn bitvector_resize ( b : * mut u32 , oldsz : u64 , newsz : u64 , initzero : :: std :: os :: raw :: c_int , ) -> * mut u32 ; 
} extern "C" {
 pub fn bitvector_nwords ( nbits : u64 , ) -> usize ; 
} extern "C" {
 pub fn bitvector_set ( b : * mut u32 , n : u64 , c : u32 , ) ; 
} extern "C" {
 pub fn bitvector_get ( b : * mut u32 , n : u64 , ) -> u32 ; 
} extern "C" {
 pub fn jl_strtod_c ( nptr : * const :: std :: os :: raw :: c_char , endptr : * mut * mut :: std :: os :: raw :: c_char , ) -> f64 ; 
} extern "C" {
 pub fn jl_strtof_c ( nptr : * const :: std :: os :: raw :: c_char , endptr : * mut * mut :: std :: os :: raw :: c_char , ) -> f32 ; 
} extern "C" {
 pub fn jl_crc32c_init ( force_sw : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_crc32c ( crc : u32 , buf : * const :: std :: os :: raw :: c_void , len : usize , ) -> u32 ; 
} extern "C" {
 pub fn libsupport_init ( ) ; 
} extern "C" {
 pub fn memcpy ( __dest : * mut :: std :: os :: raw :: c_void , __src : * const :: std :: os :: raw :: c_void , __n : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn memmove ( __dest : * mut :: std :: os :: raw :: c_void , __src : * const :: std :: os :: raw :: c_void , __n : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn memccpy ( __dest : * mut :: std :: os :: raw :: c_void , __src : * const :: std :: os :: raw :: c_void , __c : :: std :: os :: raw :: c_int , __n : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn memset ( __s : * mut :: std :: os :: raw :: c_void , __c : :: std :: os :: raw :: c_int , __n : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn memcmp ( __s1 : * const :: std :: os :: raw :: c_void , __s2 : * const :: std :: os :: raw :: c_void , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn memchr ( __s : * const :: std :: os :: raw :: c_void , __c : :: std :: os :: raw :: c_int , __n : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn strcpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strncpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strcat ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strncat ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strcmp ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strncmp ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strcoll ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strxfrm ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , ) -> :: std :: os :: raw :: c_ulong ; 
} extern "C" {
 pub fn strcoll_l ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , __l : __locale_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strxfrm_l ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , __l : __locale_t , ) -> usize ; 
} extern "C" {
 pub fn strdup ( __s : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strndup ( __string : * const :: std :: os :: raw :: c_char , __n : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strchr ( __s : * const :: std :: os :: raw :: c_char , __c : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strrchr ( __s : * const :: std :: os :: raw :: c_char , __c : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strcspn ( __s : * const :: std :: os :: raw :: c_char , __reject : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_ulong ; 
} extern "C" {
 pub fn strspn ( __s : * const :: std :: os :: raw :: c_char , __accept : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_ulong ; 
} extern "C" {
 pub fn strpbrk ( __s : * const :: std :: os :: raw :: c_char , __accept : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strstr ( __haystack : * const :: std :: os :: raw :: c_char , __needle : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strtok ( __s : * mut :: std :: os :: raw :: c_char , __delim : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn __strtok_r ( __s : * mut :: std :: os :: raw :: c_char , __delim : * const :: std :: os :: raw :: c_char , __save_ptr : * mut * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strtok_r ( __s : * mut :: std :: os :: raw :: c_char , __delim : * const :: std :: os :: raw :: c_char , __save_ptr : * mut * mut :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strlen ( __s : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_ulong ; 
} extern "C" {
 pub fn strnlen ( __string : * const :: std :: os :: raw :: c_char , __maxlen : usize , ) -> usize ; 
} extern "C" {
 pub fn strerror ( __errnum : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 # [ link_name = "\u{1}__xpg_strerror_r" ] 
 pub fn strerror_r ( __errnum : :: std :: os :: raw :: c_int , __buf : * mut :: std :: os :: raw :: c_char , __buflen : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strerror_l ( __errnum : :: std :: os :: raw :: c_int , __l : __locale_t , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn __bzero ( __s : * mut :: std :: os :: raw :: c_void , __n : usize , ) ; 
} extern "C" {
 pub fn bcopy ( __src : * const :: std :: os :: raw :: c_void , __dest : * mut :: std :: os :: raw :: c_void , __n : usize , ) ; 
} extern "C" {
 pub fn bzero ( __s : * mut :: std :: os :: raw :: c_void , __n : usize , ) ; 
} extern "C" {
 pub fn bcmp ( __s1 : * const :: std :: os :: raw :: c_void , __s2 : * const :: std :: os :: raw :: c_void , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn index ( __s : * const :: std :: os :: raw :: c_char , __c : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn rindex ( __s : * const :: std :: os :: raw :: c_char , __c : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn ffs ( __i : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strcasecmp ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strncasecmp ( __s1 : * const :: std :: os :: raw :: c_char , __s2 : * const :: std :: os :: raw :: c_char , __n : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn strsep ( __stringp : * mut * mut :: std :: os :: raw :: c_char , __delim : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn strsignal ( __sig : :: std :: os :: raw :: c_int , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn __stpcpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn stpcpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn __stpncpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn stpncpy ( __dest : * mut :: std :: os :: raw :: c_char , __src : * const :: std :: os :: raw :: c_char , __n : usize , ) -> * mut :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct arraylist_t { pub len : usize , pub max : usize , pub items : * mut * mut :: std :: os :: raw :: c_void , pub _space : [ * mut :: std :: os :: raw :: c_void ; 29usize ] , } # [ test ] fn bindgen_test_layout_arraylist_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < arraylist_t > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( arraylist_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < arraylist_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( arraylist_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const arraylist_t ) ) . len as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( arraylist_t ) , "::" , stringify ! ( len ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const arraylist_t ) ) . max as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( arraylist_t ) , "::" , stringify ! ( max ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const arraylist_t ) ) . items as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( arraylist_t ) , "::" , stringify ! ( items ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const arraylist_t ) ) . _space as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( arraylist_t ) , "::" , stringify ! ( _space ) ) ) ; } extern "C" {
 pub fn arraylist_new ( a : * mut arraylist_t , size : usize , ) -> * mut arraylist_t ; 
} extern "C" {
 pub fn arraylist_free ( a : * mut arraylist_t , ) ; 
} extern "C" {
 pub fn arraylist_push ( a : * mut arraylist_t , elt : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn arraylist_pop ( a : * mut arraylist_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn arraylist_grow ( a : * mut arraylist_t , n : usize , ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __jmp_buf_tag { pub __jmpbuf : __jmp_buf , pub __mask_was_saved : :: std :: os :: raw :: c_int , pub __saved_mask : __sigset_t , } # [ test ] fn bindgen_test_layout___jmp_buf_tag ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __jmp_buf_tag > ( ) , 200usize , concat ! ( "Size of: " , stringify ! ( __jmp_buf_tag ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __jmp_buf_tag > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __jmp_buf_tag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __jmp_buf_tag ) ) . __jmpbuf as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __jmp_buf_tag ) , "::" , stringify ! ( __jmpbuf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __jmp_buf_tag ) ) . __mask_was_saved as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( __jmp_buf_tag ) , "::" , stringify ! ( __mask_was_saved ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __jmp_buf_tag ) ) . __saved_mask as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( __jmp_buf_tag ) , "::" , stringify ! ( __saved_mask ) ) ) ; } pub type jmp_buf = [ __jmp_buf_tag ; 1usize ] ; extern "C" {
 pub fn setjmp ( __env : * mut __jmp_buf_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn _setjmp ( __env : * mut __jmp_buf_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn longjmp ( __env : * mut __jmp_buf_tag , __val : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn _longjmp ( __env : * mut __jmp_buf_tag , __val : :: std :: os :: raw :: c_int , ) ; 
} pub type sigjmp_buf = [ __jmp_buf_tag ; 1usize ] ; extern "C" {
 pub fn siglongjmp ( __env : * mut __jmp_buf_tag , __val : :: std :: os :: raw :: c_int , ) ; 
} pub type jl_taggedvalue_t = _jl_taggedvalue_t ; pub type __m64 = [ :: std :: os :: raw :: c_longlong ; 1usize ] ; pub type __v2si = [ :: std :: os :: raw :: c_int ; 2usize ] ; pub type __v4hi = [ :: std :: os :: raw :: c_short ; 4usize ] ; pub type __v8qi = [ :: std :: os :: raw :: c_char ; 8usize ] ; pub type __v4si = [ :: std :: os :: raw :: c_int ; 4usize ] ; pub type __v4sf = [ f32 ; 4usize ] ; pub type __m128 = [ f32 ; 4usize ] ; pub type __m128d = [ f64 ; 2usize ] ; pub type __m128i = [ :: std :: os :: raw :: c_longlong ; 2usize ] ; pub type __v2df = [ f64 ; 2usize ] ; pub type __v2di = [ :: std :: os :: raw :: c_longlong ; 2usize ] ; pub type __v8hi = [ :: std :: os :: raw :: c_short ; 8usize ] ; pub type __v16qi = [ :: std :: os :: raw :: c_char ; 16usize ] ; pub type __v16qs = [ :: std :: os :: raw :: c_schar ; 16usize ] ; pub type __v4df = [ f64 ; 4usize ] ; pub type __v8sf = [ f32 ; 8usize ] ; pub type __v4di = [ :: std :: os :: raw :: c_longlong ; 4usize ] ; pub type __v8si = [ :: std :: os :: raw :: c_int ; 8usize ] ; pub type __v16hi = [ :: std :: os :: raw :: c_short ; 16usize ] ; pub type __v32qi = [ :: std :: os :: raw :: c_char ; 32usize ] ; pub type __v32qs = [ :: std :: os :: raw :: c_schar ; 32usize ] ; pub type __m256 = [ f32 ; 8usize ] ; pub type __m256d = [ f64 ; 4usize ] ; pub type __m256i = [ :: std :: os :: raw :: c_longlong ; 4usize ] ; pub type __v8df = [ f64 ; 8usize ] ; pub type __v16sf = [ f32 ; 16usize ] ; pub type __v8di = [ :: std :: os :: raw :: c_longlong ; 8usize ] ; pub type __v16si = [ :: std :: os :: raw :: c_int ; 16usize ] ; pub type __m512 = [ f32 ; 16usize ] ; pub type __m512d = [ f64 ; 8usize ] ; pub type __m512i = [ :: std :: os :: raw :: c_longlong ; 8usize ] ; pub type __mmask8 = :: std :: os :: raw :: c_uchar ; pub type __mmask16 = :: std :: os :: raw :: c_ushort ; pub type __mmask32 = :: std :: os :: raw :: c_uint ; pub type __mmask64 = :: std :: os :: raw :: c_ulonglong ; pub type __v64qi = [ :: std :: os :: raw :: c_char ; 64usize ] ; pub type __v32hi = [ :: std :: os :: raw :: c_short ; 32usize ] ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_gc_pool_t { pub freelist : * mut jl_taggedvalue_t , pub newpages : * mut jl_taggedvalue_t , pub osize : u16 , } # [ test ] fn bindgen_test_layout_jl_gc_pool_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_gc_pool_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( jl_gc_pool_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_gc_pool_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_gc_pool_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_pool_t ) ) . freelist as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_pool_t ) , "::" , stringify ! ( freelist ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_pool_t ) ) . newpages as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_pool_t ) , "::" , stringify ! ( newpages ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_pool_t ) ) . osize as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_pool_t ) , "::" , stringify ! ( osize ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct jl_thread_heap_t { pub weak_refs : arraylist_t , pub mallocarrays : * mut _mallocarray_t , pub mafreelist : * mut _mallocarray_t , pub big_objects : * mut _bigval_t , pub rem_bindings : arraylist_t , pub _remset : [ arraylist_t ; 2usize ] , pub remset_nptr : :: std :: os :: raw :: c_int , pub remset : * mut arraylist_t , pub last_remset : * mut arraylist_t , pub norm_pools : [ jl_gc_pool_t ; 41usize ] , } # [ test ] fn bindgen_test_layout_jl_thread_heap_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_thread_heap_t > ( ) , 2056usize , concat ! ( "Size of: " , stringify ! ( jl_thread_heap_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_thread_heap_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_thread_heap_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . weak_refs as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( weak_refs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . mallocarrays as * const _ as usize } , 256usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( mallocarrays ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . mafreelist as * const _ as usize } , 264usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( mafreelist ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . big_objects as * const _ as usize } , 272usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( big_objects ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . rem_bindings as * const _ as usize } , 280usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( rem_bindings ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . _remset as * const _ as usize } , 536usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( _remset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . remset_nptr as * const _ as usize } , 1048usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( remset_nptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . remset as * const _ as usize } , 1056usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( remset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . last_remset as * const _ as usize } , 1064usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( last_remset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_thread_heap_t ) ) . norm_pools as * const _ as usize } , 1072usize , concat ! ( "Alignment of field: " , stringify ! ( jl_thread_heap_t ) , "::" , stringify ! ( norm_pools ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct jl_gc_mark_cache_t { pub perm_scanned_bytes : usize , pub scanned_bytes : usize , pub nbig_obj : usize , pub big_obj : [ * mut :: std :: os :: raw :: c_void ; 1024usize ] , } # [ test ] fn bindgen_test_layout_jl_gc_mark_cache_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_gc_mark_cache_t > ( ) , 8216usize , concat ! ( "Size of: " , stringify ! ( jl_gc_mark_cache_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_gc_mark_cache_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_gc_mark_cache_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_mark_cache_t ) ) . perm_scanned_bytes as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_mark_cache_t ) , "::" , stringify ! ( perm_scanned_bytes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_mark_cache_t ) ) . scanned_bytes as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_mark_cache_t ) , "::" , stringify ! ( scanned_bytes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_mark_cache_t ) ) . nbig_obj as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_mark_cache_t ) , "::" , stringify ! ( nbig_obj ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_gc_mark_cache_t ) ) . big_obj as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_gc_mark_cache_t ) , "::" , stringify ! ( big_obj ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_tls_states_t { pub pgcstack : * mut _jl_gcframe_t , pub world_age : usize , pub exception_in_transit : * mut _jl_value_t , pub safepoint : * mut usize , pub gc_state : i8 , pub in_finalizer : i8 , pub disable_gc : i8 , pub defer_signal : sig_atomic_t , pub current_module : * mut _jl_module_t , pub current_task : * mut _jl_task_t , pub root_task : * mut _jl_task_t , pub stackbase : * mut :: std :: os :: raw :: c_void , pub stack_lo : * mut :: std :: os :: raw :: c_char , pub stack_hi : * mut :: std :: os :: raw :: c_char , pub jmp_target : * mut sigjmp_buf , pub base_ctx : sigjmp_buf , pub safe_restore : * mut sigjmp_buf , pub tid : i16 , pub bt_size : usize , pub bt_data : * mut usize , pub signal_request : sig_atomic_t , pub io_wait : sig_atomic_t , pub heap : jl_thread_heap_t , pub system_id : pthread_t , pub signal_stack : * mut :: std :: os :: raw :: c_void , pub in_pure_callback : :: std :: os :: raw :: c_int , pub finalizers_inhibited : :: std :: os :: raw :: c_int , pub finalizers : arraylist_t , pub gc_cache : jl_gc_mark_cache_t , } # [ test ] fn bindgen_test_layout__jl_tls_states_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_tls_states_t > ( ) , 10888usize , concat ! ( "Size of: " , stringify ! ( _jl_tls_states_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_tls_states_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_tls_states_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . pgcstack as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( pgcstack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . world_age as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( world_age ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . exception_in_transit as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( exception_in_transit ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . safepoint as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( safepoint ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . gc_state as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( gc_state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . in_finalizer as * const _ as usize } , 33usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( in_finalizer ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . disable_gc as * const _ as usize } , 34usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( disable_gc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . defer_signal as * const _ as usize } , 36usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( defer_signal ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . current_module as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( current_module ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . current_task as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( current_task ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . root_task as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( root_task ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . stackbase as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( stackbase ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . stack_lo as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( stack_lo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . stack_hi as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( stack_hi ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . jmp_target as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( jmp_target ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . base_ctx as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( base_ctx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . safe_restore as * const _ as usize } , 296usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( safe_restore ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . tid as * const _ as usize } , 304usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( tid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . bt_size as * const _ as usize } , 312usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( bt_size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . bt_data as * const _ as usize } , 320usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( bt_data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . signal_request as * const _ as usize } , 328usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( signal_request ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . io_wait as * const _ as usize } , 332usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( io_wait ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . heap as * const _ as usize } , 336usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( heap ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . system_id as * const _ as usize } , 2392usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( system_id ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . signal_stack as * const _ as usize } , 2400usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( signal_stack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . in_pure_callback as * const _ as usize } , 2408usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( in_pure_callback ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . finalizers_inhibited as * const _ as usize } , 2412usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( finalizers_inhibited ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . finalizers as * const _ as usize } , 2416usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( finalizers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_tls_states_t ) ) . gc_cache as * const _ as usize } , 2672usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_tls_states_t ) , "::" , stringify ! ( gc_cache ) ) ) ; } pub type jl_tls_states_t = _jl_tls_states_t ; pub type jl_ptls_t = * mut jl_tls_states_t ; extern "C" {
 pub fn jl_threadid ( ) -> i16 ; 
} extern "C" {
 pub fn jl_threadgroup ( ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_threading_profile ( ) ; 
} extern "C" {
 pub fn jl_cpu_pause ( ) ; 
} extern "C" {
 pub fn jl_cpu_wake ( ) ; 
} extern "C" {
 pub fn jl_get_ptls_states ( ) -> jl_ptls_t ; 
} pub type jl_get_ptls_states_func = :: std :: option :: Option < unsafe extern "C" fn ( ) -> jl_ptls_t > ; extern "C" {
 pub fn jl_set_ptls_states_getter ( f : jl_get_ptls_states_func , ) ; 
} extern "C" {
 pub fn jl_gc_safepoint ( ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_mutex_t { pub owner : :: std :: os :: raw :: c_ulong , pub count : u32 , } # [ test ] fn bindgen_test_layout_jl_mutex_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_mutex_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_mutex_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_mutex_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_mutex_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_mutex_t ) ) . owner as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_mutex_t ) , "::" , stringify ! ( owner ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_mutex_t ) ) . count as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_mutex_t ) , "::" , stringify ! ( count ) ) ) ; } extern "C" {
 pub fn jl_gc_enable_finalizers ( ptls : jl_ptls_t , on : :: std :: os :: raw :: c_int , ) ; 
} pub type jl_value_t = _jl_value_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_taggedvalue_bits { pub _bitfield_1 : u8 , pub __bindgen_padding_0 : [ u8 ; 7usize ] , pub __bindgen_align : [ u64 ; 0usize ] , } # [ test ] fn bindgen_test_layout__jl_taggedvalue_bits ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_taggedvalue_bits > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( _jl_taggedvalue_bits ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_taggedvalue_bits > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_taggedvalue_bits ) ) ) ; } impl _jl_taggedvalue_bits { # [ inline ] pub fn gc ( & self ) -> usize { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x3 as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u64 ) } } # [ inline ] pub fn set_gc ( & mut self , val : usize ) { let mask = 0x3 as u8 ; let val = val as u64 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( gc : usize ) -> u8 { ( 0 | ( ( gc as u64 as u8 ) << 0usize ) & ( 0x3 as u8 ) ) } } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_taggedvalue_t { pub __bindgen_anon_1 : _jl_taggedvalue_t__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union _jl_taggedvalue_t__bindgen_ty_1 { pub header : usize , pub next : * mut jl_taggedvalue_t , pub type_ : * mut jl_value_t , pub bits : _jl_taggedvalue_bits , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout__jl_taggedvalue_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_taggedvalue_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_taggedvalue_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_taggedvalue_t__bindgen_ty_1 ) ) . header as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) , "::" , stringify ! ( header ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_taggedvalue_t__bindgen_ty_1 ) ) . next as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) , "::" , stringify ! ( next ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_taggedvalue_t__bindgen_ty_1 ) ) . type_ as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_taggedvalue_t__bindgen_ty_1 ) ) . bits as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_taggedvalue_t__bindgen_ty_1 ) , "::" , stringify ! ( bits ) ) ) ; } # [ test ] fn bindgen_test_layout__jl_taggedvalue_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_taggedvalue_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( _jl_taggedvalue_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_taggedvalue_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_taggedvalue_t ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_sym_t { pub left : * mut _jl_sym_t , pub right : * mut _jl_sym_t , pub hash : usize , } # [ test ] fn bindgen_test_layout__jl_sym_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_sym_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( _jl_sym_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_sym_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_sym_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_sym_t ) ) . left as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_sym_t ) , "::" , stringify ! ( left ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_sym_t ) ) . right as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_sym_t ) , "::" , stringify ! ( right ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_sym_t ) ) . hash as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_sym_t ) , "::" , stringify ! ( hash ) ) ) ; } pub type jl_sym_t = _jl_sym_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_ssavalue_t { pub id : isize , } # [ test ] fn bindgen_test_layout__jl_ssavalue_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_ssavalue_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( _jl_ssavalue_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_ssavalue_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_ssavalue_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_ssavalue_t ) ) . id as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_ssavalue_t ) , "::" , stringify ! ( id ) ) ) ; } pub type jl_ssavalue_t = _jl_ssavalue_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_svec_t { pub length : usize , } # [ test ] fn bindgen_test_layout_jl_svec_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_svec_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_svec_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_svec_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_svec_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_svec_t ) ) . length as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_svec_t ) , "::" , stringify ! ( length ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_array_flags_t { pub _bitfield_1 : u16 , pub __bindgen_align : [ u16 ; 0usize ] , } # [ test ] fn bindgen_test_layout_jl_array_flags_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_array_flags_t > ( ) , 2usize , concat ! ( "Size of: " , stringify ! ( jl_array_flags_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_array_flags_t > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( jl_array_flags_t ) ) ) ; } impl jl_array_flags_t { # [ inline ] pub fn how ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x3 as u16 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_how ( & mut self , val : u16 ) { let mask = 0x3 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn ndims ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0xffc as u16 ; let val = ( unit_field_val & mask ) >> 2usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_ndims ( & mut self , val : u16 ) { let mask = 0xffc as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 2usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn pooled ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x1000 as u16 ; let val = ( unit_field_val & mask ) >> 12usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_pooled ( & mut self , val : u16 ) { let mask = 0x1000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 12usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn ptrarray ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x2000 as u16 ; let val = ( unit_field_val & mask ) >> 13usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_ptrarray ( & mut self , val : u16 ) { let mask = 0x2000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 13usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn isshared ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x4000 as u16 ; let val = ( unit_field_val & mask ) >> 14usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_isshared ( & mut self , val : u16 ) { let mask = 0x4000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 14usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn isaligned ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x8000 as u16 ; let val = ( unit_field_val & mask ) >> 15usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_isaligned ( & mut self , val : u16 ) { let mask = 0x8000 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 15usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( how : u16 , ndims : u16 , pooled : u16 , ptrarray : u16 , isshared : u16 , isaligned : u16 ) -> u16 { ( ( ( ( ( ( 0 | ( ( how as u16 as u16 ) << 0usize ) & ( 0x3 as u16 ) ) | ( ( ndims as u16 as u16 ) << 2usize ) & ( 0xffc as u16 ) ) | ( ( pooled as u16 as u16 ) << 12usize ) & ( 0x1000 as u16 ) ) | ( ( ptrarray as u16 as u16 ) << 13usize ) & ( 0x2000 as u16 ) ) | ( ( isshared as u16 as u16 ) << 14usize ) & ( 0x4000 as u16 ) ) | ( ( isaligned as u16 as u16 ) << 15usize ) & ( 0x8000 as u16 ) ) } } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct jl_array_t { pub data : * mut :: std :: os :: raw :: c_void , pub length : usize , pub flags : jl_array_flags_t , pub elsize : u16 , pub offset : u32 , pub nrows : usize , pub __bindgen_anon_1 : jl_array_t__bindgen_ty_1 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union jl_array_t__bindgen_ty_1 { pub maxsize : usize , pub ncols : usize , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_jl_array_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_array_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_array_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_array_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_array_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t__bindgen_ty_1 ) ) . maxsize as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t__bindgen_ty_1 ) , "::" , stringify ! ( maxsize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t__bindgen_ty_1 ) ) . ncols as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t__bindgen_ty_1 ) , "::" , stringify ! ( ncols ) ) ) ; } # [ test ] fn bindgen_test_layout_jl_array_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_array_t > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( jl_array_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_array_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_array_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . length as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( length ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . flags as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( flags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . elsize as * const _ as usize } , 18usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( elsize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . offset as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_array_t ) ) . nrows as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_array_t ) , "::" , stringify ! ( nrows ) ) ) ; } pub type jl_tupletype_t = _jl_datatype_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union jl_typemap_t { pub node : * mut _jl_typemap_level_t , pub leaf : * mut _jl_typemap_entry_t , pub unknown : * mut _jl_value_t , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_jl_typemap_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_typemap_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_typemap_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_typemap_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_typemap_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typemap_t ) ) . node as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typemap_t ) , "::" , stringify ! ( node ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typemap_t ) ) . leaf as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typemap_t ) , "::" , stringify ! ( leaf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typemap_t ) ) . unknown as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typemap_t ) , "::" , stringify ! ( unknown ) ) ) ; } pub type jl_fptr_t = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut jl_value_t , arg2 : * mut * mut jl_value_t , arg3 : u32 ) -> * mut jl_value_t > ; pub type jl_fptr_sparam_t = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut jl_svec_t , arg2 : * mut jl_value_t , arg3 : * mut * mut jl_value_t , arg4 : u32 ) -> * mut jl_value_t > ; pub type jl_fptr_linfo_t = :: std :: option :: Option < unsafe extern "C" fn ( arg1 : * mut _jl_method_instance_t , arg2 : * mut * mut jl_value_t , arg3 : u32 , arg4 : * mut jl_svec_t ) -> * mut jl_value_t > ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct jl_generic_fptr_t { pub __bindgen_anon_1 : jl_generic_fptr_t__bindgen_ty_1 , pub jlcall_api : u8 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union jl_generic_fptr_t__bindgen_ty_1 { pub fptr : jl_fptr_t , pub fptr1 : jl_fptr_t , pub fptr3 : jl_fptr_sparam_t , pub fptr4 : jl_fptr_linfo_t , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout_jl_generic_fptr_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_generic_fptr_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_generic_fptr_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_generic_fptr_t__bindgen_ty_1 ) ) . fptr as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) , "::" , stringify ! ( fptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_generic_fptr_t__bindgen_ty_1 ) ) . fptr1 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) , "::" , stringify ! ( fptr1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_generic_fptr_t__bindgen_ty_1 ) ) . fptr3 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) , "::" , stringify ! ( fptr3 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_generic_fptr_t__bindgen_ty_1 ) ) . fptr4 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_generic_fptr_t__bindgen_ty_1 ) , "::" , stringify ! ( fptr4 ) ) ) ; } # [ test ] fn bindgen_test_layout_jl_generic_fptr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_generic_fptr_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_generic_fptr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_generic_fptr_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_generic_fptr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_generic_fptr_t ) ) . jlcall_api as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_generic_fptr_t ) , "::" , stringify ! ( jlcall_api ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_llvm_functions_t { pub functionObject : * mut :: std :: os :: raw :: c_void , pub specFunctionObject : * mut :: std :: os :: raw :: c_void , } # [ test ] fn bindgen_test_layout__jl_llvm_functions_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_llvm_functions_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _jl_llvm_functions_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_llvm_functions_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_llvm_functions_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_llvm_functions_t ) ) . functionObject as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_llvm_functions_t ) , "::" , stringify ! ( functionObject ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_llvm_functions_t ) ) . specFunctionObject as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_llvm_functions_t ) , "::" , stringify ! ( specFunctionObject ) ) ) ; } pub type jl_llvm_functions_t = _jl_llvm_functions_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_code_info_t { pub code : * mut jl_array_t , pub slottypes : * mut jl_value_t , pub ssavaluetypes : * mut jl_value_t , pub slotflags : * mut jl_array_t , pub slotnames : * mut jl_array_t , pub inferred : u8 , pub inlineable : u8 , pub propagate_inbounds : u8 , pub pure_ : u8 , } # [ test ] fn bindgen_test_layout__jl_code_info_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_code_info_t > ( ) , 48usize , concat ! ( "Size of: " , stringify ! ( _jl_code_info_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_code_info_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_code_info_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . code as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( code ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . slottypes as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( slottypes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . ssavaluetypes as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( ssavaluetypes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . slotflags as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( slotflags ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . slotnames as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( slotnames ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . inferred as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( inferred ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . inlineable as * const _ as usize } , 41usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( inlineable ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . propagate_inbounds as * const _ as usize } , 42usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( propagate_inbounds ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_code_info_t ) ) . pure_ as * const _ as usize } , 43usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_code_info_t ) , "::" , stringify ! ( pure_ ) ) ) ; } pub type jl_code_info_t = _jl_code_info_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_method_t { pub name : * mut jl_sym_t , pub module : * mut _jl_module_t , pub file : * mut jl_sym_t , pub line : i32 , pub sig : * mut jl_value_t , pub min_world : usize , pub ambig : * mut jl_value_t , pub specializations : jl_typemap_t , pub sparam_syms : * mut jl_svec_t , pub source : * mut jl_value_t , pub unspecialized : * mut _jl_method_instance_t , pub generator : * mut _jl_method_instance_t , pub roots : * mut jl_array_t , pub invokes : jl_typemap_t , pub nargs : i32 , pub called : i32 , pub isva : u8 , pub isstaged : u8 , pub pure_ : u8 , pub traced : u8 , pub writelock : jl_mutex_t , } # [ test ] fn bindgen_test_layout__jl_method_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_method_t > ( ) , 144usize , concat ! ( "Size of: " , stringify ! ( _jl_method_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_method_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_method_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . module as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( module ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . file as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( file ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . line as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( line ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . sig as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( sig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . min_world as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( min_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . ambig as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( ambig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . specializations as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( specializations ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . sparam_syms as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( sparam_syms ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . source as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( source ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . unspecialized as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( unspecialized ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . generator as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( generator ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . roots as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( roots ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . invokes as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( invokes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . nargs as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( nargs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . called as * const _ as usize } , 116usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( called ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . isva as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( isva ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . isstaged as * const _ as usize } , 121usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( isstaged ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . pure_ as * const _ as usize } , 122usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( pure_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . traced as * const _ as usize } , 123usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( traced ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_t ) ) . writelock as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_t ) , "::" , stringify ! ( writelock ) ) ) ; } pub type jl_method_t = _jl_method_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_method_instance_t { pub specTypes : * mut jl_value_t , pub rettype : * mut jl_value_t , pub sparam_vals : * mut jl_svec_t , pub backedges : * mut jl_array_t , pub inferred : * mut jl_value_t , pub inferred_const : * mut jl_value_t , pub def : * mut jl_method_t , pub min_world : usize , pub max_world : usize , pub inInference : u8 , pub jlcall_api : u8 , pub compile_traced : u8 , pub fptr : jl_fptr_t , pub unspecialized_ducttape : jl_fptr_t , pub functionObjectsDecls : jl_llvm_functions_t , } # [ test ] fn bindgen_test_layout__jl_method_instance_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_method_instance_t > ( ) , 112usize , concat ! ( "Size of: " , stringify ! ( _jl_method_instance_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_method_instance_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_method_instance_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . specTypes as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( specTypes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . rettype as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( rettype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . sparam_vals as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( sparam_vals ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . backedges as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( backedges ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . inferred as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( inferred ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . inferred_const as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( inferred_const ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . def as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( def ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . min_world as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( min_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . max_world as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( max_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . inInference as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( inInference ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . jlcall_api as * const _ as usize } , 73usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( jlcall_api ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . compile_traced as * const _ as usize } , 74usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( compile_traced ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . fptr as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( fptr ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . unspecialized_ducttape as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( unspecialized_ducttape ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_method_instance_t ) ) . functionObjectsDecls as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_method_instance_t ) , "::" , stringify ! ( functionObjectsDecls ) ) ) ; } pub type jl_method_instance_t = _jl_method_instance_t ; pub type jl_function_t = jl_value_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_tvar_t { pub name : * mut jl_sym_t , pub lb : * mut jl_value_t , pub ub : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_tvar_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_tvar_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( jl_tvar_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_tvar_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_tvar_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_tvar_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_tvar_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_tvar_t ) ) . lb as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_tvar_t ) , "::" , stringify ! ( lb ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_tvar_t ) ) . ub as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_tvar_t ) , "::" , stringify ! ( ub ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_unionall_t { pub var : * mut jl_tvar_t , pub body : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_unionall_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_unionall_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_unionall_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_unionall_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_unionall_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_unionall_t ) ) . var as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_unionall_t ) , "::" , stringify ! ( var ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_unionall_t ) ) . body as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_unionall_t ) , "::" , stringify ! ( body ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_typename_t { pub name : * mut jl_sym_t , pub module : * mut _jl_module_t , pub names : * mut jl_svec_t , pub wrapper : * mut jl_value_t , pub cache : * mut jl_svec_t , pub linearcache : * mut jl_svec_t , pub hash : isize , pub mt : * mut _jl_methtable_t , } # [ test ] fn bindgen_test_layout_jl_typename_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_typename_t > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( jl_typename_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_typename_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_typename_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . module as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( module ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . names as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( names ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . wrapper as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( wrapper ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . cache as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( cache ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . linearcache as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( linearcache ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . hash as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( hash ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_typename_t ) ) . mt as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( jl_typename_t ) , "::" , stringify ! ( mt ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_uniontype_t { pub a : * mut jl_value_t , pub b : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_uniontype_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_uniontype_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_uniontype_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_uniontype_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_uniontype_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uniontype_t ) ) . a as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uniontype_t ) , "::" , stringify ! ( a ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uniontype_t ) ) . b as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uniontype_t ) , "::" , stringify ! ( b ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_fielddesc8_t { pub _bitfield_1 : u8 , pub offset : u8 , } # [ test ] fn bindgen_test_layout_jl_fielddesc8_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_fielddesc8_t > ( ) , 2usize , concat ! ( "Size of: " , stringify ! ( jl_fielddesc8_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_fielddesc8_t > ( ) , 1usize , concat ! ( "Alignment of " , stringify ! ( jl_fielddesc8_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_fielddesc8_t ) ) . offset as * const _ as usize } , 1usize , concat ! ( "Alignment of field: " , stringify ! ( jl_fielddesc8_t ) , "::" , stringify ! ( offset ) ) ) ; } impl jl_fielddesc8_t { # [ inline ] pub fn isptr ( & self ) -> u8 { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x1 as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_isptr ( & mut self , val : u8 ) { let mask = 0x1 as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn size ( & self ) -> u8 { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0xfe as u8 ; let val = ( unit_field_val & mask ) >> 1usize ; unsafe { :: std :: mem :: transmute ( val as u8 ) } } # [ inline ] pub fn set_size ( & mut self , val : u8 ) { let mask = 0xfe as u8 ; let val = val as u8 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 1usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( isptr : u8 , size : u8 ) -> u8 { ( ( 0 | ( ( isptr as u8 as u8 ) << 0usize ) & ( 0x1 as u8 ) ) | ( ( size as u8 as u8 ) << 1usize ) & ( 0xfe as u8 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_fielddesc16_t { pub _bitfield_1 : u16 , pub offset : u16 , } # [ test ] fn bindgen_test_layout_jl_fielddesc16_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_fielddesc16_t > ( ) , 4usize , concat ! ( "Size of: " , stringify ! ( jl_fielddesc16_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_fielddesc16_t > ( ) , 2usize , concat ! ( "Alignment of " , stringify ! ( jl_fielddesc16_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_fielddesc16_t ) ) . offset as * const _ as usize } , 2usize , concat ! ( "Alignment of field: " , stringify ! ( jl_fielddesc16_t ) , "::" , stringify ! ( offset ) ) ) ; } impl jl_fielddesc16_t { # [ inline ] pub fn isptr ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0x1 as u16 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_isptr ( & mut self , val : u16 ) { let mask = 0x1 as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn size ( & self ) -> u16 { let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; let mask = 0xfffe as u16 ; let val = ( unit_field_val & mask ) >> 1usize ; unsafe { :: std :: mem :: transmute ( val as u16 ) } } # [ inline ] pub fn set_size ( & mut self , val : u16 ) { let mask = 0xfffe as u16 ; let val = val as u16 as u16 ; let mut unit_field_val : u16 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u16 as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 1usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u16 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( isptr : u16 , size : u16 ) -> u16 { ( ( 0 | ( ( isptr as u16 as u16 ) << 0usize ) & ( 0x1 as u16 ) ) | ( ( size as u16 as u16 ) << 1usize ) & ( 0xfffe as u16 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_fielddesc32_t { pub _bitfield_1 : u32 , pub offset : u32 , } # [ test ] fn bindgen_test_layout_jl_fielddesc32_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_fielddesc32_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_fielddesc32_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_fielddesc32_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( jl_fielddesc32_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_fielddesc32_t ) ) . offset as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( jl_fielddesc32_t ) , "::" , stringify ! ( offset ) ) ) ; } impl jl_fielddesc32_t { # [ inline ] pub fn isptr ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0x1 as u32 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_isptr ( & mut self , val : u32 ) { let mask = 0x1 as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn size ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0xfffffffe as u32 ; let val = ( unit_field_val & mask ) >> 1usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_size ( & mut self , val : u32 ) { let mask = 0xfffffffe as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 1usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( isptr : u32 , size : u32 ) -> u32 { ( ( 0 | ( ( isptr as u32 as u32 ) << 0usize ) & ( 0x1 as u32 ) ) | ( ( size as u32 as u32 ) << 1usize ) & ( 0xfffffffe as u32 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_datatype_layout_t { pub nfields : u32 , pub _bitfield_1 : u32 , } # [ test ] fn bindgen_test_layout_jl_datatype_layout_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_datatype_layout_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_datatype_layout_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_datatype_layout_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( jl_datatype_layout_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_datatype_layout_t ) ) . nfields as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_datatype_layout_t ) , "::" , stringify ! ( nfields ) ) ) ; } impl jl_datatype_layout_t { # [ inline ] pub fn alignment ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0x1ff as u32 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_alignment ( & mut self , val : u32 ) { let mask = 0x1ff as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn haspadding ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0x200 as u32 ; let val = ( unit_field_val & mask ) >> 9usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_haspadding ( & mut self , val : u32 ) { let mask = 0x200 as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 9usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn npointers ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0x3ffffc00 as u32 ; let val = ( unit_field_val & mask ) >> 10usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_npointers ( & mut self , val : u32 ) { let mask = 0x3ffffc00 as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 10usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn fielddesc_type ( & self ) -> u32 { let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; let mask = 0xc0000000 as u32 ; let val = ( unit_field_val & mask ) >> 30usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_fielddesc_type ( & mut self , val : u32 ) { let mask = 0xc0000000 as u32 ; let val = val as u32 as u32 ; let mut unit_field_val : u32 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u32 as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 30usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u32 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( alignment : u32 , haspadding : u32 , npointers : u32 , fielddesc_type : u32 ) -> u32 { ( ( ( ( 0 | ( ( alignment as u32 as u32 ) << 0usize ) & ( 0x1ff as u32 ) ) | ( ( haspadding as u32 as u32 ) << 9usize ) & ( 0x200 as u32 ) ) | ( ( npointers as u32 as u32 ) << 10usize ) & ( 0x3ffffc00 as u32 ) ) | ( ( fielddesc_type as u32 as u32 ) << 30usize ) & ( 0xc0000000 as u32 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_datatype_t { pub name : * mut jl_typename_t , pub super_ : * mut _jl_datatype_t , pub parameters : * mut jl_svec_t , pub types : * mut jl_svec_t , pub instance : * mut jl_value_t , pub layout : * const jl_datatype_layout_t , pub size : i32 , pub ninitialized : i32 , pub uid : u32 , pub abstract_ : u8 , pub mutabl : u8 , pub struct_decl : * mut :: std :: os :: raw :: c_void , pub ditype : * mut :: std :: os :: raw :: c_void , pub depth : i32 , pub hasfreetypevars : i8 , pub isleaftype : i8 , } # [ test ] fn bindgen_test_layout__jl_datatype_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_datatype_t > ( ) , 88usize , concat ! ( "Size of: " , stringify ! ( _jl_datatype_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_datatype_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_datatype_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . super_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( super_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . parameters as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( parameters ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . types as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( types ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . instance as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( instance ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . layout as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( layout ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . size as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( size ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . ninitialized as * const _ as usize } , 52usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( ninitialized ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . uid as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( uid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . abstract_ as * const _ as usize } , 60usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( abstract_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . mutabl as * const _ as usize } , 61usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( mutabl ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . struct_decl as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( struct_decl ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . ditype as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( ditype ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . depth as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( depth ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . hasfreetypevars as * const _ as usize } , 84usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( hasfreetypevars ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_datatype_t ) ) . isleaftype as * const _ as usize } , 85usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_datatype_t ) , "::" , stringify ! ( isleaftype ) ) ) ; } pub type jl_datatype_t = _jl_datatype_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_weakref_t { pub value : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_weakref_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_weakref_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_weakref_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_weakref_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_weakref_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_weakref_t ) ) . value as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_weakref_t ) , "::" , stringify ! ( value ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_binding_t { pub name : * mut jl_sym_t , pub value : * mut jl_value_t , pub globalref : * mut jl_value_t , pub owner : * mut _jl_module_t , pub _bitfield_1 : u8 , pub __bindgen_padding_0 : [ u8 ; 7usize ] , } # [ test ] fn bindgen_test_layout_jl_binding_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_binding_t > ( ) , 40usize , concat ! ( "Size of: " , stringify ! ( jl_binding_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_binding_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_binding_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_binding_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_binding_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_binding_t ) ) . value as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_binding_t ) , "::" , stringify ! ( value ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_binding_t ) ) . globalref as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_binding_t ) , "::" , stringify ! ( globalref ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_binding_t ) ) . owner as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_binding_t ) , "::" , stringify ! ( owner ) ) ) ; } impl jl_binding_t { # [ inline ] pub fn constp ( & self ) -> :: std :: os :: raw :: c_uint { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x1 as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_constp ( & mut self , val : :: std :: os :: raw :: c_uint ) { let mask = 0x1 as u8 ; let val = val as u32 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn exportp ( & self ) -> :: std :: os :: raw :: c_uint { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x2 as u8 ; let val = ( unit_field_val & mask ) >> 1usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_exportp ( & mut self , val : :: std :: os :: raw :: c_uint ) { let mask = 0x2 as u8 ; let val = val as u32 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 1usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn imported ( & self ) -> :: std :: os :: raw :: c_uint { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x4 as u8 ; let val = ( unit_field_val & mask ) >> 2usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_imported ( & mut self , val : :: std :: os :: raw :: c_uint ) { let mask = 0x4 as u8 ; let val = val as u32 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 2usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn deprecated ( & self ) -> :: std :: os :: raw :: c_uint { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x8 as u8 ; let val = ( unit_field_val & mask ) >> 3usize ; unsafe { :: std :: mem :: transmute ( val as u32 ) } } # [ inline ] pub fn set_deprecated ( & mut self , val : :: std :: os :: raw :: c_uint ) { let mask = 0x8 as u8 ; let val = val as u32 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 3usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( constp : :: std :: os :: raw :: c_uint , exportp : :: std :: os :: raw :: c_uint , imported : :: std :: os :: raw :: c_uint , deprecated : :: std :: os :: raw :: c_uint ) -> u8 { ( ( ( ( 0 | ( ( constp as u32 as u8 ) << 0usize ) & ( 0x1 as u8 ) ) | ( ( exportp as u32 as u8 ) << 1usize ) & ( 0x2 as u8 ) ) | ( ( imported as u32 as u8 ) << 2usize ) & ( 0x4 as u8 ) ) | ( ( deprecated as u32 as u8 ) << 3usize ) & ( 0x8 as u8 ) ) } } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_module_t { pub name : * mut jl_sym_t , pub parent : * mut _jl_module_t , pub bindings : htable_t , pub usings : arraylist_t , pub istopmod : u8 , pub uuid : u64 , pub primary_world : usize , pub counter : u32 , } # [ test ] fn bindgen_test_layout__jl_module_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_module_t > ( ) , 576usize , concat ! ( "Size of: " , stringify ! ( _jl_module_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_module_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_module_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . parent as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( parent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . bindings as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( bindings ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . usings as * const _ as usize } , 288usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( usings ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . istopmod as * const _ as usize } , 544usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( istopmod ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . uuid as * const _ as usize } , 552usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( uuid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . primary_world as * const _ as usize } , 560usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( primary_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_module_t ) ) . counter as * const _ as usize } , 568usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_module_t ) , "::" , stringify ! ( counter ) ) ) ; } pub type jl_module_t = _jl_module_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_typemap_entry_t { pub next : * mut _jl_typemap_entry_t , pub sig : * mut jl_tupletype_t , pub simplesig : * mut jl_tupletype_t , pub guardsigs : * mut jl_svec_t , pub min_world : usize , pub max_world : usize , pub func : _jl_typemap_entry_t__bindgen_ty_1 , pub isleafsig : i8 , pub issimplesig : i8 , pub va : i8 , } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub union _jl_typemap_entry_t__bindgen_ty_1 { pub value : * mut jl_value_t , pub linfo : * mut jl_method_instance_t , pub method : * mut jl_method_t , _bindgen_union_align : u64 , } # [ test ] fn bindgen_test_layout__jl_typemap_entry_t__bindgen_ty_1 ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_typemap_entry_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( _jl_typemap_entry_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_typemap_entry_t__bindgen_ty_1 > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_typemap_entry_t__bindgen_ty_1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t__bindgen_ty_1 ) ) . value as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t__bindgen_ty_1 ) , "::" , stringify ! ( value ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t__bindgen_ty_1 ) ) . linfo as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t__bindgen_ty_1 ) , "::" , stringify ! ( linfo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t__bindgen_ty_1 ) ) . method as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t__bindgen_ty_1 ) , "::" , stringify ! ( method ) ) ) ; } # [ test ] fn bindgen_test_layout__jl_typemap_entry_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_typemap_entry_t > ( ) , 64usize , concat ! ( "Size of: " , stringify ! ( _jl_typemap_entry_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_typemap_entry_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_typemap_entry_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . next as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( next ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . sig as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( sig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . simplesig as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( simplesig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . guardsigs as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( guardsigs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . min_world as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( min_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . max_world as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( max_world ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . func as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( func ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . isleafsig as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( isleafsig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . issimplesig as * const _ as usize } , 57usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( issimplesig ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_entry_t ) ) . va as * const _ as usize } , 58usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_entry_t ) , "::" , stringify ! ( va ) ) ) ; } pub type jl_typemap_entry_t = _jl_typemap_entry_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_ordereddict_t { pub indexes : * mut jl_array_t , pub values : * mut jl_array_t , } # [ test ] fn bindgen_test_layout_jl_ordereddict_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_ordereddict_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_ordereddict_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_ordereddict_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_ordereddict_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_ordereddict_t ) ) . indexes as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_ordereddict_t ) , "::" , stringify ! ( indexes ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_ordereddict_t ) ) . values as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_ordereddict_t ) , "::" , stringify ! ( values ) ) ) ; } # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_typemap_level_t { pub arg1 : jl_ordereddict_t , pub targ : jl_ordereddict_t , pub linear : * mut jl_typemap_entry_t , pub any : jl_typemap_t , pub key : * mut jl_value_t , } # [ test ] fn bindgen_test_layout__jl_typemap_level_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_typemap_level_t > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( _jl_typemap_level_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_typemap_level_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_typemap_level_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_level_t ) ) . arg1 as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_level_t ) , "::" , stringify ! ( arg1 ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_level_t ) ) . targ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_level_t ) , "::" , stringify ! ( targ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_level_t ) ) . linear as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_level_t ) , "::" , stringify ! ( linear ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_level_t ) ) . any as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_level_t ) , "::" , stringify ! ( any ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_typemap_level_t ) ) . key as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_typemap_level_t ) , "::" , stringify ! ( key ) ) ) ; } pub type jl_typemap_level_t = _jl_typemap_level_t ; # [ repr ( C ) ] # [ derive ( Copy , Clone ) ] pub struct _jl_methtable_t { pub name : * mut jl_sym_t , pub defs : jl_typemap_t , pub cache : jl_typemap_t , pub max_args : isize , pub kwsorter : * mut jl_value_t , pub module : * mut jl_module_t , pub backedges : * mut jl_array_t , pub writelock : jl_mutex_t , } # [ test ] fn bindgen_test_layout__jl_methtable_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_methtable_t > ( ) , 72usize , concat ! ( "Size of: " , stringify ! ( _jl_methtable_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_methtable_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_methtable_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . name as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( name ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . defs as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( defs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . cache as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( cache ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . max_args as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( max_args ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . kwsorter as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( kwsorter ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . module as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( module ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . backedges as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( backedges ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_methtable_t ) ) . writelock as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_methtable_t ) , "::" , stringify ! ( writelock ) ) ) ; } pub type jl_methtable_t = _jl_methtable_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_expr_t { pub head : * mut jl_sym_t , pub args : * mut jl_array_t , pub etype : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_expr_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_expr_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( jl_expr_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_expr_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_expr_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_expr_t ) ) . head as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_expr_t ) , "::" , stringify ! ( head ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_expr_t ) ) . args as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_expr_t ) , "::" , stringify ! ( args ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_expr_t ) ) . etype as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_expr_t ) , "::" , stringify ! ( etype ) ) ) ; } extern "C" {
 # [ link_name = "\u{1}jl_typeofbottom_type" ] 
 pub static mut  jl_typeofbottom_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_datatype_type" ] 
 pub static mut  jl_datatype_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uniontype_type" ] 
 pub static mut  jl_uniontype_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_unionall_type" ] 
 pub static mut  jl_unionall_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_tvar_type" ] 
 pub static mut  jl_tvar_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_any_type" ] 
 pub static mut  jl_any_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_type_type" ] 
 pub static mut  jl_type_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typetype_type" ] 
 pub static mut  jl_typetype_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_ANY_flag" ] 
 pub static mut  jl_ANY_flag  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typename_type" ] 
 pub static mut  jl_typename_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_type_typename" ] 
 pub static mut  jl_type_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_sym_type" ] 
 pub static mut  jl_sym_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_symbol_type" ] 
 pub static mut  jl_symbol_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_ssavalue_type" ] 
 pub static mut  jl_ssavalue_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_abstractslot_type" ] 
 pub static mut  jl_abstractslot_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_slotnumber_type" ] 
 pub static mut  jl_slotnumber_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typedslot_type" ] 
 pub static mut  jl_typedslot_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_simplevector_type" ] 
 pub static mut  jl_simplevector_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_tuple_typename" ] 
 pub static mut  jl_tuple_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_vecelement_typename" ] 
 pub static mut  jl_vecelement_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_anytuple_type" ] 
 pub static mut  jl_anytuple_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_emptytuple_type" ] 
 pub static mut  jl_emptytuple_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_anytuple_type_type" ] 
 pub static mut  jl_anytuple_type_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_vararg_type" ] 
 pub static mut  jl_vararg_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_vararg_typename" ] 
 pub static mut  jl_vararg_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_task_type" ] 
 pub static mut  jl_task_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_function_type" ] 
 pub static mut  jl_function_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_builtin_type" ] 
 pub static mut  jl_builtin_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_bottom_type" ] 
 pub static mut  jl_bottom_type  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_method_instance_type" ] 
 pub static mut  jl_method_instance_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_code_info_type" ] 
 pub static mut  jl_code_info_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_method_type" ] 
 pub static mut  jl_method_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_module_type" ] 
 pub static mut  jl_module_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_abstractarray_type" ] 
 pub static mut  jl_abstractarray_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_densearray_type" ] 
 pub static mut  jl_densearray_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_array_type" ] 
 pub static mut  jl_array_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_array_typename" ] 
 pub static mut  jl_array_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_weakref_type" ] 
 pub static mut  jl_weakref_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_abstractstring_type" ] 
 pub static mut  jl_abstractstring_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_string_type" ] 
 pub static mut  jl_string_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_errorexception_type" ] 
 pub static mut  jl_errorexception_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_argumenterror_type" ] 
 pub static mut  jl_argumenterror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_loaderror_type" ] 
 pub static mut  jl_loaderror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_initerror_type" ] 
 pub static mut  jl_initerror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typeerror_type" ] 
 pub static mut  jl_typeerror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_methoderror_type" ] 
 pub static mut  jl_methoderror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_undefvarerror_type" ] 
 pub static mut  jl_undefvarerror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_stackovf_exception" ] 
 pub static mut  jl_stackovf_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_memory_exception" ] 
 pub static mut  jl_memory_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_readonlymemory_exception" ] 
 pub static mut  jl_readonlymemory_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_diverror_exception" ] 
 pub static mut  jl_diverror_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_domain_exception" ] 
 pub static mut  jl_domain_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_overflow_exception" ] 
 pub static mut  jl_overflow_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_inexact_exception" ] 
 pub static mut  jl_inexact_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_undefref_exception" ] 
 pub static mut  jl_undefref_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_interrupt_exception" ] 
 pub static mut  jl_interrupt_exception  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_boundserror_type" ] 
 pub static mut  jl_boundserror_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_an_empty_vec_any" ] 
 pub static mut  jl_an_empty_vec_any  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_bool_type" ] 
 pub static mut  jl_bool_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_char_type" ] 
 pub static mut  jl_char_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_int8_type" ] 
 pub static mut  jl_int8_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uint8_type" ] 
 pub static mut  jl_uint8_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_int16_type" ] 
 pub static mut  jl_int16_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uint16_type" ] 
 pub static mut  jl_uint16_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_int32_type" ] 
 pub static mut  jl_int32_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uint32_type" ] 
 pub static mut  jl_uint32_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_int64_type" ] 
 pub static mut  jl_int64_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uint64_type" ] 
 pub static mut  jl_uint64_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_float16_type" ] 
 pub static mut  jl_float16_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_float32_type" ] 
 pub static mut  jl_float32_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_float64_type" ] 
 pub static mut  jl_float64_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_floatingpoint_type" ] 
 pub static mut  jl_floatingpoint_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_number_type" ] 
 pub static mut  jl_number_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_void_type" ] 
 pub static mut  jl_void_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_complex_type" ] 
 pub static mut  jl_complex_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_signed_type" ] 
 pub static mut  jl_signed_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_voidpointer_type" ] 
 pub static mut  jl_voidpointer_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_pointer_type" ] 
 pub static mut  jl_pointer_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_ref_type" ] 
 pub static mut  jl_ref_type  :  * mut jl_unionall_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_pointer_typename" ] 
 pub static mut  jl_pointer_typename  :  * mut jl_typename_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_array_uint8_type" ] 
 pub static mut  jl_array_uint8_type  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_array_any_type" ] 
 pub static mut  jl_array_any_type  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_array_symbol_type" ] 
 pub static mut  jl_array_symbol_type  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_expr_type" ] 
 pub static mut  jl_expr_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_globalref_type" ] 
 pub static mut  jl_globalref_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_linenumbernode_type" ] 
 pub static mut  jl_linenumbernode_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_labelnode_type" ] 
 pub static mut  jl_labelnode_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_gotonode_type" ] 
 pub static mut  jl_gotonode_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_quotenode_type" ] 
 pub static mut  jl_quotenode_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_newvarnode_type" ] 
 pub static mut  jl_newvarnode_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_intrinsic_type" ] 
 pub static mut  jl_intrinsic_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_methtable_type" ] 
 pub static mut  jl_methtable_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typemap_level_type" ] 
 pub static mut  jl_typemap_level_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_typemap_entry_type" ] 
 pub static mut  jl_typemap_entry_type  :  * mut jl_datatype_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_emptysvec" ] 
 pub static mut  jl_emptysvec  :  * mut jl_svec_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_emptytuple" ] 
 pub static mut  jl_emptytuple  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_true" ] 
 pub static mut  jl_true  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_false" ] 
 pub static mut  jl_false  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_nothing" ] 
 pub static mut  jl_nothing  :  * mut jl_value_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_incomplete_sym" ] 
 pub static mut  jl_incomplete_sym  :  * mut jl_sym_t ;
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_gcframe_t { pub nroots : usize , pub prev : * mut _jl_gcframe_t , } # [ test ] fn bindgen_test_layout__jl_gcframe_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_gcframe_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( _jl_gcframe_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_gcframe_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_gcframe_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_gcframe_t ) ) . nroots as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_gcframe_t ) , "::" , stringify ! ( nroots ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_gcframe_t ) ) . prev as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_gcframe_t ) , "::" , stringify ! ( prev ) ) ) ; } pub type jl_gcframe_t = _jl_gcframe_t ; extern "C" {
 pub fn jl_gc_enable ( on : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_gc_is_enabled ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_gc_total_bytes ( ) -> i64 ; 
} extern "C" {
 pub fn jl_gc_total_hrtime ( ) -> u64 ; 
} extern "C" {
 pub fn jl_gc_diff_total_bytes ( ) -> i64 ; 
} extern "C" {
 pub fn jl_gc_collect ( arg1 : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_gc_add_finalizer ( v : * mut jl_value_t , f : * mut jl_function_t , ) ; 
} extern "C" {
 pub fn jl_finalize ( o : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_gc_new_weakref ( value : * mut jl_value_t , ) -> * mut jl_weakref_t ; 
} extern "C" {
 pub fn jl_gc_alloc_0w ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_gc_alloc_1w ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_gc_alloc_2w ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_gc_alloc_3w ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_gc_allocobj ( sz : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_clear_malloc_data ( ) ; 
} extern "C" {
 pub fn jl_gc_queue_root ( root : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_gc_managed_malloc ( sz : usize , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_gc_managed_realloc ( d : * mut :: std :: os :: raw :: c_void , sz : usize , oldsz : usize , isaligned : :: std :: os :: raw :: c_int , owner : * mut jl_value_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_subtype ( a : * mut jl_value_t , b : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_egal ( a : * mut jl_value_t , b : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_object_id ( v : * mut jl_value_t , ) -> usize ; 
} extern "C" {
 pub fn jl_is_leaf_type ( v : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_has_free_typevars ( v : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_has_typevar ( t : * mut jl_value_t , v : * mut jl_tvar_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_has_typevar_from_unionall ( t : * mut jl_value_t , ua : * mut jl_unionall_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_subtype_env_size ( t : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_subtype_env ( x : * mut jl_value_t , y : * mut jl_value_t , env : * mut * mut jl_value_t , envsz : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_isa ( a : * mut jl_value_t , t : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_types_equal ( a : * mut jl_value_t , b : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_type_union ( ts : * mut * mut jl_value_t , n : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_type_intersection ( a : * mut jl_value_t , b : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_has_empty_intersection ( x : * mut jl_value_t , y : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_type_unionall ( v : * mut jl_tvar_t , body : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_typename_str ( v : * mut jl_value_t , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_typeof_str ( v : * mut jl_value_t , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_type_morespecific ( a : * mut jl_value_t , b : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_unwrap_unionall ( v : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_rewrap_unionall ( t : * mut jl_value_t , u : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_typename ( name : * mut jl_sym_t , ) -> * mut jl_typename_t ; 
} extern "C" {
 pub fn jl_new_typevar ( name : * mut jl_sym_t , lb : * mut jl_value_t , ub : * mut jl_value_t , ) -> * mut jl_tvar_t ; 
} extern "C" {
 pub fn jl_instantiate_unionall ( u : * mut jl_unionall_t , p : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_apply_type ( tc : * mut jl_value_t , params : * mut * mut jl_value_t , n : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_apply_type1 ( tc : * mut jl_value_t , p1 : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_apply_type2 ( tc : * mut jl_value_t , p1 : * mut jl_value_t , p2 : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_apply_tuple_type ( params : * mut jl_svec_t , ) -> * mut jl_tupletype_t ; 
} extern "C" {
 pub fn jl_apply_tuple_type_v ( p : * mut * mut jl_value_t , np : usize , ) -> * mut jl_tupletype_t ; 
} extern "C" {
 pub fn jl_new_datatype ( name : * mut jl_sym_t , super_ : * mut jl_datatype_t , parameters : * mut jl_svec_t , fnames : * mut jl_svec_t , ftypes : * mut jl_svec_t , abstract_ : :: std :: os :: raw :: c_int , mutabl : :: std :: os :: raw :: c_int , ninitialized : :: std :: os :: raw :: c_int , ) -> * mut jl_datatype_t ; 
} extern "C" {
 pub fn jl_new_primitivetype ( name : * mut jl_value_t , super_ : * mut jl_datatype_t , parameters : * mut jl_svec_t , nbits : usize , ) -> * mut jl_datatype_t ; 
} extern "C" {
 pub fn jl_new_bits ( bt : * mut jl_value_t , data : * mut :: std :: os :: raw :: c_void , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_struct ( type_ : * mut jl_datatype_t , ... ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_structv ( type_ : * mut jl_datatype_t , args : * mut * mut jl_value_t , na : u32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_struct_uninit ( type_ : * mut jl_datatype_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_method_instance_uninit ( ) -> * mut jl_method_instance_t ; 
} extern "C" {
 pub fn jl_svec ( n : usize , ... ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_svec1 ( a : * mut :: std :: os :: raw :: c_void , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_svec2 ( a : * mut :: std :: os :: raw :: c_void , b : * mut :: std :: os :: raw :: c_void , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_alloc_svec ( n : usize , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_alloc_svec_uninit ( n : usize , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_svec_copy ( a : * mut jl_svec_t , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_svec_fill ( n : usize , x : * mut jl_value_t , ) -> * mut jl_svec_t ; 
} extern "C" {
 pub fn jl_tupletype_fill ( n : usize , v : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_symbol ( str : * const :: std :: os :: raw :: c_char , ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_symbol_lookup ( str : * const :: std :: os :: raw :: c_char , ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_symbol_n ( str : * const :: std :: os :: raw :: c_char , len : usize , ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_gensym ( ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_tagged_gensym ( str : * const :: std :: os :: raw :: c_char , len : i32 , ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_get_root_symbol ( ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_generic_function_def ( name : * mut jl_sym_t , bp : * mut * mut jl_value_t , bp_owner : * mut jl_value_t , bnd : * mut jl_binding_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_method_def ( argdata : * mut jl_svec_t , f : * mut jl_code_info_t , isstaged : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_code_for_staged ( linfo : * mut jl_method_instance_t , ) -> * mut jl_code_info_t ; 
} extern "C" {
 pub fn jl_copy_code_info ( src : * mut jl_code_info_t , ) -> * mut jl_code_info_t ; 
} extern "C" {
 pub fn jl_get_world_counter ( ) -> usize ; 
} extern "C" {
 pub fn jl_get_kwsorter ( ty : * mut jl_value_t , ) -> * mut jl_function_t ; 
} extern "C" {
 pub fn jl_box_bool ( x : i8 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_int8 ( x : i8 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_uint8 ( x : u8 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_int16 ( x : i16 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_uint16 ( x : u16 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_int32 ( x : i32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_uint32 ( x : u32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_char ( x : u32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_int64 ( x : i64 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_uint64 ( x : u64 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_float32 ( x : f32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_float64 ( x : f64 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_voidpointer ( x : * mut :: std :: os :: raw :: c_void , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_ssavalue ( x : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box_slotnumber ( x : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box8 ( t : * mut jl_datatype_t , x : i8 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box16 ( t : * mut jl_datatype_t , x : i16 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box32 ( t : * mut jl_datatype_t , x : i32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_box64 ( t : * mut jl_datatype_t , x : i64 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_unbox_bool ( v : * mut jl_value_t , ) -> i8 ; 
} extern "C" {
 pub fn jl_unbox_int8 ( v : * mut jl_value_t , ) -> i8 ; 
} extern "C" {
 pub fn jl_unbox_uint8 ( v : * mut jl_value_t , ) -> u8 ; 
} extern "C" {
 pub fn jl_unbox_int16 ( v : * mut jl_value_t , ) -> i16 ; 
} extern "C" {
 pub fn jl_unbox_uint16 ( v : * mut jl_value_t , ) -> u16 ; 
} extern "C" {
 pub fn jl_unbox_int32 ( v : * mut jl_value_t , ) -> i32 ; 
} extern "C" {
 pub fn jl_unbox_uint32 ( v : * mut jl_value_t , ) -> u32 ; 
} extern "C" {
 pub fn jl_unbox_int64 ( v : * mut jl_value_t , ) -> i64 ; 
} extern "C" {
 pub fn jl_unbox_uint64 ( v : * mut jl_value_t , ) -> u64 ; 
} extern "C" {
 pub fn jl_unbox_float32 ( v : * mut jl_value_t , ) -> f32 ; 
} extern "C" {
 pub fn jl_unbox_float64 ( v : * mut jl_value_t , ) -> f64 ; 
} extern "C" {
 pub fn jl_unbox_voidpointer ( v : * mut jl_value_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_get_size ( val : * mut jl_value_t , pnt : * mut usize , ) -> :: std :: os :: raw :: c_int ; 
} pub const jl_vararg_kind_t_JL_VARARG_NONE : jl_vararg_kind_t = 0 ; pub const jl_vararg_kind_t_JL_VARARG_INT : jl_vararg_kind_t = 1 ; pub const jl_vararg_kind_t_JL_VARARG_BOUND : jl_vararg_kind_t = 2 ; pub const jl_vararg_kind_t_JL_VARARG_UNBOUND : jl_vararg_kind_t = 3 ; pub type jl_vararg_kind_t = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn jl_field_index ( t : * mut jl_datatype_t , fld : * mut jl_sym_t , err : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_get_nth_field ( v : * mut jl_value_t , i : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_get_nth_field_checked ( v : * mut jl_value_t , i : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_set_nth_field ( v : * mut jl_value_t , i : usize , rhs : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_field_isdefined ( v : * mut jl_value_t , i : usize , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_get_field ( o : * mut jl_value_t , fld : * const :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_value_ptr ( a : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_new_array ( atype : * mut jl_value_t , dims : * mut jl_value_t , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_reshape_array ( atype : * mut jl_value_t , data : * mut jl_array_t , dims : * mut jl_value_t , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_ptr_to_array_1d ( atype : * mut jl_value_t , data : * mut :: std :: os :: raw :: c_void , nel : usize , own_buffer : :: std :: os :: raw :: c_int , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_ptr_to_array ( atype : * mut jl_value_t , data : * mut :: std :: os :: raw :: c_void , dims : * mut jl_value_t , own_buffer : :: std :: os :: raw :: c_int , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_alloc_array_1d ( atype : * mut jl_value_t , nr : usize , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_alloc_array_2d ( atype : * mut jl_value_t , nr : usize , nc : usize , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_alloc_array_3d ( atype : * mut jl_value_t , nr : usize , nc : usize , z : usize , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_pchar_to_array ( str : * const :: std :: os :: raw :: c_char , len : usize , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_pchar_to_string ( str : * const :: std :: os :: raw :: c_char , len : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_cstr_to_string ( str : * const :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_alloc_string ( len : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_array_to_string ( a : * mut jl_array_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_alloc_vec_any ( n : usize , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_arrayref ( a : * mut jl_array_t , i : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_arrayset ( a : * mut jl_array_t , v : * mut jl_value_t , i : usize , ) ; 
} extern "C" {
 pub fn jl_arrayunset ( a : * mut jl_array_t , i : usize , ) ; 
} extern "C" {
 pub fn jl_array_grow_end ( a : * mut jl_array_t , inc : usize , ) ; 
} extern "C" {
 pub fn jl_array_del_end ( a : * mut jl_array_t , dec : usize , ) ; 
} extern "C" {
 pub fn jl_array_grow_beg ( a : * mut jl_array_t , inc : usize , ) ; 
} extern "C" {
 pub fn jl_array_del_beg ( a : * mut jl_array_t , dec : usize , ) ; 
} extern "C" {
 pub fn jl_array_sizehint ( a : * mut jl_array_t , sz : usize , ) ; 
} extern "C" {
 pub fn jl_array_ptr_1d_push ( a : * mut jl_array_t , item : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_array_ptr_1d_push2 ( a : * mut jl_array_t , b : * mut jl_value_t , c : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_array_ptr_1d_append ( a : * mut jl_array_t , a2 : * mut jl_array_t , ) ; 
} extern "C" {
 pub fn jl_apply_array_type ( type_ : * mut jl_value_t , dim : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_array_ptr ( a : * mut jl_array_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_array_eltype ( a : * mut jl_value_t , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_array_rank ( a : * mut jl_value_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_array_size ( a : * mut jl_value_t , d : :: std :: os :: raw :: c_int , ) -> usize ; 
} extern "C" {
 pub fn jl_string_ptr ( s : * mut jl_value_t , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 # [ link_name = "\u{1}jl_main_module" ] 
 pub static mut  jl_main_module  :  * mut jl_module_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_internal_main_module" ] 
 pub static mut  jl_internal_main_module  :  * mut jl_module_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_core_module" ] 
 pub static mut  jl_core_module  :  * mut jl_module_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_base_module" ] 
 pub static mut  jl_base_module  :  * mut jl_module_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_top_module" ] 
 pub static mut  jl_top_module  :  * mut jl_module_t ;
} extern "C" {
 pub fn jl_new_module ( name : * mut jl_sym_t , ) -> * mut jl_module_t ; 
} extern "C" {
 pub fn jl_get_binding ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_binding_t ; 
} extern "C" {
 pub fn jl_get_binding_or_error ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_binding_t ; 
} extern "C" {
 pub fn jl_module_globalref ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_get_binding_wr ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_binding_t ; 
} extern "C" {
 pub fn jl_get_binding_for_method_def ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_binding_t ; 
} extern "C" {
 pub fn jl_boundp ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_defines_or_exports_p ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_binding_resolved_p ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_is_const ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_get_global ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_set_global ( m : * mut jl_module_t , var : * mut jl_sym_t , val : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_set_const ( m : * mut jl_module_t , var : * mut jl_sym_t , val : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_checked_assignment ( b : * mut jl_binding_t , rhs : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_declare_constant ( b : * mut jl_binding_t , ) ; 
} extern "C" {
 pub fn jl_module_using ( to : * mut jl_module_t , from : * mut jl_module_t , ) ; 
} extern "C" {
 pub fn jl_module_use ( to : * mut jl_module_t , from : * mut jl_module_t , s : * mut jl_sym_t , ) ; 
} extern "C" {
 pub fn jl_module_import ( to : * mut jl_module_t , from : * mut jl_module_t , s : * mut jl_sym_t , ) ; 
} extern "C" {
 pub fn jl_module_importall ( to : * mut jl_module_t , from : * mut jl_module_t , ) ; 
} extern "C" {
 pub fn jl_module_export ( from : * mut jl_module_t , s : * mut jl_sym_t , ) ; 
} extern "C" {
 pub fn jl_is_imported ( m : * mut jl_module_t , s : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_module_exports_p ( m : * mut jl_module_t , var : * mut jl_sym_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_new_main_module ( ) -> * mut jl_module_t ; 
} extern "C" {
 pub fn jl_add_standard_imports ( m : * mut jl_module_t , ) ; 
} extern "C" {
 pub fn jl_is_submodule ( child : * mut jl_module_t , parent : * mut jl_module_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_eqtable_put ( h : * mut jl_array_t , key : * mut :: std :: os :: raw :: c_void , val : * mut :: std :: os :: raw :: c_void , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_eqtable_get ( h : * mut jl_array_t , key : * mut :: std :: os :: raw :: c_void , deflt : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_errno ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_set_errno ( e : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_stat ( path : * const :: std :: os :: raw :: c_char , statbuf : * mut :: std :: os :: raw :: c_char , ) -> i32 ; 
} extern "C" {
 pub fn jl_cpu_cores ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_getpagesize ( ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn jl_getallocationgranularity ( ) -> :: std :: os :: raw :: c_long ; 
} extern "C" {
 pub fn jl_is_debugbuild ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_get_UNAME ( ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_get_ARCH ( ) -> * mut jl_sym_t ; 
} extern "C" {
 pub fn jl_cpuid_tag ( ) -> u64 ; 
} extern "C" {
 pub fn jl_uses_cpuid_tag ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_environ ( i : :: std :: os :: raw :: c_int , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_error ( str : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_errorf ( fmt : * const :: std :: os :: raw :: c_char , ... ) ; 
} extern "C" {
 pub fn jl_exceptionf ( ty : * mut jl_datatype_t , fmt : * const :: std :: os :: raw :: c_char , ... ) ; 
} extern "C" {
 pub fn jl_too_few_args ( fname : * const :: std :: os :: raw :: c_char , min : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_too_many_args ( fname : * const :: std :: os :: raw :: c_char , max : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_type_error ( fname : * const :: std :: os :: raw :: c_char , expected : * mut jl_value_t , got : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_type_error_rt ( fname : * const :: std :: os :: raw :: c_char , context : * const :: std :: os :: raw :: c_char , ty : * mut jl_value_t , got : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_undefined_var_error ( var : * mut jl_sym_t , ) ; 
} extern "C" {
 pub fn jl_bounds_error ( v : * mut jl_value_t , t : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_bounds_error_v ( v : * mut jl_value_t , idxs : * mut * mut jl_value_t , nidxs : usize , ) ; 
} extern "C" {
 pub fn jl_bounds_error_int ( v : * mut jl_value_t , i : usize , ) ; 
} extern "C" {
 pub fn jl_bounds_error_tuple_int ( v : * mut * mut jl_value_t , nv : usize , i : usize , ) ; 
} extern "C" {
 pub fn jl_bounds_error_unboxed_int ( v : * mut :: std :: os :: raw :: c_void , vt : * mut jl_value_t , i : usize , ) ; 
} extern "C" {
 pub fn jl_bounds_error_ints ( v : * mut jl_value_t , idxs : * mut usize , nidxs : usize , ) ; 
} extern "C" {
 pub fn jl_eof_error ( ) ; 
} extern "C" {
 pub fn jl_exception_occurred ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_exception_clear ( ) ; 
} pub const JL_IMAGE_SEARCH_JL_IMAGE_CWD : JL_IMAGE_SEARCH = 0 ; pub const JL_IMAGE_SEARCH_JL_IMAGE_JULIA_HOME : JL_IMAGE_SEARCH = 1 ; pub type JL_IMAGE_SEARCH = :: std :: os :: raw :: c_uint ; extern "C" {
 pub fn julia_init ( rel : JL_IMAGE_SEARCH , ) ; 
} extern "C" {
 pub fn jl_init ( ) ; 
} extern "C" {
 pub fn jl_init_with_image ( julia_home_dir : * const :: std :: os :: raw :: c_char , image_relative_path : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_get_default_sysimg_path ( ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_is_initialized ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_atexit_hook ( status : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_exit ( status : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_pathname_for_handle ( handle : * mut :: std :: os :: raw :: c_void , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_deserialize_verify_header ( s : * mut ios_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_preload_sysimg_so ( fname : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_set_sysimg_so ( handle : * mut :: std :: os :: raw :: c_void , ) ; 
} extern "C" {
 pub fn jl_create_system_image ( ) -> * mut ios_t ; 
} extern "C" {
 pub fn jl_save_system_image ( fname : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_restore_system_image ( fname : * const :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_restore_system_image_data ( buf : * const :: std :: os :: raw :: c_char , len : usize , ) ; 
} extern "C" {
 pub fn jl_save_incremental ( fname : * const :: std :: os :: raw :: c_char , worklist : * mut jl_array_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_restore_incremental ( fname : * const :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_restore_incremental_from_buf ( buf : * const :: std :: os :: raw :: c_char , sz : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_parse_input_line ( str : * const :: std :: os :: raw :: c_char , len : usize , filename : * const :: std :: os :: raw :: c_char , filename_len : usize , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_parse_string ( str : * const :: std :: os :: raw :: c_char , len : usize , pos0 : :: std :: os :: raw :: c_int , greedy : :: std :: os :: raw :: c_int , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_parse_depwarn ( warn : :: std :: os :: raw :: c_int , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_load_file_string ( text : * const :: std :: os :: raw :: c_char , len : usize , filename : * mut :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_expand ( expr : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_eval_string ( str : * const :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} pub const JL_RTLD_CONSTANT_JL_RTLD_LOCAL : JL_RTLD_CONSTANT = 1 ; pub const JL_RTLD_CONSTANT_JL_RTLD_GLOBAL : JL_RTLD_CONSTANT = 2 ; pub const JL_RTLD_CONSTANT_JL_RTLD_LAZY : JL_RTLD_CONSTANT = 4 ; pub const JL_RTLD_CONSTANT_JL_RTLD_NOW : JL_RTLD_CONSTANT = 8 ; pub const JL_RTLD_CONSTANT_JL_RTLD_NODELETE : JL_RTLD_CONSTANT = 16 ; pub const JL_RTLD_CONSTANT_JL_RTLD_NOLOAD : JL_RTLD_CONSTANT = 32 ; pub const JL_RTLD_CONSTANT_JL_RTLD_DEEPBIND : JL_RTLD_CONSTANT = 64 ; pub const JL_RTLD_CONSTANT_JL_RTLD_FIRST : JL_RTLD_CONSTANT = 128 ; pub type JL_RTLD_CONSTANT = :: std :: os :: raw :: c_uint ; pub type jl_uv_libhandle = * mut :: std :: os :: raw :: c_void ; extern "C" {
 pub fn jl_load_dynamic_library ( fname : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_uint , ) -> jl_uv_libhandle ; 
} extern "C" {
 pub fn jl_load_dynamic_library_e ( fname : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_uint , ) -> jl_uv_libhandle ; 
} extern "C" {
 pub fn jl_dlopen ( filename : * const :: std :: os :: raw :: c_char , flags : :: std :: os :: raw :: c_uint , ) -> jl_uv_libhandle ; 
} extern "C" {
 pub fn jl_dlclose ( handle : jl_uv_libhandle , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_dlsym_e ( handle : jl_uv_libhandle , symbol : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_dlsym ( handle : jl_uv_libhandle , symbol : * const :: std :: os :: raw :: c_char , ) -> * mut :: std :: os :: raw :: c_void ; 
} extern "C" {
 pub fn jl_lookup_soname ( pfx : * const :: std :: os :: raw :: c_char , n : usize , ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_toplevel_eval ( v : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_toplevel_eval_in ( m : * mut jl_module_t , ex : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_load ( fname : * const :: std :: os :: raw :: c_char , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_base_relative_to ( m : * mut jl_module_t , ) -> * mut jl_module_t ; 
} extern "C" {
 pub fn jl_trace_method ( m : * mut jl_method_t , ) ; 
} extern "C" {
 pub fn jl_untrace_method ( m : * mut jl_method_t , ) ; 
} extern "C" {
 pub fn jl_trace_linfo ( linfo : * mut jl_method_instance_t , ) ; 
} extern "C" {
 pub fn jl_untrace_linfo ( linfo : * mut jl_method_instance_t , ) ; 
} extern "C" {
 pub fn jl_register_linfo_tracer ( callback : :: std :: option :: Option < unsafe extern "C" fn ( tracee : * mut jl_method_instance_t ) > , ) ; 
} extern "C" {
 pub fn jl_register_method_tracer ( callback : :: std :: option :: Option < unsafe extern "C" fn ( tracee : * mut jl_method_instance_t ) > , ) ; 
} extern "C" {
 pub fn jl_register_newmeth_tracer ( callback : :: std :: option :: Option < unsafe extern "C" fn ( tracee : * mut jl_method_t ) > , ) ; 
} extern "C" {
 pub fn jl_copy_ast ( expr : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_compress_ast ( m : * mut jl_method_t , code : * mut jl_code_info_t , ) -> * mut jl_array_t ; 
} extern "C" {
 pub fn jl_uncompress_ast ( m : * mut jl_method_t , data : * mut jl_array_t , ) -> * mut jl_code_info_t ; 
} extern "C" {
 pub fn jl_ast_flag_inferred ( data : * mut jl_array_t , ) -> u8 ; 
} extern "C" {
 pub fn jl_ast_flag_inlineable ( data : * mut jl_array_t , ) -> u8 ; 
} extern "C" {
 pub fn jl_ast_flag_pure ( data : * mut jl_array_t , ) -> u8 ; 
} extern "C" {
 pub fn jl_fill_argnames ( data : * mut jl_array_t , names : * mut jl_array_t , ) ; 
} extern "C" {
 pub fn jl_is_operator ( sym : * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_operator_precedence ( sym : * mut :: std :: os :: raw :: c_char , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_apply_generic ( args : * mut * mut jl_value_t , nargs : u32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_invoke ( meth : * mut jl_method_instance_t , args : * mut * mut jl_value_t , nargs : u32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_call ( f : * mut jl_function_t , args : * mut * mut jl_value_t , nargs : i32 , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_call0 ( f : * mut jl_function_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_call1 ( f : * mut jl_function_t , a : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_call2 ( f : * mut jl_function_t , a : * mut jl_value_t , b : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_call3 ( f : * mut jl_function_t , a : * mut jl_value_t , b : * mut jl_value_t , c : * mut jl_value_t , ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_yield ( ) ; 
} extern "C" {
 pub fn jl_install_sigint_handler ( ) ; 
} extern "C" {
 pub fn jl_sigatomic_begin ( ) ; 
} extern "C" {
 pub fn jl_sigatomic_end ( ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_timing_block_t { _unused : [ u8 ; 0 ] } pub type jl_timing_block_t = _jl_timing_block_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_handler_t { pub eh_ctx : sigjmp_buf , pub gcstack : * mut jl_gcframe_t , pub prev : * mut _jl_handler_t , pub gc_state : i8 , pub locks_len : usize , pub defer_signal : sig_atomic_t , pub finalizers_inhibited : :: std :: os :: raw :: c_int , pub timing_stack : * mut jl_timing_block_t , pub world_age : usize , } # [ test ] fn bindgen_test_layout__jl_handler_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_handler_t > ( ) , 256usize , concat ! ( "Size of: " , stringify ! ( _jl_handler_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_handler_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_handler_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . eh_ctx as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( eh_ctx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . gcstack as * const _ as usize } , 200usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( gcstack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . prev as * const _ as usize } , 208usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( prev ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . gc_state as * const _ as usize } , 216usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( gc_state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . locks_len as * const _ as usize } , 224usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( locks_len ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . defer_signal as * const _ as usize } , 232usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( defer_signal ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . finalizers_inhibited as * const _ as usize } , 236usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( finalizers_inhibited ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . timing_stack as * const _ as usize } , 240usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( timing_stack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_handler_t ) ) . world_age as * const _ as usize } , 248usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_handler_t ) , "::" , stringify ! ( world_age ) ) ) ; } pub type jl_handler_t = _jl_handler_t ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_task_t { pub parent : * mut _jl_task_t , pub tls : * mut jl_value_t , pub state : * mut jl_sym_t , pub consumers : * mut jl_value_t , pub donenotify : * mut jl_value_t , pub result : * mut jl_value_t , pub exception : * mut jl_value_t , pub backtrace : * mut jl_value_t , pub start : * mut jl_function_t , pub ctx : sigjmp_buf , pub bufsz : usize , pub stkbuf : * mut :: std :: os :: raw :: c_void , pub ssize : usize , pub _bitfield_1 : u8 , pub eh : * mut jl_handler_t , pub gcstack : * mut jl_gcframe_t , pub current_module : * mut jl_module_t , pub world_age : usize , pub tid : i16 , pub locks : arraylist_t , pub timing_stack : * mut jl_timing_block_t , } # [ test ] fn bindgen_test_layout__jl_task_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < _jl_task_t > ( ) , 608usize , concat ! ( "Size of: " , stringify ! ( _jl_task_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < _jl_task_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( _jl_task_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . parent as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( parent ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . tls as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( tls ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . state as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( state ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . consumers as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( consumers ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . donenotify as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( donenotify ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . result as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( result ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . exception as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( exception ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . backtrace as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( backtrace ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . start as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( start ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . ctx as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( ctx ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . bufsz as * const _ as usize } , 272usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( bufsz ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . stkbuf as * const _ as usize } , 280usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( stkbuf ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . ssize as * const _ as usize } , 288usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( ssize ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . eh as * const _ as usize } , 304usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( eh ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . gcstack as * const _ as usize } , 312usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( gcstack ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . current_module as * const _ as usize } , 320usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( current_module ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . world_age as * const _ as usize } , 328usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( world_age ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . tid as * const _ as usize } , 336usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( tid ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . locks as * const _ as usize } , 344usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( locks ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const _jl_task_t ) ) . timing_stack as * const _ as usize } , 600usize , concat ! ( "Alignment of field: " , stringify ! ( _jl_task_t ) , "::" , stringify ! ( timing_stack ) ) ) ; } impl _jl_task_t { # [ inline ] pub fn started ( & self ) -> usize { let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; let mask = 0x1 as u8 ; let val = ( unit_field_val & mask ) >> 0usize ; unsafe { :: std :: mem :: transmute ( val as u64 ) } } # [ inline ] pub fn set_started ( & mut self , val : usize ) { let mask = 0x1 as u8 ; let val = val as u64 as u8 ; let mut unit_field_val : u8 = unsafe { :: std :: mem :: uninitialized ( ) } ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & self . _bitfield_1 as * const _ as * const u8 , & mut unit_field_val as * mut u8 as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) } ; unit_field_val &= ! mask ; unit_field_val |= ( val << 0usize ) & mask ; unsafe { :: std :: ptr :: copy_nonoverlapping ( & unit_field_val as * const _ as * const u8 , & mut self . _bitfield_1 as * mut _ as * mut u8 , :: std :: mem :: size_of :: < u8 > ( ) , ) ; } } # [ inline ] pub fn new_bitfield_1 ( started : usize ) -> u8 { ( 0 | ( ( started as u64 as u8 ) << 0usize ) & ( 0x1 as u8 ) ) } } pub type jl_task_t = _jl_task_t ; extern "C" {
 pub fn jl_new_task ( start : * mut jl_function_t , ssize : usize , ) -> * mut jl_task_t ; 
} extern "C" {
 pub fn jl_switchto ( t : * mut jl_task_t , ) ; 
} extern "C" {
 pub fn jl_throw ( e : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_rethrow ( ) ; 
} extern "C" {
 pub fn jl_rethrow_other ( e : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_no_exc_handler ( e : * mut jl_value_t , ) ; 
} extern "C" {
 pub fn jl_enter_handler ( eh : * mut jl_handler_t , ) ; 
} extern "C" {
 pub fn jl_pop_handler ( n : :: std :: os :: raw :: c_int , ) ; 
} extern "C" {
 pub fn jl_run_event_loop ( loop_ : * mut uv_loop_t , ) ; 
} extern "C" {
 pub fn jl_run_once ( loop_ : * mut uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_process_events ( loop_ : * mut uv_loop_t , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_global_event_loop ( ) -> * mut uv_loop_t ; 
} extern "C" {
 pub fn jl_close_uv ( handle : * mut uv_handle_t , ) ; 
} extern "C" {
 pub fn jl_tcp_bind ( handle : * mut uv_tcp_t , port : u16 , host : u32 , flags : :: std :: os :: raw :: c_uint , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_sizeof_ios_t ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_take_buffer ( s : * mut ios_t , ) -> * mut jl_array_t ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_uv_file_t { pub data : * mut :: std :: os :: raw :: c_void , pub loop_ : * mut uv_loop_t , pub type_ : uv_handle_type , pub file : uv_file , } # [ test ] fn bindgen_test_layout_jl_uv_file_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_uv_file_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( jl_uv_file_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_uv_file_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_uv_file_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uv_file_t ) ) . data as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uv_file_t ) , "::" , stringify ! ( data ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uv_file_t ) ) . loop_ as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uv_file_t ) , "::" , stringify ! ( loop_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uv_file_t ) ) . type_ as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uv_file_t ) , "::" , stringify ! ( type_ ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_uv_file_t ) ) . file as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( jl_uv_file_t ) , "::" , stringify ! ( file ) ) ) ; } extern "C" {
 pub fn jl_uv_puts ( stream : * mut uv_stream_t , str : * const :: std :: os :: raw :: c_char , n : usize , ) ; 
} extern "C" {
 pub fn jl_printf ( s : * mut uv_stream_t , format : * const :: std :: os :: raw :: c_char , ... ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_vprintf ( s : * mut uv_stream_t , format : * const :: std :: os :: raw :: c_char , args : * mut __va_list_tag , ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_safe_printf ( str : * const :: std :: os :: raw :: c_char , ... ) ; 
} extern "C" {
 # [ link_name = "\u{1}jl_uv_stdin" ] 
 pub static mut  jl_uv_stdin  :  * mut uv_stream_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uv_stdout" ] 
 pub static mut  jl_uv_stdout  :  * mut uv_stream_t ;
} extern "C" {
 # [ link_name = "\u{1}jl_uv_stderr" ] 
 pub static mut  jl_uv_stderr  :  * mut uv_stream_t ;
} extern "C" {
 pub fn jl_stdout_stream ( ) -> * mut uv_stream_t ; 
} extern "C" {
 pub fn jl_stdin_stream ( ) -> * mut uv_stream_t ; 
} extern "C" {
 pub fn jl_stderr_stream ( ) -> * mut uv_stream_t ; 
} extern "C" {
 pub fn jl_flush_cstdio ( ) ; 
} extern "C" {
 pub fn jl_stdout_obj ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_stderr_obj ( ) -> * mut jl_value_t ; 
} extern "C" {
 pub fn jl_static_show ( out : * mut uv_stream_t , v : * mut jl_value_t , ) -> usize ; 
} extern "C" {
 pub fn jl_static_show_func_sig ( s : * mut uv_stream_t , type_ : * mut jl_value_t , ) -> usize ; 
} extern "C" {
 pub fn jlbacktrace ( ) ; 
} extern "C" {
 pub fn jl_ ( jl_value : * mut :: std :: os :: raw :: c_void , ) ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_options_t { pub quiet : i8 , pub julia_home : * const :: std :: os :: raw :: c_char , pub julia_bin : * const :: std :: os :: raw :: c_char , pub eval : * const :: std :: os :: raw :: c_char , pub print : * const :: std :: os :: raw :: c_char , pub load : * const :: std :: os :: raw :: c_char , pub image_file : * const :: std :: os :: raw :: c_char , pub cpu_target : * const :: std :: os :: raw :: c_char , pub nprocs : i32 , pub machinefile : * const :: std :: os :: raw :: c_char , pub isinteractive : i8 , pub color : i8 , pub historyfile : i8 , pub startupfile : i8 , pub compile_enabled : i8 , pub code_coverage : i8 , pub malloc_log : i8 , pub opt_level : i8 , pub debug_level : i8 , pub check_bounds : i8 , pub depwarn : i8 , pub can_inline : i8 , pub polly : i8 , pub fast_math : i8 , pub worker : * const :: std :: os :: raw :: c_char , pub handle_signals : i8 , pub use_precompiled : i8 , pub use_compilecache : i8 , pub bindto : * const :: std :: os :: raw :: c_char , pub outputbc : * const :: std :: os :: raw :: c_char , pub outputo : * const :: std :: os :: raw :: c_char , pub outputji : * const :: std :: os :: raw :: c_char , pub incremental : i8 , pub image_file_specified : i8 , } # [ test ] fn bindgen_test_layout_jl_options_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_options_t > ( ) , 152usize , concat ! ( "Size of: " , stringify ! ( jl_options_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_options_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_options_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . quiet as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( quiet ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . julia_home as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( julia_home ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . julia_bin as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( julia_bin ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . eval as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( eval ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . print as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( print ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . load as * const _ as usize } , 40usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( load ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . image_file as * const _ as usize } , 48usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( image_file ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . cpu_target as * const _ as usize } , 56usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( cpu_target ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . nprocs as * const _ as usize } , 64usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( nprocs ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . machinefile as * const _ as usize } , 72usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( machinefile ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . isinteractive as * const _ as usize } , 80usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( isinteractive ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . color as * const _ as usize } , 81usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( color ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . historyfile as * const _ as usize } , 82usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( historyfile ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . startupfile as * const _ as usize } , 83usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( startupfile ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . compile_enabled as * const _ as usize } , 84usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( compile_enabled ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . code_coverage as * const _ as usize } , 85usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( code_coverage ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . malloc_log as * const _ as usize } , 86usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( malloc_log ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . opt_level as * const _ as usize } , 87usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( opt_level ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . debug_level as * const _ as usize } , 88usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( debug_level ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . check_bounds as * const _ as usize } , 89usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( check_bounds ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . depwarn as * const _ as usize } , 90usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( depwarn ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . can_inline as * const _ as usize } , 91usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( can_inline ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . polly as * const _ as usize } , 92usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( polly ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . fast_math as * const _ as usize } , 93usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( fast_math ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . worker as * const _ as usize } , 96usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( worker ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . handle_signals as * const _ as usize } , 104usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( handle_signals ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . use_precompiled as * const _ as usize } , 105usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( use_precompiled ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . use_compilecache as * const _ as usize } , 106usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( use_compilecache ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . bindto as * const _ as usize } , 112usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( bindto ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . outputbc as * const _ as usize } , 120usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( outputbc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . outputo as * const _ as usize } , 128usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( outputo ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . outputji as * const _ as usize } , 136usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( outputji ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . incremental as * const _ as usize } , 144usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( incremental ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_options_t ) ) . image_file_specified as * const _ as usize } , 145usize , concat ! ( "Alignment of field: " , stringify ! ( jl_options_t ) , "::" , stringify ! ( image_file_specified ) ) ) ; } extern "C" {
 # [ link_name = "\u{1}jl_options" ] 
 pub static mut  jl_options  :  jl_options_t ;
} extern "C" {
 pub fn jl_parse_opts ( argcp : * mut :: std :: os :: raw :: c_int , argvp : * mut * mut * mut :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_set_ARGS ( argc : :: std :: os :: raw :: c_int , argv : * mut * mut :: std :: os :: raw :: c_char , ) ; 
} extern "C" {
 pub fn jl_generating_output ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_ver_major ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_ver_minor ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_ver_patch ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_ver_is_release ( ) -> :: std :: os :: raw :: c_int ; 
} extern "C" {
 pub fn jl_ver_string ( ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_git_branch ( ) -> * const :: std :: os :: raw :: c_char ; 
} extern "C" {
 pub fn jl_git_commit ( ) -> * const :: std :: os :: raw :: c_char ; 
} # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_nullable_float64_t { pub hasvalue : u8 , pub value : f64 , } # [ test ] fn bindgen_test_layout_jl_nullable_float64_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_nullable_float64_t > ( ) , 16usize , concat ! ( "Size of: " , stringify ! ( jl_nullable_float64_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_nullable_float64_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_nullable_float64_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_nullable_float64_t ) ) . hasvalue as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_nullable_float64_t ) , "::" , stringify ! ( hasvalue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_nullable_float64_t ) ) . value as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_nullable_float64_t ) , "::" , stringify ! ( value ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_nullable_float32_t { pub hasvalue : u8 , pub value : f32 , } # [ test ] fn bindgen_test_layout_jl_nullable_float32_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_nullable_float32_t > ( ) , 8usize , concat ! ( "Size of: " , stringify ! ( jl_nullable_float32_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_nullable_float32_t > ( ) , 4usize , concat ! ( "Alignment of " , stringify ! ( jl_nullable_float32_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_nullable_float32_t ) ) . hasvalue as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_nullable_float32_t ) , "::" , stringify ! ( hasvalue ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_nullable_float32_t ) ) . value as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( jl_nullable_float32_t ) , "::" , stringify ! ( value ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_cghooks_t { pub module_setup : * mut jl_value_t , pub module_activation : * mut jl_value_t , pub raise_exception : * mut jl_value_t , } # [ test ] fn bindgen_test_layout_jl_cghooks_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_cghooks_t > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( jl_cghooks_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_cghooks_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_cghooks_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cghooks_t ) ) . module_setup as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cghooks_t ) , "::" , stringify ! ( module_setup ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cghooks_t ) ) . module_activation as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cghooks_t ) , "::" , stringify ! ( module_activation ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cghooks_t ) ) . raise_exception as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cghooks_t ) , "::" , stringify ! ( raise_exception ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct jl_cgparams_t { pub cached : :: std :: os :: raw :: c_int , pub runtime : :: std :: os :: raw :: c_int , pub exceptions : :: std :: os :: raw :: c_int , pub track_allocations : :: std :: os :: raw :: c_int , pub code_coverage : :: std :: os :: raw :: c_int , pub static_alloc : :: std :: os :: raw :: c_int , pub dynamic_alloc : :: std :: os :: raw :: c_int , pub hooks : jl_cghooks_t , } # [ test ] fn bindgen_test_layout_jl_cgparams_t ( ) { assert_eq ! ( :: std :: mem :: size_of :: < jl_cgparams_t > ( ) , 56usize , concat ! ( "Size of: " , stringify ! ( jl_cgparams_t ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < jl_cgparams_t > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( jl_cgparams_t ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . cached as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( cached ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . runtime as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( runtime ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . exceptions as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( exceptions ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . track_allocations as * const _ as usize } , 12usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( track_allocations ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . code_coverage as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( code_coverage ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . static_alloc as * const _ as usize } , 20usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( static_alloc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . dynamic_alloc as * const _ as usize } , 24usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( dynamic_alloc ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const jl_cgparams_t ) ) . hooks as * const _ as usize } , 32usize , concat ! ( "Alignment of field: " , stringify ! ( jl_cgparams_t ) , "::" , stringify ! ( hooks ) ) ) ; } extern "C" {
 # [ link_name = "\u{1}jl_default_cgparams" ] 
 pub static mut  jl_default_cgparams  :  jl_cgparams_t ;
} pub type __builtin_va_list = [ __va_list_tag ; 1usize ] ; # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __va_list_tag { pub gp_offset : :: std :: os :: raw :: c_uint , pub fp_offset : :: std :: os :: raw :: c_uint , pub overflow_arg_area : * mut :: std :: os :: raw :: c_void , pub reg_save_area : * mut :: std :: os :: raw :: c_void , } # [ test ] fn bindgen_test_layout___va_list_tag ( ) { assert_eq ! ( :: std :: mem :: size_of :: < __va_list_tag > ( ) , 24usize , concat ! ( "Size of: " , stringify ! ( __va_list_tag ) ) ) ; assert_eq ! ( :: std :: mem :: align_of :: < __va_list_tag > ( ) , 8usize , concat ! ( "Alignment of " , stringify ! ( __va_list_tag ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __va_list_tag ) ) . gp_offset as * const _ as usize } , 0usize , concat ! ( "Alignment of field: " , stringify ! ( __va_list_tag ) , "::" , stringify ! ( gp_offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __va_list_tag ) ) . fp_offset as * const _ as usize } , 4usize , concat ! ( "Alignment of field: " , stringify ! ( __va_list_tag ) , "::" , stringify ! ( fp_offset ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __va_list_tag ) ) . overflow_arg_area as * const _ as usize } , 8usize , concat ! ( "Alignment of field: " , stringify ! ( __va_list_tag ) , "::" , stringify ! ( overflow_arg_area ) ) ) ; assert_eq ! ( unsafe { & ( * ( 0 as * const __va_list_tag ) ) . reg_save_area as * const _ as usize } , 16usize , concat ! ( "Alignment of field: " , stringify ! ( __va_list_tag ) , "::" , stringify ! ( reg_save_area ) ) ) ; } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct __locale_data { pub _address : u8 , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _mallocarray_t { pub _address : u8 , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _bigval_t { pub _address : u8 , } # [ repr ( C ) ] # [ derive ( Debug , Copy , Clone ) ] pub struct _jl_value_t { pub _address : u8 , }