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
|
libnetcdf_mpi.so.13 libnetcdf-mpi-13
Cdh2e@NETCDF_MPI_4.3.3 4.3.3
DAPparse@NETCDF_MPI_4.1.3 4.1.3
EZXML_NIL@NETCDF_MPI_4.5.0 4.5.0
NC3__enddef@NETCDF_MPI_4.1.3 4.1.3
NC3_abort@NETCDF_MPI_4.1.3 4.1.3
NC3_close@NETCDF_MPI_4.1.3 4.1.3
NC3_create@NETCDF_MPI_4.1.3 4.1.3
NC3_def_dim@NETCDF_MPI_4.1.3 4.1.3
NC3_def_var@NETCDF_MPI_4.1.3 4.1.3
NC3_def_var_fill@NETCDF_MPI_4.6.1 4.6.1
NC3_del_att@NETCDF_MPI_4.1.3 4.1.3
NC3_dispatch_table@NETCDF_MPI_4.1.3 4.1.3
NC3_finalize@NETCDF_MPI_4.4.0 4.4.0
NC3_get_att@NETCDF_MPI_4.1.3 4.1.3
NC3_get_vara@NETCDF_MPI_4.1.3 4.1.3
NC3_initialize@NETCDF_MPI_4.1.3 4.1.3
NC3_inq@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_att@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_attid@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_attname@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_base_pe@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_default_fill_value@NETCDF_MPI_4.5.0 4.5.0
NC3_inq_dim@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_dimid@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_format@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_format_extended@NETCDF_MPI_4.3.3 4.3.3
NC3_inq_type@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_unlimdim@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_var@NETCDF_MPI_4.1.3 4.1.3
NC3_inq_var_fill@NETCDF_MPI_4.5.0 4.5.0
NC3_inq_varid@NETCDF_MPI_4.1.3 4.1.3
NC3_open@NETCDF_MPI_4.1.3 4.1.3
NC3_put_att@NETCDF_MPI_4.1.3 4.1.3
NC3_put_vara@NETCDF_MPI_4.1.3 4.1.3
NC3_redef@NETCDF_MPI_4.1.3 4.1.3
NC3_rename_att@NETCDF_MPI_4.1.3 4.1.3
NC3_rename_dim@NETCDF_MPI_4.1.3 4.1.3
NC3_rename_var@NETCDF_MPI_4.1.3 4.1.3
NC3_set_base_pe@NETCDF_MPI_4.1.3 4.1.3
NC3_set_fill@NETCDF_MPI_4.1.3 4.1.3
NC3_sync@NETCDF_MPI_4.1.3 4.1.3
NC4__enddef@NETCDF_MPI_4.1.3 4.1.3
NC4_abort@NETCDF_MPI_4.1.3 4.1.3
NC4_buildpropinfo@NETCDF_MPI_4.4.1.1 4.4.1.1
NC4_close@NETCDF_MPI_4.1.3 4.1.3
NC4_create@NETCDF_MPI_4.1.3 4.1.3
NC4_create_image_file@NETCDF_MPI_4.6.2 4.6.2
NC4_def_compound@NETCDF_MPI_4.1.3 4.1.3
NC4_def_dim@NETCDF_MPI_4.1.3 4.1.3
NC4_def_enum@NETCDF_MPI_4.1.3 4.1.3
NC4_def_grp@NETCDF_MPI_4.1.3 4.1.3
NC4_def_opaque@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var_chunking@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var_deflate@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var_endian@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var_fill@NETCDF_MPI_4.1.3 4.1.3
NC4_def_var_filter@NETCDF_MPI_4.6.0 4.6.0
NC4_def_var_fletcher32@NETCDF_MPI_4.1.3 4.1.3
NC4_def_vlen@NETCDF_MPI_4.1.3 4.1.3
NC4_del_att@NETCDF_MPI_4.1.3 4.1.3
NC4_dispatch_table@NETCDF_MPI_4.1.3 4.1.3
NC4_extract_file_image@NETCDF_MPI_4.6.2 4.6.2
NC4_finalize@NETCDF_MPI_4.4.0 4.4.0
NC4_free_provenance@NETCDF_MPI_4.6.2 4.6.2
NC4_get_att@NETCDF_MPI_4.1.3 4.1.3
NC4_get_provenance@NETCDF_MPI_4.6.2 4.6.2
NC4_get_var_chunk_cache@NETCDF_MPI_4.1.3 4.1.3
NC4_get_vara@NETCDF_MPI_4.1.3 4.1.3
NC4_get_vars@NETCDF_MPI_4.6.2 4.6.2
NC4_get_vlen_element@NETCDF_MPI_4.1.3 4.1.3
NC4_hdf5get_libversion@NETCDF_MPI_4.4.1 4.4.1
NC4_hdf5get_superblock@NETCDF_MPI_4.4.1 4.4.1
NC4_image_finalize@NETCDF_MPI_4.6.2 4.6.2
NC4_image_init@NETCDF_MPI_4.6.2 4.6.2
NC4_initialize@NETCDF_MPI_4.1.3 4.1.3
NC4_inq@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_att@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_attid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_attname@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_compound_field@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_compound_fieldindex@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_dim@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_dimid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_dimids@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_enum_ident@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_enum_member@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_format@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_format_extended@NETCDF_MPI_4.3.3 4.3.3
NC4_inq_grp_full_ncid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_grp_parent@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_grpname@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_grpname_full@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_grps@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_ncid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_type@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_type_equal@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_typeid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_typeids@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_unlimdim@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_unlimdims@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_user_type@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_var_all@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_varid@NETCDF_MPI_4.1.3 4.1.3
NC4_inq_varids@NETCDF_MPI_4.1.3 4.1.3
NC4_insert_array_compound@NETCDF_MPI_4.1.3 4.1.3
NC4_insert_compound@NETCDF_MPI_4.1.3 4.1.3
NC4_insert_enum@NETCDF_MPI_4.1.3 4.1.3
NC4_isnetcdf4@NETCDF_MPI_4.4.1 4.4.1
NC4_open@NETCDF_MPI_4.1.3 4.1.3
NC4_open_image_file@NETCDF_MPI_4.6.2 4.6.2
NC4_provenance_finalize@NETCDF_MPI_4.6.2 4.6.2
NC4_provenance_init@NETCDF_MPI_4.6.2 4.6.2
NC4_put_att@NETCDF_MPI_4.1.3 4.1.3
NC4_put_vara@NETCDF_MPI_4.1.3 4.1.3
NC4_put_vars@NETCDF_MPI_4.6.2 4.6.2
NC4_put_vlen_element@NETCDF_MPI_4.1.3 4.1.3
NC4_read_ncproperties@NETCDF_MPI_4.6.2 4.6.2
NC4_redef@NETCDF_MPI_4.1.3 4.1.3
NC4_rename_att@NETCDF_MPI_4.1.3 4.1.3
NC4_rename_dim@NETCDF_MPI_4.1.3 4.1.3
NC4_rename_grp@NETCDF_MPI_4.3.3 4.3.3
NC4_rename_var@NETCDF_MPI_4.1.3 4.1.3
NC4_set_fill@NETCDF_MPI_4.1.3 4.1.3
NC4_set_provenance@NETCDF_MPI_4.6.2 4.6.2
NC4_set_var_chunk_cache@NETCDF_MPI_4.1.3 4.1.3
NC4_show_metadata@NETCDF_MPI_4.1.3 4.1.3
NC4_sync@NETCDF_MPI_4.1.3 4.1.3
NC4_var_par_access@NETCDF_MPI_4.1.3 4.1.3
NC4_write_ncproperties@NETCDF_MPI_4.6.2 4.6.2
NCD2_close@NETCDF_MPI_4.3.3 4.3.3
NCD2_def_compound@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_dim@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_enum@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_grp@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_opaque@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var_chunking@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var_deflate@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var_endian@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var_fill@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_var_filter@NETCDF_MPI_4.6.0 4.6.0
NCD2_def_var_fletcher32@NETCDF_MPI_4.4.1 4.4.1
NCD2_def_vlen@NETCDF_MPI_4.4.1 4.4.1
NCD2_del_att@NETCDF_MPI_4.4.1 4.4.1
NCD2_dispatch_table@NETCDF_MPI_4.3.3 4.3.3
NCD2_finalize@NETCDF_MPI_4.4.0 4.4.0
NCD2_get_att@NETCDF_MPI_4.4.1 4.4.1
NCD2_get_var_chunk_cache@NETCDF_MPI_4.4.1 4.4.1
NCD2_get_vlen_element@NETCDF_MPI_4.4.1 4.4.1
NCD2_initialize@NETCDF_MPI_4.3.3 4.3.3
NCD2_inq@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_att@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_attid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_attname@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_base_pe@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_compound_field@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_compound_fieldindex@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_dim@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_dimid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_dimids@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_enum_ident@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_enum_member@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_format@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_format_extended@NETCDF_MPI_4.3.3 4.3.3
NCD2_inq_grp_full_ncid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_grp_parent@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_grpname@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_grpname_full@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_grps@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_ncid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_type@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_type_equal@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_typeid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_typeids@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_unlimdim@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_unlimdims@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_user_type@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_var_all@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_varid@NETCDF_MPI_4.4.1 4.4.1
NCD2_inq_varids@NETCDF_MPI_4.4.1 4.4.1
NCD2_insert_array_compound@NETCDF_MPI_4.4.1 4.4.1
NCD2_insert_compound@NETCDF_MPI_4.4.1 4.4.1
NCD2_insert_enum@NETCDF_MPI_4.4.1 4.4.1
NCD2_open@NETCDF_MPI_4.3.3 4.3.3
NCD2_put_att@NETCDF_MPI_4.4.1 4.4.1
NCD2_put_vlen_element@NETCDF_MPI_4.4.1 4.4.1
NCD2_rename_att@NETCDF_MPI_4.4.1 4.4.1
NCD2_rename_dim@NETCDF_MPI_4.4.1 4.4.1
NCD2_rename_grp@NETCDF_MPI_4.4.1 4.4.1
NCD2_rename_var@NETCDF_MPI_4.4.1 4.4.1
NCD2_set_base_pe@NETCDF_MPI_4.4.1 4.4.1
NCD2_set_fill@NETCDF_MPI_4.4.1 4.4.1
NCD2_set_var_chunk_cache@NETCDF_MPI_4.4.1 4.4.1
NCD2_show_metadata@NETCDF_MPI_4.4.1 4.4.1
NCD2_var_par_access@NETCDF_MPI_4.4.1 4.4.1
NCD4_abort@NETCDF_MPI_4.5.0 4.5.0
NCD4_applyclientparamcontrols@NETCDF_MPI_4.6.2 4.6.2
NCD4_close@NETCDF_MPI_4.5.0 4.5.0
NCD4_computeTypeSize@NETCDF_MPI_4.5.0 4.5.0
NCD4_convert@NETCDF_MPI_4.5.0 4.5.0
NCD4_crc32@NETCDF_MPI_4.5.0 4.5.0
NCD4_curl_debug@NETCDF_MPI_4.5.0 4.5.0
NCD4_curl_printerror@NETCDF_MPI_4.5.0 4.5.0
NCD4_curl_protocols@NETCDF_MPI_4.5.0 4.5.0
NCD4_curlclose@NETCDF_MPI_4.5.0 4.5.0
NCD4_curlopen@NETCDF_MPI_4.5.0 4.5.0
NCD4_debugcopy@NETCDF_MPI_4.5.0 4.5.0
NCD4_dechunk@NETCDF_MPI_4.5.0 4.5.0
NCD4_deescape@NETCDF_MPI_4.5.0 4.5.0
NCD4_delimit@NETCDF_MPI_4.5.0 4.5.0
NCD4_dimproduct@NETCDF_MPI_4.5.0 4.5.0
NCD4_dispatch_table@NETCDF_MPI_4.5.0 4.5.0
NCD4_dumpatomic@NETCDF_MPI_4.5.0 4.5.0
NCD4_dumpbytes@NETCDF_MPI_4.5.0 4.5.0
NCD4_dumpvars@NETCDF_MPI_4.5.0 4.5.0
NCD4_entityescape@NETCDF_MPI_4.5.0 4.5.0
NCD4_error@NETCDF_MPI_4.5.0 4.5.0
NCD4_errorNC@NETCDF_MPI_4.5.0 4.5.0
NCD4_fetchhttpcode@NETCDF_MPI_4.5.0 4.5.0
NCD4_fetchlastmodified@NETCDF_MPI_4.5.0 4.5.0
NCD4_fetchurl@NETCDF_MPI_4.5.0 4.5.0
NCD4_fetchurl_file@NETCDF_MPI_4.5.0 4.5.0
NCD4_fillinstance@NETCDF_MPI_4.5.0 4.5.0
NCD4_finalize@NETCDF_MPI_4.5.0 4.5.0
NCD4_findAttr@NETCDF_MPI_4.5.0 4.5.0
NCD4_getToplevelVars@NETCDF_MPI_4.5.0 4.5.0
NCD4_get_rcproperties@NETCDF_MPI_4.6.2 4.6.2
NCD4_get_vara@NETCDF_MPI_4.5.0 4.5.0
NCD4_get_vars@NETCDF_MPI_4.5.0 4.5.0
NCD4_groupFor@NETCDF_MPI_4.5.0 4.5.0
NCD4_hostport@NETCDF_MPI_4.6.2 4.6.2
NCD4_infermode@NETCDF_MPI_4.5.0 4.5.0
NCD4_initialize@NETCDF_MPI_4.5.0 4.5.0
NCD4_inq_dim@NETCDF_MPI_4.5.0 4.5.0
NCD4_isLittleEndian@NETCDF_MPI_4.5.0 4.5.0
NCD4_makeFQN@NETCDF_MPI_4.5.0 4.5.0
NCD4_makeName@NETCDF_MPI_4.5.0 4.5.0
NCD4_metabuild@NETCDF_MPI_4.5.0 4.5.0
NCD4_mktmp@NETCDF_MPI_4.6.2 4.6.2
NCD4_moveto@NETCDF_MPI_4.5.0 4.5.0
NCD4_newmeta@NETCDF_MPI_4.5.0 4.5.0
NCD4_open@NETCDF_MPI_4.5.0 4.5.0
NCD4_parse@NETCDF_MPI_4.5.0 4.5.0
NCD4_parseFQN@NETCDF_MPI_4.5.0 4.5.0
NCD4_ping@NETCDF_MPI_4.5.0 4.5.0
NCD4_print@NETCDF_MPI_4.5.0 4.5.0
NCD4_printElems@NETCDF_MPI_4.5.0 4.5.0
NCD4_printstring@NETCDF_MPI_4.5.0 4.5.0
NCD4_processdata@NETCDF_MPI_4.5.0 4.5.0
NCD4_readDAP@NETCDF_MPI_4.5.0 4.5.0
NCD4_readDMR@NETCDF_MPI_4.5.0 4.5.0
NCD4_readfile@NETCDF_MPI_4.6.2 4.6.2
NCD4_reclaimMeta@NETCDF_MPI_4.5.0 4.5.0
NCD4_reportcurlerror@NETCDF_MPI_4.5.0 4.5.0
NCD4_set_flags_perfetch@NETCDF_MPI_4.5.0 4.5.0
NCD4_set_flags_perlink@NETCDF_MPI_4.5.0 4.5.0
NCD4_setdebuglevel@NETCDF_MPI_4.5.0 4.5.0
NCD4_sortname@NETCDF_MPI_4.5.0 4.5.0
NCD4_subsortname@NETCDF_MPI_4.5.0 4.5.0
NCD4_swapdata@NETCDF_MPI_4.5.0 4.5.0
NCD4_tagdump@NETCDF_MPI_4.5.0 4.5.0
NCD4_toposort@NETCDF_MPI_4.5.0 4.5.0
NCD4_typesize@NETCDF_MPI_4.5.0 4.5.0
NCD4_userpwd@NETCDF_MPI_4.6.2 4.6.2
NCDAP2_ping@NETCDF_MPI_4.5.0 4.5.0
NCDEFAULT_get_varm@NETCDF_MPI_4.1.3 4.1.3
NCDEFAULT_get_vars@NETCDF_MPI_4.1.3 4.1.3
NCDEFAULT_put_varm@NETCDF_MPI_4.1.3 4.1.3
NCDEFAULT_put_vars@NETCDF_MPI_4.1.3 4.1.3
NCDISPATCH_finalize@NETCDF_MPI_4.4.0 4.4.0
NCDISPATCH_get_att@NETCDF_MPI_4.4.1 4.4.1
NCDISPATCH_initialize@NETCDF_MPI_4.3.3 4.3.3
NCDISPATCH_inq_var_all@NETCDF_MPI_4.4.1 4.4.1
NC_NOTNC3_inq_base_pe@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC3_set_base_pe@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_compound@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_enum@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_grp@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_opaque@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_var_chunking@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_var_deflate@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_var_endian@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_var_filter@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_var_fletcher32@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_def_vlen@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_get_var_chunk_cache@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_get_vlen_element@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_inq_compound_field@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_inq_compound_fieldindex@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_inq_enum_ident@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_inq_enum_member@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_insert_array_compound@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_insert_compound@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_insert_enum@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_put_vlen_element@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_rename_grp@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_set_var_chunk_cache@NETCDF_MPI_4.6.2 4.6.2
NC_NOTNC4_var_par_access@NETCDF_MPI_4.6.2 4.6.2
NC_RO__enddef@NETCDF_MPI_4.6.2 4.6.2
NC_RO_create@NETCDF_MPI_4.6.2 4.6.2
NC_RO_def_dim@NETCDF_MPI_4.6.2 4.6.2
NC_RO_def_var@NETCDF_MPI_4.6.2 4.6.2
NC_RO_def_var_fill@NETCDF_MPI_4.6.2 4.6.2
NC_RO_del_att@NETCDF_MPI_4.6.2 4.6.2
NC_RO_put_att@NETCDF_MPI_4.6.2 4.6.2
NC_RO_put_vara@NETCDF_MPI_4.6.2 4.6.2
NC_RO_redef@NETCDF_MPI_4.6.2 4.6.2
NC_RO_rename_att@NETCDF_MPI_4.6.2 4.6.2
NC_RO_rename_dim@NETCDF_MPI_4.6.2 4.6.2
NC_RO_rename_var@NETCDF_MPI_4.6.2 4.6.2
NC_RO_set_fill@NETCDF_MPI_4.6.2 4.6.2
NC_RO_sync@NETCDF_MPI_4.6.2 4.6.2
NC__testurl@NETCDF_MPI_4.6.0 4.6.0
NC_argc@NETCDF_MPI_4.4.0 4.4.0
NC_argv@NETCDF_MPI_4.4.0 4.4.0
NC_atomictypelen@NETCDF_MPI_4.1.3 4.1.3
NC_atomictypename@NETCDF_MPI_4.1.3 4.1.3
NC_authclear@NETCDF_MPI_4.6.0 4.6.0
NC_authsetup@NETCDF_MPI_4.6.0 4.6.0
NC_backslashEscape@NETCDF_MPI_4.6.0 4.6.0
NC_backslashUnescape@NETCDF_MPI_4.6.0 4.6.0
NC_calcsize@NETCDF_MPI_3.6.1 3.6.1
NC_check_id@NETCDF_MPI_3.6.1 3.6.1
NC_check_name@NETCDF_MPI_3.6.1 3.6.1
NC_check_nulls@NETCDF_MPI_4.6.2 4.6.2
NC_check_vlen@NETCDF_MPI_3.6.1 3.6.1
NC_check_vlens@NETCDF_MPI_4.5.0 4.5.0
NC_check_voffs@NETCDF_MPI_4.6.1 4.6.1
NC_class_alignment@NETCDF_MPI_4.6.2 4.6.2
NC_combinehostport@NETCDF_MPI_4.6.0 4.6.0
NC_compute_alignments@NETCDF_MPI_4.6.2 4.6.2
NC_coord_one@NETCDF_MPI_4.3.3 4.3.3
NC_coord_zero@NETCDF_MPI_4.3.3 4.3.3
NC_crc32@NETCDF_MPI_4.6.2 4.6.2
NC_create@NETCDF_MPI_4.1.3 4.1.3
NC_entityescape@NETCDF_MPI_4.6.0 4.6.0
NC_finalized@NETCDF_MPI_4.4.0 4.4.0
NC_findattr@NETCDF_MPI_3.6.1 3.6.1
NC_findreserved@NETCDF_MPI_4.6.2 4.6.2
NC_findvar@NETCDF_MPI_3.6.1 3.6.1
NC_get_vara@NETCDF_MPI_4.1.3 4.1.3
NC_getshape@NETCDF_MPI_4.3.3 4.3.3
NC_hashmapadd@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapcount@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapdeactivate@NETCDF_MPI_4.6.2 4.6.2
NC_hashmapfree@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapget@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapkey@NETCDF_MPI_4.6.2 4.6.2
NC_hashmapnew@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapremove@NETCDF_MPI_4.6.1 4.6.1
NC_hashmapsetdata@NETCDF_MPI_4.6.1 4.6.1
NC_initialized@NETCDF_MPI_4.4.0 4.4.0
NC_inq_recvar@NETCDF_MPI_4.4.0 4.4.0
NC_inq_var_all@NETCDF_MPI_4.4.1 4.4.1
NC_isLittleEndian@NETCDF_MPI_4.6.0 4.6.0
NC_is_recvar@NETCDF_MPI_4.3.3 4.3.3
NC_lookupvar@NETCDF_MPI_3.6.1 3.6.1
NC_mktmp@NETCDF_MPI_4.6.0 4.6.0
NC_open@NETCDF_MPI_4.1.3 4.1.3
NC_parsecredentials@NETCDF_MPI_4.6.0 4.6.0
NC_parsefilterspec@NETCDF_MPI_4.6.0 4.6.0
NC_parseproxy@NETCDF_MPI_4.6.0 4.6.0
NC_rcclear@NETCDF_MPI_4.6.0 4.6.0
NC_rcfile_insert@NETCDF_MPI_4.6.2 4.6.2
NC_rcload@NETCDF_MPI_4.6.0 4.6.0
NC_rclookup@NETCDF_MPI_4.6.0 4.6.0
NC_readfile@NETCDF_MPI_4.6.0 4.6.0
NC_set_rcfile@NETCDF_MPI_4.6.0 4.6.0
NC_sync@NETCDF_MPI_3.6.1 3.6.1
NC_testurl@NETCDF_MPI_4.1.3 4.1.3
NC_urlmodel@NETCDF_MPI_4.1.3 4.1.3
NC_var_shape@NETCDF_MPI_3.6.1 3.6.1
NC_writefile@NETCDF_MPI_4.6.2 4.6.2
NCpathcvt@NETCDF_MPI_4.5.0 4.5.0
NETCDF_MPI_3.6.1@NETCDF_MPI_3.6.1 3.6.1
NETCDF_MPI_4.0.1@NETCDF_MPI_4.0.1 4.0.1
NETCDF_MPI_4.1.3@NETCDF_MPI_4.1.3 4.1.3
NETCDF_MPI_4.3.3@NETCDF_MPI_4.3.3 4.3.3
NETCDF_MPI_4.4.0@NETCDF_MPI_4.4.0 4.4.0
NETCDF_MPI_4.4.1.1@NETCDF_MPI_4.4.1.1 4.4.1.1
NETCDF_MPI_4.4.1@NETCDF_MPI_4.4.1 4.4.1
NETCDF_MPI_4.5.0@NETCDF_MPI_4.5.0 4.5.0
NETCDF_MPI_4.6.0@NETCDF_MPI_4.6.0 4.6.0
NETCDF_MPI_4.6.1@NETCDF_MPI_4.6.1 4.6.1
NETCDF_MPI_4.6.2@NETCDF_MPI_4.6.2 4.6.2
UDF0_dispatch_table@NETCDF_MPI_4.6.2 4.6.2
UDF0_magic_number@NETCDF_MPI_4.6.2 4.6.2
UDF1_dispatch_table@NETCDF_MPI_4.6.2 4.6.2
UDF1_magic_number@NETCDF_MPI_4.6.2 4.6.2
add_to_NCList@NETCDF_MPI_4.1.3 4.1.3
arg_list@NETCDF_MPI_4.1.3 4.1.3
array_indices@NETCDF_MPI_4.1.3 4.1.3
attach@NETCDF_MPI_4.3.3 4.3.3
buildcachenode@NETCDF_MPI_4.3.3 4.3.3
buildcdftree@NETCDF_MPI_4.3.3 4.3.3
cdChar2Comp@NETCDF_MPI_4.3.3 4.3.3
cdParseRelunits@NETCDF_MPI_4.3.3 4.3.3
cdRel2Iso@NETCDF_MPI_4.3.3 4.3.3
cdSetErrOpts@NETCDF_MPI_4.5.0 4.5.0
cdflegalname@NETCDF_MPI_4.3.3 4.3.3
clauselist@NETCDF_MPI_4.1.3 4.1.3
clonenodenamepath@NETCDF_MPI_4.3.3 4.3.3
collectnodepath@NETCDF_MPI_4.3.3 4.3.3
collectocpath@NETCDF_MPI_4.1.3 4.1.3
computecdfdimnames@NETCDF_MPI_4.3.3 4.3.3
computecdfnodesets@NETCDF_MPI_4.3.3 4.3.3
computecdfvarnames@NETCDF_MPI_4.3.3 4.3.3
computevarnodes@NETCDF_MPI_4.3.3 4.3.3
constant@NETCDF_MPI_4.1.3 4.1.3
constrainable@NETCDF_MPI_4.3.3 4.3.3
count_NCList@NETCDF_MPI_4.1.3 4.1.3
createnccache@NETCDF_MPI_4.1.3 4.1.3
createnccachenode@NETCDF_MPI_4.1.3 4.1.3
d4breakpoint@NETCDF_MPI_4.5.0 4.5.0
d4odom_free@NETCDF_MPI_4.5.0 4.5.0
d4odom_isWhole@NETCDF_MPI_4.5.0 4.5.0
d4odom_more@NETCDF_MPI_4.5.0 4.5.0
d4odom_nelements@NETCDF_MPI_4.5.0 4.5.0
d4odom_new@NETCDF_MPI_4.5.0 4.5.0
d4odom_next@NETCDF_MPI_4.5.0 4.5.0
d4odom_offset@NETCDF_MPI_4.5.0 4.5.0
d4panic@NETCDF_MPI_4.5.0 4.5.0
d4scalarodom_new@NETCDF_MPI_4.5.0 4.5.0
d4throw@NETCDF_MPI_4.5.0 4.5.0
dap_arraydecl@NETCDF_MPI_4.1.3 4.1.3
dap_arraydecls@NETCDF_MPI_4.1.3 4.1.3
dap_attribute@NETCDF_MPI_4.1.3 4.1.3
dap_attributebody@NETCDF_MPI_4.1.3 4.1.3
dap_attrlist@NETCDF_MPI_4.1.3 4.1.3
dap_attrset@NETCDF_MPI_4.1.3 4.1.3
dap_attrvalue@NETCDF_MPI_4.1.3 4.1.3
dap_badname@NETCDF_MPI_4.1.3 4.1.3
dap_datasetbody@NETCDF_MPI_4.1.3 4.1.3
dap_declarations@NETCDF_MPI_4.1.3 4.1.3
dap_errorbody@NETCDF_MPI_4.1.3 4.1.3
dap_fetch@NETCDF_MPI_4.3.3 4.3.3
dap_getselection@NETCDF_MPI_4.5.0 4.5.0
dap_makebase@NETCDF_MPI_4.1.3 4.1.3
dap_makegrid@NETCDF_MPI_4.1.3 4.1.3
dap_makesequence@NETCDF_MPI_4.1.3 4.1.3
dap_makestructure@NETCDF_MPI_4.1.3 4.1.3
dap_parse_error@NETCDF_MPI_4.1.3 4.1.3
dap_repairname@NETCDF_MPI_4.3.3 4.3.3
dap_tagparse@NETCDF_MPI_4.1.3 4.1.3
dap_unrecognizedresponse@NETCDF_MPI_4.1.3 4.1.3
dapalignbuffer@NETCDF_MPI_4.3.3 4.3.3
dapbuildvaraprojection@NETCDF_MPI_4.3.3 4.3.3
dapceparse@NETCDF_MPI_4.1.3 4.1.3
dapcomputeprojectedvars@NETCDF_MPI_4.3.3 4.3.3
dapconvert@NETCDF_MPI_4.3.3 4.3.3
dapcvtattrval@NETCDF_MPI_4.3.3 4.3.3
dapdebug@NETCDF_MPI_4.1.3 4.1.3
dapdecode@NETCDF_MPI_4.3.3 4.3.3
dapdimproduct@NETCDF_MPI_4.3.3 4.3.3
daperror@NETCDF_MPI_4.1.3 4.1.3
dapexpandescapes@NETCDF_MPI_4.1.3 4.1.3
dapfixprojections@NETCDF_MPI_4.3.3 4.3.3
dapgridarray@NETCDF_MPI_4.1.3 4.1.3
dapgridelement@NETCDF_MPI_4.1.3 4.1.3
dapgridmap@NETCDF_MPI_4.1.3 4.1.3
dapinsequence@NETCDF_MPI_4.1.3 4.1.3
dapinstructarray@NETCDF_MPI_4.3.3 4.3.3
dapiswholeconstraint@NETCDF_MPI_4.3.3 4.3.3
dapiswholeprojection@NETCDF_MPI_4.3.3 4.3.3
dapiswholesegment@NETCDF_MPI_4.3.3 4.3.3
dapiswholeslice@NETCDF_MPI_4.3.3 4.3.3
daplex@NETCDF_MPI_4.1.3 4.1.3
daplexcleanup@NETCDF_MPI_4.1.3 4.1.3
daplexinit@NETCDF_MPI_4.1.3 4.1.3
dapmapconstraints@NETCDF_MPI_4.3.3 4.3.3
dapmerge@NETCDF_MPI_4.3.3 4.3.3
dapodom_count@NETCDF_MPI_4.3.3 4.3.3
dapodom_free@NETCDF_MPI_4.3.3 4.3.3
dapodom_fromsegment@NETCDF_MPI_4.3.3 4.3.3
dapodom_more@NETCDF_MPI_4.3.3 4.3.3
dapodom_new@NETCDF_MPI_4.3.3 4.3.3
dapodom_next@NETCDF_MPI_4.3.3 4.3.3
dapodom_varmcount@NETCDF_MPI_4.3.3 4.3.3
dappanic@NETCDF_MPI_4.1.3 4.1.3
dapparamcheck@NETCDF_MPI_4.3.3 4.3.3
dapparamvalue@NETCDF_MPI_4.3.3 4.3.3
dapparse@NETCDF_MPI_4.1.3 4.1.3
dapparsedapconstraints@NETCDF_MPI_4.3.3 4.3.3
dapqualifyconstraints@NETCDF_MPI_4.3.3 4.3.3
daprestrictprojection@NETCDF_MPI_4.3.3 4.3.3
dapsemanticerror@NETCDF_MPI_4.3.3 4.3.3
dapsetwordchars@NETCDF_MPI_4.1.3 4.1.3
dapshiftprojection@NETCDF_MPI_4.3.3 4.3.3
daptopgrid@NETCDF_MPI_4.1.3 4.1.3
daptoplevel@NETCDF_MPI_4.1.3 4.1.3
daptopseq@NETCDF_MPI_4.1.3 4.1.3
dapvar2projection@NETCDF_MPI_4.3.3 4.3.3
dceallnodes@NETCDF_MPI_4.1.3 4.1.3
dcebuildconstraintstring@NETCDF_MPI_4.3.3 4.3.3
dcebuildprojectionstring@NETCDF_MPI_4.3.3 4.3.3
dcebuildselectionstring@NETCDF_MPI_4.3.3 4.3.3
dceclone@NETCDF_MPI_4.1.3 4.1.3
dceclonelist@NETCDF_MPI_4.1.3 4.1.3
dcecreate@NETCDF_MPI_4.1.3 4.1.3
dcedebug@NETCDF_MPI_4.1.3 4.1.3
dceerror@NETCDF_MPI_4.1.3 4.1.3
dcefree@NETCDF_MPI_4.1.3 4.1.3
dcefreelist@NETCDF_MPI_4.1.3 4.1.3
dceiswholesegment@NETCDF_MPI_4.1.3 4.1.3
dceiswholeslice@NETCDF_MPI_4.1.3 4.1.3
dcelex@NETCDF_MPI_4.1.3 4.1.3
dcelexcleanup@NETCDF_MPI_4.1.3 4.1.3
dcelexinit@NETCDF_MPI_4.1.3 4.1.3
dcelisttobuffer@NETCDF_MPI_4.1.3 4.1.3
dcelisttostring@NETCDF_MPI_4.1.3 4.1.3
dcemakewholeprojection@NETCDF_MPI_4.3.3 4.3.3
dcemakewholeslice@NETCDF_MPI_4.1.3 4.1.3
dcemergeprojectionlists@NETCDF_MPI_4.3.3 4.3.3
dcemergeprojections@NETCDF_MPI_4.3.3 4.3.3
dceparse@NETCDF_MPI_4.1.3 4.1.3
dcerawlisttostring@NETCDF_MPI_4.3.3 4.3.3
dcerawtostring@NETCDF_MPI_4.3.3 4.3.3
dcesafeindex@NETCDF_MPI_4.3.3 4.3.3
dcesamepath@NETCDF_MPI_4.1.3 4.1.3
dcesegment_transpose@NETCDF_MPI_4.3.3 4.3.3
dcesegmentsize@NETCDF_MPI_4.3.3 4.3.3
dceslicecompose@NETCDF_MPI_4.3.3 4.3.3
dcetobuffer@NETCDF_MPI_4.1.3 4.1.3
dcetostring@NETCDF_MPI_4.1.3 4.1.3
dceverbose@NETCDF_MPI_4.3.3 4.3.3
definedimsets@NETCDF_MPI_4.3.3 4.3.3
definedimsettrans@NETCDF_MPI_4.3.3 4.3.3
del_from_NCList@NETCDF_MPI_4.1.3 4.1.3
delete_existing_dimscale_dataset@NETCDF_MPI_4.6.0 4.6.0
dimimprint@NETCDF_MPI_4.3.3 4.3.3
dimnameanon@NETCDF_MPI_4.1.3 4.1.3
dumpalign@NETCDF_MPI_4.1.3 4.1.3
dumpcache@NETCDF_MPI_4.1.3 4.1.3
dumpcachenode@NETCDF_MPI_4.1.3 4.1.3
dumpconstraint@NETCDF_MPI_4.1.3 4.1.3
dumpdata1@NETCDF_MPI_4.1.3 4.1.3
dumplistraw@NETCDF_MPI_4.3.3 4.3.3
dumpmetadata@NETCDF_MPI_4.1.3 4.1.3
dumpnode@NETCDF_MPI_4.1.3 4.1.3
dumppath@NETCDF_MPI_4.1.3 4.1.3
dumpprojection@NETCDF_MPI_4.1.3 4.1.3
dumpprojections@NETCDF_MPI_4.1.3 4.1.3
dumpraw@NETCDF_MPI_4.3.3 4.3.3
dumpsegments@NETCDF_MPI_4.1.3 4.1.3
dumpselection@NETCDF_MPI_4.1.3 4.1.3
dumpselections@NETCDF_MPI_4.1.3 4.1.3
dumpslice@NETCDF_MPI_4.1.3 4.1.3
dumpslices@NETCDF_MPI_4.1.3 4.1.3
dumpstringlist@NETCDF_MPI_4.3.3 4.3.3
dumptree@NETCDF_MPI_4.1.3 4.1.3
dumpvisible@NETCDF_MPI_4.1.3 4.1.3
dup_NC_attrarrayV@NETCDF_MPI_3.6.1 3.6.1
dup_NC_dimarrayV@NETCDF_MPI_3.6.1 3.6.1
dup_NC_vararrayV@NETCDF_MPI_3.6.1 3.6.1
elem_NC_attrarray@NETCDF_MPI_3.6.1 3.6.1
elem_NC_dimarray@NETCDF_MPI_3.6.1 3.6.1
ezxml_add_child@NETCDF_MPI_4.5.0 4.5.0
ezxml_all_attr@NETCDF_MPI_4.5.0 4.5.0
ezxml_ampencode@NETCDF_MPI_4.5.0 4.5.0
ezxml_attr@NETCDF_MPI_4.5.0 4.5.0
ezxml_char_content@NETCDF_MPI_4.5.0 4.5.0
ezxml_child@NETCDF_MPI_4.5.0 4.5.0
ezxml_close_tag@NETCDF_MPI_4.5.0 4.5.0
ezxml_cut@NETCDF_MPI_4.5.0 4.5.0
ezxml_decode@NETCDF_MPI_4.5.0 4.5.0
ezxml_ent_ok@NETCDF_MPI_4.5.0 4.5.0
ezxml_err@NETCDF_MPI_4.5.0 4.5.0
ezxml_error@NETCDF_MPI_4.5.0 4.5.0
ezxml_free@NETCDF_MPI_4.5.0 4.5.0
ezxml_free_attr@NETCDF_MPI_4.5.0 4.5.0
ezxml_get@NETCDF_MPI_4.5.0 4.5.0
ezxml_idx@NETCDF_MPI_4.5.0 4.5.0
ezxml_insert@NETCDF_MPI_4.5.0 4.5.0
ezxml_internal_dtd@NETCDF_MPI_4.5.0 4.5.0
ezxml_new@NETCDF_MPI_4.5.0 4.5.0
ezxml_open_tag@NETCDF_MPI_4.5.0 4.5.0
ezxml_parse_fp@NETCDF_MPI_4.5.0 4.5.0
ezxml_parse_str@NETCDF_MPI_4.5.0 4.5.0
ezxml_pi@NETCDF_MPI_4.5.0 4.5.0
ezxml_proc_inst@NETCDF_MPI_4.5.0 4.5.0
ezxml_set_attr@NETCDF_MPI_4.5.0 4.5.0
ezxml_set_flag@NETCDF_MPI_4.5.0 4.5.0
ezxml_set_txt@NETCDF_MPI_4.5.0 4.5.0
ezxml_str2utf8@NETCDF_MPI_4.5.0 4.5.0
ezxml_toxml@NETCDF_MPI_4.5.0 4.5.0
ezxml_toxml_r@NETCDF_MPI_4.5.0 4.5.0
ezxml_vget@NETCDF_MPI_4.5.0 4.5.0
fill_NC_var@NETCDF_MPI_3.6.1 3.6.1
find_NC_Udim@NETCDF_MPI_3.6.1 3.6.1
find_in_NCList@NETCDF_MPI_4.1.3 4.1.3
find_in_NCList_by_name@NETCDF_MPI_4.3.3 4.3.3
fixgrid@NETCDF_MPI_4.3.3 4.3.3
fixgrids@NETCDF_MPI_4.3.3 4.3.3
free_NC@NETCDF_MPI_4.3.3 4.3.3
free_NCList@NETCDF_MPI_4.1.3 4.1.3
free_NC_attr@NETCDF_MPI_3.6.1 3.6.1
free_NC_attrarrayV0@NETCDF_MPI_3.6.1 3.6.1
free_NC_attrarrayV@NETCDF_MPI_3.6.1 3.6.1
free_NC_dim@NETCDF_MPI_3.6.1 3.6.1
free_NC_dimarrayV0@NETCDF_MPI_3.6.1 3.6.1
free_NC_dimarrayV@NETCDF_MPI_3.6.1 3.6.1
free_NC_string@NETCDF_MPI_3.6.1 3.6.1
free_NC_var@NETCDF_MPI_3.6.1 3.6.1
free_NC_vararrayV0@NETCDF_MPI_3.6.1 3.6.1
free_NC_vararrayV@NETCDF_MPI_3.6.1 3.6.1
freecdfroot@NETCDF_MPI_4.3.3 4.3.3
freenccache@NETCDF_MPI_4.1.3 4.1.3
freenccachenode@NETCDF_MPI_4.1.3 4.1.3
function@NETCDF_MPI_4.1.3 4.1.3
getalldims@NETCDF_MPI_4.3.3 4.3.3
getlimitnumber@NETCDF_MPI_4.1.3 4.1.3
globalpropinfo@NETCDF_MPI_4.4.1 4.4.1
hash_fast@NETCDF_MPI_4.1.3 4.1.3
indexer@NETCDF_MPI_4.1.3 4.1.3
indexpath@NETCDF_MPI_4.1.3 4.1.3
int_cmp@NETCDF_MPI_4.1.3 4.1.3
iscached@NETCDF_MPI_4.1.3 4.1.3
iterate_NCList@NETCDF_MPI_4.4.1 4.4.1
makecdfnode@NETCDF_MPI_4.3.3 4.3.3
makecdfpathstring@NETCDF_MPI_4.3.3 4.3.3
makeocpathstring@NETCDF_MPI_4.3.3 4.3.3
makepathstring@NETCDF_MPI_4.3.3 4.3.3
makeselectiontag@NETCDF_MPI_4.1.3 4.1.3
mapnodes@NETCDF_MPI_4.3.3 4.3.3
markprefetch@NETCDF_MPI_4.3.3 4.3.3
memio_create@NETCDF_MPI_4.3.3 4.3.3
memio_extract@NETCDF_MPI_4.6.2 4.6.2
memio_open@NETCDF_MPI_4.3.3 4.3.3
modeldecode@NETCDF_MPI_4.1.3 4.1.3
nc3_cktype@NETCDF_MPI_4.4.0 4.4.0
nc3d_getvarx@NETCDF_MPI_4.1.3 4.1.3
nc4_adjust_var_cache@NETCDF_MPI_4.1.3 4.1.3
nc4_atomic_name@NETCDF_MPI_4.6.2 4.6.2
nc4_att_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_att_list_del@NETCDF_MPI_4.0.1 4.0.1
nc4_break_coord_var@NETCDF_MPI_4.3.3 4.3.3
nc4_check_dup_name@NETCDF_MPI_4.0.1 4.0.1
nc4_check_name@NETCDF_MPI_4.0.1 4.0.1
nc4_chunk_cache_nelems@NETCDF_MPI_4.1.3 4.1.3
nc4_chunk_cache_preemption@NETCDF_MPI_4.1.3 4.1.3
nc4_chunk_cache_size@NETCDF_MPI_4.1.3 4.1.3
nc4_close_hdf5_file@NETCDF_MPI_4.6.2 4.6.2
nc4_close_netcdf4_file@NETCDF_MPI_4.6.2 4.6.2
nc4_convert_type@NETCDF_MPI_4.0.1 4.0.1
nc4_detect_preserve_dimids@NETCDF_MPI_4.6.2 4.6.2
nc4_dim_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_dim_list_del@NETCDF_MPI_4.1.3 4.1.3
nc4_enddef_netcdf4_file@NETCDF_MPI_4.0.1 4.0.1
nc4_enum_member_add@NETCDF_MPI_4.0.1 4.0.1
nc4_field_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_find_dim@NETCDF_MPI_4.0.1 4.0.1
nc4_find_dim_len@NETCDF_MPI_4.0.1 4.0.1
nc4_find_grp_att@NETCDF_MPI_4.0.1 4.0.1
nc4_find_grp_h5@NETCDF_MPI_4.0.1 4.0.1
nc4_find_grp_h5_var@NETCDF_MPI_4.6.2 4.6.2
nc4_find_nc4_grp@NETCDF_MPI_4.0.1 4.0.1
nc4_find_nc_att@NETCDF_MPI_4.0.1 4.0.1
nc4_find_nc_grp_h5@NETCDF_MPI_4.0.1 4.0.1
nc4_find_type@NETCDF_MPI_4.0.1 4.0.1
nc4_find_var@NETCDF_MPI_4.3.3 4.3.3
nc4_get_default_fill_value@NETCDF_MPI_4.0.1 4.0.1
nc4_get_fill_value@NETCDF_MPI_4.6.2 4.6.2
nc4_get_hdf_typeid@NETCDF_MPI_4.1.3 4.1.3
nc4_get_typeclass@NETCDF_MPI_4.3.3 4.3.3
nc4_get_typelen_mem@NETCDF_MPI_4.0.1 4.0.1
nc4_grp_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_hdf5_finalize@NETCDF_MPI_4.6.2 4.6.2
nc4_hdf5_initialize@NETCDF_MPI_4.4.1 4.4.1
nc4_hdf5_initialized@NETCDF_MPI_4.4.1 4.4.1
nc4_nc4f_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_normalize_name@NETCDF_MPI_4.0.1 4.0.1
nc4_open_var_grp2@NETCDF_MPI_4.0.1 4.0.1
nc4_put_att@NETCDF_MPI_4.6.2 4.6.2
nc4_read_atts@NETCDF_MPI_4.6.2 4.6.2
nc4_rec_find_hdf_type@NETCDF_MPI_4.0.1 4.0.1
nc4_rec_find_named_type@NETCDF_MPI_4.1.3 4.1.3
nc4_rec_grp_HDF5_del@NETCDF_MPI_4.6.2 4.6.2
nc4_rec_grp_del@NETCDF_MPI_4.0.1 4.0.1
nc4_rec_match_dimscales@NETCDF_MPI_4.0.1 4.0.1
nc4_rec_write_groups_types@NETCDF_MPI_4.3.3 4.3.3
nc4_rec_write_metadata@NETCDF_MPI_4.0.1 4.0.1
nc4_reform_coord_var@NETCDF_MPI_4.3.3 4.3.3
nc4_reopen_dataset@NETCDF_MPI_4.1.3 4.1.3
nc4_type_free@NETCDF_MPI_4.3.3 4.3.3
nc4_type_list_add@NETCDF_MPI_4.0.1 4.0.1
nc4_type_new@NETCDF_MPI_4.6.2 4.6.2
nc4_var_list_add2@NETCDF_MPI_4.6.2 4.6.2
nc4_var_list_add@NETCDF_MPI_4.6.2 4.6.2
nc4_var_list_del@NETCDF_MPI_4.6.2 4.6.2
nc4_var_set_ndims@NETCDF_MPI_4.6.2 4.6.2
nc__create@NETCDF_MPI_3.6.1 3.6.1
nc__create_mp@NETCDF_MPI_3.6.1 3.6.1
nc__enddef@NETCDF_MPI_3.6.1 3.6.1
nc__open@NETCDF_MPI_3.6.1 3.6.1
nc__open_mp@NETCDF_MPI_3.6.1 3.6.1
nc__pseudofd@NETCDF_MPI_4.3.3 4.3.3
nc__testurl@NETCDF_MPI_4.1.3 4.1.3
nc_abort@NETCDF_MPI_3.6.1 3.6.1
nc_advise@NETCDF_MPI_3.6.1 3.6.1
nc_close@NETCDF_MPI_3.6.1 3.6.1
nc_close_memio@NETCDF_MPI_4.6.2 4.6.2
nc_copy_att@NETCDF_MPI_3.6.1 3.6.1
nc_copy_var@NETCDF_MPI_3.6.1 3.6.1
nc_create@NETCDF_MPI_3.6.1 3.6.1
nc_create_mem@NETCDF_MPI_4.6.2 4.6.2
nc_create_par@NETCDF_MPI_4.0.1 4.0.1
nc_create_par_fortran@NETCDF_MPI_4.1.3 4.1.3
nc_def_compound@NETCDF_MPI_4.0.1 4.0.1
nc_def_dim@NETCDF_MPI_3.6.1 3.6.1
nc_def_enum@NETCDF_MPI_4.0.1 4.0.1
nc_def_grp@NETCDF_MPI_4.0.1 4.0.1
nc_def_opaque@NETCDF_MPI_4.0.1 4.0.1
nc_def_user_format@NETCDF_MPI_4.6.2 4.6.2
nc_def_var@NETCDF_MPI_3.6.1 3.6.1
nc_def_var_chunking@NETCDF_MPI_4.0.1 4.0.1
nc_def_var_chunking_ints@NETCDF_MPI_4.0.1 4.0.1
nc_def_var_deflate@NETCDF_MPI_4.0.1 4.0.1
nc_def_var_endian@NETCDF_MPI_4.0.1 4.0.1
nc_def_var_fill@NETCDF_MPI_4.0.1 4.0.1
nc_def_var_filter@NETCDF_MPI_4.6.0 4.6.0
nc_def_var_fletcher32@NETCDF_MPI_4.0.1 4.0.1
nc_def_vlen@NETCDF_MPI_4.0.1 4.0.1
nc_del_att@NETCDF_MPI_3.6.1 3.6.1
nc_delete@NETCDF_MPI_3.6.1 3.6.1
nc_delete_mp@NETCDF_MPI_3.6.1 3.6.1
nc_enddef@NETCDF_MPI_3.6.1 3.6.1
nc_finalize@NETCDF_MPI_4.4.0 4.4.0
nc_free_string@NETCDF_MPI_4.0.1 4.0.1
nc_free_vlen@NETCDF_MPI_4.0.1 4.0.1
nc_free_vlens@NETCDF_MPI_4.1.3 4.1.3
nc_get_NC@NETCDF_MPI_3.6.1 3.6.1
nc_get_att@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_att_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_att_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_att_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_att_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_att_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_att_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_chunk_cache@NETCDF_MPI_4.0.1 4.0.1
nc_get_chunk_cache_ints@NETCDF_MPI_4.0.1 4.0.1
nc_get_default_format@NETCDF_MPI_4.3.3 4.3.3
nc_get_rec@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_var1_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_var1_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_var1_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_var1_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_var1_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_var1_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_var@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_chunk_cache@NETCDF_MPI_4.1.3 4.1.3
nc_get_var_chunk_cache_ints@NETCDF_MPI_4.1.3 4.1.3
nc_get_var_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_var_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_var_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_vara_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_vara_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_varm_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_varm_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_double@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_float@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_int@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_long@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars_schar@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_short@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_string@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars_text@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_get_vars_uint@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_get_vars_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_get_vlen_element@NETCDF_MPI_4.0.1 4.0.1
nc_initialize@NETCDF_MPI_4.4.0 4.4.0
nc_inq@NETCDF_MPI_3.6.1 3.6.1
nc_inq_att@NETCDF_MPI_3.6.1 3.6.1
nc_inq_attid@NETCDF_MPI_3.6.1 3.6.1
nc_inq_attlen@NETCDF_MPI_3.6.1 3.6.1
nc_inq_attname@NETCDF_MPI_3.6.1 3.6.1
nc_inq_atttype@NETCDF_MPI_3.6.1 3.6.1
nc_inq_base_pe@NETCDF_MPI_3.6.1 3.6.1
nc_inq_compound@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_field@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fielddim_sizes@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fieldindex@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fieldname@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fieldndims@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fieldoffset@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_fieldtype@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_name@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_nfields@NETCDF_MPI_4.0.1 4.0.1
nc_inq_compound_size@NETCDF_MPI_4.0.1 4.0.1
nc_inq_dim@NETCDF_MPI_3.6.1 3.6.1
nc_inq_dimid@NETCDF_MPI_3.6.1 3.6.1
nc_inq_dimids@NETCDF_MPI_4.0.1 4.0.1
nc_inq_dimlen@NETCDF_MPI_3.6.1 3.6.1
nc_inq_dimname@NETCDF_MPI_3.6.1 3.6.1
nc_inq_enum@NETCDF_MPI_4.0.1 4.0.1
nc_inq_enum_ident@NETCDF_MPI_4.0.1 4.0.1
nc_inq_enum_member@NETCDF_MPI_4.0.1 4.0.1
nc_inq_format@NETCDF_MPI_3.6.1 3.6.1
nc_inq_format_extended@NETCDF_MPI_4.3.3 4.3.3
nc_inq_grp_full_ncid@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grp_ncid@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grp_parent@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grpname@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grpname_full@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grpname_len@NETCDF_MPI_4.0.1 4.0.1
nc_inq_grps@NETCDF_MPI_4.0.1 4.0.1
nc_inq_libvers@NETCDF_MPI_3.6.1 3.6.1
nc_inq_natts@NETCDF_MPI_3.6.1 3.6.1
nc_inq_ncid@NETCDF_MPI_4.0.1 4.0.1
nc_inq_ndims@NETCDF_MPI_3.6.1 3.6.1
nc_inq_nvars@NETCDF_MPI_3.6.1 3.6.1
nc_inq_opaque@NETCDF_MPI_4.0.1 4.0.1
nc_inq_path@NETCDF_MPI_4.1.3 4.1.3
nc_inq_rec@NETCDF_MPI_3.6.1 3.6.1
nc_inq_type@NETCDF_MPI_4.0.1 4.0.1
nc_inq_type_equal@NETCDF_MPI_4.1.3 4.1.3
nc_inq_typeid@NETCDF_MPI_4.1.3 4.1.3
nc_inq_typeids@NETCDF_MPI_4.0.1 4.0.1
nc_inq_unlimdim@NETCDF_MPI_3.6.1 3.6.1
nc_inq_unlimdims@NETCDF_MPI_4.0.1 4.0.1
nc_inq_user_format@NETCDF_MPI_4.6.2 4.6.2
nc_inq_user_type@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var@NETCDF_MPI_3.6.1 3.6.1
nc_inq_var_chunking@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_chunking_ints@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_deflate@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_endian@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_fill@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_filter@NETCDF_MPI_4.6.0 4.6.0
nc_inq_var_fletcher32@NETCDF_MPI_4.0.1 4.0.1
nc_inq_var_szip@NETCDF_MPI_4.1.3 4.1.3
nc_inq_vardimid@NETCDF_MPI_3.6.1 3.6.1
nc_inq_varid@NETCDF_MPI_3.6.1 3.6.1
nc_inq_varids@NETCDF_MPI_4.0.1 4.0.1
nc_inq_varname@NETCDF_MPI_3.6.1 3.6.1
nc_inq_varnatts@NETCDF_MPI_3.6.1 3.6.1
nc_inq_varndims@NETCDF_MPI_3.6.1 3.6.1
nc_inq_vartype@NETCDF_MPI_3.6.1 3.6.1
nc_inq_vlen@NETCDF_MPI_4.0.1 4.0.1
nc_insert_array_compound@NETCDF_MPI_4.0.1 4.0.1
nc_insert_compound@NETCDF_MPI_4.0.1 4.0.1
nc_insert_enum@NETCDF_MPI_4.0.1 4.0.1
nc_open@NETCDF_MPI_3.6.1 3.6.1
nc_open_mem@NETCDF_MPI_4.4.0 4.4.0
nc_open_memio@NETCDF_MPI_4.6.2 4.6.2
nc_open_par@NETCDF_MPI_4.0.1 4.0.1
nc_open_par_fortran@NETCDF_MPI_4.1.3 4.1.3
nc_ptrdiffvector1@NETCDF_MPI_4.3.3 4.3.3
nc_put_att@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_att_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_att_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_att_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_att_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_att_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_att_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_rec@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_var1_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_var1_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_var1_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_var1_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_var1_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_var1_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_var@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_var_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_var_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_vara_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_vara_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_varm_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_varm_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_double@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_float@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_int@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_long@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_longlong@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars_schar@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_short@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_string@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars_text@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_ubyte@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars_uchar@NETCDF_MPI_3.6.1 3.6.1
nc_put_vars_uint@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars_ulonglong@NETCDF_MPI_4.0.1 4.0.1
nc_put_vars_ushort@NETCDF_MPI_4.0.1 4.0.1
nc_put_vlen_element@NETCDF_MPI_4.0.1 4.0.1
nc_redef@NETCDF_MPI_3.6.1 3.6.1
nc_rename_att@NETCDF_MPI_3.6.1 3.6.1
nc_rename_dim@NETCDF_MPI_3.6.1 3.6.1
nc_rename_grp@NETCDF_MPI_4.3.3 4.3.3
nc_rename_var@NETCDF_MPI_3.6.1 3.6.1
nc_set_base_pe@NETCDF_MPI_3.6.1 3.6.1
nc_set_chunk_cache@NETCDF_MPI_4.0.1 4.0.1
nc_set_chunk_cache_ints@NETCDF_MPI_4.0.1 4.0.1
nc_set_default_format@NETCDF_MPI_3.6.1 3.6.1
nc_set_fill@NETCDF_MPI_3.6.1 3.6.1
nc_set_log_level@NETCDF_MPI_4.6.2 4.6.2
nc_set_var_chunk_cache@NETCDF_MPI_4.1.3 4.1.3
nc_set_var_chunk_cache_ints@NETCDF_MPI_4.1.3 4.1.3
nc_show_metadata@NETCDF_MPI_4.1.3 4.1.3
nc_sizevector0@NETCDF_MPI_4.3.3 4.3.3
nc_sizevector1@NETCDF_MPI_4.3.3 4.3.3
nc_strerror@NETCDF_MPI_3.6.1 3.6.1
nc_sync@NETCDF_MPI_3.6.1 3.6.1
nc_utf8_normalize@NETCDF_MPI_4.5.0 4.5.0
nc_utf8_to_utf16@NETCDF_MPI_4.5.0 4.5.0
nc_utf8_validate@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_NFC@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_NFD@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_NFKC@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_NFKD@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_category@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_category_string@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_charwidth@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_codepoint_valid@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_combinations@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_decompose@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_decompose_char@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_decompose_custom@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_encode_char@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_errmsg@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_get_property@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_grapheme_break@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_grapheme_break_stateful@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_iterate@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_map@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_map_custom@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_normalize_utf32@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_properties@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_reencode@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_sequences@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_stage1table@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_stage2table@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_tolower@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_totitle@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_toupper@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_utf8class@NETCDF_MPI_4.5.0 4.5.0
nc_utf8proc_version@NETCDF_MPI_4.5.0 4.5.0
nc_var_par_access@NETCDF_MPI_4.0.1 4.0.1
ncabort@NETCDF_MPI_3.6.1 3.6.1
ncattcopy@NETCDF_MPI_3.6.1 3.6.1
ncattdel@NETCDF_MPI_3.6.1 3.6.1
ncattget@NETCDF_MPI_3.6.1 3.6.1
ncattinq@NETCDF_MPI_3.6.1 3.6.1
ncattname@NETCDF_MPI_3.6.1 3.6.1
ncattput@NETCDF_MPI_3.6.1 3.6.1
ncattrename@NETCDF_MPI_3.6.1 3.6.1
ncaux_abort_compound@NETCDF_MPI_4.3.3 4.3.3
ncaux_add_field@NETCDF_MPI_4.3.3 4.3.3
ncaux_begin_compound@NETCDF_MPI_4.3.3 4.3.3
ncaux_class_alignment@NETCDF_MPI_4.6.2 4.6.2
ncaux_end_compound@NETCDF_MPI_4.3.3 4.3.3
ncaux_reclaim_data@NETCDF_MPI_4.6.2 4.6.2
ncaux_type_alignment@NETCDF_MPI_4.6.2 4.6.2
ncbytesappend@NETCDF_MPI_4.1.3 4.1.3
ncbytesappendn@NETCDF_MPI_4.1.3 4.1.3
ncbytescat@NETCDF_MPI_4.1.3 4.1.3
ncbytesdup@NETCDF_MPI_4.1.3 4.1.3
ncbytesextract@NETCDF_MPI_4.1.3 4.1.3
ncbytesfill@NETCDF_MPI_4.1.3 4.1.3
ncbytesfree@NETCDF_MPI_4.1.3 4.1.3
ncbytesget@NETCDF_MPI_4.1.3 4.1.3
ncbytesnew@NETCDF_MPI_4.1.3 4.1.3
ncbytesnull@NETCDF_MPI_4.1.3 4.1.3
ncbytesprepend@NETCDF_MPI_4.1.3 4.1.3
ncbytesremove@NETCDF_MPI_4.5.0 4.5.0
ncbytesset@NETCDF_MPI_4.1.3 4.1.3
ncbytessetalloc@NETCDF_MPI_4.1.3 4.1.3
ncbytessetcontents@NETCDF_MPI_4.1.3 4.1.3
ncbytessetlength@NETCDF_MPI_4.1.3 4.1.3
ncclose@NETCDF_MPI_3.6.1 3.6.1
nccreate@NETCDF_MPI_3.6.1 3.6.1
ncd4__testurl@NETCDF_MPI_4.5.0 4.5.0
ncdap3debug@NETCDF_MPI_4.1.3 4.1.3
ncdap4debug@NETCDF_MPI_4.5.0 4.5.0
ncdebug@NETCDF_MPI_4.5.0 4.5.0
ncdimdef@NETCDF_MPI_3.6.1 3.6.1
ncdimid@NETCDF_MPI_3.6.1 3.6.1
ncdiminq@NETCDF_MPI_3.6.1 3.6.1
ncdimrename@NETCDF_MPI_3.6.1 3.6.1
ncendef@NETCDF_MPI_3.6.1 3.6.1
ncerr@NETCDF_MPI_3.6.1 3.6.1
ncindexadd@NETCDF_MPI_4.6.2 4.6.2
ncindexcount@NETCDF_MPI_4.6.2 4.6.2
ncindexdup@NETCDF_MPI_4.6.2 4.6.2
ncindexfind@NETCDF_MPI_4.6.2 4.6.2
ncindexfree@NETCDF_MPI_4.6.2 4.6.2
ncindexidel@NETCDF_MPI_4.6.2 4.6.2
ncindexith@NETCDF_MPI_4.6.2 4.6.2
ncindexlookup@NETCDF_MPI_4.6.2 4.6.2
ncindexnew@NETCDF_MPI_4.6.2 4.6.2
ncindexrebuild@NETCDF_MPI_4.6.2 4.6.2
ncindexset@NETCDF_MPI_4.6.2 4.6.2
ncindexverify@NETCDF_MPI_4.6.2 4.6.2
ncinquire@NETCDF_MPI_3.6.1 3.6.1
ncio_close@NETCDF_MPI_3.6.1 3.6.1
ncio_create@NETCDF_MPI_3.6.1 3.6.1
ncio_filesize@NETCDF_MPI_3.6.1 3.6.1
ncio_get@NETCDF_MPI_4.3.3 4.3.3
ncio_move@NETCDF_MPI_4.3.3 4.3.3
ncio_open@NETCDF_MPI_3.6.1 3.6.1
ncio_pad_length@NETCDF_MPI_3.6.1 3.6.1
ncio_rel@NETCDF_MPI_4.3.3 4.3.3
ncio_sync@NETCDF_MPI_4.3.3 4.3.3
nclistclone@NETCDF_MPI_4.1.3 4.1.3
nclistconcat@NETCDF_MPI_4.1.3 4.1.3
nclistcontains@NETCDF_MPI_4.1.3 4.1.3
nclistdeleteall@NETCDF_MPI_4.1.3 4.1.3
nclistdup@NETCDF_MPI_4.1.3 4.1.3
nclistelemremove@NETCDF_MPI_4.3.3 4.3.3
nclistextract@NETCDF_MPI_4.5.0 4.5.0
nclistfree@NETCDF_MPI_4.1.3 4.1.3
nclistfreeall@NETCDF_MPI_4.5.0 4.5.0
nclistget@NETCDF_MPI_4.1.3 4.1.3
nclistinsert@NETCDF_MPI_4.1.3 4.1.3
nclistminus@NETCDF_MPI_4.1.3 4.1.3
nclistnew@NETCDF_MPI_4.1.3 4.1.3
nclistnull@NETCDF_MPI_4.1.3 4.1.3
nclistpop@NETCDF_MPI_4.1.3 4.1.3
nclistpush@NETCDF_MPI_4.1.3 4.1.3
nclistremove@NETCDF_MPI_4.1.3 4.1.3
nclistset@NETCDF_MPI_4.1.3 4.1.3
nclistsetalloc@NETCDF_MPI_4.1.3 4.1.3
nclistsetlength@NETCDF_MPI_4.1.3 4.1.3
nclisttop@NETCDF_MPI_4.1.3 4.1.3
nclistunique@NETCDF_MPI_4.1.3 4.1.3
nclog@NETCDF_MPI_4.1.3 4.1.3
nclogclose@NETCDF_MPI_4.1.3 4.1.3
ncloginit@NETCDF_MPI_4.1.3 4.1.3
nclogopen@NETCDF_MPI_4.1.3 4.1.3
nclogsettags@NETCDF_MPI_4.1.3 4.1.3
nclogtext@NETCDF_MPI_4.1.3 4.1.3
nclogtextn@NETCDF_MPI_4.1.3 4.1.3
ncopen@NETCDF_MPI_3.6.1 3.6.1
ncopts@NETCDF_MPI_3.6.1 3.6.1
ncprintpropinfo@NETCDF_MPI_4.6.2 4.6.2
ncprintprovenance@NETCDF_MPI_4.6.2 4.6.2
ncrc_globalstate@NETCDF_MPI_4.6.0 4.6.0
ncrecget@NETCDF_MPI_3.6.1 3.6.1
ncrecinq@NETCDF_MPI_3.6.1 3.6.1
ncrecput@NETCDF_MPI_3.6.1 3.6.1
ncredef@NETCDF_MPI_3.6.1 3.6.1
ncsetfill@NETCDF_MPI_3.6.1 3.6.1
ncsetlogging@NETCDF_MPI_4.1.3 4.1.3
ncstrndup@NETCDF_MPI_4.3.3 4.3.3
ncsync@NETCDF_MPI_3.6.1 3.6.1
nctypeconvert@NETCDF_MPI_4.1.3 4.1.3
nctypelen@NETCDF_MPI_3.6.1 3.6.1
nctypesizeof@NETCDF_MPI_4.1.3 4.1.3
nctypetodap@NETCDF_MPI_4.1.3 4.1.3
nctypetostring@NETCDF_MPI_4.1.3 4.1.3
ncuribuild@NETCDF_MPI_4.3.3 4.3.3
ncuridecode@NETCDF_MPI_4.3.3 4.3.3
ncuridecodepartial@NETCDF_MPI_4.5.0 4.5.0
ncuriencodeonly@NETCDF_MPI_4.5.0 4.5.0
ncuriencodeuserpwd@NETCDF_MPI_4.5.0 4.5.0
ncurifree@NETCDF_MPI_4.3.3 4.3.3
ncurilookup@NETCDF_MPI_4.3.3 4.3.3
ncuriparse@NETCDF_MPI_4.3.3 4.3.3
ncuriquerylookup@NETCDF_MPI_4.5.0 4.5.0
ncurisetprotocol@NETCDF_MPI_4.5.0 4.5.0
ncurisetquery@NETCDF_MPI_4.5.0 4.5.0
ncvardef@NETCDF_MPI_3.6.1 3.6.1
ncvarget1@NETCDF_MPI_3.6.1 3.6.1
ncvarget@NETCDF_MPI_3.6.1 3.6.1
ncvargetg@NETCDF_MPI_3.6.1 3.6.1
ncvargets@NETCDF_MPI_3.6.1 3.6.1
ncvarid@NETCDF_MPI_3.6.1 3.6.1
ncvarinq@NETCDF_MPI_3.6.1 3.6.1
ncvarput1@NETCDF_MPI_3.6.1 3.6.1
ncvarput@NETCDF_MPI_3.6.1 3.6.1
ncvarputg@NETCDF_MPI_3.6.1 3.6.1
ncvarputs@NETCDF_MPI_3.6.1 3.6.1
ncvarrename@NETCDF_MPI_3.6.1 3.6.1
ncvlog@NETCDF_MPI_4.6.2 4.6.2
ncx_get_off_t@NETCDF_MPI_3.6.1 3.6.1
ncx_get_size_t@NETCDF_MPI_3.6.1 3.6.1
ncx_get_uint32@NETCDF_MPI_4.5.0 4.5.0
ncx_get_uint64@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_double_double@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_float@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_int@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_double_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_double_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_short@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_double_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_double_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_double_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_float_double@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_float@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_int@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_float_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_float_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_short@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_float_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_float_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_float_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_int_double@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_float@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_int@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_int_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_int_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_short@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_int_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_int_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_int_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_double@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_float@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_int@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_longlong_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_short@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_longlong_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_schar_double@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_float@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_int@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_schar_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_schar_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_short@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_schar_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_schar_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_schar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_short_double@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_float@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_int@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_short_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_short_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_short@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_short_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_short_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_getn_short_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_text@NETCDF_MPI_3.6.1 3.6.1
ncx_getn_uchar_double@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_float@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_int@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_uchar_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_short@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uchar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_double@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_float@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_int@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_uint_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_short@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_uint_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_double@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_float@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_int@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_ulonglong_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_short@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ulonglong_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_double@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_float@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_int@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_long@NETCDF_MPI_4.5.0 4.5.0
ncx_getn_ushort_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_short@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_ushort_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_getn_void@NETCDF_MPI_3.6.1 3.6.1
ncx_howmany@NETCDF_MPI_3.6.1 3.6.1
ncx_len_NC@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_double@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_float@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_int@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_getn_schar_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_schar_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_short@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_schar_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_schar_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_schar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_short_double@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_float@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_int@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_getn_short_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_short_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_short@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_short_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_short_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_getn_short_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_text@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_getn_uchar_double@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_float@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_int@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_getn_uchar_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_short@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_uchar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_double@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_float@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_int@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_getn_ushort_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_short@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_ushort_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_getn_void@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_double@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_float@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_int@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_putn_schar_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_schar_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_short@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_schar_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_schar_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_schar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_short_double@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_float@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_int@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_putn_short_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_short_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_short@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_short_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_short_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_pad_putn_short_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_text@NETCDF_MPI_3.6.1 3.6.1
ncx_pad_putn_uchar_double@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_float@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_int@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_putn_uchar_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_short@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_uchar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_double@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_float@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_int@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_long@NETCDF_MPI_4.5.0 4.5.0
ncx_pad_putn_ushort_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_short@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_ushort_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_pad_putn_void@NETCDF_MPI_3.6.1 3.6.1
ncx_put_NC@NETCDF_MPI_3.6.1 3.6.1
ncx_put_off_t@NETCDF_MPI_3.6.1 3.6.1
ncx_put_size_t@NETCDF_MPI_3.6.1 3.6.1
ncx_put_uint32@NETCDF_MPI_4.5.0 4.5.0
ncx_put_uint64@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_double_double@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_float@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_int@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_double_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_double_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_short@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_double_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_double_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_double_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_float_double@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_float@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_int@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_float_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_float_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_short@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_float_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_float_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_float_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_int_double@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_float@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_int@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_int_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_int_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_short@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_int_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_int_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_int_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_double@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_float@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_int@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_longlong_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_short@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_longlong_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_schar_double@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_float@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_int@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_schar_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_schar_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_short@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_schar_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_schar_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_schar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_short_double@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_float@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_int@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_short_longlong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_short_schar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_short@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_uchar@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_short_uint@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_short_ulonglong@NETCDF_MPI_4.1.3 4.1.3
ncx_putn_short_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_text@NETCDF_MPI_3.6.1 3.6.1
ncx_putn_uchar_double@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_float@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_int@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_uchar_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_short@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uchar_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_double@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_float@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_int@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_uint_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_short@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_uint_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_double@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_float@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_int@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_ulonglong_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_short@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ulonglong_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_double@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_float@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_int@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_long@NETCDF_MPI_4.5.0 4.5.0
ncx_putn_ushort_longlong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_schar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_short@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_uchar@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_uint@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_ulonglong@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_ushort_ushort@NETCDF_MPI_4.4.0 4.4.0
ncx_putn_void@NETCDF_MPI_3.6.1 3.6.1
ncx_szof@NETCDF_MPI_3.6.1 3.6.1
new_NC@NETCDF_MPI_4.3.3 4.3.3
new_NC_string@NETCDF_MPI_3.6.1 3.6.1
new_x_NC_attr@NETCDF_MPI_3.6.1 3.6.1
new_x_NC_dim@NETCDF_MPI_3.6.1 3.6.1
new_x_NC_var@NETCDF_MPI_3.6.1 3.6.1
nodematch@NETCDF_MPI_4.3.3 4.3.3
oc_close@NETCDF_MPI_4.1.3 4.1.3
oc_curl_debug@NETCDF_MPI_4.3.3 4.3.3
oc_curl_printerror@NETCDF_MPI_4.3.3 4.3.3
oc_curl_protocols@NETCDF_MPI_4.3.3 4.3.3
oc_das_attr@NETCDF_MPI_4.3.3 4.3.3
oc_das_attr_count@NETCDF_MPI_4.3.3 4.3.3
oc_data_container@NETCDF_MPI_4.3.3 4.3.3
oc_data_ddpath@NETCDF_MPI_4.3.3 4.3.3
oc_data_ddsnode@NETCDF_MPI_4.3.3 4.3.3
oc_data_ddtree@NETCDF_MPI_4.3.3 4.3.3
oc_data_fieldbyname@NETCDF_MPI_4.3.3 4.3.3
oc_data_free@NETCDF_MPI_4.1.3 4.1.3
oc_data_gridarray@NETCDF_MPI_4.3.3 4.3.3
oc_data_gridmap@NETCDF_MPI_4.3.3 4.3.3
oc_data_indexable@NETCDF_MPI_4.3.3 4.3.3
oc_data_indexed@NETCDF_MPI_4.3.3 4.3.3
oc_data_ithelement@NETCDF_MPI_4.3.3 4.3.3
oc_data_ithfield@NETCDF_MPI_4.3.3 4.3.3
oc_data_ithrecord@NETCDF_MPI_4.3.3 4.3.3
oc_data_mode@NETCDF_MPI_4.1.3 4.1.3
oc_data_octype@NETCDF_MPI_4.3.3 4.3.3
oc_data_position@NETCDF_MPI_4.3.3 4.3.3
oc_data_read@NETCDF_MPI_4.3.3 4.3.3
oc_data_readn@NETCDF_MPI_4.3.3 4.3.3
oc_data_readscalar@NETCDF_MPI_4.3.3 4.3.3
oc_data_recordcount@NETCDF_MPI_4.3.3 4.3.3
oc_data_root@NETCDF_MPI_4.1.3 4.1.3
oc_dds_atomictype@NETCDF_MPI_4.3.3 4.3.3
oc_dds_attr@NETCDF_MPI_4.3.3 4.3.3
oc_dds_attr_count@NETCDF_MPI_4.3.3 4.3.3
oc_dds_class@NETCDF_MPI_4.3.3 4.3.3
oc_dds_container@NETCDF_MPI_4.3.3 4.3.3
oc_dds_dd@NETCDF_MPI_4.3.3 4.3.3
oc_dds_ddnode@NETCDF_MPI_4.3.3 4.3.3
oc_dds_dimensions@NETCDF_MPI_4.3.3 4.3.3
oc_dds_dimensionsizes@NETCDF_MPI_4.3.3 4.3.3
oc_dds_fieldbyname@NETCDF_MPI_4.3.3 4.3.3
oc_dds_free@NETCDF_MPI_4.3.3 4.3.3
oc_dds_getdataroot@NETCDF_MPI_4.3.3 4.3.3
oc_dds_gridarray@NETCDF_MPI_4.3.3 4.3.3
oc_dds_gridmap@NETCDF_MPI_4.3.3 4.3.3
oc_dds_ithdimension@NETCDF_MPI_4.3.3 4.3.3
oc_dds_ithfield@NETCDF_MPI_4.3.3 4.3.3
oc_dds_ithsubnode@NETCDF_MPI_4.3.3 4.3.3
oc_dds_name@NETCDF_MPI_4.3.3 4.3.3
oc_dds_nsubnodes@NETCDF_MPI_4.3.3 4.3.3
oc_dds_properties@NETCDF_MPI_4.3.3 4.3.3
oc_dds_rank@NETCDF_MPI_4.3.3 4.3.3
oc_dds_read@NETCDF_MPI_4.3.3 4.3.3
oc_dds_readn@NETCDF_MPI_4.3.3 4.3.3
oc_dds_readscalar@NETCDF_MPI_4.3.3 4.3.3
oc_dds_root@NETCDF_MPI_4.3.3 4.3.3
oc_dimension_properties@NETCDF_MPI_4.3.3 4.3.3
oc_dumpnode@NETCDF_MPI_4.1.3 4.1.3
oc_errstring@NETCDF_MPI_4.1.3 4.1.3
oc_fetch@NETCDF_MPI_4.1.3 4.1.3
oc_get_connection@NETCDF_MPI_4.3.3 4.3.3
oc_get_lastmodified_data@NETCDF_MPI_4.1.3 4.1.3
oc_httpcode@NETCDF_MPI_4.3.3 4.3.3
oc_ispacked@NETCDF_MPI_4.3.3 4.3.3
oc_merge_das@NETCDF_MPI_4.3.3 4.3.3
oc_open@NETCDF_MPI_4.1.3 4.1.3
oc_ping@NETCDF_MPI_4.3.3 4.3.3
oc_raw_xdrsize@NETCDF_MPI_4.1.3 4.1.3
oc_reclaim_strings@NETCDF_MPI_4.3.3 4.3.3
oc_root_free@NETCDF_MPI_4.1.3 4.1.3
oc_set_netrc@NETCDF_MPI_4.3.3 4.3.3
oc_set_useragent@NETCDF_MPI_4.3.3 4.3.3
oc_svcerrordata@NETCDF_MPI_4.1.3 4.1.3
oc_trace_curl@NETCDF_MPI_4.3.3 4.3.3
oc_tree_text@NETCDF_MPI_4.3.3 4.3.3
oc_typeprint@NETCDF_MPI_4.1.3 4.1.3
oc_typesize@NETCDF_MPI_4.1.3 4.1.3
oc_typetostring@NETCDF_MPI_4.1.3 4.1.3
oc_update_lastmodified_data@NETCDF_MPI_4.1.3 4.1.3
ocarrayindices@NETCDF_MPI_4.3.3 4.3.3
ocarrayoffset@NETCDF_MPI_4.3.3 4.3.3
ocbyteswap@NETCDF_MPI_4.1.3 4.1.3
occalloc@NETCDF_MPI_4.1.3 4.1.3
occlose@NETCDF_MPI_4.1.3 4.1.3
occollectpathtonode@NETCDF_MPI_4.3.3 4.3.3
occompile@NETCDF_MPI_4.1.3 4.1.3
occomputefullnames@NETCDF_MPI_4.3.3 4.3.3
occomputesemantics@NETCDF_MPI_4.3.3 4.3.3
occoncat@NETCDF_MPI_4.3.3 4.3.3
occopycat@NETCDF_MPI_4.3.3 4.3.3
occorrelate@NETCDF_MPI_4.1.3 4.1.3
occurlclose@NETCDF_MPI_4.1.3 4.1.3
occurlopen@NETCDF_MPI_4.1.3 4.1.3
ocdata_container@NETCDF_MPI_4.3.3 4.3.3
ocdata_free@NETCDF_MPI_4.3.3 4.3.3
ocdata_getroot@NETCDF_MPI_4.3.3 4.3.3
ocdata_ithelement@NETCDF_MPI_4.3.3 4.3.3
ocdata_ithfield@NETCDF_MPI_4.3.3 4.3.3
ocdata_ithrecord@NETCDF_MPI_4.3.3 4.3.3
ocdata_position@NETCDF_MPI_4.3.3 4.3.3
ocdata_read@NETCDF_MPI_4.3.3 4.3.3
ocdata_recordcount@NETCDF_MPI_4.3.3 4.3.3
ocdata_root@NETCDF_MPI_4.3.3 4.3.3
ocdataddsmsg@NETCDF_MPI_4.1.3 4.1.3
ocdd@NETCDF_MPI_4.1.3 4.1.3
ocddsdasmerge@NETCDF_MPI_4.1.3 4.1.3
ocdebug@NETCDF_MPI_4.1.3 4.1.3
ocdtmodestring@NETCDF_MPI_4.3.3 4.3.3
ocdumpclause@NETCDF_MPI_4.1.3 4.1.3
ocdumpdata@NETCDF_MPI_4.3.3 4.3.3
ocdumpdatapath@NETCDF_MPI_4.3.3 4.3.3
ocdumpdatatree@NETCDF_MPI_4.3.3 4.3.3
ocdumpmemory@NETCDF_MPI_4.1.3 4.1.3
ocdumpnode@NETCDF_MPI_4.1.3 4.1.3
ocdumpslice@NETCDF_MPI_4.1.3 4.1.3
ocdxdextension@NETCDF_MPI_4.3.3 4.3.3
ocedgeoffset@NETCDF_MPI_4.3.3 4.3.3
ocerrstring@NETCDF_MPI_4.1.3 4.1.3
ocerrtoncerr@NETCDF_MPI_4.1.3 4.1.3
ocfetch@NETCDF_MPI_4.1.3 4.1.3
ocfetchhttpcode@NETCDF_MPI_4.1.3 4.1.3
ocfetchlastmodified@NETCDF_MPI_4.1.3 4.1.3
ocfetchurl@NETCDF_MPI_4.1.3 4.1.3
ocfetchurl_file@NETCDF_MPI_4.1.3 4.1.3
ocfindbod@NETCDF_MPI_4.3.3 4.3.3
ocfqn@NETCDF_MPI_4.3.3 4.3.3
ocfree@NETCDF_MPI_4.1.3 4.1.3
ocfreeprojectionclause@NETCDF_MPI_4.1.3 4.1.3
ocinitialized@NETCDF_MPI_4.6.0 4.6.0
ocinternalinitialize@NETCDF_MPI_4.1.3 4.1.3
ocmalloc@NETCDF_MPI_4.1.3 4.1.3
ocmarkcacheable@NETCDF_MPI_4.3.3 4.3.3
ocmerge@NETCDF_MPI_4.3.3 4.3.3
ocnode_new@NETCDF_MPI_4.3.3 4.3.3
ocnodes_free@NETCDF_MPI_4.3.3 4.3.3
ocopen@NETCDF_MPI_4.1.3 4.1.3
ocpanic@NETCDF_MPI_4.1.3 4.1.3
ocping@NETCDF_MPI_4.3.3 4.3.3
ocrc_netrc_required@NETCDF_MPI_4.3.3 4.3.3
ocreportcurlerror@NETCDF_MPI_4.3.3 4.3.3
ocroot_free@NETCDF_MPI_4.3.3 4.3.3
ocset_curlflag@NETCDF_MPI_4.3.3 4.3.3
ocset_curlopt@NETCDF_MPI_4.3.3 4.3.3
ocset_flags_perfetch@NETCDF_MPI_4.3.3 4.3.3
ocset_flags_perlink@NETCDF_MPI_4.3.3 4.3.3
ocset_netrc@NETCDF_MPI_4.3.3 4.3.3
ocset_useragent@NETCDF_MPI_4.3.3 4.3.3
ocstrncmp@NETCDF_MPI_4.3.3 4.3.3
ocstrndup@NETCDF_MPI_4.1.3 4.1.3
ocsvcerrordata@NETCDF_MPI_4.1.3 4.1.3
octotaldimsize@NETCDF_MPI_4.3.3 4.3.3
octree_free@NETCDF_MPI_4.3.3 4.3.3
octypeprint@NETCDF_MPI_4.1.3 4.1.3
octypesize@NETCDF_MPI_4.1.3 4.1.3
octypetoddsstring@NETCDF_MPI_4.1.3 4.1.3
octypetonc@NETCDF_MPI_4.1.3 4.1.3
octypetostring@NETCDF_MPI_4.1.3 4.1.3
ocupdatelastmodifieddata@NETCDF_MPI_4.1.3 4.1.3
ocvalidateindices@NETCDF_MPI_4.3.3 4.3.3
posixio_create@NETCDF_MPI_4.3.3 4.3.3
posixio_open@NETCDF_MPI_4.3.3 4.3.3
prefetchdata@NETCDF_MPI_4.3.3 4.3.3
printhashmap@NETCDF_MPI_4.6.1 4.6.1
printhashmapstats@NETCDF_MPI_4.6.2 4.6.2
printindex@NETCDF_MPI_4.6.2 4.6.2
printindexlist@NETCDF_MPI_4.6.2 4.6.2
printindexmap@NETCDF_MPI_4.6.2 4.6.2
projection@NETCDF_MPI_4.1.3 4.1.3
projectionlist@NETCDF_MPI_4.1.3 4.1.3
projections@NETCDF_MPI_4.1.3 4.1.3
range1@NETCDF_MPI_4.1.3 4.1.3
range@NETCDF_MPI_4.1.3 4.1.3
rangelist@NETCDF_MPI_4.1.3 4.1.3
readDAS@NETCDF_MPI_4.1.3 4.1.3
readDATADDS@NETCDF_MPI_4.1.3 4.1.3
readDDS@NETCDF_MPI_4.1.3 4.1.3
read_numrecs@NETCDF_MPI_3.6.1 3.6.1
rec_detach_scales@NETCDF_MPI_4.3.3 4.3.3
rec_reattach_scales@NETCDF_MPI_4.3.3 4.3.3
reclaimNode@NETCDF_MPI_4.6.2 4.6.2
remove_coord_atts@NETCDF_MPI_4.6.1 4.6.1
reportobject@NETCDF_MPI_4.4.1 4.4.1
reportopenobjects@NETCDF_MPI_4.4.1 4.4.1
restruct@NETCDF_MPI_4.3.3 4.3.3
segment@NETCDF_MPI_4.1.3 4.1.3
segmentlist@NETCDF_MPI_4.1.3 4.1.3
sel_clause@NETCDF_MPI_4.1.3 4.1.3
selections@NETCDF_MPI_4.1.3 4.1.3
sequencecheck@NETCDF_MPI_4.3.3 4.3.3
set_NC_string@NETCDF_MPI_3.6.1 3.6.1
showopenobjects5@NETCDF_MPI_4.6.2 4.6.2
showopenobjects@NETCDF_MPI_4.6.2 4.6.2
simplenodematch@NETCDF_MPI_4.3.3 4.3.3
simplepathstring@NETCDF_MPI_4.3.3 4.3.3
strlcat@NETCDF_MPI_4.6.0 4.6.0
unattach@NETCDF_MPI_4.3.3 4.3.3
unmap@NETCDF_MPI_4.3.3 4.3.3
v4node@NETCDF_MPI_4.1.3 4.1.3
value@NETCDF_MPI_4.1.3 4.1.3
value_list@NETCDF_MPI_4.1.3 4.1.3
var@NETCDF_MPI_4.1.3 4.1.3
write_numrecs@NETCDF_MPI_3.6.1 3.6.1
xxdr_double@NETCDF_MPI_4.3.3 4.3.3
xxdr_filecreate@NETCDF_MPI_4.3.3 4.3.3
xxdr_float@NETCDF_MPI_4.3.3 4.3.3
xxdr_free@NETCDF_MPI_4.3.3 4.3.3
xxdr_getavail@NETCDF_MPI_4.3.3 4.3.3
xxdr_getbytes@NETCDF_MPI_4.3.3 4.3.3
xxdr_getpos@NETCDF_MPI_4.3.3 4.3.3
xxdr_init@NETCDF_MPI_4.3.3 4.3.3
xxdr_memcreate@NETCDF_MPI_4.3.3 4.3.3
xxdr_network_order@NETCDF_MPI_4.3.3 4.3.3
xxdr_opaque@NETCDF_MPI_4.3.3 4.3.3
xxdr_roundup@NETCDF_MPI_4.3.3 4.3.3
xxdr_setpos@NETCDF_MPI_4.3.3 4.3.3
xxdr_skip@NETCDF_MPI_4.3.3 4.3.3
xxdr_skip_strings@NETCDF_MPI_4.3.3 4.3.3
xxdr_string@NETCDF_MPI_4.3.3 4.3.3
xxdr_uchar@NETCDF_MPI_4.3.3 4.3.3
xxdr_uint@NETCDF_MPI_4.3.3 4.3.3
xxdr_ulonglong@NETCDF_MPI_4.3.3 4.3.3
xxdr_ushort@NETCDF_MPI_4.3.3 4.3.3
xxdrerror@NETCDF_MPI_4.3.3 4.3.3
xxdrntohdouble@NETCDF_MPI_4.3.3 4.3.3
xxdrsize@NETCDF_MPI_4.3.3 4.6.2
|