cloudsmith-api 0.53.17 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +27 -25
- data/README.md +43 -23
- data/build.json +1 -1
- data/docs/AlpinePackageUpload.md +9 -1
- data/docs/BadgesApi.md +21 -8
- data/docs/ConanPackageUpload.md +9 -1
- data/docs/DistrosApi.md +3 -13
- data/docs/EntitlementUsageMetrics.md +8 -0
- data/docs/EntitlementsApi.md +17 -63
- data/docs/EntitlementsCreate.md +3 -1
- data/docs/EntitlementsPartialUpdate.md +3 -1
- data/docs/EntitlementsRefresh.md +3 -1
- data/docs/FilesApi.md +6 -31
- data/docs/FormatsApi.md +3 -13
- data/docs/MavenPackageUpload.md +9 -1
- data/docs/MetricsApi.md +94 -37
- data/docs/NamespacesApi.md +3 -13
- data/docs/Organization.md +1 -1
- data/docs/OrganizationMembership.md +17 -0
- data/docs/OrgsApi.md +187 -20
- data/docs/Package.md +9 -1
- data/docs/PackageCopy.md +9 -1
- data/docs/PackageDependencies.md +8 -0
- data/docs/PackageDependenciesDependencies.md +11 -0
- data/docs/PackageMove.md +9 -1
- data/docs/PackageUsageMetrics.md +8 -0
- data/docs/PackagesApi.md +422 -302
- data/docs/PackagesUploadConda.md +10 -0
- data/docs/PackagesUploadP2.md +10 -0
- data/docs/PackagesValidateuploadConda.md +10 -0
- data/docs/PackagesValidateuploadP2.md +10 -0
- data/docs/PackagesownerrepoFiles.md +1 -0
- data/docs/QuotaApi.md +5 -25
- data/docs/RatesApi.md +2 -7
- data/docs/RawPackageUpload.md +9 -1
- data/docs/ReposApi.md +7 -37
- data/docs/RepositoryToken.md +8 -1
- data/docs/RepositoryTokenRefresh.md +8 -1
- data/docs/RepositoryTokenSyncTokens.md +8 -1
- data/docs/StatusApi.md +1 -1
- data/docs/StorageregionsApi.md +3 -13
- data/docs/UserApi.md +3 -13
- data/docs/UsersApi.md +2 -7
- data/docs/VagrantPackageUpload.md +9 -1
- data/docs/VulnerabilitiesApi.md +264 -0
- data/docs/VulnerabilityScanResults.md +15 -0
- data/docs/VulnerabilityScanResultsList.md +14 -0
- data/docs/WebhooksApi.md +6 -31
- data/lib/cloudsmith-api/api/badges_api.rb +28 -1
- data/lib/cloudsmith-api/api/distros_api.rb +2 -2
- data/lib/cloudsmith-api/api/entitlements_api.rb +13 -10
- data/lib/cloudsmith-api/api/files_api.rb +5 -5
- data/lib/cloudsmith-api/api/formats_api.rb +2 -2
- data/lib/cloudsmith-api/api/metrics_api.rb +106 -40
- data/lib/cloudsmith-api/api/namespaces_api.rb +2 -2
- data/lib/cloudsmith-api/api/orgs_api.rb +186 -15
- data/lib/cloudsmith-api/api/packages_api.rb +421 -50
- data/lib/cloudsmith-api/api/quota_api.rb +4 -4
- data/lib/cloudsmith-api/api/rates_api.rb +1 -1
- data/lib/cloudsmith-api/api/repos_api.rb +6 -6
- data/lib/cloudsmith-api/api/storageregions_api.rb +2 -2
- data/lib/cloudsmith-api/api/user_api.rb +2 -2
- data/lib/cloudsmith-api/api/users_api.rb +1 -1
- data/lib/cloudsmith-api/api/vulnerabilities_api.rb +281 -0
- data/lib/cloudsmith-api/api/webhooks_api.rb +5 -5
- data/lib/cloudsmith-api/configuration.rb +1 -8
- data/lib/cloudsmith-api/models/alpine_package_upload.rb +85 -5
- data/lib/cloudsmith-api/models/conan_package_upload.rb +85 -5
- data/lib/cloudsmith-api/models/entitlement_usage_metrics.rb +194 -0
- data/lib/cloudsmith-api/models/entitlements_create.rb +22 -2
- data/lib/cloudsmith-api/models/entitlements_partial_update.rb +22 -2
- data/lib/cloudsmith-api/models/entitlements_refresh.rb +22 -2
- data/lib/cloudsmith-api/models/maven_package_upload.rb +85 -5
- data/lib/cloudsmith-api/models/organization.rb +1 -1
- data/lib/cloudsmith-api/models/organization_membership.rb +279 -0
- data/lib/cloudsmith-api/models/package.rb +85 -5
- data/lib/cloudsmith-api/models/package_copy.rb +85 -5
- data/lib/cloudsmith-api/models/package_dependencies.rb +196 -0
- data/lib/cloudsmith-api/models/package_dependencies_dependencies.rb +219 -0
- data/lib/cloudsmith-api/models/package_move.rb +85 -5
- data/lib/cloudsmith-api/models/package_usage_metrics.rb +194 -0
- data/lib/cloudsmith-api/models/packages_upload_conda.rb +214 -0
- data/lib/cloudsmith-api/models/packages_upload_p2.rb +214 -0
- data/lib/cloudsmith-api/models/packages_validateupload_conda.rb +214 -0
- data/lib/cloudsmith-api/models/packages_validateupload_p2.rb +214 -0
- data/lib/cloudsmith-api/models/packagesownerrepo_files.rb +11 -1
- data/lib/cloudsmith-api/models/raw_package_upload.rb +85 -5
- data/lib/cloudsmith-api/models/repository_token.rb +72 -2
- data/lib/cloudsmith-api/models/repository_token_refresh.rb +72 -2
- data/lib/cloudsmith-api/models/repository_token_sync_tokens.rb +72 -2
- data/lib/cloudsmith-api/models/vagrant_package_upload.rb +85 -5
- data/lib/cloudsmith-api/models/vulnerability_scan_results.rb +279 -0
- data/lib/cloudsmith-api/models/vulnerability_scan_results_list.rb +264 -0
- data/lib/cloudsmith-api/version.rb +1 -1
- data/lib/cloudsmith-api.rb +12 -3
- data/spec/api/badges_api_spec.rb +9 -0
- data/spec/api/entitlements_api_spec.rb +1 -0
- data/spec/api/metrics_api_spec.rb +31 -14
- data/spec/api/orgs_api_spec.rb +43 -3
- data/spec/api/packages_api_spec.rb +85 -0
- data/spec/api/vulnerabilities_api_spec.rb +95 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/alpine_package_upload_spec.rb +48 -0
- data/spec/models/conan_package_upload_spec.rb +48 -0
- data/spec/models/entitlement_usage_metrics_spec.rb +42 -0
- data/spec/models/entitlements_create_spec.rb +12 -0
- data/spec/models/entitlements_partial_update_spec.rb +12 -0
- data/spec/models/entitlements_refresh_spec.rb +12 -0
- data/spec/models/maven_package_upload_spec.rb +48 -0
- data/spec/models/organization_membership_spec.rb +96 -0
- data/spec/models/package_copy_spec.rb +48 -0
- data/spec/models/package_dependencies_dependencies_spec.rb +60 -0
- data/spec/models/package_dependencies_spec.rb +42 -0
- data/spec/models/package_move_spec.rb +48 -0
- data/spec/models/package_spec.rb +48 -0
- data/spec/models/package_usage_metrics_spec.rb +42 -0
- data/spec/models/packages_upload_conda_spec.rb +54 -0
- data/spec/models/packages_upload_p2_spec.rb +54 -0
- data/spec/models/packages_validateupload_conda_spec.rb +54 -0
- data/spec/models/packages_validateupload_p2_spec.rb +54 -0
- data/spec/models/packagesownerrepo_files_spec.rb +6 -0
- data/spec/models/raw_package_upload_spec.rb +48 -0
- data/spec/models/repository_token_refresh_spec.rb +42 -0
- data/spec/models/repository_token_spec.rb +42 -0
- data/spec/models/repository_token_sync_tokens_spec.rb +42 -0
- data/spec/models/vagrant_package_upload_spec.rb +48 -0
- data/spec/models/vulnerability_scan_results_list_spec.rb +78 -0
- data/spec/models/vulnerability_scan_results_spec.rb +84 -0
- data/vendor/bundle/ruby/2.6.0/cache/ZenTest-4.12.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/addressable-2.8.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.19.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/diff-lcs-1.5.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ethon-0.15.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ffi-1.15.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/json-2.6.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rexml-3.2.5.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.11.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/sys-uname-1.2.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.19/gem_make.out +14 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{ffi-1.13.1 → ffi-1.15.5}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +43 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/mkmf.log +243 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/{json-2.3.1 → json-2.6.1}/gem.build_complete +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/gem_make.out +13 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.6.1/mkmf.log +128 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/.autotest +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/History.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/Manifest.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/README.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/articles/Article.css +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/articles/how_to_use_zentest.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/bin/multigem +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/bin/multiruby +101 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/bin/unit_diff +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/bin/zentest +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/example.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/example1.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/example2.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/lib/focus.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/lib/functional_test_matrix.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/lib/unit_diff.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/lib/zentest.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/lib/zentest_mapping.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/test/test_focus.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/test/test_unit_diff.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.1/test/test_zentest.rb +579 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ZenTest-4.12.0 → ZenTest-4.12.1}/test/test_zentest_mapping.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/CHANGELOG.md +246 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/Gemfile +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/README.md +121 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/Rakefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/addressable.gemspec +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/data/unicode.data +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/lib/addressable/idna/native.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/lib/addressable/idna/pure.rb +678 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/lib/addressable/idna.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/lib/addressable/template.rb +1031 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/lib/addressable/uri.rb +2556 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/lib/addressable/version.rb +32 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/lib/addressable.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/spec/addressable/idna_spec.rb +302 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/spec/addressable/net_http_compat_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/spec/addressable/security_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/spec/addressable/template_spec.rb +1460 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/spec/addressable/uri_spec.rb +6665 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/spec/spec_helper.rb +33 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/tasks/clobber.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/tasks/gem.rake +92 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/tasks/git.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/tasks/metrics.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/tasks/profile.rake +72 -0
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.8.0/tasks/rspec.rake +23 -0
- data/vendor/bundle/ruby/2.6.0/gems/{addressable-2.7.0 → addressable-2.8.0}/tasks/yard.rake +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/CHANGELOG.md +135 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/LICENSE.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/README.md +85 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/Makefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/ext/fsevent/extconf.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/fsevent.dll +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/fsevent.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/fsevent_sleep.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/make +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/ext/fsevent/nmake.bat +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/lib/autotest/fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.19/lib/autotest-fsevent/version.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/lib/autotest-fsevent.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/post-install.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{autotest-fsevent-0.2.17 → autotest-fsevent-0.2.19}/prebuilt/fsevent_sleep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.4 → crack-0.4.5}/lib/crack/json.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.4 → crack-0.4.5}/lib/crack/util.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.5/lib/crack/version.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.4 → crack-0.4.5}/lib/crack/xml.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{crack-0.4.4 → crack-0.4.5}/lib/crack.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/.rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/Code-of-Conduct.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/Contributing.md +119 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/History.md +400 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/License.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/Manifest.txt +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/README.rdoc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/Rakefile +121 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/bin/htmldiff +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/bin/ldiff +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/docs/COPYING.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/docs/artistic.txt +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/array.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/backports.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/block.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/callbacks.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/change.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/htmldiff.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/hunk.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/lib/diff/lcs/internals.rb +308 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/ldiff.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff/lcs/string.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/lib/diff/lcs.rb +739 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/lib/diff-lcs.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/change_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/diff_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/aX +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/bXaX +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ds1.csv +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ds2.csv +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ldiff/output.diff +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ldiff/output.diff-c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ldiff/output.diff-e +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ldiff/output.diff-f +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/fixtures/ldiff/output.diff-u +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef +4 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef-c +15 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef-e +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef-f +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef-u +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2 +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2-c +20 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2-d +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2-e +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2-f +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/ldiff/output.diff.chef2-u +16 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/new-chef +4 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/new-chef2 +17 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/old-chef +4 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/fixtures/old-chef2 +14 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/hunk_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/issues_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/lcs_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/ldiff_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/patch_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/sdiff_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/spec_helper.rb +374 -0
- data/vendor/bundle/ruby/2.6.0/gems/{diff-lcs-1.4.4 → diff-lcs-1.5.0}/spec/traverse_balanced_spec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.5.0/spec/traverse_sequences_spec.rb +137 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/.github/workflows/ruby.yml +41 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.15.0}/.gitignore +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.15.0}/.rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/CHANGELOG.md +372 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/Gemfile +43 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/Guardfile +10 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ethon-0.12.0 → ethon-0.15.0}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/README.md +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/Rakefile +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/ethon.gemspec +26 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curl.rb +90 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/classes.rb +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/codes.rb +122 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/constants.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/form_options.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/functions.rb +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/infos.rb +151 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/messages.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/options.rb +502 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/curls/settings.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/callbacks.rb +148 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/debug_info.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/features.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/form.rb +107 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/header.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/actionable.rb +157 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/custom.rb +29 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/delete.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/get.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/head.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/options.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/patch.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/post.rb +26 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/postable.rb +32 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/put.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http/putable.rb +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/http.rb +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/informations.rb +113 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/mirror.rb +36 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/operations.rb +64 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/options.rb +50 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/params.rb +29 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/queryable.rb +154 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/response_callbacks.rb +131 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy/util.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/easy.rb +315 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/ethon_error.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/global_init.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/invalid_option.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/invalid_value.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/multi_add.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/multi_fdset.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/multi_remove.rb +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/multi_timeout.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors/select.rb +13 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/errors.rb +17 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/libc.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/loggable.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/multi/operations.rb +228 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/multi/options.rb +117 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/multi/stack.rb +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/multi.rb +126 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon/version.rb +6 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/lib/ethon.rb +36 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/benchmarks.rb +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/memory_leaks.rb +114 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/perf_spec_helper.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/support/memory_test_helpers.rb +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/support/os_memory_leak_tracker.rb +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/profile/support/ruby_object_leak_tracker.rb +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/curl_spec.rb +38 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/callbacks_spec.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/debug_info_spec.rb +54 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/features_spec.rb +24 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/form_spec.rb +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/header_spec.rb +79 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/custom_spec.rb +177 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/delete_spec.rb +21 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/get_spec.rb +126 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/head_spec.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/options_spec.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/patch_spec.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/post_spec.rb +317 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http/put_spec.rb +168 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/http_spec.rb +64 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/informations_spec.rb +120 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/mirror_spec.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/operations_spec.rb +268 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/options_spec.rb +193 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/queryable_spec.rb +235 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/response_callbacks_spec.rb +152 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy/util_spec.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/easy_spec.rb +203 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/libc_spec.rb +14 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/loggable_spec.rb +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/multi/operations_spec.rb +298 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/multi/options_spec.rb +182 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/multi/stack_spec.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/ethon/multi_spec.rb +152 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/spec_helper.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/support/localhost_server.rb +95 -0
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.15.0/spec/support/server.rb +115 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/CHANGELOG.md +338 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/COPYING +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/Gemfile +14 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/LICENSE.SPECS +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/README.md +136 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/Rakefile +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/.sitearchdir.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.c +1104 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/AbstractMemory.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/ArrayType.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/ArrayType.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c +360 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Call.c +487 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/Call.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.c +333 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.h +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.c +334 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/DynamicLibrary.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.c +917 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.h +83 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c +225 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/LastError.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/LongDouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/LongDouble.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/MappedType.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/MappedType.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c +192 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.h +49 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c +348 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/MethodHandle.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Platform.c +78 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/Platform.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c +507 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c +822 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/Struct.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c +145 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/StructByValue.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c +700 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.c +129 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.h +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Type.c +379 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/Type.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.h +88 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c +303 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/compat.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/extconf.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.appveyor.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.gitattributes +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.gitignore +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/ar-lib +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/build-in-container.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/build.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/compile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/install.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis/site.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/.travis.yml +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/ChangeLog.old +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.am +150 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.in +2060 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/README.md +486 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/acinclude.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/autogen.sh +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.guess +1687 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.sub +1851 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure +22050 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.ac +415 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.host +318 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/Makefile.in +815 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/doc/libffi.texi +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/doc/version.texi +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/fficonfig.h.in +223 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +201 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/include/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.in +608 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/include/ffi.h.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/include/ffi_cfi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/include/ffi_common.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/install-sh +518 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/libffi.map.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/libtool-ldflags +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/libtool-version +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/ltmain.sh +11251 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/make_sunver.pl +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/man/Makefile.in +562 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/missing +215 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/ffi.c +1025 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/internal.h +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/sysv.S +451 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arc/arcompact.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffi.c +876 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arm/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/sysv.S +385 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/closures.c +1021 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/debug.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/dlmalloc.c +5166 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/ia64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/ia64/unix.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m32r/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffi.c +1134 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/mips/n32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/mips/o32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/moxie/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/or1k/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/pa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/pa/hpux32.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/pa/linux.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1452 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64.S +291 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +564 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/prep_cif.c +263 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/riscv/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/types.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi.c +770 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi64.c +895 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffiw64.c +318 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/x86/internal.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/x86/internal64.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv.S +1138 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/unix64.S +621 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/win64.S +241 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/stamp-h.in +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/Makefile.am +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.in +648 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/libffi.exp +660 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.bsd.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.darwin.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.gnu.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.vc.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/libffi.vc64.mk +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/rbffi.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/ext/ffi_c/rbffi_endian.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ffi.gemspec +42 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/abstract_memory.rb +44 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb +203 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/buffer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/callback.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/data_converter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/enum.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/errno.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/ffi.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/io.rb +62 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/library.rb +592 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/memorypointer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1/lib/ffi/platform/x86_64-darwin → ffi-1.15.5/lib/ffi/platform/aarch64-darwin}/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1/lib/ffi/platform/x86_64-openbsd → ffi-1.15.5/lib/ffi/platform/aarch64-openbsd}/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/arm-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/i386-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mips-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/s390-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/sparc64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/x86_64-darwin/types.conf +130 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/platform/x86_64-windows/types.conf +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/platform.rb +185 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/pointer.rb +167 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/struct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/struct_by_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/struct_layout.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/struct_layout_builder.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/tools/const_generator.rb +232 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/tools/generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/tools/generator_task.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/tools/struct_generator.rb +195 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/tools/types_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/types.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/lib/ffi/union.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/variadic.rb +69 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/rakelib/ffi_gem_helper.rb +65 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/getlogin.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/getpid.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/gettimeofday.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/hello.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/inotify.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/pty.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{ffi-1.13.1 → ffi-1.15.5}/samples/qsort.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/CHANGES.md +457 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/LICENSE +56 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/README.md +425 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/VERSION +1 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/Makefile +202 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/fbuffer/fbuffer.h +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/generator/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/Makefile +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/generator/depend +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/generator/extconf.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/generator.c +1608 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/generator.h +174 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/parser/.sitearchdir.-.json.-.ext.time +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/Makefile +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/ext/json/ext/parser/depend +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/extconf.rb +32 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.c +3338 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.h +96 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.rl +977 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/ext/json/extconf.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/json.gemspec +67 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/bigdecimal.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/add/complex.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/core.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/date.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/date_time.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/exception.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/ostruct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/range.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/add/rational.rb +27 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/regexp.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/set.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/struct.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/symbol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/add/time.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/common.rb +703 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/ext.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/generic_object.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/pure/generator.rb +479 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/pure/parser.rb +337 -0
- data/vendor/bundle/ruby/2.6.0/gems/{json-2.3.1 → json-2.6.1}/lib/json/pure.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.6.1/lib/json.rb +583 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/LICENSE.txt +22 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/NEWS.md +178 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/README.md +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/context.rdoc +143 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/child.rdoc +87 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/document.rdoc +276 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/element.rdoc +602 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/node.rdoc +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/rdoc/parent.rdoc +267 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/child_toc.rdoc +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/document_toc.rdoc +30 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/element_toc.rdoc +55 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/master_toc.rdoc +135 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/node_toc.rdoc +16 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/doc/rexml/tasks/tocs/parent_toc.rdoc +25 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/attlistdecl.rb +63 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/attribute.rb +205 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/cdata.rb +68 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/child.rb +97 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/comment.rb +80 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/doctype.rb +311 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/document.rb +451 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/attlistdecl.rb +11 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/dtd.rb +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/elementdecl.rb +18 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/entitydecl.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/dtd/notationdecl.rb +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/element.rb +2599 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/encoding.rb +51 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/entity.rb +171 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/default.rb +116 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/pretty.rb +142 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/formatters/transitive.rb +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/functions.rb +447 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/instruction.rb +79 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/light/node.rb +188 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/namespace.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/node.rb +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/output.rb +30 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parent.rb +166 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parseexception.rb +52 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/baseparser.rb +694 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/lightparser.rb +59 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/pullparser.rb +197 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/sax2parser.rb +273 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/streamparser.rb +61 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/treeparser.rb +101 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/ultralightparser.rb +57 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/parsers/xpathparser.rb +689 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/quickpath.rb +266 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/rexml.rb +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/sax2listener.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/security.rb +28 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/source.rb +298 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/streamlistener.rb +93 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/text.rb +424 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/undefinednamespaceexception.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/relaxng.rb +539 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/validation.rb +144 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/validation/validationexception.rb +10 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xmldecl.rb +130 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xmltokens.rb +85 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xpath.rb +81 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml/xpath_parser.rb +974 -0
- data/vendor/bundle/ruby/2.6.0/gems/rexml-3.2.5/lib/rexml.rb +3 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-3.9.0 → rspec-3.11.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.11.0/README.md +47 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.11.0/lib/rspec/version.rb +5 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-3.9.0 → rspec-3.11.0}/lib/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/Changelog.md +2355 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/README.md +384 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/exe/rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/autorun.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/backtrace_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/bisect/coordinator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/bisect/example_minimizer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/bisect/fork_runner.rb +138 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/bisect/server.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/bisect/shell_command.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/bisect/shell_runner.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/bisect/utilities.rb +69 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/configuration.rb +2383 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/configuration_options.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/did_you_mean.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/drb.rb +120 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/dsl.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/example.rb +666 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/example_group.rb +905 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/example_status_persister.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/filter_manager.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/flat_map.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/base_bisect_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/base_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/base_text_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/bisect_drb_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/bisect_progress_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/formatters/console_codes.rb +76 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/deprecation_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/documentation_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/formatters/exception_presenter.rb +521 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/failure_list_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/fallback_message_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/formatters/helpers.rb +118 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/html_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/html_printer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/html_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/json_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/profile_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/progress_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/protocol.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/formatters/syntax_highlighter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/formatters.rb +279 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/hooks.rb +646 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/invocations.rb +87 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/memoized_helpers.rb +580 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/metadata.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/metadata_filter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/minitest_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/mocking_adapters/flexmock.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/mocking_adapters/mocha.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/mocking_adapters/null.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/mocking_adapters/rr.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/mocking_adapters/rspec.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/notifications.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/option_parser.rb +325 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/ordering.rb +169 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/output_wrapper.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/pending.rb +157 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/profiler.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/project_initializer/.rspec +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/project_initializer/spec/spec_helper.rb +98 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/project_initializer.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/rake_task.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/reporter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/ruby_project.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/runner.rb +212 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/sandbox.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/set.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/shared_context.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/shared_example_group.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/shell_escape.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/test_unit_assertions_adapter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-core-3.9.2 → rspec-core-3.11.0}/lib/rspec/core/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core/world.rb +287 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.11.0/lib/rspec/core.rb +212 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/Changelog.md +1267 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/README.md +320 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/expectations/block_snippet_extractor.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/expectations/configuration.rb +230 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/expectations/expectation_target.rb +163 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/expectations/fail_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/expectations/failure_aggregator.rb +212 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/expectations/handler.rb +182 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/expectations/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/expectations/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/expectations/version.rb +8 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/expectations.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/aliased_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/all.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/base_matcher.rb +198 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/be.rb +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/be_between.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/be_instance_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/be_kind_of.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/be_within.rb +72 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/change.rb +450 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/compound.rb +290 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/contain_exactly.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/count_expectation.rb +169 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/cover.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/eq.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/eql.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/equal.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/exist.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/has.rb +167 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/have_attributes.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/include.rb +206 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/match.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/operators.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/output.rb +207 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/raise_error.rb +271 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/respond_to.rb +200 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/satisfy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/built_in/start_or_end_with.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/throw_symbol.rb +138 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in/yield.rb +375 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/built_in.rb +53 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/composable.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/dsl.rb +544 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/english_phrasing.rb +58 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/expecteds_for_multiple_diffs.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/fail_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/generated_descriptions.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-expectations-3.9.2 → rspec-expectations-3.11.0}/lib/rspec/matchers/matcher_delegator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers/matcher_protocol.rb +105 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.11.0/lib/rspec/matchers.rb +1041 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/.document +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/.yardopts +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/Changelog.md +1184 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/README.md +463 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/error_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/expect_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/expectation_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/message_chains.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/proxy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/any_instance/recorder.rb +295 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/stub_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance/stub_chain_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/any_instance.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/argument_list_matcher.rb +114 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/argument_matchers.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/configuration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/error_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/example_methods.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/instance_method_stasher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/marshal_extension.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/matchers/expectation_customization.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/matchers/have_received.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/matchers/receive.rb +133 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/matchers/receive_message_chain.rb +82 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/matchers/receive_messages.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/message_chain.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/message_expectation.rb +812 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/method_double.rb +288 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/method_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/minitest_integration.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/mutate_const.rb +339 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/object_reference.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/order_group.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/proxy.rb +519 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/space.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/standalone.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/syntax.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/targets.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/test_double.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/verifying_double.rb +121 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/verifying_message_expectation.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-mocks-3.9.1 → rspec-mocks-3.11.0}/lib/rspec/mocks/verifying_proxy.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks/version.rb +9 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.11.0/lib/rspec/mocks.rb +133 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/Changelog.md +350 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/LICENSE.md +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/README.md +40 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/caller_filter.rb +83 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/comparable_version.rb +46 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/differ.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/directory_maker.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/encoded_string.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/fuzzy_matcher.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/hunk_generator.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/matcher_definition.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/method_signature_verifier.rb +438 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/mutex.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/object_formatter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/recursive_const_methods.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/reentrant_mutex.rb +78 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/ruby_features.rb +191 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/source/location.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/source/node.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/source/token.rb +94 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/source.rb +85 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec/deprecation_helpers.rb +48 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec/diff_helpers.rb +31 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/spec/formatting_support.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec/in_sub_process.rb +67 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/spec/library_wide_checks.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec/shell_out.rb +105 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/spec/stderr_splitter.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec/string_matcher.rb +45 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/spec/with_isolated_directory.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/spec/with_isolated_stderr.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/spec.rb +82 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support/version.rb +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/warnings.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{rspec-support-3.9.3 → rspec-support-3.11.0}/lib/rspec/support/with_keywords_when_needed.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.11.0/lib/rspec/support.rb +154 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/CHANGES.md +230 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/Gemfile +7 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/LICENSE +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/MANIFEST.md +12 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/README.md +53 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/Rakefile +37 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/certs/djberg96_pub.pem +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/doc/uname.rdoc +127 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/examples/uname_test.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/platform.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/lib/sys/uname.rb +19 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/unix/uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys/windows/uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/{sys-uname-1.2.1 → sys-uname-1.2.2}/lib/sys-uname.rb +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/spec/sys_platform_spec.rb +75 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/spec/sys_uname_spec.rb +445 -0
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.2/sys-uname.gemspec +37 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.1.gemspec +41 -0
- data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.8.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-4.4.6.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.19.gemspec +49 -0
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-growl-0.2.16.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-rails-pure-4.1.2.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.5.gemspec +32 -0
- data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.5.0.gemspec +59 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.15.0.gemspec +32 -0
- data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.15.5.gemspec +47 -0
- data/vendor/bundle/ruby/2.6.0/specifications/hashdiff-1.0.1.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/json-2.6.1.gemspec +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/public_suffix-4.0.6.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/rake-12.0.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/rexml-3.2.5.gemspec +42 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.11.0.gemspec +43 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.11.0.gemspec +63 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.11.0.gemspec +51 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.11.0.gemspec +51 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.11.0.gemspec +39 -0
- data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.2.gemspec +42 -0
- data/vendor/bundle/ruby/2.6.0/specifications/typhoeus-1.4.0.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/vcr-3.0.3.gemspec +2 -2
- data/vendor/bundle/ruby/2.6.0/specifications/webmock-1.24.6.gemspec +2 -2
- metadata +1359 -1298
- data/docs/EntitlementTokenMetric.md +0 -9
- data/docs/MetricsownerrepopackagesusageActivePackages.md +0 -10
- data/docs/PackageUsageMetric.md +0 -11
- data/lib/cloudsmith-api/models/entitlement_token_metric.rb +0 -209
- data/lib/cloudsmith-api/models/metricsownerrepopackagesusage_active_packages.rb +0 -209
- data/lib/cloudsmith-api/models/package_usage_metric.rb +0 -243
- data/spec/models/entitlement_token_metric_spec.rb +0 -48
- data/spec/models/metricsownerrepopackagesusage_active_packages_spec.rb +0 -54
- data/spec/models/package_usage_metric_spec.rb +0 -60
- data/vendor/bundle/ruby/2.6.0/cache/ZenTest-4.12.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/addressable-2.7.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/autotest-fsevent-0.2.17.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/crack-0.4.4.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/diff-lcs-1.4.4.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ethon-0.12.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/ffi-1.13.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/json-2.3.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-3.9.0.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-core-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-expectations-3.9.2.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-mocks-3.9.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/rspec-support-3.9.3.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/cache/sys-uname-1.2.1.gem +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/autotest-fsevent-0.2.17/gem_make.out +0 -14
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/gem_make.out +0 -42
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.13.1/mkmf.log +0 -229
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/gem_make.out +0 -13
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/json-2.3.1/mkmf.log +0 -68
- data/vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/bin/multiruby +0 -91
- data/vendor/bundle/ruby/2.6.0/gems/ZenTest-4.12.0/test/test_zentest.rb +0 -581
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/CHANGELOG.md +0 -235
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/Gemfile +0 -32
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/README.md +0 -121
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/lib/addressable/idna/pure.rb +0 -676
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/lib/addressable/template.rb +0 -1045
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/lib/addressable/uri.rb +0 -2529
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/lib/addressable/version.rb +0 -32
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/spec/addressable/idna_spec.rb +0 -300
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/spec/addressable/rack_mount_compat_spec.rb +0 -106
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/spec/addressable/template_spec.rb +0 -1451
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/spec/addressable/uri_spec.rb +0 -6603
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/spec/spec_helper.rb +0 -24
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/tasks/gem.rake +0 -93
- data/vendor/bundle/ruby/2.6.0/gems/addressable-2.7.0/tasks/rspec.rake +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/CHANGELOG.md +0 -125
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/README.md +0 -85
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/ext/fsevent/extconf.rb +0 -40
- data/vendor/bundle/ruby/2.6.0/gems/autotest-fsevent-0.2.17/lib/autotest-fsevent/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/crack-0.4.4/lib/crack/version.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/Contributing.md +0 -118
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/History.md +0 -319
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/Manifest.txt +0 -45
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/Rakefile +0 -74
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/autotest/discover.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/lib/diff/lcs/internals.rb +0 -304
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/lib/diff/lcs.rb +0 -739
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/spec/spec_helper.rb +0 -375
- data/vendor/bundle/ruby/2.6.0/gems/diff-lcs-1.4.4/spec/traverse_sequences_spec.rb +0 -139
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/.travis.yml +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/CHANGELOG.md +0 -365
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Gemfile +0 -38
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Guardfile +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/README.md +0 -95
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/Rakefile +0 -39
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/ethon.gemspec +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curl.rb +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/classes.rb +0 -54
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/codes.rb +0 -122
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/constants.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/form_options.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/functions.rb +0 -66
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/infos.rb +0 -150
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/messages.rb +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/options.rb +0 -468
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/curls/settings.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/callbacks.rb +0 -147
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/debug_info.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/features.rb +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/form.rb +0 -106
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/header.rb +0 -60
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/actionable.rb +0 -156
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/custom.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/delete.rb +0 -24
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/get.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/head.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/options.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/patch.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/post.rb +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/postable.rb +0 -31
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/put.rb +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http/putable.rb +0 -24
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/http.rb +0 -67
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/informations.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/mirror.rb +0 -35
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/operations.rb +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/options.rb +0 -49
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/params.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/queryable.rb +0 -153
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/response_callbacks.rb +0 -130
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy/util.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/easy.rb +0 -315
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/ethon_error.rb +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/global_init.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/invalid_option.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/invalid_value.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_add.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_fdset.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_remove.rb +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/multi_timeout.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors/select.rb +0 -12
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/errors.rb +0 -16
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/libc.rb +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/loggable.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/operations.rb +0 -190
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/options.rb +0 -116
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi/stack.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/multi.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/lib/ethon.rb +0 -35
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/benchmarks.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/memory_leaks.rb +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/perf_spec_helper.rb +0 -36
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/memory_test_helpers.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/os_memory_leak_tracker.rb +0 -47
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/profile/support/ruby_object_leak_tracker.rb +0 -48
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/curl_spec.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/callbacks_spec.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/debug_info_spec.rb +0 -53
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/features_spec.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/form_spec.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/header_spec.rb +0 -78
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/custom_spec.rb +0 -176
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/delete_spec.rb +0 -20
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/get_spec.rb +0 -125
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/head_spec.rb +0 -79
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/options_spec.rb +0 -50
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/patch_spec.rb +0 -50
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/post_spec.rb +0 -316
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http/put_spec.rb +0 -167
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/http_spec.rb +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/informations_spec.rb +0 -97
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/mirror_spec.rb +0 -45
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/operations_spec.rb +0 -267
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/options_spec.rb +0 -192
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/queryable_spec.rb +0 -234
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/response_callbacks_spec.rb +0 -151
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy/util_spec.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/easy_spec.rb +0 -202
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/libc_spec.rb +0 -13
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/loggable_spec.rb +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/operations_spec.rb +0 -297
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/options_spec.rb +0 -68
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi/stack_spec.rb +0 -79
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/ethon/multi_spec.rb +0 -21
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/spec_helper.rb +0 -27
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/support/localhost_server.rb +0 -94
- data/vendor/bundle/ruby/2.6.0/gems/ethon-0.12.0/spec/support/server.rb +0 -114
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.appveyor.yml +0 -30
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.github/workflows/ci.yml +0 -64
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.gitignore +0 -25
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.gitmodules +0 -4
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.travis.yml +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/.yardopts +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/CHANGELOG.md +0 -222
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/Gemfile +0 -17
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/README.md +0 -124
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/Rakefile +0 -177
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/AbstractMemory.c +0 -1105
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/AbstractMemory.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ArrayType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Buffer.c +0 -365
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Buffer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Call.c +0 -493
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Call.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ClosurePool.c +0 -280
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ClosurePool.h +0 -57
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ClosurePool.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/DynamicLibrary.c +0 -339
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/DynamicLibrary.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Function.c +0 -902
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Function.h +0 -87
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Function.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/FunctionInfo.c +0 -270
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/FunctionInfo.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/LastError.c +0 -229
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/LastError.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/LongDouble.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Makefile +0 -266
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MappedType.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MemoryPointer.c +0 -197
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MemoryPointer.h +0 -53
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MemoryPointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MethodHandle.c +0 -352
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/MethodHandle.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Platform.c +0 -83
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Platform.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Pointer.c +0 -508
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Pointer.h +0 -63
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Pointer.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Struct.c +0 -825
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Struct.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructByValue.c +0 -150
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructByValue.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructLayout.c +0 -704
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/StructLayout.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Thread.c +0 -134
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Thread.h +0 -81
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Thread.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Type.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Types.c +0 -139
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Types.h +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Types.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Variadic.c +0 -298
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/Variadic.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/extconf.rb +0 -82
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ffi.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/bfin-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/m32r-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/moxie-sim.exp +0 -60
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/or1k-sim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/.travis/wine-sim.exp +0 -55
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/Makefile.am +0 -160
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/Makefile.in +0 -1796
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/README.md +0 -482
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/config.guess +0 -1466
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/config.sub +0 -1836
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/configure +0 -21988
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/configure.ac +0 -410
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/configure.host +0 -306
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/doc/Makefile.in +0 -812
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/fficonfig.h.in +0 -217
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/include/Makefile.in +0 -605
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/install-sh +0 -508
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/ltmain.sh +0 -11156
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/man/Makefile.in +0 -559
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1015
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -92
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/internal.h +0 -67
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -506
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/arm/ffi.c +0 -854
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/closures.c +0 -1004
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/mips/ffi.c +0 -1130
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -1440
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -105
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -283
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -552
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffi.c +0 -764
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffi64.c +0 -888
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -313
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/unix64.S +0 -622
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/win64.S +0 -240
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -237
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/Makefile.in +0 -645
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -640
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -2885
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -341
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/win32/stdbool.h +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ext/ffi_c/win32/stdint.h +0 -201
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/ffi.gemspec +0 -43
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/ffi.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/io.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/platform/aarch64-freebsd/types.conf +0 -128
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -128
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/platform.rb +0 -179
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/pointer.rb +0 -167
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/tools/const_generator.rb +0 -230
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/tools/struct_generator.rb +0 -194
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/variadic.rb +0 -78
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.13.1/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/.gitignore +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/.travis.yml +0 -26
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/CHANGES.md +0 -424
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/Gemfile +0 -14
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/README-json-jruby.md +0 -33
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/README.md +0 -425
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/Rakefile +0 -334
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/VERSION +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/diagrams/.keep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/Makefile +0 -202
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/Makefile +0 -267
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.c +0 -1569
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.h +0 -171
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/generator/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/Makefile +0 -267
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/extconf.rb +0 -6
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.c +0 -2137
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.h +0 -91
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.o +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.rl +0 -897
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/ext/parser/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/ext/json/extconf.rb +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/install.rb +0 -23
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/ByteListTranscoder.java +0 -166
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Generator.java +0 -466
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorMethods.java +0 -231
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorService.java +0 -42
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/GeneratorState.java +0 -490
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/OptionsReader.java +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Parser.java +0 -2362
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Parser.rl +0 -893
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/ParserService.java +0 -34
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/RuntimeInfo.java +0 -116
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/StringDecoder.java +0 -166
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/StringEncoder.java +0 -111
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/java/src/json/ext/Utils.java +0 -88
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json-java.gemspec +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json.gemspec +0 -139
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/json_pure.gemspec +0 -33
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/complex.rb +0 -29
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/add/rational.rb +0 -28
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/common.rb +0 -691
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/.keep +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/generator.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/ext/parser.so +0 -0
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/pure/generator.rb +0 -459
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/pure/parser.rb +0 -319
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/lib/json.rb +0 -412
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/references/rfc7159.txt +0 -899
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail10.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail11.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail12.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail13.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail14.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail18.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail19.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail2.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail20.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail21.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail22.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail23.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail24.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail25.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail27.json +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail28.json +0 -2
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail3.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail4.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail5.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail6.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail7.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail8.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/fail9.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/obsolete_fail1.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass1.json +0 -56
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass15.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass16.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass17.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass2.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass26.json +0 -1
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/fixtures/pass3.json +0 -6
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_addition_test.rb +0 -203
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_common_interface_test.rb +0 -126
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_encoding_test.rb +0 -107
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_ext_parser_test.rb +0 -15
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_fixtures_test.rb +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_generator_test.rb +0 -421
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_generic_object_test.rb +0 -82
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_parser_test.rb +0 -472
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/json_string_matching_test.rb +0 -38
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tests/test_helper.rb +0 -17
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/diff.sh +0 -18
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/fuzz.rb +0 -131
- data/vendor/bundle/ruby/2.6.0/gems/json-2.3.1/tools/server.rb +0 -62
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/README.md +0 -43
- data/vendor/bundle/ruby/2.6.0/gems/rspec-3.9.0/lib/rspec/version.rb +0 -5
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/Changelog.md +0 -2291
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/README.md +0 -384
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/fork_runner.rb +0 -135
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/bisect/utilities.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/configuration.rb +0 -2363
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/drb.rb +0 -113
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example.rb +0 -656
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/example_group.rb +0 -900
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/console_codes.rb +0 -68
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/exception_presenter.rb +0 -511
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters/helpers.rb +0 -110
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/formatters.rb +0 -273
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/hooks.rb +0 -641
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/invocations.rb +0 -87
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/memoized_helpers.rb +0 -554
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/option_parser.rb +0 -316
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/ordering.rb +0 -158
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/pending.rb +0 -165
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/project_initializer/spec/spec_helper.rb +0 -100
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/runner.rb +0 -204
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core/world.rb +0 -276
- data/vendor/bundle/ruby/2.6.0/gems/rspec-core-3.9.2/lib/rspec/core.rb +0 -186
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/Changelog.md +0 -1191
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/README.md +0 -320
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/configuration.rb +0 -215
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/expectation_target.rb +0 -127
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/failure_aggregator.rb +0 -194
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/handler.rb +0 -170
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/expectations/version.rb +0 -8
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/base_matcher.rb +0 -193
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be.rb +0 -288
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/be_within.rb +0 -72
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/change.rb +0 -428
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/compound.rb +0 -276
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/has.rb +0 -103
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/include.rb +0 -149
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/output.rb +0 -200
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/raise_error.rb +0 -230
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/respond_to.rb +0 -199
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/throw_symbol.rb +0 -132
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in/yield.rb +0 -441
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/built_in.rb +0 -52
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/dsl.rb +0 -540
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/english_phrasing.rb +0 -58
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers/matcher_protocol.rb +0 -99
- data/vendor/bundle/ruby/2.6.0/gems/rspec-expectations-3.9.2/lib/rspec/matchers.rb +0 -1038
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/Changelog.md +0 -1133
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/README.md +0 -463
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/any_instance/recorder.rb +0 -294
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/argument_list_matcher.rb +0 -100
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive.rb +0 -132
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/matchers/receive_message_chain.rb +0 -82
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/message_expectation.rb +0 -751
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/method_double.rb +0 -287
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/mutate_const.rb +0 -339
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/proxy.rb +0 -503
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/verifying_double.rb +0 -129
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks/version.rb +0 -9
- data/vendor/bundle/ruby/2.6.0/gems/rspec-mocks-3.9.1/lib/rspec/mocks.rb +0 -130
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/Changelog.md +0 -302
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/README.md +0 -40
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/caller_filter.rb +0 -83
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/comparable_version.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/method_signature_verifier.rb +0 -438
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/reentrant_mutex.rb +0 -61
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/ruby_features.rb +0 -190
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source/token.rb +0 -87
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/source.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/deprecation_helpers.rb +0 -64
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/in_sub_process.rb +0 -69
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/shell_out.rb +0 -89
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec/string_matcher.rb +0 -46
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/spec.rb +0 -81
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support/version.rb +0 -7
- data/vendor/bundle/ruby/2.6.0/gems/rspec-support-3.9.3/lib/rspec/support.rb +0 -149
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/CHANGES.rdoc +0 -224
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/MANIFEST.rdoc +0 -11
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/README.rdoc +0 -51
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/Rakefile +0 -37
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/doc/uname.rdoc +0 -127
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/lib/sys/uname.rb +0 -19
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/spec/sys_platform_spec.rb +0 -75
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/spec/sys_uname_spec.rb +0 -445
- data/vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.1/sys-uname.gemspec +0 -36
- data/vendor/bundle/ruby/2.6.0/specifications/ZenTest-4.12.0.gemspec +0 -40
- data/vendor/bundle/ruby/2.6.0/specifications/addressable-2.7.0.gemspec +0 -39
- data/vendor/bundle/ruby/2.6.0/specifications/autotest-fsevent-0.2.17.gemspec +0 -49
- data/vendor/bundle/ruby/2.6.0/specifications/crack-0.4.4.gemspec +0 -20
- data/vendor/bundle/ruby/2.6.0/specifications/diff-lcs-1.4.4.gemspec +0 -59
- data/vendor/bundle/ruby/2.6.0/specifications/ethon-0.12.0.gemspec +0 -32
- data/vendor/bundle/ruby/2.6.0/specifications/ffi-1.13.1.gemspec +0 -50
- data/vendor/bundle/ruby/2.6.0/specifications/json-2.3.1.gemspec +0 -0
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-3.9.0.gemspec +0 -43
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-core-3.9.2.gemspec +0 -63
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-expectations-3.9.2.gemspec +0 -51
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-mocks-3.9.1.gemspec +0 -51
- data/vendor/bundle/ruby/2.6.0/specifications/rspec-support-3.9.3.gemspec +0 -39
- data/vendor/bundle/ruby/2.6.0/specifications/sys-uname-1.2.1.gemspec +0 -39
@@ -0,0 +1,2885 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright 1993 Bill Triggs <Bill.Triggs@inrialpes.fr>
|
3
|
+
* Copyright 1995-2017 Bruno Haible <bruno@clisp.org>
|
4
|
+
*
|
5
|
+
* This program is free software: you can redistribute it and/or modify
|
6
|
+
* it under the terms of the GNU General Public License as published by
|
7
|
+
* the Free Software Foundation; either version 3 of the License, or
|
8
|
+
* (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This program is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
13
|
+
* GNU General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU General Public License
|
16
|
+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
17
|
+
*/
|
18
|
+
|
19
|
+
/* { dg-do run { xfail gccbug } } */
|
20
|
+
|
21
|
+
#include <stdio.h>
|
22
|
+
#include <stdlib.h>
|
23
|
+
#include <string.h>
|
24
|
+
#include <ffi.h>
|
25
|
+
#include "alignof.h"
|
26
|
+
#include <stdarg.h>
|
27
|
+
|
28
|
+
/* libffi testsuite local changes -------------------------------- */
|
29
|
+
#ifdef DGTEST
|
30
|
+
/* Redefine exit(1) as a test failure */
|
31
|
+
#define exit(V) (void)((V) ? (abort(), 1) : exit(0))
|
32
|
+
int count = 0;
|
33
|
+
char rbuf1[2048];
|
34
|
+
char rbuf2[2048];
|
35
|
+
int _fprintf(FILE *stream, const char *format, ...)
|
36
|
+
{
|
37
|
+
va_list args;
|
38
|
+
va_start(args, format);
|
39
|
+
|
40
|
+
switch (count++)
|
41
|
+
{
|
42
|
+
case 0:
|
43
|
+
case 1:
|
44
|
+
vsprintf(&rbuf1[strlen(rbuf1)], format, args);
|
45
|
+
break;
|
46
|
+
case 2:
|
47
|
+
printf("%s", rbuf1);
|
48
|
+
vsprintf(rbuf2, format, args);
|
49
|
+
break;
|
50
|
+
case 3:
|
51
|
+
vsprintf(&rbuf2[strlen(rbuf2)], format, args);
|
52
|
+
printf("%s", rbuf2);
|
53
|
+
if (strcmp (rbuf1, rbuf2)) abort();
|
54
|
+
break;
|
55
|
+
}
|
56
|
+
|
57
|
+
va_end(args);
|
58
|
+
|
59
|
+
return 0;
|
60
|
+
}
|
61
|
+
#define fprintf _fprintf
|
62
|
+
#endif
|
63
|
+
/* --------------------------------------------------------------- */
|
64
|
+
|
65
|
+
#include "testcases.c"
|
66
|
+
|
67
|
+
#ifndef ABI_NUM
|
68
|
+
#define ABI_NUM FFI_DEFAULT_ABI
|
69
|
+
#endif
|
70
|
+
|
71
|
+
/* Definitions that ought to be part of libffi. */
|
72
|
+
static ffi_type ffi_type_char;
|
73
|
+
#define ffi_type_slonglong ffi_type_sint64
|
74
|
+
#define ffi_type_ulonglong ffi_type_uint64
|
75
|
+
|
76
|
+
/* libffi does not support arrays inside structs. */
|
77
|
+
#define SKIP_EXTRA_STRUCTS
|
78
|
+
|
79
|
+
#define FFI_PREP_CIF(cif,argtypes,rettype) \
|
80
|
+
if (ffi_prep_cif(&(cif),ABI_NUM,sizeof(argtypes)/sizeof(argtypes[0]),&rettype,argtypes) != FFI_OK) abort()
|
81
|
+
#define FFI_PREP_CIF_NOARGS(cif,rettype) \
|
82
|
+
if (ffi_prep_cif(&(cif),ABI_NUM,0,&rettype,NULL) != FFI_OK) abort()
|
83
|
+
|
84
|
+
#if defined(__sparc__) && defined(__sun) && defined(__SUNPRO_C) /* SUNWspro cc */
|
85
|
+
/* SunPRO cc miscompiles the simulator function for X_BcdB: d.i[1] is
|
86
|
+
* temporarily stored in %l2 and put onto the stack from %l2, but in between
|
87
|
+
* the copy of X has used %l2 as a counter without saving and restoring its
|
88
|
+
* value.
|
89
|
+
*/
|
90
|
+
#define SKIP_X
|
91
|
+
#endif
|
92
|
+
#if defined(__mipsn32__) && !defined(__GNUC__)
|
93
|
+
/* The X test crashes for an unknown reason. */
|
94
|
+
#define SKIP_X
|
95
|
+
#endif
|
96
|
+
|
97
|
+
|
98
|
+
/* These functions simulate the behaviour of the functions defined in testcases.c. */
|
99
|
+
|
100
|
+
/* void tests */
|
101
|
+
void v_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
102
|
+
{
|
103
|
+
if (data != (void*)&v_v) { fprintf(out,"wrong data for v_v\n"); exit(1); }
|
104
|
+
fprintf(out,"void f(void):\n");
|
105
|
+
fflush(out);
|
106
|
+
}
|
107
|
+
|
108
|
+
/* int tests */
|
109
|
+
void i_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
110
|
+
{
|
111
|
+
if (data != (void*)&i_v) { fprintf(out,"wrong data for i_v\n"); exit(1); }
|
112
|
+
{int r=99;
|
113
|
+
fprintf(out,"int f(void):");
|
114
|
+
fflush(out);
|
115
|
+
*(ffi_arg*)retp = r;
|
116
|
+
}}
|
117
|
+
void i_i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
118
|
+
{
|
119
|
+
if (data != (void*)&i_i) { fprintf(out,"wrong data for i_i\n"); exit(1); }
|
120
|
+
int a = *(int*)(*args++);
|
121
|
+
int r=a+1;
|
122
|
+
fprintf(out,"int f(int):(%d)",a);
|
123
|
+
fflush(out);
|
124
|
+
*(ffi_arg*)retp = r;
|
125
|
+
}
|
126
|
+
void i_i2_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
127
|
+
{
|
128
|
+
if (data != (void*)&i_i2) { fprintf(out,"wrong data for i_i2\n"); exit(1); }
|
129
|
+
{int a = *(int*)(*args++);
|
130
|
+
int b = *(int*)(*args++);
|
131
|
+
int r=a+b;
|
132
|
+
fprintf(out,"int f(2*int):(%d,%d)",a,b);
|
133
|
+
fflush(out);
|
134
|
+
*(ffi_arg*)retp = r;
|
135
|
+
}}
|
136
|
+
void i_i4_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
137
|
+
{
|
138
|
+
if (data != (void*)&i_i4) { fprintf(out,"wrong data for i_i4\n"); exit(1); }
|
139
|
+
{int a = *(int*)(*args++);
|
140
|
+
int b = *(int*)(*args++);
|
141
|
+
int c = *(int*)(*args++);
|
142
|
+
int d = *(int*)(*args++);
|
143
|
+
int r=a+b+c+d;
|
144
|
+
fprintf(out,"int f(4*int):(%d,%d,%d,%d)",a,b,c,d);
|
145
|
+
fflush(out);
|
146
|
+
*(ffi_arg*)retp = r;
|
147
|
+
}}
|
148
|
+
void i_i8_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
149
|
+
{
|
150
|
+
if (data != (void*)&i_i8) { fprintf(out,"wrong data for i_i8\n"); exit(1); }
|
151
|
+
{int a = *(int*)(*args++);
|
152
|
+
int b = *(int*)(*args++);
|
153
|
+
int c = *(int*)(*args++);
|
154
|
+
int d = *(int*)(*args++);
|
155
|
+
int e = *(int*)(*args++);
|
156
|
+
int f = *(int*)(*args++);
|
157
|
+
int g = *(int*)(*args++);
|
158
|
+
int h = *(int*)(*args++);
|
159
|
+
int r=a+b+c+d+e+f+g+h;
|
160
|
+
fprintf(out,"int f(8*int):(%d,%d,%d,%d,%d,%d,%d,%d)",a,b,c,d,e,f,g,h);
|
161
|
+
fflush(out);
|
162
|
+
*(ffi_arg*)retp = r;
|
163
|
+
}}
|
164
|
+
void i_i16_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
165
|
+
{
|
166
|
+
if (data != (void*)&i_i16) { fprintf(out,"wrong data for i_i16\n"); exit(1); }
|
167
|
+
{int a = *(int*)(*args++);
|
168
|
+
int b = *(int*)(*args++);
|
169
|
+
int c = *(int*)(*args++);
|
170
|
+
int d = *(int*)(*args++);
|
171
|
+
int e = *(int*)(*args++);
|
172
|
+
int f = *(int*)(*args++);
|
173
|
+
int g = *(int*)(*args++);
|
174
|
+
int h = *(int*)(*args++);
|
175
|
+
int i = *(int*)(*args++);
|
176
|
+
int j = *(int*)(*args++);
|
177
|
+
int k = *(int*)(*args++);
|
178
|
+
int l = *(int*)(*args++);
|
179
|
+
int m = *(int*)(*args++);
|
180
|
+
int n = *(int*)(*args++);
|
181
|
+
int o = *(int*)(*args++);
|
182
|
+
int p = *(int*)(*args++);
|
183
|
+
int r=a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p;
|
184
|
+
fprintf(out,"int f(16*int):(%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d)",
|
185
|
+
a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p);
|
186
|
+
fflush(out);
|
187
|
+
*(ffi_arg*)retp = r;
|
188
|
+
}}
|
189
|
+
|
190
|
+
/* float tests */
|
191
|
+
void f_f_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
192
|
+
{
|
193
|
+
if (data != (void*)&f_f) { fprintf(out,"wrong data for f_f\n"); exit(1); }
|
194
|
+
{float a = *(float*)(*args++);
|
195
|
+
float r=a+1.0;
|
196
|
+
fprintf(out,"float f(float):(%g)",a);
|
197
|
+
fflush(out);
|
198
|
+
*(float*)retp = r;
|
199
|
+
}}
|
200
|
+
void f_f2_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
201
|
+
{
|
202
|
+
if (data != (void*)&f_f2) { fprintf(out,"wrong data for f_f2\n"); exit(1); }
|
203
|
+
{float a = *(float*)(*args++);
|
204
|
+
float b = *(float*)(*args++);
|
205
|
+
float r=a+b;
|
206
|
+
fprintf(out,"float f(2*float):(%g,%g)",a,b);
|
207
|
+
fflush(out);
|
208
|
+
*(float*)retp = r;
|
209
|
+
}}
|
210
|
+
void f_f4_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
211
|
+
{
|
212
|
+
if (data != (void*)&f_f4) { fprintf(out,"wrong data for f_f4\n"); exit(1); }
|
213
|
+
{float a = *(float*)(*args++);
|
214
|
+
float b = *(float*)(*args++);
|
215
|
+
float c = *(float*)(*args++);
|
216
|
+
float d = *(float*)(*args++);
|
217
|
+
float r=a+b+c+d;
|
218
|
+
fprintf(out,"float f(4*float):(%g,%g,%g,%g)",a,b,c,d);
|
219
|
+
fflush(out);
|
220
|
+
*(float*)retp = r;
|
221
|
+
}}
|
222
|
+
void f_f8_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
223
|
+
{
|
224
|
+
if (data != (void*)&f_f8) { fprintf(out,"wrong data for f_f8\n"); exit(1); }
|
225
|
+
{float a = *(float*)(*args++);
|
226
|
+
float b = *(float*)(*args++);
|
227
|
+
float c = *(float*)(*args++);
|
228
|
+
float d = *(float*)(*args++);
|
229
|
+
float e = *(float*)(*args++);
|
230
|
+
float f = *(float*)(*args++);
|
231
|
+
float g = *(float*)(*args++);
|
232
|
+
float h = *(float*)(*args++);
|
233
|
+
float r=a+b+c+d+e+f+g+h;
|
234
|
+
fprintf(out,"float f(8*float):(%g,%g,%g,%g,%g,%g,%g,%g)",a,b,c,d,e,f,g,h);
|
235
|
+
fflush(out);
|
236
|
+
*(float*)retp = r;
|
237
|
+
}}
|
238
|
+
void f_f16_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
239
|
+
{
|
240
|
+
if (data != (void*)&f_f16) { fprintf(out,"wrong data for f_f16\n"); exit(1); }
|
241
|
+
{float a = *(float*)(*args++);
|
242
|
+
float b = *(float*)(*args++);
|
243
|
+
float c = *(float*)(*args++);
|
244
|
+
float d = *(float*)(*args++);
|
245
|
+
float e = *(float*)(*args++);
|
246
|
+
float f = *(float*)(*args++);
|
247
|
+
float g = *(float*)(*args++);
|
248
|
+
float h = *(float*)(*args++);
|
249
|
+
float i = *(float*)(*args++);
|
250
|
+
float j = *(float*)(*args++);
|
251
|
+
float k = *(float*)(*args++);
|
252
|
+
float l = *(float*)(*args++);
|
253
|
+
float m = *(float*)(*args++);
|
254
|
+
float n = *(float*)(*args++);
|
255
|
+
float o = *(float*)(*args++);
|
256
|
+
float p = *(float*)(*args++);
|
257
|
+
float r=a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p;
|
258
|
+
fprintf(out,"float f(16*float):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g)",a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p);
|
259
|
+
fflush(out);
|
260
|
+
*(float*)retp = r;
|
261
|
+
}}
|
262
|
+
void f_f24_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
263
|
+
{
|
264
|
+
if (data != (void*)&f_f24) { fprintf(out,"wrong data for f_f24\n"); exit(1); }
|
265
|
+
{float a = *(float*)(*args++);
|
266
|
+
float b = *(float*)(*args++);
|
267
|
+
float c = *(float*)(*args++);
|
268
|
+
float d = *(float*)(*args++);
|
269
|
+
float e = *(float*)(*args++);
|
270
|
+
float f = *(float*)(*args++);
|
271
|
+
float g = *(float*)(*args++);
|
272
|
+
float h = *(float*)(*args++);
|
273
|
+
float i = *(float*)(*args++);
|
274
|
+
float j = *(float*)(*args++);
|
275
|
+
float k = *(float*)(*args++);
|
276
|
+
float l = *(float*)(*args++);
|
277
|
+
float m = *(float*)(*args++);
|
278
|
+
float n = *(float*)(*args++);
|
279
|
+
float o = *(float*)(*args++);
|
280
|
+
float p = *(float*)(*args++);
|
281
|
+
float q = *(float*)(*args++);
|
282
|
+
float s = *(float*)(*args++);
|
283
|
+
float t = *(float*)(*args++);
|
284
|
+
float u = *(float*)(*args++);
|
285
|
+
float v = *(float*)(*args++);
|
286
|
+
float w = *(float*)(*args++);
|
287
|
+
float x = *(float*)(*args++);
|
288
|
+
float y = *(float*)(*args++);
|
289
|
+
float r=a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+s+t+u+v+w+x+y;
|
290
|
+
fprintf(out,"float f(24*float):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g)",a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,s,t,u,v,w,x,y);
|
291
|
+
fflush(out);
|
292
|
+
*(float*)retp = r;
|
293
|
+
}}
|
294
|
+
|
295
|
+
/* double tests */
|
296
|
+
void d_d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
297
|
+
{
|
298
|
+
if (data != (void*)&d_d) { fprintf(out,"wrong data for d_d\n"); exit(1); }
|
299
|
+
{double a = *(double*)(*args++);
|
300
|
+
double r=a+1.0;
|
301
|
+
fprintf(out,"double f(double):(%g)",a);
|
302
|
+
fflush(out);
|
303
|
+
*(double*)retp = r;
|
304
|
+
}}
|
305
|
+
void d_d2_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
306
|
+
{
|
307
|
+
if (data != (void*)&d_d2) { fprintf(out,"wrong data for d_d2\n"); exit(1); }
|
308
|
+
{double a = *(double*)(*args++);
|
309
|
+
double b = *(double*)(*args++);
|
310
|
+
double r=a+b;
|
311
|
+
fprintf(out,"double f(2*double):(%g,%g)",a,b);
|
312
|
+
fflush(out);
|
313
|
+
*(double*)retp = r;
|
314
|
+
}}
|
315
|
+
void d_d4_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
316
|
+
{
|
317
|
+
if (data != (void*)&d_d4) { fprintf(out,"wrong data for d_d4\n"); exit(1); }
|
318
|
+
{double a = *(double*)(*args++);
|
319
|
+
double b = *(double*)(*args++);
|
320
|
+
double c = *(double*)(*args++);
|
321
|
+
double d = *(double*)(*args++);
|
322
|
+
double r=a+b+c+d;
|
323
|
+
fprintf(out,"double f(4*double):(%g,%g,%g,%g)",a,b,c,d);
|
324
|
+
fflush(out);
|
325
|
+
*(double*)retp = r;
|
326
|
+
}}
|
327
|
+
void d_d8_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
328
|
+
{
|
329
|
+
if (data != (void*)&d_d8) { fprintf(out,"wrong data for d_d8\n"); exit(1); }
|
330
|
+
{double a = *(double*)(*args++);
|
331
|
+
double b = *(double*)(*args++);
|
332
|
+
double c = *(double*)(*args++);
|
333
|
+
double d = *(double*)(*args++);
|
334
|
+
double e = *(double*)(*args++);
|
335
|
+
double f = *(double*)(*args++);
|
336
|
+
double g = *(double*)(*args++);
|
337
|
+
double h = *(double*)(*args++);
|
338
|
+
double r=a+b+c+d+e+f+g+h;
|
339
|
+
fprintf(out,"double f(8*double):(%g,%g,%g,%g,%g,%g,%g,%g)",a,b,c,d,e,f,g,h);
|
340
|
+
fflush(out);
|
341
|
+
*(double*)retp = r;
|
342
|
+
}}
|
343
|
+
void d_d16_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
344
|
+
{
|
345
|
+
if (data != (void*)&d_d16) { fprintf(out,"wrong data for d_d16\n"); exit(1); }
|
346
|
+
{double a = *(double*)(*args++);
|
347
|
+
double b = *(double*)(*args++);
|
348
|
+
double c = *(double*)(*args++);
|
349
|
+
double d = *(double*)(*args++);
|
350
|
+
double e = *(double*)(*args++);
|
351
|
+
double f = *(double*)(*args++);
|
352
|
+
double g = *(double*)(*args++);
|
353
|
+
double h = *(double*)(*args++);
|
354
|
+
double i = *(double*)(*args++);
|
355
|
+
double j = *(double*)(*args++);
|
356
|
+
double k = *(double*)(*args++);
|
357
|
+
double l = *(double*)(*args++);
|
358
|
+
double m = *(double*)(*args++);
|
359
|
+
double n = *(double*)(*args++);
|
360
|
+
double o = *(double*)(*args++);
|
361
|
+
double p = *(double*)(*args++);
|
362
|
+
double r=a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p;
|
363
|
+
fprintf(out,"double f(16*double):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g)",a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p);
|
364
|
+
fflush(out);
|
365
|
+
*(double*)retp = r;
|
366
|
+
}}
|
367
|
+
|
368
|
+
/* pointer tests */
|
369
|
+
void vp_vpdpcpsp_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
370
|
+
{
|
371
|
+
if (data != (void*)&vp_vpdpcpsp) { fprintf(out,"wrong data for vp_vpdpcpsp\n"); exit(1); }
|
372
|
+
{void* a = *(void* *)(*args++);
|
373
|
+
double* b = *(double* *)(*args++);
|
374
|
+
char* c = *(char* *)(*args++);
|
375
|
+
Int* d = *(Int* *)(*args++);
|
376
|
+
void* ret = (char*)b + 1;
|
377
|
+
fprintf(out,"void* f(void*,double*,char*,Int*):(0x%p,0x%p,0x%p,0x%p)",a,b,c,d);
|
378
|
+
fflush(out);
|
379
|
+
*(void* *)retp = ret;
|
380
|
+
}}
|
381
|
+
|
382
|
+
/* mixed number tests */
|
383
|
+
void uc_ucsil_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
384
|
+
{
|
385
|
+
if (data != (void*)&uc_ucsil) { fprintf(out,"wrong data for uc_ucsil\n"); exit(1); }
|
386
|
+
{uchar a = *(unsigned char *)(*args++);
|
387
|
+
ushort b = *(unsigned short *)(*args++);
|
388
|
+
uint c = *(unsigned int *)(*args++);
|
389
|
+
ulong d = *(unsigned long *)(*args++);
|
390
|
+
uchar r = (uchar)-1;
|
391
|
+
fprintf(out,"uchar f(uchar,ushort,uint,ulong):(%u,%u,%u,%lu)",a,b,c,d);
|
392
|
+
fflush(out);
|
393
|
+
*(ffi_arg *)retp = r;
|
394
|
+
}}
|
395
|
+
void d_iidd_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
396
|
+
{
|
397
|
+
if (data != (void*)&d_iidd) { fprintf(out,"wrong data for d_iidd\n"); exit(1); }
|
398
|
+
{int a = *(int*)(*args++);
|
399
|
+
int b = *(int*)(*args++);
|
400
|
+
double c = *(double*)(*args++);
|
401
|
+
double d = *(double*)(*args++);
|
402
|
+
double r=a+b+c+d;
|
403
|
+
fprintf(out,"double f(int,int,double,double):(%d,%d,%g,%g)",a,b,c,d);
|
404
|
+
fflush(out);
|
405
|
+
*(double*)retp = r;
|
406
|
+
}}
|
407
|
+
void d_iiidi_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
408
|
+
{
|
409
|
+
if (data != (void*)&d_iiidi) { fprintf(out,"wrong data for d_iiidi\n"); exit(1); }
|
410
|
+
{int a = *(int*)(*args++);
|
411
|
+
int b = *(int*)(*args++);
|
412
|
+
int c = *(int*)(*args++);
|
413
|
+
double d = *(double*)(*args++);
|
414
|
+
int e = *(int*)(*args++);
|
415
|
+
double r=a+b+c+d+e;
|
416
|
+
fprintf(out,"double f(int,int,int,double,int):(%d,%d,%d,%g,%d)",a,b,c,d,e);
|
417
|
+
fflush(out);
|
418
|
+
*(double*)retp = r;
|
419
|
+
}}
|
420
|
+
void d_idid_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
421
|
+
{
|
422
|
+
if (data != (void*)&d_idid) { fprintf(out,"wrong data for d_idid\n"); exit(1); }
|
423
|
+
{int a = *(int*)(*args++);
|
424
|
+
double b = *(double*)(*args++);
|
425
|
+
int c = *(int*)(*args++);
|
426
|
+
double d = *(double*)(*args++);
|
427
|
+
double r=a+b+c+d;
|
428
|
+
fprintf(out,"double f(int,double,int,double):(%d,%g,%d,%g)",a,b,c,d);
|
429
|
+
fflush(out);
|
430
|
+
*(double*)retp = r;
|
431
|
+
}}
|
432
|
+
void d_fdi_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
433
|
+
{
|
434
|
+
if (data != (void*)&d_fdi) { fprintf(out,"wrong data for d_fdi\n"); exit(1); }
|
435
|
+
{float a = *(float*)(*args++);
|
436
|
+
double b = *(double*)(*args++);
|
437
|
+
int c = *(int*)(*args++);
|
438
|
+
double r=a+b+c;
|
439
|
+
fprintf(out,"double f(float,double,int):(%g,%g,%d)",a,b,c);
|
440
|
+
fflush(out);
|
441
|
+
*(double*)retp = r;
|
442
|
+
}}
|
443
|
+
void us_cdcd_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
444
|
+
{
|
445
|
+
if (data != (void*)&us_cdcd) { fprintf(out,"wrong data for us_cdcd\n"); exit(1); }
|
446
|
+
{char a = *(char*)(*args++);
|
447
|
+
double b = *(double*)(*args++);
|
448
|
+
char c = *(char*)(*args++);
|
449
|
+
double d = *(double*)(*args++);
|
450
|
+
ushort r = (ushort)(a + b + c + d);
|
451
|
+
fprintf(out,"ushort f(char,double,char,double):('%c',%g,'%c',%g)",a,b,c,d);
|
452
|
+
fflush(out);
|
453
|
+
*(ffi_arg *)retp = r;
|
454
|
+
}}
|
455
|
+
void ll_iiilli_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
456
|
+
{
|
457
|
+
if (data != (void*)&ll_iiilli) { fprintf(out,"wrong data for ll_iiilli\n"); exit(1); }
|
458
|
+
{int a = *(int*)(*args++);
|
459
|
+
int b = *(int*)(*args++);
|
460
|
+
int c = *(int*)(*args++);
|
461
|
+
long long d = *(long long *)(*args++);
|
462
|
+
int e = *(int*)(*args++);
|
463
|
+
long long r = (long long)(int)a + (long long)(int)b + (long long)(int)c + d + (long long)e;
|
464
|
+
fprintf(out,"long long f(int,int,int,long long,int):(%d,%d,%d,0x%lx%08lx,%d)",a,b,c,(long)(d>>32),(long)(d&0xffffffff),e);
|
465
|
+
fflush(out);
|
466
|
+
*(long long *)retp = r;
|
467
|
+
}}
|
468
|
+
void ll_flli_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
469
|
+
{
|
470
|
+
if (data != (void*)&ll_flli) { fprintf(out,"wrong data for ll_flli\n"); exit(1); }
|
471
|
+
{float a = *(float*)(*args++);
|
472
|
+
long long b = *(long long *)(*args++);
|
473
|
+
int c = *(int*)(*args++);
|
474
|
+
long long r = (long long)(int)a + b + (long long)c;
|
475
|
+
fprintf(out,"long long f(float,long long,int):(%g,0x%lx%08lx,0x%lx)",a,(long)(b>>32),(long)(b&0xffffffff),(long)c);
|
476
|
+
fflush(out);
|
477
|
+
*(long long *)retp = r;
|
478
|
+
}}
|
479
|
+
void f_fi_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
480
|
+
{
|
481
|
+
if (data != (void*)&f_fi) { fprintf(out,"wrong data for f_fi\n"); exit(1); }
|
482
|
+
{float a = *(float*)(*args++);
|
483
|
+
int z = *(int*)(*args++);
|
484
|
+
float r=a+z;
|
485
|
+
fprintf(out,"float f(float,int):(%g,%d)",a,z);
|
486
|
+
fflush(out);
|
487
|
+
*(float*)retp = r;
|
488
|
+
}}
|
489
|
+
void f_f2i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
490
|
+
{
|
491
|
+
if (data != (void*)&f_f2i) { fprintf(out,"wrong data for f_f2i\n"); exit(1); }
|
492
|
+
{float a = *(float*)(*args++);
|
493
|
+
float b = *(float*)(*args++);
|
494
|
+
int z = *(int*)(*args++);
|
495
|
+
float r=a+b+z;
|
496
|
+
fprintf(out,"float f(2*float,int):(%g,%g,%d)",a,b,z);
|
497
|
+
fflush(out);
|
498
|
+
*(float*)retp = r;
|
499
|
+
}}
|
500
|
+
void f_f3i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
501
|
+
{
|
502
|
+
if (data != (void*)&f_f3i) { fprintf(out,"wrong data for f_f3i\n"); exit(1); }
|
503
|
+
{float a = *(float*)(*args++);
|
504
|
+
float b = *(float*)(*args++);
|
505
|
+
float c = *(float*)(*args++);
|
506
|
+
int z = *(int*)(*args++);
|
507
|
+
float r=a+b+c+z;
|
508
|
+
fprintf(out,"float f(3*float,int):(%g,%g,%g,%d)",a,b,c,z);
|
509
|
+
fflush(out);
|
510
|
+
*(float*)retp = r;
|
511
|
+
}}
|
512
|
+
void f_f4i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
513
|
+
{
|
514
|
+
if (data != (void*)&f_f4i) { fprintf(out,"wrong data for f_f4i\n"); exit(1); }
|
515
|
+
{float a = *(float*)(*args++);
|
516
|
+
float b = *(float*)(*args++);
|
517
|
+
float c = *(float*)(*args++);
|
518
|
+
float d = *(float*)(*args++);
|
519
|
+
int z = *(int*)(*args++);
|
520
|
+
float r=a+b+c+d+z;
|
521
|
+
fprintf(out,"float f(4*float,int):(%g,%g,%g,%g,%d)",a,b,c,d,z);
|
522
|
+
fflush(out);
|
523
|
+
*(float*)retp = r;
|
524
|
+
}}
|
525
|
+
void f_f7i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
526
|
+
{
|
527
|
+
if (data != (void*)&f_f7i) { fprintf(out,"wrong data for f_f7i\n"); exit(1); }
|
528
|
+
{float a = *(float*)(*args++);
|
529
|
+
float b = *(float*)(*args++);
|
530
|
+
float c = *(float*)(*args++);
|
531
|
+
float d = *(float*)(*args++);
|
532
|
+
float e = *(float*)(*args++);
|
533
|
+
float f = *(float*)(*args++);
|
534
|
+
float g = *(float*)(*args++);
|
535
|
+
int z = *(int*)(*args++);
|
536
|
+
float r=a+b+c+d+e+f+g+z;
|
537
|
+
fprintf(out,"float f(7*float,int):(%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,z);
|
538
|
+
fflush(out);
|
539
|
+
*(float*)retp = r;
|
540
|
+
}}
|
541
|
+
void f_f8i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
542
|
+
{
|
543
|
+
if (data != (void*)&f_f8i) { fprintf(out,"wrong data for f_f8i\n"); exit(1); }
|
544
|
+
{float a = *(float*)(*args++);
|
545
|
+
float b = *(float*)(*args++);
|
546
|
+
float c = *(float*)(*args++);
|
547
|
+
float d = *(float*)(*args++);
|
548
|
+
float e = *(float*)(*args++);
|
549
|
+
float f = *(float*)(*args++);
|
550
|
+
float g = *(float*)(*args++);
|
551
|
+
float h = *(float*)(*args++);
|
552
|
+
int z = *(int*)(*args++);
|
553
|
+
float r=a+b+c+d+e+f+g+h+z;
|
554
|
+
fprintf(out,"float f(8*float,int):(%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,z);
|
555
|
+
fflush(out);
|
556
|
+
*(float*)retp = r;
|
557
|
+
}}
|
558
|
+
void f_f12i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
559
|
+
{
|
560
|
+
if (data != (void*)&f_f12i) { fprintf(out,"wrong data for f_f12i\n"); exit(1); }
|
561
|
+
{float a = *(float*)(*args++);
|
562
|
+
float b = *(float*)(*args++);
|
563
|
+
float c = *(float*)(*args++);
|
564
|
+
float d = *(float*)(*args++);
|
565
|
+
float e = *(float*)(*args++);
|
566
|
+
float f = *(float*)(*args++);
|
567
|
+
float g = *(float*)(*args++);
|
568
|
+
float h = *(float*)(*args++);
|
569
|
+
float i = *(float*)(*args++);
|
570
|
+
float j = *(float*)(*args++);
|
571
|
+
float k = *(float*)(*args++);
|
572
|
+
float l = *(float*)(*args++);
|
573
|
+
int z = *(int*)(*args++);
|
574
|
+
float r=a+b+c+d+e+f+g+h+i+j+k+l+z;
|
575
|
+
fprintf(out,"float f(12*float,int):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,i,j,k,l,z);
|
576
|
+
fflush(out);
|
577
|
+
*(float*)retp = r;
|
578
|
+
}}
|
579
|
+
void f_f13i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
580
|
+
{
|
581
|
+
if (data != (void*)&f_f13i) { fprintf(out,"wrong data for f_f13i\n"); exit(1); }
|
582
|
+
{float a = *(float*)(*args++);
|
583
|
+
float b = *(float*)(*args++);
|
584
|
+
float c = *(float*)(*args++);
|
585
|
+
float d = *(float*)(*args++);
|
586
|
+
float e = *(float*)(*args++);
|
587
|
+
float f = *(float*)(*args++);
|
588
|
+
float g = *(float*)(*args++);
|
589
|
+
float h = *(float*)(*args++);
|
590
|
+
float i = *(float*)(*args++);
|
591
|
+
float j = *(float*)(*args++);
|
592
|
+
float k = *(float*)(*args++);
|
593
|
+
float l = *(float*)(*args++);
|
594
|
+
float m = *(float*)(*args++);
|
595
|
+
int z = *(int*)(*args++);
|
596
|
+
float r=a+b+c+d+e+f+g+h+i+j+k+l+m+z;
|
597
|
+
fprintf(out,"float f(13*float,int):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,i,j,k,l,m,z);
|
598
|
+
fflush(out);
|
599
|
+
*(float*)retp = r;
|
600
|
+
}}
|
601
|
+
void d_di_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
602
|
+
{
|
603
|
+
if (data != (void*)&d_di) { fprintf(out,"wrong data for d_di\n"); exit(1); }
|
604
|
+
{double a = *(double*)(*args++);
|
605
|
+
int z = *(int*)(*args++);
|
606
|
+
double r=a+z;
|
607
|
+
fprintf(out,"double f(double,int):(%g,%d)",a,z);
|
608
|
+
fflush(out);
|
609
|
+
*(double*)retp = r;
|
610
|
+
}}
|
611
|
+
void d_d2i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
612
|
+
{
|
613
|
+
if (data != (void*)&d_d2i) { fprintf(out,"wrong data for d_d2i\n"); exit(1); }
|
614
|
+
{double a = *(double*)(*args++);
|
615
|
+
double b = *(double*)(*args++);
|
616
|
+
int z = *(int*)(*args++);
|
617
|
+
double r=a+b+z;
|
618
|
+
fprintf(out,"double f(2*double,int):(%g,%g,%d)",a,b,z);
|
619
|
+
fflush(out);
|
620
|
+
*(double*)retp = r;
|
621
|
+
}}
|
622
|
+
void d_d3i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
623
|
+
{
|
624
|
+
if (data != (void*)&d_d3i) { fprintf(out,"wrong data for d_d3i\n"); exit(1); }
|
625
|
+
{double a = *(double*)(*args++);
|
626
|
+
double b = *(double*)(*args++);
|
627
|
+
double c = *(double*)(*args++);
|
628
|
+
int z = *(int*)(*args++);
|
629
|
+
double r=a+b+c+z;
|
630
|
+
fprintf(out,"double f(3*double,int):(%g,%g,%g,%d)",a,b,c,z);
|
631
|
+
fflush(out);
|
632
|
+
*(double*)retp = r;
|
633
|
+
}}
|
634
|
+
void d_d4i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
635
|
+
{
|
636
|
+
if (data != (void*)&d_d4i) { fprintf(out,"wrong data for d_d4i\n"); exit(1); }
|
637
|
+
{double a = *(double*)(*args++);
|
638
|
+
double b = *(double*)(*args++);
|
639
|
+
double c = *(double*)(*args++);
|
640
|
+
double d = *(double*)(*args++);
|
641
|
+
int z = *(int*)(*args++);
|
642
|
+
double r=a+b+c+d+z;
|
643
|
+
fprintf(out,"double f(4*double,int):(%g,%g,%g,%g,%d)",a,b,c,d,z);
|
644
|
+
fflush(out);
|
645
|
+
*(double*)retp = r;
|
646
|
+
}}
|
647
|
+
void d_d7i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
648
|
+
{
|
649
|
+
if (data != (void*)&d_d7i) { fprintf(out,"wrong data for d_d7i\n"); exit(1); }
|
650
|
+
{double a = *(double*)(*args++);
|
651
|
+
double b = *(double*)(*args++);
|
652
|
+
double c = *(double*)(*args++);
|
653
|
+
double d = *(double*)(*args++);
|
654
|
+
double e = *(double*)(*args++);
|
655
|
+
double f = *(double*)(*args++);
|
656
|
+
double g = *(double*)(*args++);
|
657
|
+
int z = *(int*)(*args++);
|
658
|
+
double r=a+b+c+d+e+f+g+z;
|
659
|
+
fprintf(out,"double f(7*double,int):(%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,z);
|
660
|
+
fflush(out);
|
661
|
+
*(double*)retp = r;
|
662
|
+
}}
|
663
|
+
void d_d8i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
664
|
+
{
|
665
|
+
if (data != (void*)&d_d8i) { fprintf(out,"wrong data for d_d8i\n"); exit(1); }
|
666
|
+
{double a = *(double*)(*args++);
|
667
|
+
double b = *(double*)(*args++);
|
668
|
+
double c = *(double*)(*args++);
|
669
|
+
double d = *(double*)(*args++);
|
670
|
+
double e = *(double*)(*args++);
|
671
|
+
double f = *(double*)(*args++);
|
672
|
+
double g = *(double*)(*args++);
|
673
|
+
double h = *(double*)(*args++);
|
674
|
+
int z = *(int*)(*args++);
|
675
|
+
double r=a+b+c+d+e+f+g+h+z;
|
676
|
+
fprintf(out,"double f(8*double,int):(%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,z);
|
677
|
+
fflush(out);
|
678
|
+
*(double*)retp = r;
|
679
|
+
}}
|
680
|
+
void d_d12i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
681
|
+
{
|
682
|
+
if (data != (void*)&d_d12i) { fprintf(out,"wrong data for d_d12i\n"); exit(1); }
|
683
|
+
{double a = *(double*)(*args++);
|
684
|
+
double b = *(double*)(*args++);
|
685
|
+
double c = *(double*)(*args++);
|
686
|
+
double d = *(double*)(*args++);
|
687
|
+
double e = *(double*)(*args++);
|
688
|
+
double f = *(double*)(*args++);
|
689
|
+
double g = *(double*)(*args++);
|
690
|
+
double h = *(double*)(*args++);
|
691
|
+
double i = *(double*)(*args++);
|
692
|
+
double j = *(double*)(*args++);
|
693
|
+
double k = *(double*)(*args++);
|
694
|
+
double l = *(double*)(*args++);
|
695
|
+
int z = *(int*)(*args++);
|
696
|
+
double r=a+b+c+d+e+f+g+h+i+j+k+l+z;
|
697
|
+
fprintf(out,"double f(12*double,int):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,i,j,k,l,z);
|
698
|
+
fflush(out);
|
699
|
+
*(double*)retp = r;
|
700
|
+
}}
|
701
|
+
void d_d13i_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
702
|
+
{
|
703
|
+
if (data != (void*)&d_d13i) { fprintf(out,"wrong data for d_d13i\n"); exit(1); }
|
704
|
+
{double a = *(double*)(*args++);
|
705
|
+
double b = *(double*)(*args++);
|
706
|
+
double c = *(double*)(*args++);
|
707
|
+
double d = *(double*)(*args++);
|
708
|
+
double e = *(double*)(*args++);
|
709
|
+
double f = *(double*)(*args++);
|
710
|
+
double g = *(double*)(*args++);
|
711
|
+
double h = *(double*)(*args++);
|
712
|
+
double i = *(double*)(*args++);
|
713
|
+
double j = *(double*)(*args++);
|
714
|
+
double k = *(double*)(*args++);
|
715
|
+
double l = *(double*)(*args++);
|
716
|
+
double m = *(double*)(*args++);
|
717
|
+
int z = *(int*)(*args++);
|
718
|
+
double r=a+b+c+d+e+f+g+h+i+j+k+l+m+z;
|
719
|
+
fprintf(out,"double f(13*double,int):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%d)",a,b,c,d,e,f,g,h,i,j,k,l,m,z);
|
720
|
+
fflush(out);
|
721
|
+
*(double*)retp = r;
|
722
|
+
}}
|
723
|
+
|
724
|
+
/* small structure return tests */
|
725
|
+
void S1_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
726
|
+
{
|
727
|
+
if (data != (void*)&S1_v) { fprintf(out,"wrong data for S1_v\n"); exit(1); }
|
728
|
+
{Size1 r = Size1_1;
|
729
|
+
fprintf(out,"Size1 f(void):");
|
730
|
+
fflush(out);
|
731
|
+
*(Size1*)retp = r;
|
732
|
+
}}
|
733
|
+
void S2_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
734
|
+
{
|
735
|
+
if (data != (void*)&S2_v) { fprintf(out,"wrong data for S2_v\n"); exit(1); }
|
736
|
+
{Size2 r = Size2_1;
|
737
|
+
fprintf(out,"Size2 f(void):");
|
738
|
+
fflush(out);
|
739
|
+
*(Size2*)retp = r;
|
740
|
+
}}
|
741
|
+
void S3_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
742
|
+
{
|
743
|
+
if (data != (void*)&S3_v) { fprintf(out,"wrong data for S3_v\n"); exit(1); }
|
744
|
+
{Size3 r = Size3_1;
|
745
|
+
fprintf(out,"Size3 f(void):");
|
746
|
+
fflush(out);
|
747
|
+
*(Size3*)retp = r;
|
748
|
+
}}
|
749
|
+
void S4_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
750
|
+
{
|
751
|
+
if (data != (void*)&S4_v) { fprintf(out,"wrong data for S4_v\n"); exit(1); }
|
752
|
+
{Size4 r = Size4_1;
|
753
|
+
fprintf(out,"Size4 f(void):");
|
754
|
+
fflush(out);
|
755
|
+
*(Size4*)retp = r;
|
756
|
+
}}
|
757
|
+
void S7_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
758
|
+
{
|
759
|
+
if (data != (void*)&S7_v) { fprintf(out,"wrong data for S7_v\n"); exit(1); }
|
760
|
+
{Size7 r = Size7_1;
|
761
|
+
fprintf(out,"Size7 f(void):");
|
762
|
+
fflush(out);
|
763
|
+
*(Size7*)retp = r;
|
764
|
+
}}
|
765
|
+
void S8_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
766
|
+
{
|
767
|
+
if (data != (void*)&S8_v) { fprintf(out,"wrong data for S8_v\n"); exit(1); }
|
768
|
+
{Size8 r = Size8_1;
|
769
|
+
fprintf(out,"Size8 f(void):");
|
770
|
+
fflush(out);
|
771
|
+
*(Size8*)retp = r;
|
772
|
+
}}
|
773
|
+
void S12_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
774
|
+
{
|
775
|
+
if (data != (void*)&S12_v) { fprintf(out,"wrong data for S12_v\n"); exit(1); }
|
776
|
+
{Size12 r = Size12_1;
|
777
|
+
fprintf(out,"Size12 f(void):");
|
778
|
+
fflush(out);
|
779
|
+
*(Size12*)retp = r;
|
780
|
+
}}
|
781
|
+
void S15_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
782
|
+
{
|
783
|
+
if (data != (void*)&S15_v) { fprintf(out,"wrong data for S15_v\n"); exit(1); }
|
784
|
+
{Size15 r = Size15_1;
|
785
|
+
fprintf(out,"Size15 f(void):");
|
786
|
+
fflush(out);
|
787
|
+
*(Size15*)retp = r;
|
788
|
+
}}
|
789
|
+
void S16_v_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
790
|
+
{
|
791
|
+
if (data != (void*)&S16_v) { fprintf(out,"wrong data for S16_v\n"); exit(1); }
|
792
|
+
{Size16 r = Size16_1;
|
793
|
+
fprintf(out,"Size16 f(void):");
|
794
|
+
fflush(out);
|
795
|
+
*(Size16*)retp = r;
|
796
|
+
}}
|
797
|
+
|
798
|
+
/* structure tests */
|
799
|
+
void I_III_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
800
|
+
{
|
801
|
+
if (data != (void*)&I_III) { fprintf(out,"wrong data for I_III\n"); exit(1); }
|
802
|
+
{Int a = *(Int*)(*args++);
|
803
|
+
Int b = *(Int*)(*args++);
|
804
|
+
Int c = *(Int*)(*args++);
|
805
|
+
Int r;
|
806
|
+
r.x = a.x + b.x + c.x;
|
807
|
+
fprintf(out,"Int f(Int,Int,Int):({%d},{%d},{%d})",a.x,b.x,c.x);
|
808
|
+
fflush(out);
|
809
|
+
*(Int*)retp = r;
|
810
|
+
}}
|
811
|
+
void C_CdC_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
812
|
+
{
|
813
|
+
if (data != (void*)&C_CdC) { fprintf(out,"wrong data for C_CdC\n"); exit(1); }
|
814
|
+
{Char a = *(Char*)(*args++);
|
815
|
+
double b = *(double*)(*args++);
|
816
|
+
Char c = *(Char*)(*args++);
|
817
|
+
Char r;
|
818
|
+
r.x = (a.x + c.x)/2;
|
819
|
+
fprintf(out,"Char f(Char,double,Char):({'%c'},%g,{'%c'})",a.x,b,c.x);
|
820
|
+
fflush(out);
|
821
|
+
*(Char*)retp = r;
|
822
|
+
}}
|
823
|
+
void F_Ffd_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
824
|
+
{
|
825
|
+
if (data != (void*)&F_Ffd) { fprintf(out,"wrong data for F_Ffd\n"); exit(1); }
|
826
|
+
{Float a = *(Float*)(*args++);
|
827
|
+
float b = *(float*)(*args++);
|
828
|
+
double c = *(double*)(*args++);
|
829
|
+
Float r;
|
830
|
+
r.x = a.x + b + c;
|
831
|
+
fprintf(out,"Float f(Float,float,double):({%g},%g,%g)",a.x,b,c);
|
832
|
+
fflush(out);
|
833
|
+
*(Float*)retp = r;
|
834
|
+
}}
|
835
|
+
void D_fDd_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
836
|
+
{
|
837
|
+
if (data != (void*)&D_fDd) { fprintf(out,"wrong data for D_fDd\n"); exit(1); }
|
838
|
+
{float a = *(float*)(*args++);
|
839
|
+
Double b = *(Double*)(*args++);
|
840
|
+
double c = *(double*)(*args++);
|
841
|
+
Double r;
|
842
|
+
r.x = a + b.x + c;
|
843
|
+
fprintf(out,"Double f(float,Double,double):(%g,{%g},%g)",a,b.x,c);
|
844
|
+
fflush(out);
|
845
|
+
*(Double*)retp = r;
|
846
|
+
}}
|
847
|
+
void D_Dfd_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
848
|
+
{
|
849
|
+
if (data != (void*)&D_Dfd) { fprintf(out,"wrong data for D_Dfd\n"); exit(1); }
|
850
|
+
{Double a = *(Double*)(*args++);
|
851
|
+
float b = *(float*)(*args++);
|
852
|
+
double c = *(double*)(*args++);
|
853
|
+
Double r;
|
854
|
+
r.x = a.x + b + c;
|
855
|
+
fprintf(out,"Double f(Double,float,double):({%g},%g,%g)",a.x,b,c);
|
856
|
+
fflush(out);
|
857
|
+
*(Double*)retp = r;
|
858
|
+
}}
|
859
|
+
void J_JiJ_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
860
|
+
{
|
861
|
+
if (data != (void*)&J_JiJ) { fprintf(out,"wrong data for J_JiJ\n"); exit(1); }
|
862
|
+
{J a = *(J*)(*args++);
|
863
|
+
int b= *(int*)(*args++);
|
864
|
+
J c = *(J*)(*args++);
|
865
|
+
J r;
|
866
|
+
r.l1 = a.l1+c.l1; r.l2 = a.l2+b+c.l2;
|
867
|
+
fprintf(out,"J f(J,int,J):({%ld,%ld},%d,{%ld,%ld})",a.l1,a.l2,b,c.l1,c.l2);
|
868
|
+
fflush(out);
|
869
|
+
*(J*)retp = r;
|
870
|
+
}}
|
871
|
+
#ifndef SKIP_EXTRA_STRUCTS
|
872
|
+
void T_TcT_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
873
|
+
{
|
874
|
+
if (data != (void*)&T_TcT) { fprintf(out,"wrong data for T_TcT\n"); exit(1); }
|
875
|
+
{T a = *(T*)(*args++);
|
876
|
+
char b = *(char*)(*args++);
|
877
|
+
T c = *(T*)(*args++);
|
878
|
+
T r;
|
879
|
+
r.c[0]='b'; r.c[1]=c.c[1]; r.c[2]=c.c[2];
|
880
|
+
fprintf(out,"T f(T,char,T):({\"%c%c%c\"},'%c',{\"%c%c%c\"})",a.c[0],a.c[1],a.c[2],b,c.c[0],c.c[1],c.c[2]);
|
881
|
+
fflush(out);
|
882
|
+
*(T*)retp = r;
|
883
|
+
}}
|
884
|
+
void X_BcdB_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
885
|
+
{
|
886
|
+
if (data != (void*)&X_BcdB) { fprintf(out,"wrong data for X_BcdB\n"); exit(1); }
|
887
|
+
{B a = *(B*)(*args++);
|
888
|
+
char b = *(char*)(*args++);
|
889
|
+
double c = *(double*)(*args++);
|
890
|
+
B d = *(B*)(*args++);
|
891
|
+
static X xr={"return val",'R'};
|
892
|
+
X r;
|
893
|
+
r = xr;
|
894
|
+
r.c1 = b;
|
895
|
+
fprintf(out,"X f(B,char,double,B):({%g,{%d,%d,%d}},'%c',%g,{%g,{%d,%d,%d}})",
|
896
|
+
a.d,a.i[0],a.i[1],a.i[2],b,c,d.d,d.i[0],d.i[1],d.i[2]);
|
897
|
+
fflush(out);
|
898
|
+
*(X*)retp = r;
|
899
|
+
}}
|
900
|
+
#endif
|
901
|
+
|
902
|
+
/* gpargs boundary tests */
|
903
|
+
void l_l0K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
904
|
+
{
|
905
|
+
if (data != (void*)&l_l0K) { fprintf(out,"wrong data for l_l0K\n"); exit(1); }
|
906
|
+
{K b = *(K*)(*args++);
|
907
|
+
long c = *(long*)(*args++);
|
908
|
+
long r = b.l1 + b.l2 + b.l3 + b.l4 + c;
|
909
|
+
fprintf(out,"long f(K,long):(%ld,%ld,%ld,%ld,%ld)",b.l1,b.l2,b.l3,b.l4,c);
|
910
|
+
fflush(out);
|
911
|
+
*(ffi_arg*)retp = r;
|
912
|
+
}}
|
913
|
+
void l_l1K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
914
|
+
{
|
915
|
+
if (data != (void*)&l_l1K) { fprintf(out,"wrong data for l_l1K\n"); exit(1); }
|
916
|
+
{long a1 = *(long*)(*args++);
|
917
|
+
K b = *(K*)(*args++);
|
918
|
+
long c = *(long*)(*args++);
|
919
|
+
long r = a1 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
920
|
+
fprintf(out,"long f(long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld)",a1,b.l1,b.l2,b.l3,b.l4,c);
|
921
|
+
fflush(out);
|
922
|
+
*(ffi_arg*)retp = r;
|
923
|
+
}}
|
924
|
+
void l_l2K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
925
|
+
{
|
926
|
+
if (data != (void*)&l_l2K) { fprintf(out,"wrong data for l_l2K\n"); exit(1); }
|
927
|
+
{long a1 = *(long*)(*args++);
|
928
|
+
long a2 = *(long*)(*args++);
|
929
|
+
K b = *(K*)(*args++);
|
930
|
+
long c = *(long*)(*args++);
|
931
|
+
long r = a1 + a2 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
932
|
+
fprintf(out,"long f(2*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,b.l1,b.l2,b.l3,b.l4,c);
|
933
|
+
fflush(out);
|
934
|
+
*(ffi_arg*)retp = r;
|
935
|
+
}}
|
936
|
+
void l_l3K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
937
|
+
{
|
938
|
+
if (data != (void*)&l_l3K) { fprintf(out,"wrong data for l_l3K\n"); exit(1); }
|
939
|
+
{long a1 = *(long*)(*args++);
|
940
|
+
long a2 = *(long*)(*args++);
|
941
|
+
long a3 = *(long*)(*args++);
|
942
|
+
K b = *(K*)(*args++);
|
943
|
+
long c = *(long*)(*args++);
|
944
|
+
long r = a1 + a2 + a3 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
945
|
+
fprintf(out,"long f(3*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,a3,b.l1,b.l2,b.l3,b.l4,c);
|
946
|
+
fflush(out);
|
947
|
+
*(ffi_arg*)retp = r;
|
948
|
+
}}
|
949
|
+
void l_l4K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
950
|
+
{
|
951
|
+
if (data != (void*)&l_l4K) { fprintf(out,"wrong data for l_l4K\n"); exit(1); }
|
952
|
+
{long a1 = *(long*)(*args++);
|
953
|
+
long a2 = *(long*)(*args++);
|
954
|
+
long a3 = *(long*)(*args++);
|
955
|
+
long a4 = *(long*)(*args++);
|
956
|
+
K b = *(K*)(*args++);
|
957
|
+
long c = *(long*)(*args++);
|
958
|
+
long r = a1 + a2 + a3 + a4 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
959
|
+
fprintf(out,"long f(4*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,a3,a4,b.l1,b.l2,b.l3,b.l4,c);
|
960
|
+
fflush(out);
|
961
|
+
*(ffi_arg*)retp = r;
|
962
|
+
}}
|
963
|
+
void l_l5K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
964
|
+
{
|
965
|
+
if (data != (void*)&l_l5K) { fprintf(out,"wrong data for l_l5K\n"); exit(1); }
|
966
|
+
{long a1 = *(long*)(*args++);
|
967
|
+
long a2 = *(long*)(*args++);
|
968
|
+
long a3 = *(long*)(*args++);
|
969
|
+
long a4 = *(long*)(*args++);
|
970
|
+
long a5 = *(long*)(*args++);
|
971
|
+
K b = *(K*)(*args++);
|
972
|
+
long c = *(long*)(*args++);
|
973
|
+
long r = a1 + a2 + a3 + a4 + a5 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
974
|
+
fprintf(out,"long f(5*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,a3,a4,a5,b.l1,b.l2,b.l3,b.l4,c);
|
975
|
+
fflush(out);
|
976
|
+
*(ffi_arg*)retp = r;
|
977
|
+
}}
|
978
|
+
void l_l6K_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
979
|
+
{
|
980
|
+
if (data != (void*)&l_l6K) { fprintf(out,"wrong data for l_l6K\n"); exit(1); }
|
981
|
+
{long a1 = *(long*)(*args++);
|
982
|
+
long a2 = *(long*)(*args++);
|
983
|
+
long a3 = *(long*)(*args++);
|
984
|
+
long a4 = *(long*)(*args++);
|
985
|
+
long a5 = *(long*)(*args++);
|
986
|
+
long a6 = *(long*)(*args++);
|
987
|
+
K b = *(K*)(*args++);
|
988
|
+
long c = *(long*)(*args++);
|
989
|
+
long r = a1 + a2 + a3 + a4 + a5 + a6 + b.l1 + b.l2 + b.l3 + b.l4 + c;
|
990
|
+
fprintf(out,"long f(6*long,K,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a1,a2,a3,a4,a5,a6,b.l1,b.l2,b.l3,b.l4,c);
|
991
|
+
fflush(out);
|
992
|
+
*(ffi_arg*)retp = r;
|
993
|
+
}}
|
994
|
+
void f_f17l3L_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
995
|
+
{
|
996
|
+
if (data != (void*)&f_f17l3L) { fprintf(out,"wrong data for f_f17l3L\n"); exit(1); }
|
997
|
+
{float a = *(float*)(*args++);
|
998
|
+
float b = *(float*)(*args++);
|
999
|
+
float c = *(float*)(*args++);
|
1000
|
+
float d = *(float*)(*args++);
|
1001
|
+
float e = *(float*)(*args++);
|
1002
|
+
float f = *(float*)(*args++);
|
1003
|
+
float g = *(float*)(*args++);
|
1004
|
+
float h = *(float*)(*args++);
|
1005
|
+
float i = *(float*)(*args++);
|
1006
|
+
float j = *(float*)(*args++);
|
1007
|
+
float k = *(float*)(*args++);
|
1008
|
+
float l = *(float*)(*args++);
|
1009
|
+
float m = *(float*)(*args++);
|
1010
|
+
float n = *(float*)(*args++);
|
1011
|
+
float o = *(float*)(*args++);
|
1012
|
+
float p = *(float*)(*args++);
|
1013
|
+
float q = *(float*)(*args++);
|
1014
|
+
long s = *(long*)(*args++);
|
1015
|
+
long t = *(long*)(*args++);
|
1016
|
+
long u = *(long*)(*args++);
|
1017
|
+
L z = *(L*)(*args++);
|
1018
|
+
float r = a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+s+t+u+z.l1+z.l2+z.l3+z.l4+z.l5+z.l6;
|
1019
|
+
fprintf(out,"float f(17*float,3*int,L):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,s,t,u,z.l1,z.l2,z.l3,z.l4,z.l5,z.l6);
|
1020
|
+
fflush(out);
|
1021
|
+
*(float*)retp = r;
|
1022
|
+
}}
|
1023
|
+
void d_d17l3L_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1024
|
+
{
|
1025
|
+
if (data != (void*)&d_d17l3L) { fprintf(out,"wrong data for d_d17l3L\n"); exit(1); }
|
1026
|
+
{double a = *(double*)(*args++);
|
1027
|
+
double b = *(double*)(*args++);
|
1028
|
+
double c = *(double*)(*args++);
|
1029
|
+
double d = *(double*)(*args++);
|
1030
|
+
double e = *(double*)(*args++);
|
1031
|
+
double f = *(double*)(*args++);
|
1032
|
+
double g = *(double*)(*args++);
|
1033
|
+
double h = *(double*)(*args++);
|
1034
|
+
double i = *(double*)(*args++);
|
1035
|
+
double j = *(double*)(*args++);
|
1036
|
+
double k = *(double*)(*args++);
|
1037
|
+
double l = *(double*)(*args++);
|
1038
|
+
double m = *(double*)(*args++);
|
1039
|
+
double n = *(double*)(*args++);
|
1040
|
+
double o = *(double*)(*args++);
|
1041
|
+
double p = *(double*)(*args++);
|
1042
|
+
double q = *(double*)(*args++);
|
1043
|
+
long s = *(long*)(*args++);
|
1044
|
+
long t = *(long*)(*args++);
|
1045
|
+
long u = *(long*)(*args++);
|
1046
|
+
L z = *(L*)(*args++);
|
1047
|
+
double r = a+b+c+d+e+f+g+h+i+j+k+l+m+n+o+p+q+s+t+u+z.l1+z.l2+z.l3+z.l4+z.l5+z.l6;
|
1048
|
+
fprintf(out,"double f(17*double,3*int,L):(%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%g,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld,%ld)",a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,s,t,u,z.l1,z.l2,z.l3,z.l4,z.l5,z.l6);
|
1049
|
+
fflush(out);
|
1050
|
+
*(double*)retp = r;
|
1051
|
+
}}
|
1052
|
+
void ll_l2ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1053
|
+
{
|
1054
|
+
if (data != (void*)&ll_l2ll) { fprintf(out,"wrong data for ll_l2ll\n"); exit(1); }
|
1055
|
+
{long a1 = *(long*)(*args++);
|
1056
|
+
long a2 = *(long*)(*args++);
|
1057
|
+
long long b = *(long long *)(*args++);
|
1058
|
+
long c = *(long*)(*args++);
|
1059
|
+
long long r = (long long) (a1 + a2) + b + c;
|
1060
|
+
fprintf(out,"long long f(2*long,long long,long):(%ld,%ld,0x%lx%08lx,%ld)",a1,a2,(long)(b>>32),(long)(b&0xffffffff),c);
|
1061
|
+
fflush(out);
|
1062
|
+
*(long long *)retp = r;
|
1063
|
+
}}
|
1064
|
+
void ll_l3ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1065
|
+
{
|
1066
|
+
if (data != (void*)&ll_l3ll) { fprintf(out,"wrong data for ll_l3ll\n"); exit(1); }
|
1067
|
+
{long a1 = *(long*)(*args++);
|
1068
|
+
long a2 = *(long*)(*args++);
|
1069
|
+
long a3 = *(long*)(*args++);
|
1070
|
+
long long b = *(long long *)(*args++);
|
1071
|
+
long c = *(long*)(*args++);
|
1072
|
+
long long r = (long long) (a1 + a2 + a3) + b + c;
|
1073
|
+
fprintf(out,"long long f(3*long,long long,long):(%ld,%ld,%ld,0x%lx%08lx,%ld)",a1,a2,a3,(long)(b>>32),(long)(b&0xffffffff),c);
|
1074
|
+
fflush(out);
|
1075
|
+
*(long long *)retp = r;
|
1076
|
+
}}
|
1077
|
+
void ll_l4ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1078
|
+
{
|
1079
|
+
if (data != (void*)&ll_l4ll) { fprintf(out,"wrong data for ll_l4ll\n"); exit(1); }
|
1080
|
+
{long a1 = *(long*)(*args++);
|
1081
|
+
long a2 = *(long*)(*args++);
|
1082
|
+
long a3 = *(long*)(*args++);
|
1083
|
+
long a4 = *(long*)(*args++);
|
1084
|
+
long long b = *(long long *)(*args++);
|
1085
|
+
long c = *(long*)(*args++);
|
1086
|
+
long long r = (long long) (a1 + a2 + a3 + a4) + b + c;
|
1087
|
+
fprintf(out,"long long f(4*long,long long,long):(%ld,%ld,%ld,%ld,0x%lx%08lx,%ld)",a1,a2,a3,a4,(long)(b>>32),(long)(b&0xffffffff),c);
|
1088
|
+
fflush(out);
|
1089
|
+
*(long long *)retp = r;
|
1090
|
+
}}
|
1091
|
+
void ll_l5ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1092
|
+
{
|
1093
|
+
if (data != (void*)&ll_l5ll) { fprintf(out,"wrong data for ll_l5ll\n"); exit(1); }
|
1094
|
+
{long a1 = *(long*)(*args++);
|
1095
|
+
long a2 = *(long*)(*args++);
|
1096
|
+
long a3 = *(long*)(*args++);
|
1097
|
+
long a4 = *(long*)(*args++);
|
1098
|
+
long a5 = *(long*)(*args++);
|
1099
|
+
long long b = *(long long *)(*args++);
|
1100
|
+
long c = *(long*)(*args++);
|
1101
|
+
long long r = (long long) (a1 + a2 + a3 + a4 + a5) + b + c;
|
1102
|
+
fprintf(out,"long long f(5*long,long long,long):(%ld,%ld,%ld,%ld,%ld,0x%lx%08lx,%ld)",a1,a2,a3,a4,a5,(long)(b>>32),(long)(b&0xffffffff),c);
|
1103
|
+
fflush(out);
|
1104
|
+
*(long long *)retp = r;
|
1105
|
+
}}
|
1106
|
+
void ll_l6ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1107
|
+
{
|
1108
|
+
if (data != (void*)&ll_l6ll) { fprintf(out,"wrong data for ll_l6ll\n"); exit(1); }
|
1109
|
+
{long a1 = *(long*)(*args++);
|
1110
|
+
long a2 = *(long*)(*args++);
|
1111
|
+
long a3 = *(long*)(*args++);
|
1112
|
+
long a4 = *(long*)(*args++);
|
1113
|
+
long a5 = *(long*)(*args++);
|
1114
|
+
long a6 = *(long*)(*args++);
|
1115
|
+
long long b = *(long long *)(*args++);
|
1116
|
+
long c = *(long*)(*args++);
|
1117
|
+
long long r = (long long) (a1 + a2 + a3 + a4 + a5 + a6) + b + c;
|
1118
|
+
fprintf(out,"long long f(6*long,long long,long):(%ld,%ld,%ld,%ld,%ld,%ld,0x%lx%08lx,%ld)",a1,a2,a3,a4,a5,a6,(long)(b>>32),(long)(b&0xffffffff),c);
|
1119
|
+
fflush(out);
|
1120
|
+
*(long long *)retp = r;
|
1121
|
+
}}
|
1122
|
+
void ll_l7ll_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1123
|
+
{
|
1124
|
+
if (data != (void*)&ll_l7ll) { fprintf(out,"wrong data for ll_l7ll\n"); exit(1); }
|
1125
|
+
{long a1 = *(long*)(*args++);
|
1126
|
+
long a2 = *(long*)(*args++);
|
1127
|
+
long a3 = *(long*)(*args++);
|
1128
|
+
long a4 = *(long*)(*args++);
|
1129
|
+
long a5 = *(long*)(*args++);
|
1130
|
+
long a6 = *(long*)(*args++);
|
1131
|
+
long a7 = *(long*)(*args++);
|
1132
|
+
long long b = *(long long *)(*args++);
|
1133
|
+
long c = *(long*)(*args++);
|
1134
|
+
long long r = (long long) (a1 + a2 + a3 + a4 + a5 + a6 + a7) + b + c;
|
1135
|
+
fprintf(out,"long long f(7*long,long long,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,0x%lx%08lx,%ld)",a1,a2,a3,a4,a5,a6,a7,(long)(b>>32),(long)(b&0xffffffff),c);
|
1136
|
+
fflush(out);
|
1137
|
+
*(long long *)retp = r;
|
1138
|
+
}}
|
1139
|
+
void d_l2d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1140
|
+
{
|
1141
|
+
if (data != (void*)&d_l2d) { fprintf(out,"wrong data for d_l2d\n"); exit(1); }
|
1142
|
+
{long a1 = *(long*)(*args++);
|
1143
|
+
long a2 = *(long*)(*args++);
|
1144
|
+
double b = *(double*)(*args++);
|
1145
|
+
long c = *(long*)(*args++);
|
1146
|
+
double r = (double) (a1 + a2) + b + c;
|
1147
|
+
fprintf(out,"double f(2*long,double,long):(%ld,%ld,%g,%ld)",a1,a2,b,c);
|
1148
|
+
fflush(out);
|
1149
|
+
*(double*)retp = r;
|
1150
|
+
}}
|
1151
|
+
void d_l3d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1152
|
+
{
|
1153
|
+
if (data != (void*)&d_l3d) { fprintf(out,"wrong data for d_l3d\n"); exit(1); }
|
1154
|
+
{long a1 = *(long*)(*args++);
|
1155
|
+
long a2 = *(long*)(*args++);
|
1156
|
+
long a3 = *(long*)(*args++);
|
1157
|
+
double b = *(double*)(*args++);
|
1158
|
+
long c = *(long*)(*args++);
|
1159
|
+
double r = (double) (a1 + a2 + a3) + b + c;
|
1160
|
+
fprintf(out,"double f(3*long,double,long):(%ld,%ld,%ld,%g,%ld)",a1,a2,a3,b,c);
|
1161
|
+
fflush(out);
|
1162
|
+
*(double*)retp = r;
|
1163
|
+
}}
|
1164
|
+
void d_l4d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1165
|
+
{
|
1166
|
+
if (data != (void*)&d_l4d) { fprintf(out,"wrong data for d_l4d\n"); exit(1); }
|
1167
|
+
{long a1 = *(long*)(*args++);
|
1168
|
+
long a2 = *(long*)(*args++);
|
1169
|
+
long a3 = *(long*)(*args++);
|
1170
|
+
long a4 = *(long*)(*args++);
|
1171
|
+
double b = *(double*)(*args++);
|
1172
|
+
long c = *(long*)(*args++);
|
1173
|
+
double r = (double) (a1 + a2 + a3 + a4) + b + c;
|
1174
|
+
fprintf(out,"double f(4*long,double,long):(%ld,%ld,%ld,%ld,%g,%ld)",a1,a2,a3,a4,b,c);
|
1175
|
+
fflush(out);
|
1176
|
+
*(double*)retp = r;
|
1177
|
+
}}
|
1178
|
+
void d_l5d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1179
|
+
{
|
1180
|
+
if (data != (void*)&d_l5d) { fprintf(out,"wrong data for d_l5d\n"); exit(1); }
|
1181
|
+
{long a1 = *(long*)(*args++);
|
1182
|
+
long a2 = *(long*)(*args++);
|
1183
|
+
long a3 = *(long*)(*args++);
|
1184
|
+
long a4 = *(long*)(*args++);
|
1185
|
+
long a5 = *(long*)(*args++);
|
1186
|
+
double b = *(double*)(*args++);
|
1187
|
+
long c = *(long*)(*args++);
|
1188
|
+
double r = (double) (a1 + a2 + a3 + a4 + a5) + b + c;
|
1189
|
+
fprintf(out,"double f(5*long,double,long):(%ld,%ld,%ld,%ld,%ld,%g,%ld)",a1,a2,a3,a4,a5,b,c);
|
1190
|
+
fflush(out);
|
1191
|
+
*(double*)retp = r;
|
1192
|
+
}}
|
1193
|
+
void d_l6d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1194
|
+
{
|
1195
|
+
if (data != (void*)&d_l6d) { fprintf(out,"wrong data for d_l6d\n"); exit(1); }
|
1196
|
+
{long a1 = *(long*)(*args++);
|
1197
|
+
long a2 = *(long*)(*args++);
|
1198
|
+
long a3 = *(long*)(*args++);
|
1199
|
+
long a4 = *(long*)(*args++);
|
1200
|
+
long a5 = *(long*)(*args++);
|
1201
|
+
long a6 = *(long*)(*args++);
|
1202
|
+
double b = *(double*)(*args++);
|
1203
|
+
long c = *(long*)(*args++);
|
1204
|
+
double r = (double) (a1 + a2 + a3 + a4 + a5 + a6) + b + c;
|
1205
|
+
fprintf(out,"double f(6*long,double,long):(%ld,%ld,%ld,%ld,%ld,%ld,%g,%ld)",a1,a2,a3,a4,a5,a6,b,c);
|
1206
|
+
fflush(out);
|
1207
|
+
*(double*)retp = r;
|
1208
|
+
}}
|
1209
|
+
void d_l7d_simulator (ffi_cif* cif, void* retp, /*const*/ void* /*const*/ *args, void* data)
|
1210
|
+
{
|
1211
|
+
if (data != (void*)&d_l7d) { fprintf(out,"wrong data for d_l7d\n"); exit(1); }
|
1212
|
+
{long a1 = *(long*)(*args++);
|
1213
|
+
long a2 = *(long*)(*args++);
|
1214
|
+
long a3 = *(long*)(*args++);
|
1215
|
+
long a4 = *(long*)(*args++);
|
1216
|
+
long a5 = *(long*)(*args++);
|
1217
|
+
long a6 = *(long*)(*args++);
|
1218
|
+
long a7 = *(long*)(*args++);
|
1219
|
+
double b = *(double*)(*args++);
|
1220
|
+
long c = *(long*)(*args++);
|
1221
|
+
double r = (double) (a1 + a2 + a3 + a4 + a5 + a6 + a7) + b + c;
|
1222
|
+
fprintf(out,"double f(7*long,double,long):(%ld,%ld,%ld,%ld,%ld,%ld,%ld,%g,%ld)",a1,a2,a3,a4,a5,a6,a7,b,c);
|
1223
|
+
fflush(out);
|
1224
|
+
*(double*)retp = r;
|
1225
|
+
}}
|
1226
|
+
|
1227
|
+
|
1228
|
+
/*
|
1229
|
+
* The way we run these tests - first call the function directly, then
|
1230
|
+
* through vacall() - there is the danger that arguments or results seem
|
1231
|
+
* to be passed correctly, but what we are seeing are in fact the vestiges
|
1232
|
+
* (traces) or the previous call. This may seriously fake the test.
|
1233
|
+
* Avoid this by clearing the registers between the first and the second call.
|
1234
|
+
*/
|
1235
|
+
long clear_traces_i (long a, long b, long c, long d, long e, long f, long g, long h,
|
1236
|
+
long i, long j, long k, long l, long m, long n, long o, long p)
|
1237
|
+
{ return 0; }
|
1238
|
+
float clear_traces_f (float a, float b, float c, float d, float e, float f, float g,
|
1239
|
+
float h, float i, float j, float k, float l, float m, float n,
|
1240
|
+
float o, float p)
|
1241
|
+
{ return 0.0; }
|
1242
|
+
double clear_traces_d (double a, double b, double c, double d, double e, double f, double g,
|
1243
|
+
double h, double i, double j, double k, double l, double m, double n,
|
1244
|
+
double o, double p)
|
1245
|
+
{ return 0.0; }
|
1246
|
+
J clear_traces_J (void)
|
1247
|
+
{ J j; j.l1 = j.l2 = 0; return j; }
|
1248
|
+
void clear_traces (void)
|
1249
|
+
{ clear_traces_i(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
|
1250
|
+
clear_traces_f(0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0);
|
1251
|
+
clear_traces_d(0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0);
|
1252
|
+
clear_traces_J();
|
1253
|
+
}
|
1254
|
+
|
1255
|
+
int main (void)
|
1256
|
+
{
|
1257
|
+
void* callback_code;
|
1258
|
+
void* callback_writable;
|
1259
|
+
#define ALLOC_CALLBACK() \
|
1260
|
+
callback_writable = ffi_closure_alloc(sizeof(ffi_closure),&callback_code); \
|
1261
|
+
if (!callback_writable) abort()
|
1262
|
+
#define PREP_CALLBACK(cif,simulator,data) \
|
1263
|
+
if (ffi_prep_closure_loc(callback_writable,&(cif),simulator,data,callback_code) != FFI_OK) abort()
|
1264
|
+
#define FREE_CALLBACK() \
|
1265
|
+
ffi_closure_free(callback_writable)
|
1266
|
+
|
1267
|
+
ffi_type_char = (char)(-1) < 0 ? ffi_type_schar : ffi_type_uchar;
|
1268
|
+
out = stdout;
|
1269
|
+
|
1270
|
+
#if (!defined(DGTEST)) || DGTEST == 1
|
1271
|
+
/* void tests */
|
1272
|
+
v_v();
|
1273
|
+
clear_traces();
|
1274
|
+
ALLOC_CALLBACK();
|
1275
|
+
{
|
1276
|
+
ffi_cif cif;
|
1277
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_void);
|
1278
|
+
PREP_CALLBACK(cif,v_v_simulator,(void*)&v_v);
|
1279
|
+
((void (ABI_ATTR *) (void)) callback_code) ();
|
1280
|
+
}
|
1281
|
+
FREE_CALLBACK();
|
1282
|
+
#endif
|
1283
|
+
|
1284
|
+
/* int tests */
|
1285
|
+
{ int ir;
|
1286
|
+
|
1287
|
+
#if (!defined(DGTEST)) || DGTEST == 2
|
1288
|
+
ir = i_v();
|
1289
|
+
fprintf(out,"->%d\n",ir);
|
1290
|
+
fflush(out);
|
1291
|
+
ir = 0; clear_traces();
|
1292
|
+
ALLOC_CALLBACK();
|
1293
|
+
{
|
1294
|
+
ffi_cif cif;
|
1295
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_sint);
|
1296
|
+
PREP_CALLBACK(cif,i_v_simulator,(void*)&i_v);
|
1297
|
+
ir = ((int (ABI_ATTR *) (void)) callback_code) ();
|
1298
|
+
}
|
1299
|
+
FREE_CALLBACK();
|
1300
|
+
fprintf(out,"->%d\n",ir);
|
1301
|
+
fflush(out);
|
1302
|
+
#endif
|
1303
|
+
|
1304
|
+
#if (!defined(DGTEST)) || DGTEST == 3
|
1305
|
+
ir = i_i(i1);
|
1306
|
+
fprintf(out,"->%d\n",ir);
|
1307
|
+
fflush(out);
|
1308
|
+
ir = 0; clear_traces();
|
1309
|
+
ALLOC_CALLBACK();
|
1310
|
+
{
|
1311
|
+
ffi_type* argtypes[] = { &ffi_type_sint };
|
1312
|
+
ffi_cif cif;
|
1313
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_sint);
|
1314
|
+
PREP_CALLBACK(cif,i_i_simulator,(void*)&i_i);
|
1315
|
+
ir = ((int (ABI_ATTR *) (int)) callback_code) (i1);
|
1316
|
+
}
|
1317
|
+
FREE_CALLBACK();
|
1318
|
+
fprintf(out,"->%d\n",ir);
|
1319
|
+
fflush(out);
|
1320
|
+
#endif
|
1321
|
+
|
1322
|
+
#if (!defined(DGTEST)) || DGTEST == 4
|
1323
|
+
ir = i_i2(i1,i2);
|
1324
|
+
fprintf(out,"->%d\n",ir);
|
1325
|
+
fflush(out);
|
1326
|
+
ir = 0; clear_traces();
|
1327
|
+
ALLOC_CALLBACK();
|
1328
|
+
{
|
1329
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint };
|
1330
|
+
ffi_cif cif;
|
1331
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_sint);
|
1332
|
+
PREP_CALLBACK(cif,i_i2_simulator,(void*)&i_i2);
|
1333
|
+
ir = ((int (ABI_ATTR *) (int,int)) callback_code) (i1,i2);
|
1334
|
+
}
|
1335
|
+
FREE_CALLBACK();
|
1336
|
+
fprintf(out,"->%d\n",ir);
|
1337
|
+
fflush(out);
|
1338
|
+
#endif
|
1339
|
+
|
1340
|
+
#if (!defined(DGTEST)) || DGTEST == 5
|
1341
|
+
ir = i_i4(i1,i2,i3,i4);
|
1342
|
+
fprintf(out,"->%d\n",ir);
|
1343
|
+
fflush(out);
|
1344
|
+
ir = 0; clear_traces();
|
1345
|
+
ALLOC_CALLBACK();
|
1346
|
+
{
|
1347
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint };
|
1348
|
+
ffi_cif cif;
|
1349
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_sint);
|
1350
|
+
PREP_CALLBACK(cif,i_i4_simulator,(void*)&i_i4);
|
1351
|
+
ir = ((int (ABI_ATTR *) (int,int,int,int)) callback_code) (i1,i2,i3,i4);
|
1352
|
+
}
|
1353
|
+
FREE_CALLBACK();
|
1354
|
+
fprintf(out,"->%d\n",ir);
|
1355
|
+
fflush(out);
|
1356
|
+
#endif
|
1357
|
+
|
1358
|
+
#if (!defined(DGTEST)) || DGTEST == 6
|
1359
|
+
ir = i_i8(i1,i2,i3,i4,i5,i6,i7,i8);
|
1360
|
+
fprintf(out,"->%d\n",ir);
|
1361
|
+
fflush(out);
|
1362
|
+
ir = 0; clear_traces();
|
1363
|
+
ALLOC_CALLBACK();
|
1364
|
+
{
|
1365
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint };
|
1366
|
+
ffi_cif cif;
|
1367
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_sint);
|
1368
|
+
PREP_CALLBACK(cif,i_i8_simulator,(void*)&i_i8);
|
1369
|
+
ir = ((int (ABI_ATTR *) (int,int,int,int,int,int,int,int)) callback_code) (i1,i2,i3,i4,i5,i6,i7,i8);
|
1370
|
+
}
|
1371
|
+
FREE_CALLBACK();
|
1372
|
+
fprintf(out,"->%d\n",ir);
|
1373
|
+
fflush(out);
|
1374
|
+
#endif
|
1375
|
+
|
1376
|
+
#if (!defined(DGTEST)) || DGTEST == 7
|
1377
|
+
ir = i_i16(i1,i2,i3,i4,i5,i6,i7,i8,i9,i10,i11,i12,i13,i14,i15,i16);
|
1378
|
+
fprintf(out,"->%d\n",ir);
|
1379
|
+
fflush(out);
|
1380
|
+
ir = 0; clear_traces();
|
1381
|
+
ALLOC_CALLBACK();
|
1382
|
+
{
|
1383
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_sint };
|
1384
|
+
ffi_cif cif;
|
1385
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_sint);
|
1386
|
+
PREP_CALLBACK(cif,i_i16_simulator,(void*)&i_i16);
|
1387
|
+
ir = ((int (ABI_ATTR *) (int,int,int,int,int,int,int,int,int,int,int,int,int,int,int,int)) callback_code) (i1,i2,i3,i4,i5,i6,i7,i8,i9,i10,i11,i12,i13,i14,i15,i16);
|
1388
|
+
}
|
1389
|
+
FREE_CALLBACK();
|
1390
|
+
fprintf(out,"->%d\n",ir);
|
1391
|
+
fflush(out);
|
1392
|
+
#endif
|
1393
|
+
}
|
1394
|
+
|
1395
|
+
/* float tests */
|
1396
|
+
{ float fr;
|
1397
|
+
|
1398
|
+
#if (!defined(DGTEST)) || DGTEST == 8
|
1399
|
+
fr = f_f(f1);
|
1400
|
+
fprintf(out,"->%g\n",fr);
|
1401
|
+
fflush(out);
|
1402
|
+
fr = 0.0; clear_traces();
|
1403
|
+
ALLOC_CALLBACK();
|
1404
|
+
{
|
1405
|
+
ffi_type* argtypes[] = { &ffi_type_float };
|
1406
|
+
ffi_cif cif;
|
1407
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1408
|
+
PREP_CALLBACK(cif,f_f_simulator,(void*)&f_f);
|
1409
|
+
fr = ((float (ABI_ATTR *) (float)) callback_code) (f1);
|
1410
|
+
}
|
1411
|
+
FREE_CALLBACK();
|
1412
|
+
fprintf(out,"->%g\n",fr);
|
1413
|
+
fflush(out);
|
1414
|
+
#endif
|
1415
|
+
|
1416
|
+
#if (!defined(DGTEST)) || DGTEST == 9
|
1417
|
+
fr = f_f2(f1,f2);
|
1418
|
+
fprintf(out,"->%g\n",fr);
|
1419
|
+
fflush(out);
|
1420
|
+
fr = 0.0; clear_traces();
|
1421
|
+
ALLOC_CALLBACK();
|
1422
|
+
{
|
1423
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float };
|
1424
|
+
ffi_cif cif;
|
1425
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1426
|
+
PREP_CALLBACK(cif,f_f2_simulator,(void*)&f_f2);
|
1427
|
+
fr = ((float (ABI_ATTR *) (float,float)) callback_code) (f1,f2);
|
1428
|
+
}
|
1429
|
+
FREE_CALLBACK();
|
1430
|
+
fprintf(out,"->%g\n",fr);
|
1431
|
+
fflush(out);
|
1432
|
+
#endif
|
1433
|
+
|
1434
|
+
#if (!defined(DGTEST)) || DGTEST == 10
|
1435
|
+
fr = f_f4(f1,f2,f3,f4);
|
1436
|
+
fprintf(out,"->%g\n",fr);
|
1437
|
+
fflush(out);
|
1438
|
+
fr = 0.0; clear_traces();
|
1439
|
+
ALLOC_CALLBACK();
|
1440
|
+
{
|
1441
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float };
|
1442
|
+
ffi_cif cif;
|
1443
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1444
|
+
PREP_CALLBACK(cif,f_f4_simulator,(void*)&f_f4);
|
1445
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float)) callback_code) (f1,f2,f3,f4);
|
1446
|
+
}
|
1447
|
+
FREE_CALLBACK();
|
1448
|
+
fprintf(out,"->%g\n",fr);
|
1449
|
+
fflush(out);
|
1450
|
+
#endif
|
1451
|
+
|
1452
|
+
#if (!defined(DGTEST)) || DGTEST == 11
|
1453
|
+
fr = f_f8(f1,f2,f3,f4,f5,f6,f7,f8);
|
1454
|
+
fprintf(out,"->%g\n",fr);
|
1455
|
+
fflush(out);
|
1456
|
+
fr = 0.0; clear_traces();
|
1457
|
+
ALLOC_CALLBACK();
|
1458
|
+
{
|
1459
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float };
|
1460
|
+
ffi_cif cif;
|
1461
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1462
|
+
PREP_CALLBACK(cif,f_f8_simulator,(void*)&f_f8);
|
1463
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8);
|
1464
|
+
}
|
1465
|
+
FREE_CALLBACK();
|
1466
|
+
fprintf(out,"->%g\n",fr);
|
1467
|
+
fflush(out);
|
1468
|
+
#endif
|
1469
|
+
|
1470
|
+
#if (!defined(DGTEST)) || DGTEST == 12
|
1471
|
+
fr = f_f16(f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16);
|
1472
|
+
fprintf(out,"->%g\n",fr);
|
1473
|
+
fflush(out);
|
1474
|
+
fr = 0.0; clear_traces();
|
1475
|
+
ALLOC_CALLBACK();
|
1476
|
+
{
|
1477
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float };
|
1478
|
+
ffi_cif cif;
|
1479
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1480
|
+
PREP_CALLBACK(cif,f_f16_simulator,(void*)&f_f16);
|
1481
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16);
|
1482
|
+
}
|
1483
|
+
FREE_CALLBACK();
|
1484
|
+
fprintf(out,"->%g\n",fr);
|
1485
|
+
fflush(out);
|
1486
|
+
#endif
|
1487
|
+
|
1488
|
+
#if (!defined(DGTEST)) || DGTEST == 13
|
1489
|
+
fr = f_f24(f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,f21,f22,f23,f24);
|
1490
|
+
fprintf(out,"->%g\n",fr);
|
1491
|
+
fflush(out);
|
1492
|
+
fr = 0.0; clear_traces();
|
1493
|
+
ALLOC_CALLBACK();
|
1494
|
+
{
|
1495
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float };
|
1496
|
+
ffi_cif cif;
|
1497
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1498
|
+
PREP_CALLBACK(cif,f_f24_simulator,(void*)&f_f24);
|
1499
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,f18,f19,f20,f21,f22,f23,f24);
|
1500
|
+
}
|
1501
|
+
FREE_CALLBACK();
|
1502
|
+
fprintf(out,"->%g\n",fr);
|
1503
|
+
fflush(out);
|
1504
|
+
#endif
|
1505
|
+
|
1506
|
+
}
|
1507
|
+
|
1508
|
+
/* double tests */
|
1509
|
+
{ double dr;
|
1510
|
+
|
1511
|
+
#if (!defined(DGTEST)) || DGTEST == 14
|
1512
|
+
dr = d_d(d1);
|
1513
|
+
fprintf(out,"->%g\n",dr);
|
1514
|
+
fflush(out);
|
1515
|
+
dr = 0.0; clear_traces();
|
1516
|
+
ALLOC_CALLBACK();
|
1517
|
+
{
|
1518
|
+
ffi_type* argtypes[] = { &ffi_type_double };
|
1519
|
+
ffi_cif cif;
|
1520
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1521
|
+
PREP_CALLBACK(cif,d_d_simulator,(void*)&d_d);
|
1522
|
+
dr = ((double (ABI_ATTR *) (double)) callback_code) (d1);
|
1523
|
+
}
|
1524
|
+
FREE_CALLBACK();
|
1525
|
+
fprintf(out,"->%g\n",dr);
|
1526
|
+
fflush(out);
|
1527
|
+
#endif
|
1528
|
+
|
1529
|
+
#if (!defined(DGTEST)) || DGTEST == 15
|
1530
|
+
dr = d_d2(d1,d2);
|
1531
|
+
fprintf(out,"->%g\n",dr);
|
1532
|
+
fflush(out);
|
1533
|
+
dr = 0.0; clear_traces();
|
1534
|
+
ALLOC_CALLBACK();
|
1535
|
+
{
|
1536
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double };
|
1537
|
+
ffi_cif cif;
|
1538
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1539
|
+
PREP_CALLBACK(cif,d_d2_simulator,(void*)&d_d2);
|
1540
|
+
dr = ((double (ABI_ATTR *) (double,double)) callback_code) (d1,d2);
|
1541
|
+
}
|
1542
|
+
FREE_CALLBACK();
|
1543
|
+
fprintf(out,"->%g\n",dr);
|
1544
|
+
fflush(out);
|
1545
|
+
#endif
|
1546
|
+
|
1547
|
+
#if (!defined(DGTEST)) || DGTEST == 16
|
1548
|
+
dr = d_d4(d1,d2,d3,d4);
|
1549
|
+
fprintf(out,"->%g\n",dr);
|
1550
|
+
fflush(out);
|
1551
|
+
dr = 0.0; clear_traces();
|
1552
|
+
ALLOC_CALLBACK();
|
1553
|
+
{
|
1554
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double };
|
1555
|
+
ffi_cif cif;
|
1556
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1557
|
+
PREP_CALLBACK(cif,d_d4_simulator,(void*)&d_d4);
|
1558
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double)) callback_code) (d1,d2,d3,d4);
|
1559
|
+
}
|
1560
|
+
FREE_CALLBACK();
|
1561
|
+
fprintf(out,"->%g\n",dr);
|
1562
|
+
fflush(out);
|
1563
|
+
#endif
|
1564
|
+
|
1565
|
+
#if (!defined(DGTEST)) || DGTEST == 17
|
1566
|
+
dr = d_d8(d1,d2,d3,d4,d5,d6,d7,d8);
|
1567
|
+
fprintf(out,"->%g\n",dr);
|
1568
|
+
fflush(out);
|
1569
|
+
dr = 0.0; clear_traces();
|
1570
|
+
ALLOC_CALLBACK();
|
1571
|
+
{
|
1572
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double };
|
1573
|
+
ffi_cif cif;
|
1574
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1575
|
+
PREP_CALLBACK(cif,d_d8_simulator,(void*)&d_d8);
|
1576
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8);
|
1577
|
+
}
|
1578
|
+
FREE_CALLBACK();
|
1579
|
+
fprintf(out,"->%g\n",dr);
|
1580
|
+
fflush(out);
|
1581
|
+
#endif
|
1582
|
+
|
1583
|
+
#if (!defined(DGTEST)) || DGTEST == 18
|
1584
|
+
dr = d_d16(d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,d14,d15,d16);
|
1585
|
+
fprintf(out,"->%g\n",dr);
|
1586
|
+
fflush(out);
|
1587
|
+
dr = 0.0; clear_traces();
|
1588
|
+
ALLOC_CALLBACK();
|
1589
|
+
{
|
1590
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double };
|
1591
|
+
ffi_cif cif;
|
1592
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1593
|
+
PREP_CALLBACK(cif,d_d16_simulator,(void*)&d_d16);
|
1594
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double,double,double,double,double,double,double,double,double)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,d14,d15,d16);
|
1595
|
+
}
|
1596
|
+
FREE_CALLBACK();
|
1597
|
+
fprintf(out,"->%g\n",dr);
|
1598
|
+
fflush(out);
|
1599
|
+
#endif
|
1600
|
+
}
|
1601
|
+
|
1602
|
+
/* pointer tests */
|
1603
|
+
{ void* vpr;
|
1604
|
+
|
1605
|
+
#if (!defined(DGTEST)) || DGTEST == 19
|
1606
|
+
vpr = vp_vpdpcpsp(&uc1,&d2,str3,&I4);
|
1607
|
+
fprintf(out,"->0x%p\n",vpr);
|
1608
|
+
fflush(out);
|
1609
|
+
vpr = 0; clear_traces();
|
1610
|
+
ALLOC_CALLBACK();
|
1611
|
+
{
|
1612
|
+
ffi_type* argtypes[] = { &ffi_type_pointer, &ffi_type_pointer, &ffi_type_pointer, &ffi_type_pointer };
|
1613
|
+
ffi_cif cif;
|
1614
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_pointer);
|
1615
|
+
PREP_CALLBACK(cif,vp_vpdpcpsp_simulator,(void*)&vp_vpdpcpsp);
|
1616
|
+
vpr = ((void* (ABI_ATTR *) (void*,double*,char*,Int*)) callback_code) (&uc1,&d2,str3,&I4);
|
1617
|
+
}
|
1618
|
+
FREE_CALLBACK();
|
1619
|
+
fprintf(out,"->0x%p\n",vpr);
|
1620
|
+
fflush(out);
|
1621
|
+
#endif
|
1622
|
+
}
|
1623
|
+
|
1624
|
+
/* mixed number tests */
|
1625
|
+
{ uchar ucr;
|
1626
|
+
ushort usr;
|
1627
|
+
float fr;
|
1628
|
+
double dr;
|
1629
|
+
long long llr;
|
1630
|
+
|
1631
|
+
#if (!defined(DGTEST)) || DGTEST == 20
|
1632
|
+
ucr = uc_ucsil(uc1,us2,ui3,ul4);
|
1633
|
+
fprintf(out,"->%u\n",ucr);
|
1634
|
+
fflush(out);
|
1635
|
+
ucr = 0; clear_traces();
|
1636
|
+
ALLOC_CALLBACK();
|
1637
|
+
{
|
1638
|
+
ffi_type* argtypes[] = { &ffi_type_uchar, &ffi_type_ushort, &ffi_type_uint, &ffi_type_ulong };
|
1639
|
+
ffi_cif cif;
|
1640
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_uchar);
|
1641
|
+
PREP_CALLBACK(cif,uc_ucsil_simulator,(void*)&uc_ucsil);
|
1642
|
+
ucr = ((uchar (ABI_ATTR *) (uchar,ushort,uint,ulong)) callback_code) (uc1,us2,ui3,ul4);
|
1643
|
+
}
|
1644
|
+
FREE_CALLBACK();
|
1645
|
+
fprintf(out,"->%u\n",ucr);
|
1646
|
+
fflush(out);
|
1647
|
+
#endif
|
1648
|
+
|
1649
|
+
#if (!defined(DGTEST)) || DGTEST == 21
|
1650
|
+
dr = d_iidd(i1,i2,d3,d4);
|
1651
|
+
fprintf(out,"->%g\n",dr);
|
1652
|
+
fflush(out);
|
1653
|
+
dr = 0.0; clear_traces();
|
1654
|
+
ALLOC_CALLBACK();
|
1655
|
+
{
|
1656
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_double, &ffi_type_double };
|
1657
|
+
ffi_cif cif;
|
1658
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1659
|
+
PREP_CALLBACK(cif,d_iidd_simulator,(void*)&d_iidd);
|
1660
|
+
dr = ((double (ABI_ATTR *) (int,int,double,double)) callback_code) (i1,i2,d3,d4);
|
1661
|
+
}
|
1662
|
+
FREE_CALLBACK();
|
1663
|
+
fprintf(out,"->%g\n",dr);
|
1664
|
+
fflush(out);
|
1665
|
+
#endif
|
1666
|
+
|
1667
|
+
#if (!defined(DGTEST)) || DGTEST == 22
|
1668
|
+
dr = d_iiidi(i1,i2,i3,d4,i5);
|
1669
|
+
fprintf(out,"->%g\n",dr);
|
1670
|
+
fflush(out);
|
1671
|
+
dr = 0.0; clear_traces();
|
1672
|
+
ALLOC_CALLBACK();
|
1673
|
+
{
|
1674
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_double, &ffi_type_sint };
|
1675
|
+
ffi_cif cif;
|
1676
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1677
|
+
PREP_CALLBACK(cif,d_iiidi_simulator,(void*)&d_iiidi);
|
1678
|
+
dr = ((double (ABI_ATTR *) (int,int,int,double,int)) callback_code) (i1,i2,i3,d4,i5);
|
1679
|
+
}
|
1680
|
+
FREE_CALLBACK();
|
1681
|
+
fprintf(out,"->%g\n",dr);
|
1682
|
+
fflush(out);
|
1683
|
+
#endif
|
1684
|
+
|
1685
|
+
#if (!defined(DGTEST)) || DGTEST == 23
|
1686
|
+
dr = d_idid(i1,d2,i3,d4);
|
1687
|
+
fprintf(out,"->%g\n",dr);
|
1688
|
+
fflush(out);
|
1689
|
+
dr = 0.0; clear_traces();
|
1690
|
+
ALLOC_CALLBACK();
|
1691
|
+
{
|
1692
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_double, &ffi_type_sint, &ffi_type_double };
|
1693
|
+
ffi_cif cif;
|
1694
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1695
|
+
PREP_CALLBACK(cif,d_idid_simulator,(void*)&d_idid);
|
1696
|
+
dr = ((double (ABI_ATTR *) (int,double,int,double)) callback_code) (i1,d2,i3,d4);
|
1697
|
+
}
|
1698
|
+
FREE_CALLBACK();
|
1699
|
+
fprintf(out,"->%g\n",dr);
|
1700
|
+
fflush(out);
|
1701
|
+
#endif
|
1702
|
+
|
1703
|
+
#if (!defined(DGTEST)) || DGTEST == 24
|
1704
|
+
dr = d_fdi(f1,d2,i3);
|
1705
|
+
fprintf(out,"->%g\n",dr);
|
1706
|
+
fflush(out);
|
1707
|
+
dr = 0.0; clear_traces();
|
1708
|
+
ALLOC_CALLBACK();
|
1709
|
+
{
|
1710
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_double, &ffi_type_sint };
|
1711
|
+
ffi_cif cif;
|
1712
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1713
|
+
PREP_CALLBACK(cif,d_fdi_simulator,(void*)&d_fdi);
|
1714
|
+
dr = ((double (ABI_ATTR *) (float,double,int)) callback_code) (f1,d2,i3);
|
1715
|
+
}
|
1716
|
+
FREE_CALLBACK();
|
1717
|
+
fprintf(out,"->%g\n",dr);
|
1718
|
+
fflush(out);
|
1719
|
+
#endif
|
1720
|
+
|
1721
|
+
#if (!defined(DGTEST)) || DGTEST == 25
|
1722
|
+
usr = us_cdcd(c1,d2,c3,d4);
|
1723
|
+
fprintf(out,"->%u\n",usr);
|
1724
|
+
fflush(out);
|
1725
|
+
usr = 0; clear_traces();
|
1726
|
+
ALLOC_CALLBACK();
|
1727
|
+
{
|
1728
|
+
ffi_type* argtypes[] = { &ffi_type_char, &ffi_type_double, &ffi_type_char, &ffi_type_double };
|
1729
|
+
ffi_cif cif;
|
1730
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_ushort);
|
1731
|
+
PREP_CALLBACK(cif,us_cdcd_simulator,(void*)&us_cdcd);
|
1732
|
+
usr = ((ushort (ABI_ATTR *) (char,double,char,double)) callback_code) (c1,d2,c3,d4);
|
1733
|
+
}
|
1734
|
+
FREE_CALLBACK();
|
1735
|
+
fprintf(out,"->%u\n",usr);
|
1736
|
+
fflush(out);
|
1737
|
+
#endif
|
1738
|
+
|
1739
|
+
#if (!defined(DGTEST)) || DGTEST == 26
|
1740
|
+
llr = ll_iiilli(i1,i2,i3,ll1,i13);
|
1741
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
1742
|
+
fflush(out);
|
1743
|
+
llr = 0; clear_traces();
|
1744
|
+
ALLOC_CALLBACK();
|
1745
|
+
{
|
1746
|
+
ffi_type* argtypes[] = { &ffi_type_sint, &ffi_type_sint, &ffi_type_sint, &ffi_type_slonglong, &ffi_type_sint };
|
1747
|
+
ffi_cif cif;
|
1748
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
1749
|
+
PREP_CALLBACK(cif,ll_iiilli_simulator,(void*)&ll_iiilli);
|
1750
|
+
llr = ((long long (ABI_ATTR *) (int,int,int,long long,int)) callback_code) (i1,i2,i3,ll1,i13);
|
1751
|
+
}
|
1752
|
+
FREE_CALLBACK();
|
1753
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
1754
|
+
fflush(out);
|
1755
|
+
#endif
|
1756
|
+
|
1757
|
+
#if (!defined(DGTEST)) || DGTEST == 27
|
1758
|
+
llr = ll_flli(f13,ll1,i13);
|
1759
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
1760
|
+
fflush(out);
|
1761
|
+
llr = 0; clear_traces();
|
1762
|
+
ALLOC_CALLBACK();
|
1763
|
+
{
|
1764
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_slonglong, &ffi_type_sint };
|
1765
|
+
ffi_cif cif;
|
1766
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
1767
|
+
PREP_CALLBACK(cif,ll_flli_simulator,(void*)&ll_flli);
|
1768
|
+
llr = ((long long (ABI_ATTR *) (float,long long,int)) callback_code) (f13,ll1,i13);
|
1769
|
+
}
|
1770
|
+
FREE_CALLBACK();
|
1771
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
1772
|
+
fflush(out);
|
1773
|
+
#endif
|
1774
|
+
|
1775
|
+
#if (!defined(DGTEST)) || DGTEST == 28
|
1776
|
+
fr = f_fi(f1,i9);
|
1777
|
+
fprintf(out,"->%g\n",fr);
|
1778
|
+
fflush(out);
|
1779
|
+
fr = 0.0; clear_traces();
|
1780
|
+
ALLOC_CALLBACK();
|
1781
|
+
{
|
1782
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_sint };
|
1783
|
+
ffi_cif cif;
|
1784
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1785
|
+
PREP_CALLBACK(cif,f_fi_simulator,(void*)&f_fi);
|
1786
|
+
fr = ((float (ABI_ATTR *) (float,int)) callback_code) (f1,i9);
|
1787
|
+
}
|
1788
|
+
FREE_CALLBACK();
|
1789
|
+
fprintf(out,"->%g\n",fr);
|
1790
|
+
fflush(out);
|
1791
|
+
#endif
|
1792
|
+
|
1793
|
+
#if (!defined(DGTEST)) || DGTEST == 29
|
1794
|
+
fr = f_f2i(f1,f2,i9);
|
1795
|
+
fprintf(out,"->%g\n",fr);
|
1796
|
+
fflush(out);
|
1797
|
+
fr = 0.0; clear_traces();
|
1798
|
+
ALLOC_CALLBACK();
|
1799
|
+
{
|
1800
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1801
|
+
ffi_cif cif;
|
1802
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1803
|
+
PREP_CALLBACK(cif,f_f2i_simulator,(void*)&f_f2i);
|
1804
|
+
fr = ((float (ABI_ATTR *) (float,float,int)) callback_code) (f1,f2,i9);
|
1805
|
+
}
|
1806
|
+
FREE_CALLBACK();
|
1807
|
+
fprintf(out,"->%g\n",fr);
|
1808
|
+
fflush(out);
|
1809
|
+
#endif
|
1810
|
+
|
1811
|
+
#if (!defined(DGTEST)) || DGTEST == 30
|
1812
|
+
fr = f_f3i(f1,f2,f3,i9);
|
1813
|
+
fprintf(out,"->%g\n",fr);
|
1814
|
+
fflush(out);
|
1815
|
+
fr = 0.0; clear_traces();
|
1816
|
+
ALLOC_CALLBACK();
|
1817
|
+
{
|
1818
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1819
|
+
ffi_cif cif;
|
1820
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1821
|
+
PREP_CALLBACK(cif,f_f3i_simulator,(void*)&f_f3i);
|
1822
|
+
fr = ((float (ABI_ATTR *) (float,float,float,int)) callback_code) (f1,f2,f3,i9);
|
1823
|
+
}
|
1824
|
+
FREE_CALLBACK();
|
1825
|
+
fprintf(out,"->%g\n",fr);
|
1826
|
+
fflush(out);
|
1827
|
+
#endif
|
1828
|
+
|
1829
|
+
#if (!defined(DGTEST)) || DGTEST == 31
|
1830
|
+
fr = f_f4i(f1,f2,f3,f4,i9);
|
1831
|
+
fprintf(out,"->%g\n",fr);
|
1832
|
+
fflush(out);
|
1833
|
+
fr = 0.0; clear_traces();
|
1834
|
+
ALLOC_CALLBACK();
|
1835
|
+
{
|
1836
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1837
|
+
ffi_cif cif;
|
1838
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1839
|
+
PREP_CALLBACK(cif,f_f4i_simulator,(void*)&f_f4i);
|
1840
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,int)) callback_code) (f1,f2,f3,f4,i9);
|
1841
|
+
}
|
1842
|
+
FREE_CALLBACK();
|
1843
|
+
fprintf(out,"->%g\n",fr);
|
1844
|
+
fflush(out);
|
1845
|
+
#endif
|
1846
|
+
|
1847
|
+
#if (!defined(DGTEST)) || DGTEST == 32
|
1848
|
+
fr = f_f7i(f1,f2,f3,f4,f5,f6,f7,i9);
|
1849
|
+
fprintf(out,"->%g\n",fr);
|
1850
|
+
fflush(out);
|
1851
|
+
fr = 0.0; clear_traces();
|
1852
|
+
ALLOC_CALLBACK();
|
1853
|
+
{
|
1854
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1855
|
+
ffi_cif cif;
|
1856
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1857
|
+
PREP_CALLBACK(cif,f_f7i_simulator,(void*)&f_f7i);
|
1858
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,int)) callback_code) (f1,f2,f3,f4,f5,f6,f7,i9);
|
1859
|
+
}
|
1860
|
+
FREE_CALLBACK();
|
1861
|
+
fprintf(out,"->%g\n",fr);
|
1862
|
+
fflush(out);
|
1863
|
+
#endif
|
1864
|
+
|
1865
|
+
#if (!defined(DGTEST)) || DGTEST == 33
|
1866
|
+
fr = f_f8i(f1,f2,f3,f4,f5,f6,f7,f8,i9);
|
1867
|
+
fprintf(out,"->%g\n",fr);
|
1868
|
+
fflush(out);
|
1869
|
+
fr = 0.0; clear_traces();
|
1870
|
+
ALLOC_CALLBACK();
|
1871
|
+
{
|
1872
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1873
|
+
ffi_cif cif;
|
1874
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1875
|
+
PREP_CALLBACK(cif,f_f8i_simulator,(void*)&f_f8i);
|
1876
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float,int)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8,i9);
|
1877
|
+
}
|
1878
|
+
FREE_CALLBACK();
|
1879
|
+
fprintf(out,"->%g\n",fr);
|
1880
|
+
fflush(out);
|
1881
|
+
#endif
|
1882
|
+
|
1883
|
+
#if (!defined(DGTEST)) || DGTEST == 34
|
1884
|
+
fr = f_f13i(f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,i9);
|
1885
|
+
fprintf(out,"->%g\n",fr);
|
1886
|
+
fflush(out);
|
1887
|
+
fr = 0.0; clear_traces();
|
1888
|
+
ALLOC_CALLBACK();
|
1889
|
+
{
|
1890
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_sint };
|
1891
|
+
ffi_cif cif;
|
1892
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
1893
|
+
PREP_CALLBACK(cif,f_f13i_simulator,(void*)&f_f13i);
|
1894
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float,float,float,float,float,float,int)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,i9);
|
1895
|
+
}
|
1896
|
+
FREE_CALLBACK();
|
1897
|
+
fprintf(out,"->%g\n",fr);
|
1898
|
+
fflush(out);
|
1899
|
+
#endif
|
1900
|
+
|
1901
|
+
#if (!defined(DGTEST)) || DGTEST == 35
|
1902
|
+
dr = d_di(d1,i9);
|
1903
|
+
fprintf(out,"->%g\n",dr);
|
1904
|
+
fflush(out);
|
1905
|
+
dr = 0.0; clear_traces();
|
1906
|
+
ALLOC_CALLBACK();
|
1907
|
+
{
|
1908
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_sint };
|
1909
|
+
ffi_cif cif;
|
1910
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1911
|
+
PREP_CALLBACK(cif,d_di_simulator,(void*)&d_di);
|
1912
|
+
dr = ((double (ABI_ATTR *) (double,int)) callback_code) (d1,i9);
|
1913
|
+
}
|
1914
|
+
FREE_CALLBACK();
|
1915
|
+
fprintf(out,"->%g\n",dr);
|
1916
|
+
fflush(out);
|
1917
|
+
#endif
|
1918
|
+
|
1919
|
+
#if (!defined(DGTEST)) || DGTEST == 36
|
1920
|
+
dr = d_d2i(d1,d2,i9);
|
1921
|
+
fprintf(out,"->%g\n",dr);
|
1922
|
+
fflush(out);
|
1923
|
+
dr = 0.0; clear_traces();
|
1924
|
+
ALLOC_CALLBACK();
|
1925
|
+
{
|
1926
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
1927
|
+
ffi_cif cif;
|
1928
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1929
|
+
PREP_CALLBACK(cif,d_d2i_simulator,(void*)&d_d2i);
|
1930
|
+
dr = ((double (ABI_ATTR *) (double,double,int)) callback_code) (d1,d2,i9);
|
1931
|
+
}
|
1932
|
+
FREE_CALLBACK();
|
1933
|
+
fprintf(out,"->%g\n",dr);
|
1934
|
+
fflush(out);
|
1935
|
+
#endif
|
1936
|
+
|
1937
|
+
#if (!defined(DGTEST)) || DGTEST == 37
|
1938
|
+
dr = d_d3i(d1,d2,d3,i9);
|
1939
|
+
fprintf(out,"->%g\n",dr);
|
1940
|
+
fflush(out);
|
1941
|
+
dr = 0.0; clear_traces();
|
1942
|
+
ALLOC_CALLBACK();
|
1943
|
+
{
|
1944
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
1945
|
+
ffi_cif cif;
|
1946
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1947
|
+
PREP_CALLBACK(cif,d_d3i_simulator,(void*)&d_d3i);
|
1948
|
+
dr = ((double (ABI_ATTR *) (double,double,double,int)) callback_code) (d1,d2,d3,i9);
|
1949
|
+
}
|
1950
|
+
FREE_CALLBACK();
|
1951
|
+
fprintf(out,"->%g\n",dr);
|
1952
|
+
fflush(out);
|
1953
|
+
#endif
|
1954
|
+
|
1955
|
+
#if (!defined(DGTEST)) || DGTEST == 38
|
1956
|
+
dr = d_d4i(d1,d2,d3,d4,i9);
|
1957
|
+
fprintf(out,"->%g\n",dr);
|
1958
|
+
fflush(out);
|
1959
|
+
dr = 0.0; clear_traces();
|
1960
|
+
ALLOC_CALLBACK();
|
1961
|
+
{
|
1962
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
1963
|
+
ffi_cif cif;
|
1964
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1965
|
+
PREP_CALLBACK(cif,d_d4i_simulator,(void*)&d_d4i);
|
1966
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,int)) callback_code) (d1,d2,d3,d4,i9);
|
1967
|
+
}
|
1968
|
+
FREE_CALLBACK();
|
1969
|
+
fprintf(out,"->%g\n",dr);
|
1970
|
+
fflush(out);
|
1971
|
+
#endif
|
1972
|
+
|
1973
|
+
#if (!defined(DGTEST)) || DGTEST == 39
|
1974
|
+
dr = d_d7i(d1,d2,d3,d4,d5,d6,d7,i9);
|
1975
|
+
fprintf(out,"->%g\n",dr);
|
1976
|
+
fflush(out);
|
1977
|
+
dr = 0.0; clear_traces();
|
1978
|
+
ALLOC_CALLBACK();
|
1979
|
+
{
|
1980
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
1981
|
+
ffi_cif cif;
|
1982
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
1983
|
+
PREP_CALLBACK(cif,d_d7i_simulator,(void*)&d_d7i);
|
1984
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,int)) callback_code) (d1,d2,d3,d4,d5,d6,d7,i9);
|
1985
|
+
}
|
1986
|
+
FREE_CALLBACK();
|
1987
|
+
fprintf(out,"->%g\n",dr);
|
1988
|
+
fflush(out);
|
1989
|
+
#endif
|
1990
|
+
|
1991
|
+
#if (!defined(DGTEST)) || DGTEST == 40
|
1992
|
+
dr = d_d8i(d1,d2,d3,d4,d5,d6,d7,d8,i9);
|
1993
|
+
fprintf(out,"->%g\n",dr);
|
1994
|
+
fflush(out);
|
1995
|
+
dr = 0.0; clear_traces();
|
1996
|
+
ALLOC_CALLBACK();
|
1997
|
+
{
|
1998
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
1999
|
+
ffi_cif cif;
|
2000
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2001
|
+
PREP_CALLBACK(cif,d_d8i_simulator,(void*)&d_d8i);
|
2002
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double,int)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8,i9);
|
2003
|
+
}
|
2004
|
+
FREE_CALLBACK();
|
2005
|
+
fprintf(out,"->%g\n",dr);
|
2006
|
+
fflush(out);
|
2007
|
+
#endif
|
2008
|
+
|
2009
|
+
#if (!defined(DGTEST)) || DGTEST == 41
|
2010
|
+
dr = d_d12i(d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,i9);
|
2011
|
+
fprintf(out,"->%g\n",dr);
|
2012
|
+
fflush(out);
|
2013
|
+
dr = 0.0; clear_traces();
|
2014
|
+
ALLOC_CALLBACK();
|
2015
|
+
{
|
2016
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
2017
|
+
ffi_cif cif;
|
2018
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2019
|
+
PREP_CALLBACK(cif,d_d12i_simulator,(void*)&d_d12i);
|
2020
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double,double,double,double,double,int)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,i9);
|
2021
|
+
}
|
2022
|
+
FREE_CALLBACK();
|
2023
|
+
fprintf(out,"->%g\n",dr);
|
2024
|
+
fflush(out);
|
2025
|
+
#endif
|
2026
|
+
|
2027
|
+
#if (!defined(DGTEST)) || DGTEST == 42
|
2028
|
+
dr = d_d13i(d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,i9);
|
2029
|
+
fprintf(out,"->%g\n",dr);
|
2030
|
+
fflush(out);
|
2031
|
+
dr = 0.0; clear_traces();
|
2032
|
+
ALLOC_CALLBACK();
|
2033
|
+
{
|
2034
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_sint };
|
2035
|
+
ffi_cif cif;
|
2036
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2037
|
+
PREP_CALLBACK(cif,d_d13i_simulator,(void*)&d_d13i);
|
2038
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double,double,double,double,double,double,int)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,i9);
|
2039
|
+
}
|
2040
|
+
FREE_CALLBACK();
|
2041
|
+
fprintf(out,"->%g\n",dr);
|
2042
|
+
fflush(out);
|
2043
|
+
#endif
|
2044
|
+
}
|
2045
|
+
|
2046
|
+
/* small structure return tests */
|
2047
|
+
#if (!defined(DGTEST)) || DGTEST == 43
|
2048
|
+
{
|
2049
|
+
Size1 r = S1_v();
|
2050
|
+
fprintf(out,"->{%c}\n",r.x1);
|
2051
|
+
fflush(out);
|
2052
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2053
|
+
ALLOC_CALLBACK();
|
2054
|
+
{
|
2055
|
+
ffi_type* ffi_type_Size1_elements[] = { &ffi_type_char, NULL };
|
2056
|
+
ffi_type ffi_type_Size1;
|
2057
|
+
ffi_type_Size1.type = FFI_TYPE_STRUCT;
|
2058
|
+
ffi_type_Size1.size = sizeof(Size1);
|
2059
|
+
ffi_type_Size1.alignment = alignof_slot(Size1);
|
2060
|
+
ffi_type_Size1.elements = ffi_type_Size1_elements;
|
2061
|
+
ffi_cif cif;
|
2062
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size1);
|
2063
|
+
PREP_CALLBACK(cif,S1_v_simulator,(void*)&S1_v);
|
2064
|
+
r = ((Size1 (ABI_ATTR *) (void)) callback_code) ();
|
2065
|
+
}
|
2066
|
+
FREE_CALLBACK();
|
2067
|
+
fprintf(out,"->{%c}\n",r.x1);
|
2068
|
+
fflush(out);
|
2069
|
+
}
|
2070
|
+
#endif
|
2071
|
+
|
2072
|
+
#if (!defined(DGTEST)) || DGTEST == 44
|
2073
|
+
{
|
2074
|
+
Size2 r = S2_v();
|
2075
|
+
fprintf(out,"->{%c%c}\n",r.x1,r.x2);
|
2076
|
+
fflush(out);
|
2077
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2078
|
+
ALLOC_CALLBACK();
|
2079
|
+
{
|
2080
|
+
ffi_type* ffi_type_Size2_elements[] = { &ffi_type_char, &ffi_type_char, NULL };
|
2081
|
+
ffi_type ffi_type_Size2;
|
2082
|
+
ffi_type_Size2.type = FFI_TYPE_STRUCT;
|
2083
|
+
ffi_type_Size2.size = sizeof(Size2);
|
2084
|
+
ffi_type_Size2.alignment = alignof_slot(Size2);
|
2085
|
+
ffi_type_Size2.elements = ffi_type_Size2_elements;
|
2086
|
+
ffi_cif cif;
|
2087
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size2);
|
2088
|
+
PREP_CALLBACK(cif,S2_v_simulator,(void*)&S2_v);
|
2089
|
+
r = ((Size2 (ABI_ATTR *) (void)) callback_code) ();
|
2090
|
+
}
|
2091
|
+
FREE_CALLBACK();
|
2092
|
+
fprintf(out,"->{%c%c}\n",r.x1,r.x2);
|
2093
|
+
fflush(out);
|
2094
|
+
}
|
2095
|
+
#endif
|
2096
|
+
|
2097
|
+
#if (!defined(DGTEST)) || DGTEST == 45
|
2098
|
+
{
|
2099
|
+
Size3 r = S3_v();
|
2100
|
+
fprintf(out,"->{%c%c%c}\n",r.x1,r.x2,r.x3);
|
2101
|
+
fflush(out);
|
2102
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2103
|
+
ALLOC_CALLBACK();
|
2104
|
+
{
|
2105
|
+
ffi_type* ffi_type_Size3_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2106
|
+
ffi_type ffi_type_Size3;
|
2107
|
+
ffi_type_Size3.type = FFI_TYPE_STRUCT;
|
2108
|
+
ffi_type_Size3.size = sizeof(Size3);
|
2109
|
+
ffi_type_Size3.alignment = alignof_slot(Size3);
|
2110
|
+
ffi_type_Size3.elements = ffi_type_Size3_elements;
|
2111
|
+
ffi_cif cif;
|
2112
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size3);
|
2113
|
+
PREP_CALLBACK(cif,S3_v_simulator,(void*)&S3_v);
|
2114
|
+
r = ((Size3 (ABI_ATTR *) (void)) callback_code) ();
|
2115
|
+
}
|
2116
|
+
FREE_CALLBACK();
|
2117
|
+
fprintf(out,"->{%c%c%c}\n",r.x1,r.x2,r.x3);
|
2118
|
+
fflush(out);
|
2119
|
+
}
|
2120
|
+
#endif
|
2121
|
+
|
2122
|
+
#if (!defined(DGTEST)) || DGTEST == 46
|
2123
|
+
{
|
2124
|
+
Size4 r = S4_v();
|
2125
|
+
fprintf(out,"->{%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4);
|
2126
|
+
fflush(out);
|
2127
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2128
|
+
ALLOC_CALLBACK();
|
2129
|
+
{
|
2130
|
+
ffi_type* ffi_type_Size4_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2131
|
+
ffi_type ffi_type_Size4;
|
2132
|
+
ffi_type_Size4.type = FFI_TYPE_STRUCT;
|
2133
|
+
ffi_type_Size4.size = sizeof(Size4);
|
2134
|
+
ffi_type_Size4.alignment = alignof_slot(Size4);
|
2135
|
+
ffi_type_Size4.elements = ffi_type_Size4_elements;
|
2136
|
+
ffi_cif cif;
|
2137
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size4);
|
2138
|
+
PREP_CALLBACK(cif,S4_v_simulator,(void*)&S4_v);
|
2139
|
+
r = ((Size4 (ABI_ATTR *) (void)) callback_code) ();
|
2140
|
+
}
|
2141
|
+
FREE_CALLBACK();
|
2142
|
+
fprintf(out,"->{%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4);
|
2143
|
+
fflush(out);
|
2144
|
+
}
|
2145
|
+
#endif
|
2146
|
+
|
2147
|
+
#if (!defined(DGTEST)) || DGTEST == 47
|
2148
|
+
{
|
2149
|
+
Size7 r = S7_v();
|
2150
|
+
fprintf(out,"->{%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7);
|
2151
|
+
fflush(out);
|
2152
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2153
|
+
ALLOC_CALLBACK();
|
2154
|
+
{
|
2155
|
+
ffi_type* ffi_type_Size7_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2156
|
+
ffi_type ffi_type_Size7;
|
2157
|
+
ffi_type_Size7.type = FFI_TYPE_STRUCT;
|
2158
|
+
ffi_type_Size7.size = sizeof(Size7);
|
2159
|
+
ffi_type_Size7.alignment = alignof_slot(Size7);
|
2160
|
+
ffi_type_Size7.elements = ffi_type_Size7_elements;
|
2161
|
+
ffi_cif cif;
|
2162
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size7);
|
2163
|
+
PREP_CALLBACK(cif,S7_v_simulator,(void*)&S7_v);
|
2164
|
+
r = ((Size7 (ABI_ATTR *) (void)) callback_code) ();
|
2165
|
+
}
|
2166
|
+
FREE_CALLBACK();
|
2167
|
+
fprintf(out,"->{%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7);
|
2168
|
+
fflush(out);
|
2169
|
+
}
|
2170
|
+
#endif
|
2171
|
+
|
2172
|
+
#if (!defined(DGTEST)) || DGTEST == 48
|
2173
|
+
{
|
2174
|
+
Size8 r = S8_v();
|
2175
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8);
|
2176
|
+
fflush(out);
|
2177
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2178
|
+
ALLOC_CALLBACK();
|
2179
|
+
{
|
2180
|
+
ffi_type* ffi_type_Size8_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2181
|
+
ffi_type ffi_type_Size8;
|
2182
|
+
ffi_type_Size8.type = FFI_TYPE_STRUCT;
|
2183
|
+
ffi_type_Size8.size = sizeof(Size8);
|
2184
|
+
ffi_type_Size8.alignment = alignof_slot(Size8);
|
2185
|
+
ffi_type_Size8.elements = ffi_type_Size8_elements;
|
2186
|
+
ffi_cif cif;
|
2187
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size8);
|
2188
|
+
PREP_CALLBACK(cif,S8_v_simulator,(void*)&S8_v);
|
2189
|
+
r = ((Size8 (ABI_ATTR *) (void)) callback_code) ();
|
2190
|
+
}
|
2191
|
+
FREE_CALLBACK();
|
2192
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8);
|
2193
|
+
fflush(out);
|
2194
|
+
}
|
2195
|
+
#endif
|
2196
|
+
|
2197
|
+
#if (!defined(DGTEST)) || DGTEST == 49
|
2198
|
+
{
|
2199
|
+
Size12 r = S12_v();
|
2200
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12);
|
2201
|
+
fflush(out);
|
2202
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2203
|
+
ALLOC_CALLBACK();
|
2204
|
+
{
|
2205
|
+
ffi_type* ffi_type_Size12_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2206
|
+
ffi_type ffi_type_Size12;
|
2207
|
+
ffi_type_Size12.type = FFI_TYPE_STRUCT;
|
2208
|
+
ffi_type_Size12.size = sizeof(Size12);
|
2209
|
+
ffi_type_Size12.alignment = alignof_slot(Size12);
|
2210
|
+
ffi_type_Size12.elements = ffi_type_Size12_elements;
|
2211
|
+
ffi_cif cif;
|
2212
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size12);
|
2213
|
+
PREP_CALLBACK(cif,S12_v_simulator,(void*)&S12_v);
|
2214
|
+
r = ((Size12 (ABI_ATTR *) (void)) callback_code) ();
|
2215
|
+
}
|
2216
|
+
FREE_CALLBACK();
|
2217
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12);
|
2218
|
+
fflush(out);
|
2219
|
+
}
|
2220
|
+
#endif
|
2221
|
+
|
2222
|
+
#if (!defined(DGTEST)) || DGTEST == 50
|
2223
|
+
{
|
2224
|
+
Size15 r = S15_v();
|
2225
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12,r.x13,r.x14,r.x15);
|
2226
|
+
fflush(out);
|
2227
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2228
|
+
ALLOC_CALLBACK();
|
2229
|
+
{
|
2230
|
+
ffi_type* ffi_type_Size15_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2231
|
+
ffi_type ffi_type_Size15;
|
2232
|
+
ffi_type_Size15.type = FFI_TYPE_STRUCT;
|
2233
|
+
ffi_type_Size15.size = sizeof(Size15);
|
2234
|
+
ffi_type_Size15.alignment = alignof_slot(Size15);
|
2235
|
+
ffi_type_Size15.elements = ffi_type_Size15_elements;
|
2236
|
+
ffi_cif cif;
|
2237
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size15);
|
2238
|
+
PREP_CALLBACK(cif,S15_v_simulator,(void*)&S15_v);
|
2239
|
+
r = ((Size15 (ABI_ATTR *) (void)) callback_code) ();
|
2240
|
+
}
|
2241
|
+
FREE_CALLBACK();
|
2242
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12,r.x13,r.x14,r.x15);
|
2243
|
+
fflush(out);
|
2244
|
+
}
|
2245
|
+
#endif
|
2246
|
+
|
2247
|
+
#if (!defined(DGTEST)) || DGTEST == 51
|
2248
|
+
{
|
2249
|
+
Size16 r = S16_v();
|
2250
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12,r.x13,r.x14,r.x15,r.x16);
|
2251
|
+
fflush(out);
|
2252
|
+
memset(&r,0,sizeof(r)); clear_traces();
|
2253
|
+
ALLOC_CALLBACK();
|
2254
|
+
{
|
2255
|
+
ffi_type* ffi_type_Size16_elements[] = { &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, &ffi_type_char, NULL };
|
2256
|
+
ffi_type ffi_type_Size16;
|
2257
|
+
ffi_type_Size16.type = FFI_TYPE_STRUCT;
|
2258
|
+
ffi_type_Size16.size = sizeof(Size16);
|
2259
|
+
ffi_type_Size16.alignment = alignof_slot(Size16);
|
2260
|
+
ffi_type_Size16.elements = ffi_type_Size16_elements;
|
2261
|
+
ffi_cif cif;
|
2262
|
+
FFI_PREP_CIF_NOARGS(cif,ffi_type_Size16);
|
2263
|
+
PREP_CALLBACK(cif,S16_v_simulator,(void*)&S16_v);
|
2264
|
+
r = ((Size16 (ABI_ATTR *) (void)) callback_code) ();
|
2265
|
+
}
|
2266
|
+
FREE_CALLBACK();
|
2267
|
+
fprintf(out,"->{%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c%c}\n",r.x1,r.x2,r.x3,r.x4,r.x5,r.x6,r.x7,r.x8,r.x9,r.x10,r.x11,r.x12,r.x13,r.x14,r.x15,r.x16);
|
2268
|
+
fflush(out);
|
2269
|
+
}
|
2270
|
+
#endif
|
2271
|
+
|
2272
|
+
|
2273
|
+
/* structure tests */
|
2274
|
+
{ Int Ir;
|
2275
|
+
Char Cr;
|
2276
|
+
Float Fr;
|
2277
|
+
Double Dr;
|
2278
|
+
J Jr;
|
2279
|
+
#ifndef SKIP_EXTRA_STRUCTS
|
2280
|
+
T Tr;
|
2281
|
+
X Xr;
|
2282
|
+
#endif
|
2283
|
+
|
2284
|
+
#if (!defined(DGTEST)) || DGTEST == 52
|
2285
|
+
Ir = I_III(I1,I2,I3);
|
2286
|
+
fprintf(out,"->{%d}\n",Ir.x);
|
2287
|
+
fflush(out);
|
2288
|
+
Ir.x = 0; clear_traces();
|
2289
|
+
ALLOC_CALLBACK();
|
2290
|
+
{
|
2291
|
+
ffi_type* ffi_type_Int_elements[] = { &ffi_type_sint, NULL };
|
2292
|
+
ffi_type ffi_type_Int;
|
2293
|
+
ffi_type_Int.type = FFI_TYPE_STRUCT;
|
2294
|
+
ffi_type_Int.size = sizeof(Int);
|
2295
|
+
ffi_type_Int.alignment = alignof_slot(Int);
|
2296
|
+
ffi_type_Int.elements = ffi_type_Int_elements;
|
2297
|
+
ffi_type* argtypes[] = { &ffi_type_Int, &ffi_type_Int, &ffi_type_Int };
|
2298
|
+
ffi_cif cif;
|
2299
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_Int);
|
2300
|
+
PREP_CALLBACK(cif,I_III_simulator,(void*)&I_III);
|
2301
|
+
Ir = ((Int (ABI_ATTR *) (Int,Int,Int)) callback_code) (I1,I2,I3);
|
2302
|
+
}
|
2303
|
+
FREE_CALLBACK();
|
2304
|
+
fprintf(out,"->{%d}\n",Ir.x);
|
2305
|
+
fflush(out);
|
2306
|
+
#endif
|
2307
|
+
|
2308
|
+
#if (!defined(DGTEST)) || DGTEST == 53
|
2309
|
+
Cr = C_CdC(C1,d2,C3);
|
2310
|
+
fprintf(out,"->{'%c'}\n",Cr.x);
|
2311
|
+
fflush(out);
|
2312
|
+
Cr.x = '\0'; clear_traces();
|
2313
|
+
ALLOC_CALLBACK();
|
2314
|
+
{
|
2315
|
+
ffi_type* ffi_type_Char_elements[] = { &ffi_type_char, NULL };
|
2316
|
+
ffi_type ffi_type_Char;
|
2317
|
+
ffi_type_Char.type = FFI_TYPE_STRUCT;
|
2318
|
+
ffi_type_Char.size = sizeof(Char);
|
2319
|
+
ffi_type_Char.alignment = alignof_slot(Char);
|
2320
|
+
ffi_type_Char.elements = ffi_type_Char_elements;
|
2321
|
+
ffi_type* argtypes[] = { &ffi_type_Char, &ffi_type_double, &ffi_type_Char };
|
2322
|
+
ffi_cif cif;
|
2323
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_Char);
|
2324
|
+
PREP_CALLBACK(cif,C_CdC_simulator,(void*)&C_CdC);
|
2325
|
+
Cr = ((Char (ABI_ATTR *) (Char,double,Char)) callback_code) (C1,d2,C3);
|
2326
|
+
}
|
2327
|
+
FREE_CALLBACK();
|
2328
|
+
fprintf(out,"->{'%c'}\n",Cr.x);
|
2329
|
+
fflush(out);
|
2330
|
+
#endif
|
2331
|
+
|
2332
|
+
#if (!defined(DGTEST)) || DGTEST == 54
|
2333
|
+
Fr = F_Ffd(F1,f2,d3);
|
2334
|
+
fprintf(out,"->{%g}\n",Fr.x);
|
2335
|
+
fflush(out);
|
2336
|
+
Fr.x = 0.0; clear_traces();
|
2337
|
+
ALLOC_CALLBACK();
|
2338
|
+
{
|
2339
|
+
ffi_type* ffi_type_Float_elements[] = { &ffi_type_float, NULL };
|
2340
|
+
ffi_type ffi_type_Float;
|
2341
|
+
ffi_type_Float.type = FFI_TYPE_STRUCT;
|
2342
|
+
ffi_type_Float.size = sizeof(Float);
|
2343
|
+
ffi_type_Float.alignment = alignof_slot(Float);
|
2344
|
+
ffi_type_Float.elements = ffi_type_Float_elements;
|
2345
|
+
ffi_type* argtypes[] = { &ffi_type_Float, &ffi_type_float, &ffi_type_double };
|
2346
|
+
ffi_cif cif;
|
2347
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_Float);
|
2348
|
+
PREP_CALLBACK(cif,F_Ffd_simulator,(void*)&F_Ffd);
|
2349
|
+
Fr = ((Float (ABI_ATTR *) (Float,float,double)) callback_code) (F1,f2,d3);
|
2350
|
+
}
|
2351
|
+
FREE_CALLBACK();
|
2352
|
+
fprintf(out,"->{%g}\n",Fr.x);
|
2353
|
+
fflush(out);
|
2354
|
+
#endif
|
2355
|
+
|
2356
|
+
#if (!defined(DGTEST)) || DGTEST == 55
|
2357
|
+
Dr = D_fDd(f1,D2,d3);
|
2358
|
+
fprintf(out,"->{%g}\n",Dr.x);
|
2359
|
+
fflush(out);
|
2360
|
+
Dr.x = 0.0; clear_traces();
|
2361
|
+
ALLOC_CALLBACK();
|
2362
|
+
{
|
2363
|
+
ffi_type* ffi_type_Double_elements[] = { &ffi_type_double, NULL };
|
2364
|
+
ffi_type ffi_type_Double;
|
2365
|
+
ffi_type_Double.type = FFI_TYPE_STRUCT;
|
2366
|
+
ffi_type_Double.size = sizeof(Double);
|
2367
|
+
ffi_type_Double.alignment = alignof_slot(Double);
|
2368
|
+
ffi_type_Double.elements = ffi_type_Double_elements;
|
2369
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_Double, &ffi_type_double };
|
2370
|
+
ffi_cif cif;
|
2371
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_Double);
|
2372
|
+
PREP_CALLBACK(cif,D_fDd_simulator,(void*)&D_fDd);
|
2373
|
+
Dr = ((Double (ABI_ATTR *) (float,Double,double)) callback_code) (f1,D2,d3);
|
2374
|
+
}
|
2375
|
+
FREE_CALLBACK();
|
2376
|
+
fprintf(out,"->{%g}\n",Dr.x);
|
2377
|
+
fflush(out);
|
2378
|
+
#endif
|
2379
|
+
|
2380
|
+
#if (!defined(DGTEST)) || DGTEST == 56
|
2381
|
+
Dr = D_Dfd(D1,f2,d3);
|
2382
|
+
fprintf(out,"->{%g}\n",Dr.x);
|
2383
|
+
fflush(out);
|
2384
|
+
Dr.x = 0.0; clear_traces();
|
2385
|
+
ALLOC_CALLBACK();
|
2386
|
+
{
|
2387
|
+
ffi_type* ffi_type_Double_elements[] = { &ffi_type_double, NULL };
|
2388
|
+
ffi_type ffi_type_Double;
|
2389
|
+
ffi_type_Double.type = FFI_TYPE_STRUCT;
|
2390
|
+
ffi_type_Double.size = sizeof(Double);
|
2391
|
+
ffi_type_Double.alignment = alignof_slot(Double);
|
2392
|
+
ffi_type_Double.elements = ffi_type_Double_elements;
|
2393
|
+
ffi_type* argtypes[] = { &ffi_type_Double, &ffi_type_float, &ffi_type_double };
|
2394
|
+
ffi_cif cif;
|
2395
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_Double);
|
2396
|
+
PREP_CALLBACK(cif,D_Dfd_simulator,(void*)&D_Dfd);
|
2397
|
+
Dr = ((Double (ABI_ATTR *) (Double,float,double)) callback_code) (D1,f2,d3);
|
2398
|
+
}
|
2399
|
+
FREE_CALLBACK();
|
2400
|
+
fprintf(out,"->{%g}\n",Dr.x);
|
2401
|
+
fflush(out);
|
2402
|
+
#endif
|
2403
|
+
|
2404
|
+
#if (!defined(DGTEST)) || DGTEST == 57
|
2405
|
+
Jr = J_JiJ(J1,i2,J2);
|
2406
|
+
fprintf(out,"->{%ld,%ld}\n",Jr.l1,Jr.l2);
|
2407
|
+
fflush(out);
|
2408
|
+
Jr.l1 = Jr.l2 = 0; clear_traces();
|
2409
|
+
ALLOC_CALLBACK();
|
2410
|
+
{
|
2411
|
+
ffi_type* ffi_type_J_elements[] = { &ffi_type_slong, &ffi_type_slong, NULL };
|
2412
|
+
ffi_type ffi_type_J;
|
2413
|
+
ffi_type_J.type = FFI_TYPE_STRUCT;
|
2414
|
+
ffi_type_J.size = sizeof(J);
|
2415
|
+
ffi_type_J.alignment = alignof_slot(J);
|
2416
|
+
ffi_type_J.elements = ffi_type_J_elements;
|
2417
|
+
ffi_type* argtypes[] = { &ffi_type_J, &ffi_type_sint, &ffi_type_J };
|
2418
|
+
ffi_cif cif;
|
2419
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_J);
|
2420
|
+
PREP_CALLBACK(cif,J_JiJ_simulator,(void*)&J_JiJ);
|
2421
|
+
Jr = ((J (ABI_ATTR *) (J,int,J)) callback_code) (J1,i2,J2);
|
2422
|
+
}
|
2423
|
+
FREE_CALLBACK();
|
2424
|
+
fprintf(out,"->{%ld,%ld}\n",Jr.l1,Jr.l2);
|
2425
|
+
fflush(out);
|
2426
|
+
#endif
|
2427
|
+
|
2428
|
+
#ifndef SKIP_EXTRA_STRUCTS
|
2429
|
+
#if (!defined(DGTEST)) || DGTEST == 58
|
2430
|
+
Tr = T_TcT(T1,' ',T2);
|
2431
|
+
fprintf(out,"->{\"%c%c%c\"}\n",Tr.c[0],Tr.c[1],Tr.c[2]);
|
2432
|
+
fflush(out);
|
2433
|
+
Tr.c[0] = Tr.c[1] = Tr.c[2] = 0; clear_traces();
|
2434
|
+
ALLOC_CALLBACK();
|
2435
|
+
{
|
2436
|
+
ffi_type* ffi_type_T_elements[] = { ??, NULL };
|
2437
|
+
ffi_type ffi_type_T;
|
2438
|
+
ffi_type_T.type = FFI_TYPE_STRUCT;
|
2439
|
+
ffi_type_T.size = sizeof(T);
|
2440
|
+
ffi_type_T.alignment = alignof_slot(T);
|
2441
|
+
ffi_type_T.elements = ffi_type_T_elements;
|
2442
|
+
ffi_type* argtypes[] = { &ffi_type_T, &ffi_type_char, &ffi_type_T };
|
2443
|
+
ffi_cif cif;
|
2444
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_T);
|
2445
|
+
PREP_CALLBACK(cif,T_TcT_simulator,(void*)&T_TcT);
|
2446
|
+
Tr = ((T (ABI_ATTR *) (T,char,T)) callback_code) (T1,' ',T2);
|
2447
|
+
}
|
2448
|
+
FREE_CALLBACK();
|
2449
|
+
fprintf(out,"->{\"%c%c%c\"}\n",Tr.c[0],Tr.c[1],Tr.c[2]);
|
2450
|
+
fflush(out);
|
2451
|
+
#endif
|
2452
|
+
|
2453
|
+
#ifndef SKIP_X
|
2454
|
+
#if (!defined(DGTEST)) || DGTEST == 59
|
2455
|
+
Xr = X_BcdB(B1,c2,d3,B2);
|
2456
|
+
fprintf(out,"->{\"%s\",'%c'}\n",Xr.c,Xr.c1);
|
2457
|
+
fflush(out);
|
2458
|
+
Xr.c[0]=Xr.c1='\0'; clear_traces();
|
2459
|
+
ALLOC_CALLBACK();
|
2460
|
+
{
|
2461
|
+
ffi_type* ffi_type_X_elements[] = { ??, NULL };
|
2462
|
+
ffi_type ffi_type_X;
|
2463
|
+
ffi_type_X.type = FFI_TYPE_STRUCT;
|
2464
|
+
ffi_type_X.size = sizeof(X);
|
2465
|
+
ffi_type_X.alignment = alignof_slot(X);
|
2466
|
+
ffi_type_X.elements = ffi_type_X_elements;
|
2467
|
+
ffi_type* argtypes[] = { &ffi_type_X, &ffi_type_char, &ffi_type_double, &ffi_type_X };
|
2468
|
+
ffi_cif cif;
|
2469
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_X);
|
2470
|
+
PREP_CALLBACK(cif,X_BcdB_simulator,(void*)&X_BcdB);
|
2471
|
+
Xr = ((X (ABI_ATTR *) (B,char,double,B)) callback_code) (B1,c2,d3,B2);
|
2472
|
+
}
|
2473
|
+
FREE_CALLBACK();
|
2474
|
+
fprintf(out,"->{\"%s\",'%c'}\n",Xr.c,Xr.c1);
|
2475
|
+
fflush(out);
|
2476
|
+
#endif
|
2477
|
+
#endif
|
2478
|
+
#endif
|
2479
|
+
}
|
2480
|
+
|
2481
|
+
|
2482
|
+
/* gpargs boundary tests */
|
2483
|
+
{
|
2484
|
+
ffi_type* ffi_type_K_elements[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, NULL };
|
2485
|
+
ffi_type ffi_type_K;
|
2486
|
+
ffi_type* ffi_type_L_elements[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, NULL };
|
2487
|
+
ffi_type ffi_type_L;
|
2488
|
+
long lr;
|
2489
|
+
long long llr;
|
2490
|
+
float fr;
|
2491
|
+
double dr;
|
2492
|
+
|
2493
|
+
ffi_type_K.type = FFI_TYPE_STRUCT;
|
2494
|
+
ffi_type_K.size = sizeof(K);
|
2495
|
+
ffi_type_K.alignment = alignof_slot(K);
|
2496
|
+
ffi_type_K.elements = ffi_type_K_elements;
|
2497
|
+
|
2498
|
+
ffi_type_L.type = FFI_TYPE_STRUCT;
|
2499
|
+
ffi_type_L.size = sizeof(L);
|
2500
|
+
ffi_type_L.alignment = alignof_slot(L);
|
2501
|
+
ffi_type_L.elements = ffi_type_L_elements;
|
2502
|
+
|
2503
|
+
#if (!defined(DGTEST)) || DGTEST == 60
|
2504
|
+
lr = l_l0K(K1,l9);
|
2505
|
+
fprintf(out,"->%ld\n",lr);
|
2506
|
+
fflush(out);
|
2507
|
+
lr = 0; clear_traces();
|
2508
|
+
ALLOC_CALLBACK();
|
2509
|
+
{
|
2510
|
+
ffi_type* argtypes[] = { &ffi_type_K, &ffi_type_slong };
|
2511
|
+
ffi_cif cif;
|
2512
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2513
|
+
PREP_CALLBACK(cif,l_l0K_simulator,(void*)l_l0K);
|
2514
|
+
lr = ((long (ABI_ATTR *) (K,long)) callback_code) (K1,l9);
|
2515
|
+
}
|
2516
|
+
FREE_CALLBACK();
|
2517
|
+
fprintf(out,"->%ld\n",lr);
|
2518
|
+
fflush(out);
|
2519
|
+
#endif
|
2520
|
+
|
2521
|
+
#if (!defined(DGTEST)) || DGTEST == 61
|
2522
|
+
lr = l_l1K(l1,K1,l9);
|
2523
|
+
fprintf(out,"->%ld\n",lr);
|
2524
|
+
fflush(out);
|
2525
|
+
lr = 0; clear_traces();
|
2526
|
+
ALLOC_CALLBACK();
|
2527
|
+
{
|
2528
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2529
|
+
ffi_cif cif;
|
2530
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2531
|
+
PREP_CALLBACK(cif,l_l1K_simulator,(void*)l_l1K);
|
2532
|
+
lr = ((long (ABI_ATTR *) (long,K,long)) callback_code) (l1,K1,l9);
|
2533
|
+
}
|
2534
|
+
FREE_CALLBACK();
|
2535
|
+
fprintf(out,"->%ld\n",lr);
|
2536
|
+
fflush(out);
|
2537
|
+
#endif
|
2538
|
+
|
2539
|
+
#if (!defined(DGTEST)) || DGTEST == 62
|
2540
|
+
lr = l_l2K(l1,l2,K1,l9);
|
2541
|
+
fprintf(out,"->%ld\n",lr);
|
2542
|
+
fflush(out);
|
2543
|
+
lr = 0; clear_traces();
|
2544
|
+
ALLOC_CALLBACK();
|
2545
|
+
{
|
2546
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2547
|
+
ffi_cif cif;
|
2548
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2549
|
+
PREP_CALLBACK(cif,l_l2K_simulator,(void*)l_l2K);
|
2550
|
+
lr = ((long (ABI_ATTR *) (long,long,K,long)) callback_code) (l1,l2,K1,l9);
|
2551
|
+
}
|
2552
|
+
FREE_CALLBACK();
|
2553
|
+
fprintf(out,"->%ld\n",lr);
|
2554
|
+
fflush(out);
|
2555
|
+
#endif
|
2556
|
+
|
2557
|
+
#if (!defined(DGTEST)) || DGTEST == 63
|
2558
|
+
lr = l_l3K(l1,l2,l3,K1,l9);
|
2559
|
+
fprintf(out,"->%ld\n",lr);
|
2560
|
+
fflush(out);
|
2561
|
+
lr = 0; clear_traces();
|
2562
|
+
ALLOC_CALLBACK();
|
2563
|
+
{
|
2564
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2565
|
+
ffi_cif cif;
|
2566
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2567
|
+
PREP_CALLBACK(cif,l_l3K_simulator,(void*)l_l3K);
|
2568
|
+
lr = ((long (ABI_ATTR *) (long,long,long,K,long)) callback_code) (l1,l2,l3,K1,l9);
|
2569
|
+
}
|
2570
|
+
FREE_CALLBACK();
|
2571
|
+
fprintf(out,"->%ld\n",lr);
|
2572
|
+
fflush(out);
|
2573
|
+
#endif
|
2574
|
+
|
2575
|
+
#if (!defined(DGTEST)) || DGTEST == 64
|
2576
|
+
lr = l_l4K(l1,l2,l3,l4,K1,l9);
|
2577
|
+
fprintf(out,"->%ld\n",lr);
|
2578
|
+
fflush(out);
|
2579
|
+
lr = 0; clear_traces();
|
2580
|
+
ALLOC_CALLBACK();
|
2581
|
+
{
|
2582
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2583
|
+
ffi_cif cif;
|
2584
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2585
|
+
PREP_CALLBACK(cif,l_l4K_simulator,(void*)l_l4K);
|
2586
|
+
lr = ((long (ABI_ATTR *) (long,long,long,long,K,long)) callback_code) (l1,l2,l3,l4,K1,l9);
|
2587
|
+
}
|
2588
|
+
FREE_CALLBACK();
|
2589
|
+
fprintf(out,"->%ld\n",lr);
|
2590
|
+
fflush(out);
|
2591
|
+
#endif
|
2592
|
+
|
2593
|
+
#if (!defined(DGTEST)) || DGTEST == 65
|
2594
|
+
lr = l_l5K(l1,l2,l3,l4,l5,K1,l9);
|
2595
|
+
fprintf(out,"->%ld\n",lr);
|
2596
|
+
fflush(out);
|
2597
|
+
lr = 0; clear_traces();
|
2598
|
+
ALLOC_CALLBACK();
|
2599
|
+
{
|
2600
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2601
|
+
ffi_cif cif;
|
2602
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2603
|
+
PREP_CALLBACK(cif,l_l5K_simulator,(void*)l_l5K);
|
2604
|
+
lr = ((long (ABI_ATTR *) (long,long,long,long,long,K,long)) callback_code) (l1,l2,l3,l4,l5,K1,l9);
|
2605
|
+
}
|
2606
|
+
FREE_CALLBACK();
|
2607
|
+
fprintf(out,"->%ld\n",lr);
|
2608
|
+
fflush(out);
|
2609
|
+
#endif
|
2610
|
+
|
2611
|
+
#if (!defined(DGTEST)) || DGTEST == 66
|
2612
|
+
lr = l_l6K(l1,l2,l3,l4,l5,l6,K1,l9);
|
2613
|
+
fprintf(out,"->%ld\n",lr);
|
2614
|
+
fflush(out);
|
2615
|
+
lr = 0; clear_traces();
|
2616
|
+
ALLOC_CALLBACK();
|
2617
|
+
{
|
2618
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_K, &ffi_type_slong };
|
2619
|
+
ffi_cif cif;
|
2620
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slong);
|
2621
|
+
PREP_CALLBACK(cif,l_l6K_simulator,(void*)l_l6K);
|
2622
|
+
lr = ((long (ABI_ATTR *) (long,long,long,long,long,long,K,long)) callback_code) (l1,l2,l3,l4,l5,l6,K1,l9);
|
2623
|
+
}
|
2624
|
+
FREE_CALLBACK();
|
2625
|
+
fprintf(out,"->%ld\n",lr);
|
2626
|
+
fflush(out);
|
2627
|
+
#endif
|
2628
|
+
|
2629
|
+
#if (!defined(DGTEST)) || DGTEST == 67
|
2630
|
+
fr = f_f17l3L(f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,l6,l7,l8,L1);
|
2631
|
+
fprintf(out,"->%g\n",fr);
|
2632
|
+
fflush(out);
|
2633
|
+
fr = 0.0; clear_traces();
|
2634
|
+
ALLOC_CALLBACK();
|
2635
|
+
{
|
2636
|
+
ffi_type* argtypes[] = { &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_float, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_L };
|
2637
|
+
ffi_cif cif;
|
2638
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_float);
|
2639
|
+
PREP_CALLBACK(cif,f_f17l3L_simulator,(void*)&f_f17l3L);
|
2640
|
+
fr = ((float (ABI_ATTR *) (float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,float,long,long,long,L)) callback_code) (f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14,f15,f16,f17,l6,l7,l8,L1);
|
2641
|
+
}
|
2642
|
+
FREE_CALLBACK();
|
2643
|
+
fprintf(out,"->%g\n",fr);
|
2644
|
+
fflush(out);
|
2645
|
+
#endif
|
2646
|
+
|
2647
|
+
#if (!defined(DGTEST)) || DGTEST == 68
|
2648
|
+
dr = d_d17l3L(d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,d14,d15,d16,d17,l6,l7,l8,L1);
|
2649
|
+
fprintf(out,"->%g\n",dr);
|
2650
|
+
fflush(out);
|
2651
|
+
dr = 0.0; clear_traces();
|
2652
|
+
ALLOC_CALLBACK();
|
2653
|
+
{
|
2654
|
+
ffi_type* argtypes[] = { &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_double, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_L };
|
2655
|
+
ffi_cif cif;
|
2656
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2657
|
+
PREP_CALLBACK(cif,d_d17l3L_simulator,(void*)&d_d17l3L);
|
2658
|
+
dr = ((double (ABI_ATTR *) (double,double,double,double,double,double,double,double,double,double,double,double,double,double,double,double,double,long,long,long,L)) callback_code) (d1,d2,d3,d4,d5,d6,d7,d8,d9,d10,d11,d12,d13,d14,d15,d16,d17,l6,l7,l8,L1);
|
2659
|
+
}
|
2660
|
+
FREE_CALLBACK();
|
2661
|
+
fprintf(out,"->%g\n",dr);
|
2662
|
+
fflush(out);
|
2663
|
+
#endif
|
2664
|
+
|
2665
|
+
#if (!defined(DGTEST)) || DGTEST == 69
|
2666
|
+
llr = ll_l2ll(l1,l2,ll1,l9);
|
2667
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2668
|
+
fflush(out);
|
2669
|
+
llr = 0; clear_traces();
|
2670
|
+
ALLOC_CALLBACK();
|
2671
|
+
{
|
2672
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2673
|
+
ffi_cif cif;
|
2674
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2675
|
+
PREP_CALLBACK(cif,ll_l2ll_simulator,(void*)ll_l2ll);
|
2676
|
+
llr = ((long long (ABI_ATTR *) (long,long,long long,long)) callback_code) (l1,l2,ll1,l9);
|
2677
|
+
}
|
2678
|
+
FREE_CALLBACK();
|
2679
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2680
|
+
fflush(out);
|
2681
|
+
#endif
|
2682
|
+
|
2683
|
+
#if (!defined(DGTEST)) || DGTEST == 70
|
2684
|
+
llr = ll_l3ll(l1,l2,l3,ll1,l9);
|
2685
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2686
|
+
fflush(out);
|
2687
|
+
llr = 0; clear_traces();
|
2688
|
+
ALLOC_CALLBACK();
|
2689
|
+
{
|
2690
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2691
|
+
ffi_cif cif;
|
2692
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2693
|
+
PREP_CALLBACK(cif,ll_l3ll_simulator,(void*)ll_l3ll);
|
2694
|
+
llr = ((long long (ABI_ATTR *) (long,long,long,long long,long)) callback_code) (l1,l2,l3,ll1,l9);
|
2695
|
+
}
|
2696
|
+
FREE_CALLBACK();
|
2697
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2698
|
+
fflush(out);
|
2699
|
+
#endif
|
2700
|
+
|
2701
|
+
#if (!defined(DGTEST)) || DGTEST == 71
|
2702
|
+
llr = ll_l4ll(l1,l2,l3,l4,ll1,l9);
|
2703
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2704
|
+
fflush(out);
|
2705
|
+
llr = 0; clear_traces();
|
2706
|
+
ALLOC_CALLBACK();
|
2707
|
+
{
|
2708
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2709
|
+
ffi_cif cif;
|
2710
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2711
|
+
PREP_CALLBACK(cif,ll_l4ll_simulator,(void*)ll_l4ll);
|
2712
|
+
llr = ((long long (ABI_ATTR *) (long,long,long,long,long long,long)) callback_code) (l1,l2,l3,l4,ll1,l9);
|
2713
|
+
}
|
2714
|
+
FREE_CALLBACK();
|
2715
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2716
|
+
fflush(out);
|
2717
|
+
#endif
|
2718
|
+
|
2719
|
+
#if (!defined(DGTEST)) || DGTEST == 72
|
2720
|
+
llr = ll_l5ll(l1,l2,l3,l4,l5,ll1,l9);
|
2721
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2722
|
+
fflush(out);
|
2723
|
+
llr = 0; clear_traces();
|
2724
|
+
ALLOC_CALLBACK();
|
2725
|
+
{
|
2726
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2727
|
+
ffi_cif cif;
|
2728
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2729
|
+
PREP_CALLBACK(cif,ll_l5ll_simulator,(void*)ll_l5ll);
|
2730
|
+
llr = ((long long (ABI_ATTR *) (long,long,long,long,long,long long,long)) callback_code) (l1,l2,l3,l4,l5,ll1,l9);
|
2731
|
+
}
|
2732
|
+
FREE_CALLBACK();
|
2733
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2734
|
+
fflush(out);
|
2735
|
+
#endif
|
2736
|
+
|
2737
|
+
#if (!defined(DGTEST)) || DGTEST == 73
|
2738
|
+
llr = ll_l6ll(l1,l2,l3,l4,l5,l6,ll1,l9);
|
2739
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2740
|
+
fflush(out);
|
2741
|
+
llr = 0; clear_traces();
|
2742
|
+
ALLOC_CALLBACK();
|
2743
|
+
{
|
2744
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2745
|
+
ffi_cif cif;
|
2746
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2747
|
+
PREP_CALLBACK(cif,ll_l6ll_simulator,(void*)ll_l6ll);
|
2748
|
+
llr = ((long long (ABI_ATTR *) (long,long,long,long,long,long,long long,long)) callback_code) (l1,l2,l3,l4,l5,l6,ll1,l9);
|
2749
|
+
}
|
2750
|
+
FREE_CALLBACK();
|
2751
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2752
|
+
fflush(out);
|
2753
|
+
#endif
|
2754
|
+
|
2755
|
+
#if (!defined(DGTEST)) || DGTEST == 74
|
2756
|
+
llr = ll_l7ll(l1,l2,l3,l4,l5,l6,l7,ll1,l9);
|
2757
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2758
|
+
fflush(out);
|
2759
|
+
llr = 0; clear_traces();
|
2760
|
+
ALLOC_CALLBACK();
|
2761
|
+
{
|
2762
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slonglong, &ffi_type_slong };
|
2763
|
+
ffi_cif cif;
|
2764
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_slonglong);
|
2765
|
+
PREP_CALLBACK(cif,ll_l7ll_simulator,(void*)ll_l7ll);
|
2766
|
+
llr = ((long long (ABI_ATTR *) (long,long,long,long,long,long,long,long long,long)) callback_code) (l1,l2,l3,l4,l5,l6,l7,ll1,l9);
|
2767
|
+
}
|
2768
|
+
FREE_CALLBACK();
|
2769
|
+
fprintf(out,"->0x%lx%08lx\n",(long)(llr>>32),(long)(llr&0xffffffff));
|
2770
|
+
fflush(out);
|
2771
|
+
#endif
|
2772
|
+
|
2773
|
+
#if (!defined(DGTEST)) || DGTEST == 75
|
2774
|
+
dr = d_l2d(l1,l2,ll1,l9);
|
2775
|
+
fprintf(out,"->%g\n",dr);
|
2776
|
+
fflush(out);
|
2777
|
+
dr = 0.0; clear_traces();
|
2778
|
+
ALLOC_CALLBACK();
|
2779
|
+
{
|
2780
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2781
|
+
ffi_cif cif;
|
2782
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2783
|
+
PREP_CALLBACK(cif,d_l2d_simulator,(void*)d_l2d);
|
2784
|
+
dr = ((double (ABI_ATTR *) (long,long,double,long)) callback_code) (l1,l2,ll1,l9);
|
2785
|
+
}
|
2786
|
+
FREE_CALLBACK();
|
2787
|
+
fprintf(out,"->%g\n",dr);
|
2788
|
+
fflush(out);
|
2789
|
+
#endif
|
2790
|
+
|
2791
|
+
#if (!defined(DGTEST)) || DGTEST == 76
|
2792
|
+
dr = d_l3d(l1,l2,l3,ll1,l9);
|
2793
|
+
fprintf(out,"->%g\n",dr);
|
2794
|
+
fflush(out);
|
2795
|
+
dr = 0.0; clear_traces();
|
2796
|
+
ALLOC_CALLBACK();
|
2797
|
+
{
|
2798
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2799
|
+
ffi_cif cif;
|
2800
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2801
|
+
PREP_CALLBACK(cif,d_l3d_simulator,(void*)d_l3d);
|
2802
|
+
dr = ((double (ABI_ATTR *) (long,long,long,double,long)) callback_code) (l1,l2,l3,ll1,l9);
|
2803
|
+
}
|
2804
|
+
FREE_CALLBACK();
|
2805
|
+
fprintf(out,"->%g\n",dr);
|
2806
|
+
fflush(out);
|
2807
|
+
#endif
|
2808
|
+
|
2809
|
+
#if (!defined(DGTEST)) || DGTEST == 77
|
2810
|
+
dr = d_l4d(l1,l2,l3,l4,ll1,l9);
|
2811
|
+
fprintf(out,"->%g\n",dr);
|
2812
|
+
fflush(out);
|
2813
|
+
dr = 0.0; clear_traces();
|
2814
|
+
ALLOC_CALLBACK();
|
2815
|
+
{
|
2816
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2817
|
+
ffi_cif cif;
|
2818
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2819
|
+
PREP_CALLBACK(cif,d_l4d_simulator,(void*)d_l4d);
|
2820
|
+
dr = ((double (ABI_ATTR *) (long,long,long,long,double,long)) callback_code) (l1,l2,l3,l4,ll1,l9);
|
2821
|
+
}
|
2822
|
+
FREE_CALLBACK();
|
2823
|
+
fprintf(out,"->%g\n",dr);
|
2824
|
+
fflush(out);
|
2825
|
+
#endif
|
2826
|
+
|
2827
|
+
#if (!defined(DGTEST)) || DGTEST == 78
|
2828
|
+
dr = d_l5d(l1,l2,l3,l4,l5,ll1,l9);
|
2829
|
+
fprintf(out,"->%g\n",dr);
|
2830
|
+
fflush(out);
|
2831
|
+
dr = 0.0; clear_traces();
|
2832
|
+
ALLOC_CALLBACK();
|
2833
|
+
{
|
2834
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2835
|
+
ffi_cif cif;
|
2836
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2837
|
+
PREP_CALLBACK(cif,d_l5d_simulator,(void*)d_l5d);
|
2838
|
+
dr = ((double (ABI_ATTR *) (long,long,long,long,long,double,long)) callback_code) (l1,l2,l3,l4,l5,ll1,l9);
|
2839
|
+
}
|
2840
|
+
FREE_CALLBACK();
|
2841
|
+
fprintf(out,"->%g\n",dr);
|
2842
|
+
fflush(out);
|
2843
|
+
#endif
|
2844
|
+
|
2845
|
+
#if (!defined(DGTEST)) || DGTEST == 79
|
2846
|
+
dr = d_l6d(l1,l2,l3,l4,l5,l6,ll1,l9);
|
2847
|
+
fprintf(out,"->%g\n",dr);
|
2848
|
+
fflush(out);
|
2849
|
+
dr = 0.0; clear_traces();
|
2850
|
+
ALLOC_CALLBACK();
|
2851
|
+
{
|
2852
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2853
|
+
ffi_cif cif;
|
2854
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2855
|
+
PREP_CALLBACK(cif,d_l6d_simulator,(void*)d_l6d);
|
2856
|
+
dr = ((double (ABI_ATTR *) (long,long,long,long,long,long,double,long)) callback_code) (l1,l2,l3,l4,l5,l6,ll1,l9);
|
2857
|
+
}
|
2858
|
+
FREE_CALLBACK();
|
2859
|
+
fprintf(out,"->%g\n",dr);
|
2860
|
+
fflush(out);
|
2861
|
+
#endif
|
2862
|
+
|
2863
|
+
#if (!defined(DGTEST)) || DGTEST == 80
|
2864
|
+
dr = d_l7d(l1,l2,l3,l4,l5,l6,l7,ll1,l9);
|
2865
|
+
fprintf(out,"->%g\n",dr);
|
2866
|
+
fflush(out);
|
2867
|
+
dr = 0.0; clear_traces();
|
2868
|
+
ALLOC_CALLBACK();
|
2869
|
+
{
|
2870
|
+
ffi_type* argtypes[] = { &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_slong, &ffi_type_double, &ffi_type_slong };
|
2871
|
+
ffi_cif cif;
|
2872
|
+
FFI_PREP_CIF(cif,argtypes,ffi_type_double);
|
2873
|
+
PREP_CALLBACK(cif,d_l7d_simulator,(void*)d_l7d);
|
2874
|
+
dr = ((double (ABI_ATTR *) (long,long,long,long,long,long,long,double,long)) callback_code) (l1,l2,l3,l4,l5,l6,l7,ll1,l9);
|
2875
|
+
}
|
2876
|
+
FREE_CALLBACK();
|
2877
|
+
fprintf(out,"->%g\n",dr);
|
2878
|
+
fflush(out);
|
2879
|
+
#endif
|
2880
|
+
|
2881
|
+
}
|
2882
|
+
|
2883
|
+
exit(0);
|
2884
|
+
}
|
2885
|
+
|