cybrid_api_organization_ruby 0.94.30 → 0.94.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +5 -5
- data/cybrid_api_organization_ruby.gemspec +1 -1
- data/lib/cybrid_api_organization_ruby/api/organizations_organization_api.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_client.rb +1 -1
- data/lib/cybrid_api_organization_ruby/api_error.rb +1 -1
- data/lib/cybrid_api_organization_ruby/configuration.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/error_response_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/models/patch_organization_organization_model.rb +1 -1
- data/lib/cybrid_api_organization_ruby/version.rb +2 -2
- data/lib/cybrid_api_organization_ruby.rb +1 -1
- data/spec/api/organizations_organization_api_spec.rb +1 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/error_response_organization_model_spec.rb +1 -1
- data/spec/models/organization_organization_model_spec.rb +1 -1
- data/spec/models/patch_organization_organization_model_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.16.1.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/byebug-11.1.3/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/gem_make.out +55 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.16.1/mkmf.log +268 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/jaro_winkler-1.5.6/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/psych-5.1.0/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/racc-1.7.1/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/stringio-3.0.8/gem_make.out +5 -5
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/CHANGELOG.md +399 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/Gemfile +14 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/README.md +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/Rakefile +194 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/AbstractMemory.c +1126 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/AbstractMemory.h +176 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ArrayType.c +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ArrayType.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Buffer.c +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Call.c +495 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/DynamicLibrary.c +397 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Function.c +1057 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Function.h +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/FunctionInfo.c +320 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/LastError.c +243 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MappedType.c +211 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MappedType.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MemoryPointer.c +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/MethodHandle.c +350 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Pointer.c +546 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Pointer.h +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Struct.c +893 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Struct.h +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/StructByValue.c +177 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/StructLayout.c +769 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Type.c +447 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Type.h +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Types.c +138 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/Variadic.c +345 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/compat.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/extconf.h +8 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/extconf.rb +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/ffi.c +97 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.appveyor.yml +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.github/workflows/build.yml +460 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.github/workflows/emscripten.yml +171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/.gitignore +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/LICENSE +21 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/Makefile.am +157 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/Makefile.in +2127 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/README.md +526 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/acinclude.m4 +377 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/compile +347 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/config.guess +1754 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/config.sub +1892 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure +22791 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure.ac +451 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/configure.host +337 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/Makefile.in +818 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/libffi.texi +1046 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/fficonfig.h.in +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/Makefile.in +609 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi.h.in +527 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/ffi_common.h +182 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/install-sh +541 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/libtool-version +29 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/ltmain.sh +11448 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +198 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +158 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/man/Makefile.in +565 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/missing +215 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/msvcc.sh +353 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/ffi.c +1129 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/aarch64/sysv.S +543 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/ffi.c +921 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/ffitarget.h +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/internal.h +17 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/arm/sysv.S +456 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/closures.c +1107 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/dlmalloc.c +5171 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/ia64/ffi.c +616 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/ia64/unix.S +585 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/ffi.c +621 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/m32r/ffi.c +249 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/ffi.c +1309 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/ffitarget.h +251 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/n32.S +772 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/mips/o32.S +561 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/moxie/ffi.c +310 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffi.c +673 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/ffitarget.h +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/hpux32.S +417 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/pa/linux.S +427 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/linux64.S +293 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +566 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/prep_cif.c +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/sparc/ffi64.c +624 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/wasm32/ffi.c +934 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffi.c +832 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffi64.c +950 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffitarget.h +164 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/internal.h +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/sysv.S +1272 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/unix64.S +711 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/x86/win64.S +254 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/Makefile.am +135 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/Makefile.in +664 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/lib/libffi.exp +682 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +163 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +48 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +90 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +83 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +91 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +92 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +61 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +112 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +117 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +131 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +93 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +145 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +114 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +116 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +148 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +140 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +155 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +103 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +147 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +113 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +106 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +108 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +111 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +68 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +69 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +99 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +78 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +94 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +79 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +152 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +44 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +45 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +47 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +49 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +46 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +343 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +175 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +161 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +146 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +119 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +121 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +120 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +142 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +124 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +125 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +75 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +118 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi.bsd.mk +40 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/libffi.gnu.mk +32 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ext/ffi_c/rbffi.h +55 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/ffi.gemspec +42 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/autopointer.rb +188 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/compat.rb +43 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/data_converter.rb +67 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/dynamic_library.rb +89 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/enum.rb +303 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/ffi.rb +50 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/function.rb +71 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/library.rb +576 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/library_path.rb +109 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/managedstruct.rb +84 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/platform.rb +187 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct.rb +317 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct_layout.rb +96 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/struct_layout_builder.rb +227 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/types.rb +219 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/variadic.rb +80 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi/version.rb +3 -0
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.16.1/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.16.1.gemspec +34 -0
- metadata +628 -580
- data/vendor/bundle/ruby/3.2.0/cache/ffi-1.15.5.gem +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/gem_make.out +0 -54
- data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/ffi-1.15.5/mkmf.log +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/CHANGELOG.md +0 -338
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Gemfile +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/README.md +0 -136
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/Rakefile +0 -191
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.c +0 -1104
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/AbstractMemory.h +0 -175
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.c +0 -162
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ArrayType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Buffer.c +0 -360
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Call.c +0 -487
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/DynamicLibrary.c +0 -334
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.c +0 -917
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Function.h +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/FunctionInfo.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/LastError.c +0 -225
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.c +0 -168
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MappedType.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MemoryPointer.c +0 -192
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/MethodHandle.c +0 -348
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.c +0 -507
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Pointer.h +0 -59
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.c +0 -822
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Struct.h +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructByValue.c +0 -145
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/StructLayout.c +0 -700
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.c +0 -379
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Type.h +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Types.c +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/Variadic.c +0 -303
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/compat.h +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/extconf.rb +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/ffi.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.appveyor.yml +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.gitignore +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build-in-container.sh +0 -12
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/install.sh +0 -71
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis/site.exp +0 -27
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/.travis.yml +0 -83
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/LICENSE +0 -21
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.am +0 -150
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/Makefile.in +0 -2060
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/README.md +0 -486
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/acinclude.m4 +0 -479
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.guess +0 -1687
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/config.sub +0 -1851
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure +0 -22050
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.ac +0 -415
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/configure.host +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/Makefile.in +0 -815
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/libffi.texi +0 -997
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/doc/version.texi +0 -4
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/fficonfig.h.in +0 -223
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +0 -201
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.am +0 -9
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/Makefile.in +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi.h.in +0 -523
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_cfi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/include/ffi_common.h +0 -153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/install-sh +0 -518
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/libtool-version +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/ltmain.sh +0 -11251
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/man/Makefile.in +0 -562
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/missing +0 -215
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +0 -511
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/msvcc.sh +0 -353
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/ffi.c +0 -1025
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/internal.h +0 -68
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/aarch64/sysv.S +0 -451
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/arcompact.S +0 -135
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffi.c +0 -266
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arc/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffi.c +0 -876
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/ffitarget.h +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/internal.h +0 -7
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/arm/sysv.S +0 -385
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/closures.c +0 -1021
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/dlmalloc.c +0 -5166
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/ffi.c +0 -604
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/ia64/unix.S +0 -567
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/m32r/ffi.c +0 -232
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffi.c +0 -1134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/ffitarget.h +0 -244
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/n32.S +0 -663
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/mips/o32.S +0 -504
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/moxie/ffi.c +0 -285
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/or1k/ffi.c +0 -328
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffi.c +0 -674
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/ffitarget.h +0 -80
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/hpux32.S +0 -370
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/pa/linux.S +0 -380
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +0 -1153
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64.S +0 -291
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +0 -564
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/prep_cif.c +0 -263
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/riscv/ffi.c +0 -481
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/sparc/ffi64.c +0 -608
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi.c +0 -770
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffi64.c +0 -895
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffitarget.h +0 -160
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/ffiw64.c +0 -318
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal.h +0 -29
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/internal64.h +0 -22
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv.S +0 -1138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/sysv_intel.S +0 -995
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/unix64.S +0 -621
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/x86/win64.S +0 -241
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffi.c +0 -298
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/ffitarget.h +0 -53
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/src/xtensa/sysv.S +0 -258
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.am +0 -122
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/Makefile.in +0 -648
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/libffi.exp +0 -660
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +0 -283
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +0 -1745
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +0 -743
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +0 -107
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +0 -38
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +0 -49
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +0 -57
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +0 -196
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +0 -123
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +0 -81
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +0 -82
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +0 -94
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +0 -102
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +0 -89
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +0 -109
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +0 -98
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +0 -113
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +0 -99
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +0 -97
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +0 -88
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +0 -90
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +0 -132
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +0 -115
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +0 -95
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +0 -92
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +0 -93
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +0 -66
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +0 -105
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +0 -61
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +0 -91
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +0 -86
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +0 -74
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +0 -142
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +0 -114
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +0 -45
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +0 -43
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +0 -138
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +0 -343
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +0 -152
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +0 -161
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +0 -134
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +0 -121
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +0 -110
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +0 -112
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +0 -111
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +0 -131
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +0 -124
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +0 -125
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +0 -70
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +0 -117
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +0 -54
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.bsd.mk +0 -40
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/libffi.gnu.mk +0 -32
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ext/ffi_c/rbffi.h +0 -55
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/ffi.gemspec +0 -42
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/autopointer.rb +0 -203
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/data_converter.rb +0 -67
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/enum.rb +0 -296
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/ffi.rb +0 -47
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/library.rb +0 -592
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/managedstruct.rb +0 -84
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/platform.rb +0 -185
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct.rb +0 -316
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout.rb +0 -96
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/struct_layout_builder.rb +0 -227
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/types.rb +0 -194
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/variadic.rb +0 -69
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi/version.rb +0 -3
- data/vendor/bundle/ruby/3.2.0/gems/ffi-1.15.5/lib/ffi_c.so +0 -0
- data/vendor/bundle/ruby/3.2.0/specifications/ffi-1.15.5.gemspec +0 -33
- /data/vendor/bundle/ruby/3.2.0/extensions/x86_64-linux/3.2.0/{ffi-1.15.5 → ffi-1.16.1}/gem.build_complete +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/COPYING +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/LICENSE +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/LICENSE.SPECS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Call.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/ClosurePool.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/ClosurePool.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/DynamicLibrary.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LastError.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LongDouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/LongDouble.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/MemoryPointer.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/MethodHandle.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Platform.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Platform.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/StructByValue.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Thread.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Thread.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/Types.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/ar-lib +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/bfin-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/compile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/m32r-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/moxie-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/or1k-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/powerpc-eabisim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/.travis → ffi-1.16.1/ext/ffi_c/libffi/.ci}/wine-sim.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/.gitattributes +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/.github/issue_template.md +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/ChangeLog.old +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/autogen.sh +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/doc/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.map.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.pc.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/libtool-ldflags +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/asmcfi.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_append_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_configure_args.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/m4/ax_require_defined.m4 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/make_sunver.pl +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/Makefile.am +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_call.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_prep_cif.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/aarch64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/alpha/osf.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/avr32/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/bfin/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/cris/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/csky/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/debug.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/frv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/ia64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/ia64/ia64_flags.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/java_raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/kvx/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m32r/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m32r/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m68k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/m88k/obsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/metag/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/microblaze/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/moxie/eabi.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/moxie/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/nios2/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/or1k/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/or1k/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/aix.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/aix_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/asm.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/darwin.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/powerpc/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/raw_api.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/riscv/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/riscv/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/s390/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sh64/sysv.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/internal.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/v8.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/sparc/v9.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/tile/tile.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/types.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/elfbsd.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/ffi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/vax/ffitarget.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/x86/asmnames.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/src/x86/win64_intel.S +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/stamp-h.in +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/config/default.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc_tc.c} +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/err_bad_abi.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.complex → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.closures}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/problem1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.closures/stret_large2.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/ext/ffi_c/libffi/testsuite/libffi.go → ffi-1.16.1/ext/ffi_c/libffi/testsuite/libffi.complex}/ffitest.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.darwin.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.vc.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/libffi.vc64.mk +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/ext/ffi_c/rbffi_endian.h +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/abstract_memory.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/buffer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/callback.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/errno.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/io.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/memorypointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/aarch64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/x86_64-windows → ffi-1.16.1/lib/ffi/platform/aarch64-windows}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/arm-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-gnu/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/i386-windows/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/ia64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mips64el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsel-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa32r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa32r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa64r6-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/mipsisa64r6el-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-aix/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/powerpc64le-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/riscv64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/s390-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/s390x-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparc-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparc-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5/lib/ffi/platform/sparc64-linux → ffi-1.16.1/lib/ffi/platform/sparcv9-linux}/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparcv9-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/sparcv9-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-cygwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-darwin/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-dragonflybsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-freebsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-freebsd12/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-haiku/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-linux/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-msys/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-netbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-openbsd/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/platform/x86_64-solaris/types.conf +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/pointer.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/struct_by_reference.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/const_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/generator_task.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/struct_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/tools/types_generator.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi/union.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/lib/ffi.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/rakelib/ffi_gem_helper.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/getlogin.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/getpid.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/gettimeofday.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/hello.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/inotify.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/pty.rb +0 -0
- /data/vendor/bundle/ruby/3.2.0/gems/{ffi-1.15.5 → ffi-1.16.1}/samples/qsort.rb +0 -0
@@ -0,0 +1,1126 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2008, 2009, Wayne Meissner
|
3
|
+
* Copyright (C) 2009 Jake Douglas <jake@shiftedlabs.com>
|
4
|
+
* Copyright (C) 2008 Luc Heinrich <luc@honk-honk.com>
|
5
|
+
*
|
6
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
7
|
+
* All rights reserved.
|
8
|
+
*
|
9
|
+
* Redistribution and use in source and binary forms, with or without
|
10
|
+
* modification, are permitted provided that the following conditions are met:
|
11
|
+
* * Redistributions of source code must retain the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer.
|
13
|
+
* * Redistributions in binary form must reproduce the above copyright
|
14
|
+
* notice, this list of conditions and the following disclaimer in the
|
15
|
+
* documentation and/or other materials provided with the distribution.
|
16
|
+
* * Neither the name of the Ruby FFI project nor the
|
17
|
+
* names of its contributors may be used to endorse or promote products
|
18
|
+
* derived from this software without specific prior written permission.
|
19
|
+
*
|
20
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
21
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
22
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
24
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
25
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
26
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
27
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
29
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
*/
|
31
|
+
|
32
|
+
#include <sys/types.h>
|
33
|
+
#ifndef _MSC_VER
|
34
|
+
# include <sys/param.h>
|
35
|
+
#endif
|
36
|
+
#include <stdint.h>
|
37
|
+
#include <stdbool.h>
|
38
|
+
|
39
|
+
#include <limits.h>
|
40
|
+
#include <ruby.h>
|
41
|
+
|
42
|
+
#include "rbffi.h"
|
43
|
+
#include "compat.h"
|
44
|
+
#include "AbstractMemory.h"
|
45
|
+
#include "Pointer.h"
|
46
|
+
#include "Function.h"
|
47
|
+
#include "LongDouble.h"
|
48
|
+
|
49
|
+
#ifdef PRIsVALUE
|
50
|
+
# define RB_OBJ_CLASSNAME(obj) rb_obj_class(obj)
|
51
|
+
# define RB_OBJ_STRING(obj) (obj)
|
52
|
+
#else
|
53
|
+
# define PRIsVALUE "s"
|
54
|
+
# define RB_OBJ_CLASSNAME(obj) rb_obj_classname(obj)
|
55
|
+
# define RB_OBJ_STRING(obj) StringValueCStr(obj)
|
56
|
+
#endif
|
57
|
+
|
58
|
+
static size_t memsize(const void *data);
|
59
|
+
static inline char* memory_address(VALUE self);
|
60
|
+
VALUE rbffi_AbstractMemoryClass = Qnil;
|
61
|
+
static VALUE NullPointerErrorClass = Qnil;
|
62
|
+
static ID id_to_ptr = 0, id_plus = 0, id_call = 0;
|
63
|
+
|
64
|
+
const rb_data_type_t rbffi_abstract_memory_data_type = { /* extern */
|
65
|
+
.wrap_struct_name = "FFI::AbstractMemory",
|
66
|
+
.function = {
|
67
|
+
.dmark = NULL,
|
68
|
+
.dfree = RUBY_TYPED_DEFAULT_FREE,
|
69
|
+
.dsize = memsize,
|
70
|
+
},
|
71
|
+
// IMPORTANT: WB_PROTECTED objects must only use the RB_OBJ_WRITE()
|
72
|
+
// macro to update VALUE references, as to trigger write barriers.
|
73
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY | RUBY_TYPED_WB_PROTECTED | FFI_RUBY_TYPED_FROZEN_SHAREABLE
|
74
|
+
};
|
75
|
+
|
76
|
+
static size_t
|
77
|
+
memsize(const void *data)
|
78
|
+
{
|
79
|
+
return sizeof(AbstractMemory);
|
80
|
+
}
|
81
|
+
|
82
|
+
#define VAL(x, swap) (unlikely(((memory->flags & MEM_SWAP) != 0)) ? swap((x)) : (x))
|
83
|
+
|
84
|
+
#define NUM_OP(name, type, toNative, fromNative, swap) \
|
85
|
+
static void memory_op_put_##name(AbstractMemory* memory, long off, VALUE value); \
|
86
|
+
static void \
|
87
|
+
memory_op_put_##name(AbstractMemory* memory, long off, VALUE value) \
|
88
|
+
{ \
|
89
|
+
type tmp = (type) VAL(toNative(value), swap); \
|
90
|
+
checkWrite(memory); \
|
91
|
+
checkBounds(memory, off, sizeof(type)); \
|
92
|
+
memcpy(memory->address + off, &tmp, sizeof(tmp)); \
|
93
|
+
} \
|
94
|
+
static VALUE memory_put_##name(VALUE self, VALUE offset, VALUE value); \
|
95
|
+
static VALUE \
|
96
|
+
memory_put_##name(VALUE self, VALUE offset, VALUE value) \
|
97
|
+
{ \
|
98
|
+
AbstractMemory* memory; \
|
99
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
100
|
+
memory_op_put_##name(memory, NUM2LONG(offset), value); \
|
101
|
+
return self; \
|
102
|
+
} \
|
103
|
+
static VALUE memory_write_##name(VALUE self, VALUE value); \
|
104
|
+
static VALUE \
|
105
|
+
memory_write_##name(VALUE self, VALUE value) \
|
106
|
+
{ \
|
107
|
+
AbstractMemory* memory; \
|
108
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
109
|
+
memory_op_put_##name(memory, 0, value); \
|
110
|
+
return self; \
|
111
|
+
} \
|
112
|
+
static VALUE memory_op_get_##name(AbstractMemory* memory, long off); \
|
113
|
+
static VALUE \
|
114
|
+
memory_op_get_##name(AbstractMemory* memory, long off) \
|
115
|
+
{ \
|
116
|
+
type tmp; \
|
117
|
+
checkRead(memory); \
|
118
|
+
checkBounds(memory, off, sizeof(type)); \
|
119
|
+
memcpy(&tmp, memory->address + off, sizeof(tmp)); \
|
120
|
+
return fromNative(VAL(tmp, swap)); \
|
121
|
+
} \
|
122
|
+
static VALUE memory_get_##name(VALUE self, VALUE offset); \
|
123
|
+
static VALUE \
|
124
|
+
memory_get_##name(VALUE self, VALUE offset) \
|
125
|
+
{ \
|
126
|
+
AbstractMemory* memory; \
|
127
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
128
|
+
return memory_op_get_##name(memory, NUM2LONG(offset)); \
|
129
|
+
} \
|
130
|
+
static VALUE memory_read_##name(VALUE self); \
|
131
|
+
static VALUE \
|
132
|
+
memory_read_##name(VALUE self) \
|
133
|
+
{ \
|
134
|
+
AbstractMemory* memory; \
|
135
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, memory); \
|
136
|
+
return memory_op_get_##name(memory, 0); \
|
137
|
+
} \
|
138
|
+
static MemoryOp memory_op_##name = { memory_op_get_##name, memory_op_put_##name }; \
|
139
|
+
\
|
140
|
+
static VALUE memory_put_array_of_##name(VALUE self, VALUE offset, VALUE ary); \
|
141
|
+
static VALUE \
|
142
|
+
memory_put_array_of_##name(VALUE self, VALUE offset, VALUE ary) \
|
143
|
+
{ \
|
144
|
+
long count; \
|
145
|
+
long off = NUM2LONG(offset); \
|
146
|
+
AbstractMemory* memory = MEMORY(self); \
|
147
|
+
long i; \
|
148
|
+
Check_Type(ary, T_ARRAY); \
|
149
|
+
count = RARRAY_LEN(ary); \
|
150
|
+
if (likely(count > 0)) checkWrite(memory); \
|
151
|
+
checkBounds(memory, off, count * sizeof(type)); \
|
152
|
+
for (i = 0; i < count; i++) { \
|
153
|
+
type tmp = (type) VAL(toNative(RARRAY_AREF(ary, i)), swap); \
|
154
|
+
memcpy(memory->address + off + (i * sizeof(type)), &tmp, sizeof(tmp)); \
|
155
|
+
} \
|
156
|
+
return self; \
|
157
|
+
} \
|
158
|
+
static VALUE memory_write_array_of_##name(VALUE self, VALUE ary); \
|
159
|
+
static VALUE \
|
160
|
+
memory_write_array_of_##name(VALUE self, VALUE ary) \
|
161
|
+
{ \
|
162
|
+
return memory_put_array_of_##name(self, INT2FIX(0), ary); \
|
163
|
+
} \
|
164
|
+
static VALUE memory_get_array_of_##name(VALUE self, VALUE offset, VALUE length); \
|
165
|
+
static VALUE \
|
166
|
+
memory_get_array_of_##name(VALUE self, VALUE offset, VALUE length) \
|
167
|
+
{ \
|
168
|
+
long count = NUM2LONG(length); \
|
169
|
+
long off = NUM2LONG(offset); \
|
170
|
+
AbstractMemory* memory = MEMORY(self); \
|
171
|
+
VALUE retVal = rb_ary_new2(count); \
|
172
|
+
long i; \
|
173
|
+
if (likely(count > 0)) checkRead(memory); \
|
174
|
+
checkBounds(memory, off, count * sizeof(type)); \
|
175
|
+
for (i = 0; i < count; ++i) { \
|
176
|
+
type tmp; \
|
177
|
+
memcpy(&tmp, memory->address + off + (i * sizeof(type)), sizeof(tmp)); \
|
178
|
+
rb_ary_push(retVal, fromNative(VAL(tmp, swap))); \
|
179
|
+
} \
|
180
|
+
return retVal; \
|
181
|
+
} \
|
182
|
+
static VALUE memory_read_array_of_##name(VALUE self, VALUE length); \
|
183
|
+
static VALUE \
|
184
|
+
memory_read_array_of_##name(VALUE self, VALUE length) \
|
185
|
+
{ \
|
186
|
+
return memory_get_array_of_##name(self, INT2FIX(0), length); \
|
187
|
+
}
|
188
|
+
|
189
|
+
#define NOSWAP(x) (x)
|
190
|
+
#define bswap16(x) (((x) >> 8) & 0xff) | (((x) << 8) & 0xff00);
|
191
|
+
static inline int16_t
|
192
|
+
SWAPS16(int16_t x)
|
193
|
+
{
|
194
|
+
return bswap16(x);
|
195
|
+
}
|
196
|
+
|
197
|
+
static inline uint16_t
|
198
|
+
SWAPU16(uint16_t x)
|
199
|
+
{
|
200
|
+
return bswap16(x);
|
201
|
+
}
|
202
|
+
|
203
|
+
#if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 3)
|
204
|
+
#define bswap32(x) \
|
205
|
+
(((x << 24) & 0xff000000) | \
|
206
|
+
((x << 8) & 0x00ff0000) | \
|
207
|
+
((x >> 8) & 0x0000ff00) | \
|
208
|
+
((x >> 24) & 0x000000ff))
|
209
|
+
|
210
|
+
#define bswap64(x) \
|
211
|
+
(((x << 56) & 0xff00000000000000ULL) | \
|
212
|
+
((x << 40) & 0x00ff000000000000ULL) | \
|
213
|
+
((x << 24) & 0x0000ff0000000000ULL) | \
|
214
|
+
((x << 8) & 0x000000ff00000000ULL) | \
|
215
|
+
((x >> 8) & 0x00000000ff000000ULL) | \
|
216
|
+
((x >> 24) & 0x0000000000ff0000ULL) | \
|
217
|
+
((x >> 40) & 0x000000000000ff00ULL) | \
|
218
|
+
((x >> 56) & 0x00000000000000ffULL))
|
219
|
+
|
220
|
+
static inline int32_t
|
221
|
+
SWAPS32(int32_t x)
|
222
|
+
{
|
223
|
+
return bswap32(x);
|
224
|
+
}
|
225
|
+
|
226
|
+
static inline uint32_t
|
227
|
+
SWAPU32(uint32_t x)
|
228
|
+
{
|
229
|
+
return bswap32(x);
|
230
|
+
}
|
231
|
+
|
232
|
+
static inline int64_t
|
233
|
+
SWAPS64(int64_t x)
|
234
|
+
{
|
235
|
+
return bswap64(x);
|
236
|
+
}
|
237
|
+
|
238
|
+
static inline uint64_t
|
239
|
+
SWAPU64(uint64_t x)
|
240
|
+
{
|
241
|
+
return bswap64(x);
|
242
|
+
}
|
243
|
+
|
244
|
+
#else
|
245
|
+
# define SWAPS32(x) ((int32_t) __builtin_bswap32(x))
|
246
|
+
# define SWAPU32(x) ((uint32_t) __builtin_bswap32(x))
|
247
|
+
# define SWAPS64(x) ((int64_t) __builtin_bswap64(x))
|
248
|
+
# define SWAPU64(x) ((uint64_t) __builtin_bswap64(x))
|
249
|
+
#endif
|
250
|
+
|
251
|
+
#if LONG_MAX > INT_MAX
|
252
|
+
# define SWAPSLONG SWAPS64
|
253
|
+
# define SWAPULONG SWAPU64
|
254
|
+
#else
|
255
|
+
# define SWAPSLONG SWAPS32
|
256
|
+
# define SWAPULONG SWAPU32
|
257
|
+
#endif
|
258
|
+
|
259
|
+
NUM_OP(int8, int8_t, NUM2INT, INT2NUM, NOSWAP);
|
260
|
+
NUM_OP(uint8, uint8_t, NUM2UINT, UINT2NUM, NOSWAP);
|
261
|
+
NUM_OP(int16, int16_t, NUM2INT, INT2NUM, SWAPS16);
|
262
|
+
NUM_OP(uint16, uint16_t, NUM2UINT, UINT2NUM, SWAPU16);
|
263
|
+
NUM_OP(int32, int32_t, NUM2INT, INT2NUM, SWAPS32);
|
264
|
+
NUM_OP(uint32, uint32_t, NUM2UINT, UINT2NUM, SWAPU32);
|
265
|
+
NUM_OP(int64, int64_t, NUM2LL, LL2NUM, SWAPS64);
|
266
|
+
NUM_OP(uint64, uint64_t, NUM2ULL, ULL2NUM, SWAPU64);
|
267
|
+
NUM_OP(long, long, NUM2LONG, LONG2NUM, SWAPSLONG);
|
268
|
+
NUM_OP(ulong, unsigned long, NUM2ULONG, ULONG2NUM, SWAPULONG);
|
269
|
+
NUM_OP(float32, float, NUM2DBL, rb_float_new, NOSWAP);
|
270
|
+
NUM_OP(float64, double, NUM2DBL, rb_float_new, NOSWAP);
|
271
|
+
NUM_OP(longdouble, long double, rbffi_num2longdouble, rbffi_longdouble_new, NOSWAP);
|
272
|
+
|
273
|
+
static inline void*
|
274
|
+
get_pointer_value(VALUE value)
|
275
|
+
{
|
276
|
+
const int type = TYPE(value);
|
277
|
+
if (type == T_DATA && rb_obj_is_kind_of(value, rbffi_PointerClass)) {
|
278
|
+
return memory_address(value);
|
279
|
+
} else if (type == T_NIL) {
|
280
|
+
return NULL;
|
281
|
+
} else if (type == T_FIXNUM) {
|
282
|
+
return (void *) (uintptr_t) FIX2ULONG(value);
|
283
|
+
} else if (type == T_BIGNUM) {
|
284
|
+
return (void *) (uintptr_t) NUM2ULL(value);
|
285
|
+
} else if (rb_respond_to(value, id_to_ptr)) {
|
286
|
+
return MEMORY_PTR(rb_funcall2(value, id_to_ptr, 0, NULL));
|
287
|
+
} else {
|
288
|
+
rb_raise(rb_eArgError, "value is not a pointer");
|
289
|
+
return NULL;
|
290
|
+
}
|
291
|
+
}
|
292
|
+
|
293
|
+
NUM_OP(pointer, void *, get_pointer_value, rbffi_Pointer_NewInstance, NOSWAP);
|
294
|
+
|
295
|
+
static inline uint8_t
|
296
|
+
rbffi_bool_value(VALUE value)
|
297
|
+
{
|
298
|
+
return RTEST(value);
|
299
|
+
}
|
300
|
+
|
301
|
+
static inline VALUE
|
302
|
+
rbffi_bool_new(uint8_t value)
|
303
|
+
{
|
304
|
+
return (value & 1) != 0 ? Qtrue : Qfalse;
|
305
|
+
}
|
306
|
+
|
307
|
+
NUM_OP(bool, unsigned char, rbffi_bool_value, rbffi_bool_new, NOSWAP);
|
308
|
+
|
309
|
+
|
310
|
+
/*
|
311
|
+
* call-seq: memory.clear
|
312
|
+
* Set the memory to all-zero.
|
313
|
+
* @return [self]
|
314
|
+
*/
|
315
|
+
static VALUE
|
316
|
+
memory_clear(VALUE self)
|
317
|
+
{
|
318
|
+
AbstractMemory* ptr = MEMORY(self);
|
319
|
+
checkWrite(ptr);
|
320
|
+
memset(ptr->address, 0, ptr->size);
|
321
|
+
return self;
|
322
|
+
}
|
323
|
+
|
324
|
+
/*
|
325
|
+
* call-seq: memory.size
|
326
|
+
* Return memory size in bytes (alias: #total)
|
327
|
+
* @return [Numeric]
|
328
|
+
*/
|
329
|
+
static VALUE
|
330
|
+
memory_size(VALUE self)
|
331
|
+
{
|
332
|
+
AbstractMemory* ptr;
|
333
|
+
|
334
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
335
|
+
|
336
|
+
return LONG2NUM(ptr->size);
|
337
|
+
}
|
338
|
+
|
339
|
+
/*
|
340
|
+
* call-seq: memory.get(type, offset)
|
341
|
+
* Return data of given type contained in memory.
|
342
|
+
* @param [Symbol, Type] type_name type of data to get
|
343
|
+
* @param [Numeric] offset point in buffer to start from
|
344
|
+
* @return [Object]
|
345
|
+
* @raise {ArgumentError} if type is not supported
|
346
|
+
*/
|
347
|
+
static VALUE
|
348
|
+
memory_get(VALUE self, VALUE type_name, VALUE offset)
|
349
|
+
{
|
350
|
+
AbstractMemory* ptr;
|
351
|
+
VALUE nType;
|
352
|
+
Type *type;
|
353
|
+
|
354
|
+
nType = rbffi_Type_Lookup(type_name);
|
355
|
+
if(NIL_P(nType)) goto undefined_type;
|
356
|
+
|
357
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
358
|
+
TypedData_Get_Struct(nType, Type, &rbffi_type_data_type, type);
|
359
|
+
|
360
|
+
MemoryOp *op = get_memory_op(type);
|
361
|
+
if(op == NULL) goto undefined_type;
|
362
|
+
|
363
|
+
return op->get(ptr, NUM2LONG(offset));
|
364
|
+
|
365
|
+
undefined_type: {
|
366
|
+
VALUE msg = rb_sprintf("undefined type '%" PRIsVALUE "'", type_name);
|
367
|
+
rb_exc_raise(rb_exc_new3(rb_eArgError, msg));
|
368
|
+
return Qnil;
|
369
|
+
}
|
370
|
+
}
|
371
|
+
|
372
|
+
/*
|
373
|
+
* call-seq: memory.put(type, offset, value)
|
374
|
+
* @param [Symbol, Type] type_name type of data to put
|
375
|
+
* @param [Numeric] offset point in buffer to start from
|
376
|
+
* @return [nil]
|
377
|
+
* @raise {ArgumentError} if type is not supported
|
378
|
+
*/
|
379
|
+
static VALUE
|
380
|
+
memory_put(VALUE self, VALUE type_name, VALUE offset, VALUE value)
|
381
|
+
{
|
382
|
+
AbstractMemory* ptr;
|
383
|
+
VALUE nType;
|
384
|
+
Type *type;
|
385
|
+
|
386
|
+
nType = rbffi_Type_Lookup(type_name);
|
387
|
+
if(NIL_P(nType)) goto undefined_type;
|
388
|
+
|
389
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
390
|
+
TypedData_Get_Struct(nType, Type, &rbffi_type_data_type, type);
|
391
|
+
|
392
|
+
MemoryOp *op = get_memory_op(type);
|
393
|
+
if(op == NULL) goto undefined_type;
|
394
|
+
|
395
|
+
op->put(ptr, NUM2LONG(offset), value);
|
396
|
+
return Qnil;
|
397
|
+
|
398
|
+
undefined_type: {
|
399
|
+
VALUE msg = rb_sprintf("unsupported type '%" PRIsVALUE "'", type_name);
|
400
|
+
rb_exc_raise(rb_exc_new3(rb_eArgError, msg));
|
401
|
+
return Qnil;
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
405
|
+
/*
|
406
|
+
* call-seq: memory.get_string(offset, length=nil)
|
407
|
+
* Return string contained in memory.
|
408
|
+
* @param [Numeric] offset point in buffer to start from
|
409
|
+
* @param [Numeric] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
410
|
+
* @return [String]
|
411
|
+
* @raise {IndexError} if +length+ is too great
|
412
|
+
* @raise {NullPointerError} if memory not initialized
|
413
|
+
*/
|
414
|
+
static VALUE
|
415
|
+
memory_get_string(int argc, VALUE* argv, VALUE self)
|
416
|
+
{
|
417
|
+
VALUE length = Qnil, offset = Qnil;
|
418
|
+
AbstractMemory* ptr = MEMORY(self);
|
419
|
+
long off, len;
|
420
|
+
char* end;
|
421
|
+
int nargs = rb_scan_args(argc, argv, "11", &offset, &length);
|
422
|
+
|
423
|
+
off = NUM2LONG(offset);
|
424
|
+
len = nargs > 1 && length != Qnil ? NUM2LONG(length) : (ptr->size - off);
|
425
|
+
checkRead(ptr);
|
426
|
+
checkBounds(ptr, off, len);
|
427
|
+
|
428
|
+
end = memchr(ptr->address + off, 0, len);
|
429
|
+
return rb_str_new((char *) ptr->address + off,
|
430
|
+
(end != NULL ? end - ptr->address - off : len));
|
431
|
+
}
|
432
|
+
|
433
|
+
/*
|
434
|
+
* call-seq: memory.get_array_of_string(offset, count=nil)
|
435
|
+
* Return an array of strings contained in memory.
|
436
|
+
* @param [Numeric] offset point in memory to start from
|
437
|
+
* @param [Numeric] count number of strings to get. If nil, return all strings
|
438
|
+
* @return [Array<String>]
|
439
|
+
* @raise {IndexError} if +offset+ is too great
|
440
|
+
* @raise {NullPointerError} if memory not initialized
|
441
|
+
*/
|
442
|
+
static VALUE
|
443
|
+
memory_get_array_of_string(int argc, VALUE* argv, VALUE self)
|
444
|
+
{
|
445
|
+
VALUE offset = Qnil, countnum = Qnil, retVal = Qnil;
|
446
|
+
AbstractMemory* ptr;
|
447
|
+
long off;
|
448
|
+
int count;
|
449
|
+
|
450
|
+
rb_scan_args(argc, argv, "11", &offset, &countnum);
|
451
|
+
off = NUM2LONG(offset);
|
452
|
+
count = (countnum == Qnil ? 0 : NUM2INT(countnum));
|
453
|
+
retVal = rb_ary_new2(count);
|
454
|
+
|
455
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
456
|
+
checkRead(ptr);
|
457
|
+
|
458
|
+
if (countnum != Qnil) {
|
459
|
+
int i;
|
460
|
+
|
461
|
+
checkBounds(ptr, off, count * sizeof (char*));
|
462
|
+
|
463
|
+
for (i = 0; i < count; ++i) {
|
464
|
+
const char* strptr = *((const char**) (ptr->address + off) + i);
|
465
|
+
rb_ary_push(retVal, (strptr == NULL ? Qnil : rb_str_new2(strptr)));
|
466
|
+
}
|
467
|
+
|
468
|
+
} else {
|
469
|
+
checkBounds(ptr, off, sizeof (char*));
|
470
|
+
for ( ; off < ptr->size - (long) sizeof (void *); off += (long) sizeof (void *)) {
|
471
|
+
const char* strptr = *(const char**) (ptr->address + off);
|
472
|
+
if (strptr == NULL) {
|
473
|
+
break;
|
474
|
+
}
|
475
|
+
rb_ary_push(retVal, rb_str_new2(strptr));
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
return retVal;
|
480
|
+
}
|
481
|
+
|
482
|
+
/*
|
483
|
+
* call-seq: memory.read_array_of_string(count=nil)
|
484
|
+
* Return an array of strings contained in memory. Same as:
|
485
|
+
* memory.get_array_of_string(0, count)
|
486
|
+
* @param [Numeric] count number of strings to get. If nil, return all strings
|
487
|
+
* @return [Array<String>]
|
488
|
+
*/
|
489
|
+
static VALUE
|
490
|
+
memory_read_array_of_string(int argc, VALUE* argv, VALUE self)
|
491
|
+
{
|
492
|
+
VALUE* rargv = ALLOCA_N(VALUE, argc + 1);
|
493
|
+
int i;
|
494
|
+
|
495
|
+
rargv[0] = INT2FIX(0);
|
496
|
+
for (i = 0; i < argc; i++) {
|
497
|
+
rargv[i + 1] = argv[i];
|
498
|
+
}
|
499
|
+
|
500
|
+
return memory_get_array_of_string(argc + 1, rargv, self);
|
501
|
+
}
|
502
|
+
|
503
|
+
|
504
|
+
/*
|
505
|
+
* call-seq: memory.put_string(offset, str)
|
506
|
+
* @param [Numeric] offset
|
507
|
+
* @param [String] str
|
508
|
+
* @return [self]
|
509
|
+
* @raise {SecurityError} when writing unsafe string to memory
|
510
|
+
* @raise {IndexError} if +offset+ is too great
|
511
|
+
* @raise {NullPointerError} if memory not initialized
|
512
|
+
* Put a string in memory.
|
513
|
+
*/
|
514
|
+
static VALUE
|
515
|
+
memory_put_string(VALUE self, VALUE offset, VALUE str)
|
516
|
+
{
|
517
|
+
AbstractMemory* ptr = MEMORY(self);
|
518
|
+
long off, len;
|
519
|
+
|
520
|
+
Check_Type(str, T_STRING);
|
521
|
+
off = NUM2LONG(offset);
|
522
|
+
len = RSTRING_LEN(str);
|
523
|
+
|
524
|
+
checkWrite(ptr);
|
525
|
+
checkBounds(ptr, off, len + 1);
|
526
|
+
|
527
|
+
memcpy(ptr->address + off, RSTRING_PTR(str), len);
|
528
|
+
*((char *) ptr->address + off + len) = '\0';
|
529
|
+
|
530
|
+
return self;
|
531
|
+
}
|
532
|
+
|
533
|
+
/*
|
534
|
+
* call-seq: memory.get_bytes(offset, length)
|
535
|
+
* Return string contained in memory.
|
536
|
+
* @param [Numeric] offset point in buffer to start from
|
537
|
+
* @param [Numeric] length string's length in bytes.
|
538
|
+
* @return [String]
|
539
|
+
* @raise {IndexError} if +length+ is too great
|
540
|
+
* @raise {NullPointerError} if memory not initialized
|
541
|
+
*/
|
542
|
+
static VALUE
|
543
|
+
memory_get_bytes(VALUE self, VALUE offset, VALUE length)
|
544
|
+
{
|
545
|
+
AbstractMemory* ptr = MEMORY(self);
|
546
|
+
long off, len;
|
547
|
+
|
548
|
+
off = NUM2LONG(offset);
|
549
|
+
len = NUM2LONG(length);
|
550
|
+
|
551
|
+
checkRead(ptr);
|
552
|
+
checkBounds(ptr, off, len);
|
553
|
+
|
554
|
+
return rb_str_new((char *) ptr->address + off, len);
|
555
|
+
}
|
556
|
+
|
557
|
+
/*
|
558
|
+
* call-seq: memory.put_bytes(offset, str, index=0, length=nil)
|
559
|
+
* Put a string in memory.
|
560
|
+
* @param [Numeric] offset point in buffer to start from
|
561
|
+
* @param [String] str string to put to memory
|
562
|
+
* @param [Numeric] index
|
563
|
+
* @param [Numeric] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
564
|
+
* @return [self]
|
565
|
+
* @raise {IndexError} if +length+ is too great
|
566
|
+
* @raise {NullPointerError} if memory not initialized
|
567
|
+
* @raise {RangeError} if +index+ is negative, or if index+length is greater than size of string
|
568
|
+
* @raise {SecurityError} when writing unsafe string to memory
|
569
|
+
*/
|
570
|
+
static VALUE
|
571
|
+
memory_put_bytes(int argc, VALUE* argv, VALUE self)
|
572
|
+
{
|
573
|
+
AbstractMemory* ptr = MEMORY(self);
|
574
|
+
VALUE offset = Qnil, str = Qnil, rbIndex = Qnil, rbLength = Qnil;
|
575
|
+
long off, len, idx;
|
576
|
+
int nargs = rb_scan_args(argc, argv, "22", &offset, &str, &rbIndex, &rbLength);
|
577
|
+
|
578
|
+
Check_Type(str, T_STRING);
|
579
|
+
|
580
|
+
off = NUM2LONG(offset);
|
581
|
+
idx = nargs > 2 ? NUM2LONG(rbIndex) : 0;
|
582
|
+
if (idx < 0) {
|
583
|
+
rb_raise(rb_eRangeError, "index cannot be less than zero");
|
584
|
+
return Qnil;
|
585
|
+
}
|
586
|
+
len = nargs > 3 ? NUM2LONG(rbLength) : (RSTRING_LEN(str) - idx);
|
587
|
+
if ((idx + len) > RSTRING_LEN(str)) {
|
588
|
+
rb_raise(rb_eRangeError, "index+length is greater than size of string");
|
589
|
+
return Qnil;
|
590
|
+
}
|
591
|
+
|
592
|
+
checkWrite(ptr);
|
593
|
+
checkBounds(ptr, off, len);
|
594
|
+
|
595
|
+
memcpy(ptr->address + off, RSTRING_PTR(str) + idx, len);
|
596
|
+
|
597
|
+
return self;
|
598
|
+
}
|
599
|
+
|
600
|
+
/*
|
601
|
+
* call-seq: memory.read_bytes(length)
|
602
|
+
* @param [Numeric] length of string to return
|
603
|
+
* @return [String]
|
604
|
+
* equivalent to :
|
605
|
+
* memory.get_bytes(0, length)
|
606
|
+
*/
|
607
|
+
static VALUE
|
608
|
+
memory_read_bytes(VALUE self, VALUE length)
|
609
|
+
{
|
610
|
+
return memory_get_bytes(self, INT2FIX(0), length);
|
611
|
+
}
|
612
|
+
|
613
|
+
/*
|
614
|
+
* call-seq: memory.write_bytes(str, index=0, length=nil)
|
615
|
+
* @param [String] str string to put to memory
|
616
|
+
* @param [Numeric] index
|
617
|
+
* @param [Numeric] length string's length in bytes. If nil, a (memory size - offset) length string is returned).
|
618
|
+
* @return [self]
|
619
|
+
* equivalent to :
|
620
|
+
* memory.put_bytes(0, str, index, length)
|
621
|
+
*/
|
622
|
+
static VALUE
|
623
|
+
memory_write_bytes(int argc, VALUE* argv, VALUE self)
|
624
|
+
{
|
625
|
+
VALUE* wargv = ALLOCA_N(VALUE, argc + 1);
|
626
|
+
int i;
|
627
|
+
|
628
|
+
wargv[0] = INT2FIX(0);
|
629
|
+
for (i = 0; i < argc; i++) {
|
630
|
+
wargv[i + 1] = argv[i];
|
631
|
+
}
|
632
|
+
|
633
|
+
return memory_put_bytes(argc + 1, wargv, self);
|
634
|
+
}
|
635
|
+
|
636
|
+
/*
|
637
|
+
* call-seq: memory.type_size
|
638
|
+
* @return [Numeric] type size in bytes
|
639
|
+
* Get the memory's type size.
|
640
|
+
*/
|
641
|
+
static VALUE
|
642
|
+
memory_type_size(VALUE self)
|
643
|
+
{
|
644
|
+
AbstractMemory* ptr;
|
645
|
+
|
646
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
647
|
+
|
648
|
+
return INT2NUM(ptr->typeSize);
|
649
|
+
}
|
650
|
+
|
651
|
+
/*
|
652
|
+
* Document-method: []
|
653
|
+
* call-seq: memory[idx]
|
654
|
+
* @param [Numeric] idx index to access in memory
|
655
|
+
* @return
|
656
|
+
* Memory read accessor.
|
657
|
+
*/
|
658
|
+
static VALUE
|
659
|
+
memory_aref(VALUE self, VALUE idx)
|
660
|
+
{
|
661
|
+
AbstractMemory* ptr;
|
662
|
+
VALUE rbOffset = Qnil;
|
663
|
+
|
664
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, ptr);
|
665
|
+
|
666
|
+
rbOffset = ULONG2NUM(NUM2ULONG(idx) * ptr->typeSize);
|
667
|
+
|
668
|
+
return rb_funcall2(self, id_plus, 1, &rbOffset);
|
669
|
+
}
|
670
|
+
|
671
|
+
static inline char*
|
672
|
+
memory_address(VALUE obj)
|
673
|
+
{
|
674
|
+
AbstractMemory *mem;
|
675
|
+
TypedData_Get_Struct(obj, AbstractMemory, &rbffi_abstract_memory_data_type, mem);
|
676
|
+
return mem->address;
|
677
|
+
}
|
678
|
+
|
679
|
+
static VALUE
|
680
|
+
memory_copy_from(VALUE self, VALUE rbsrc, VALUE rblen)
|
681
|
+
{
|
682
|
+
AbstractMemory* dst;
|
683
|
+
|
684
|
+
TypedData_Get_Struct(self, AbstractMemory, &rbffi_abstract_memory_data_type, dst);
|
685
|
+
|
686
|
+
memcpy(dst->address, rbffi_AbstractMemory_Cast(rbsrc, &rbffi_abstract_memory_data_type)->address, NUM2INT(rblen));
|
687
|
+
|
688
|
+
return self;
|
689
|
+
}
|
690
|
+
|
691
|
+
/*
|
692
|
+
* call-seq:
|
693
|
+
* res.freeze
|
694
|
+
*
|
695
|
+
* Freeze the AbstractMemory object and unset the writable flag.
|
696
|
+
*/
|
697
|
+
static VALUE
|
698
|
+
memory_freeze(VALUE self)
|
699
|
+
{
|
700
|
+
AbstractMemory* ptr = MEMORY(self);
|
701
|
+
ptr->flags &= ~MEM_WR;
|
702
|
+
return rb_call_super(0, NULL);
|
703
|
+
}
|
704
|
+
|
705
|
+
AbstractMemory*
|
706
|
+
rbffi_AbstractMemory_Cast(VALUE obj, const rb_data_type_t *data_type)
|
707
|
+
{
|
708
|
+
AbstractMemory* memory;
|
709
|
+
TypedData_Get_Struct(obj, AbstractMemory, data_type, memory);
|
710
|
+
return memory;
|
711
|
+
}
|
712
|
+
|
713
|
+
void
|
714
|
+
rbffi_AbstractMemory_Error(AbstractMemory *mem, int op)
|
715
|
+
{
|
716
|
+
VALUE rbErrorClass = mem->address == NULL ? NullPointerErrorClass : rb_eRuntimeError;
|
717
|
+
if (op == MEM_RD) {
|
718
|
+
rb_raise(rbErrorClass, "invalid memory read at address=%p", mem->address);
|
719
|
+
} else if (op == MEM_WR) {
|
720
|
+
rb_raise(rbErrorClass, "invalid memory write at address=%p", mem->address);
|
721
|
+
} else {
|
722
|
+
rb_raise(rbErrorClass, "invalid memory access at address=%p", mem->address);
|
723
|
+
}
|
724
|
+
}
|
725
|
+
|
726
|
+
static VALUE
|
727
|
+
memory_op_get_strptr(AbstractMemory* ptr, long offset)
|
728
|
+
{
|
729
|
+
void* tmp = NULL;
|
730
|
+
|
731
|
+
if (ptr != NULL && ptr->address != NULL) {
|
732
|
+
checkRead(ptr);
|
733
|
+
checkBounds(ptr, offset, sizeof(tmp));
|
734
|
+
memcpy(&tmp, ptr->address + offset, sizeof(tmp));
|
735
|
+
}
|
736
|
+
|
737
|
+
return tmp != NULL ? rb_str_new2(tmp) : Qnil;
|
738
|
+
}
|
739
|
+
|
740
|
+
static void
|
741
|
+
memory_op_put_strptr(AbstractMemory* ptr, long offset, VALUE value)
|
742
|
+
{
|
743
|
+
rb_raise(rb_eArgError, "Cannot set :string fields");
|
744
|
+
}
|
745
|
+
|
746
|
+
static MemoryOp memory_op_strptr = { memory_op_get_strptr, memory_op_put_strptr };
|
747
|
+
|
748
|
+
|
749
|
+
MemoryOps rbffi_AbstractMemoryOps = {
|
750
|
+
&memory_op_int8, /*.int8 */
|
751
|
+
&memory_op_uint8, /* .uint8 */
|
752
|
+
&memory_op_int16, /* .int16 */
|
753
|
+
&memory_op_uint16, /* .uint16 */
|
754
|
+
&memory_op_int32, /* .int32 */
|
755
|
+
&memory_op_uint32, /* .uint32 */
|
756
|
+
&memory_op_int64, /* .int64 */
|
757
|
+
&memory_op_uint64, /* .uint64 */
|
758
|
+
&memory_op_long, /* .slong */
|
759
|
+
&memory_op_ulong, /* .uslong */
|
760
|
+
&memory_op_float32, /* .float32 */
|
761
|
+
&memory_op_float64, /* .float64 */
|
762
|
+
&memory_op_longdouble, /* .longdouble */
|
763
|
+
&memory_op_pointer, /* .pointer */
|
764
|
+
&memory_op_strptr, /* .strptr */
|
765
|
+
&memory_op_bool /* .boolOp */
|
766
|
+
};
|
767
|
+
|
768
|
+
void
|
769
|
+
rbffi_AbstractMemory_Init(VALUE moduleFFI)
|
770
|
+
{
|
771
|
+
/*
|
772
|
+
* Document-class: FFI::AbstractMemory
|
773
|
+
*
|
774
|
+
* {AbstractMemory} is the base class for many memory management classes such as {Buffer}.
|
775
|
+
*
|
776
|
+
* This class has a lot of methods to work with integers :
|
777
|
+
* * put_int<i>size</i>(offset, value)
|
778
|
+
* * get_int<i>size</i>(offset)
|
779
|
+
* * put_uint<i>size</i>(offset, value)
|
780
|
+
* * get_uint<i>size</i>(offset)
|
781
|
+
* * writeuint<i>size</i>(value)
|
782
|
+
* * read_int<i>size</i>
|
783
|
+
* * write_uint<i>size</i>(value)
|
784
|
+
* * read_uint<i>size</i>
|
785
|
+
* * put_array_of_int<i>size</i>(offset, ary)
|
786
|
+
* * get_array_of_int<i>size</i>(offset, length)
|
787
|
+
* * put_array_of_uint<i>size</i>(offset, ary)
|
788
|
+
* * get_array_of_uint<i>size</i>(offset, length)
|
789
|
+
* * write_array_of_int<i>size</i>(ary)
|
790
|
+
* * read_array_of_int<i>size</i>(length)
|
791
|
+
* * write_array_of_uint<i>size</i>(ary)
|
792
|
+
* * read_array_of_uint<i>size</i>(length)
|
793
|
+
* where _size_ is 8, 16, 32 or 64. Same methods exist for long type.
|
794
|
+
*
|
795
|
+
* Aliases exist : _char_ for _int8_, _short_ for _int16_, _int_ for _int32_ and <i>long_long</i> for _int64_.
|
796
|
+
*
|
797
|
+
* Others methods are listed below.
|
798
|
+
*/
|
799
|
+
VALUE classMemory = rb_define_class_under(moduleFFI, "AbstractMemory", rb_cObject);
|
800
|
+
rbffi_AbstractMemoryClass = classMemory;
|
801
|
+
/*
|
802
|
+
* Document-variable: FFI::AbstractMemory
|
803
|
+
*/
|
804
|
+
rb_global_variable(&rbffi_AbstractMemoryClass);
|
805
|
+
rb_undef_alloc_func(classMemory);
|
806
|
+
|
807
|
+
NullPointerErrorClass = rb_define_class_under(moduleFFI, "NullPointerError", rb_eRuntimeError);
|
808
|
+
/* Document-variable: NullPointerError */
|
809
|
+
rb_global_variable(&NullPointerErrorClass);
|
810
|
+
|
811
|
+
|
812
|
+
#undef INT
|
813
|
+
#define INT(type) \
|
814
|
+
rb_define_method(classMemory, "put_" #type, memory_put_##type, 2); \
|
815
|
+
rb_define_method(classMemory, "get_" #type, memory_get_##type, 1); \
|
816
|
+
rb_define_method(classMemory, "put_u" #type, memory_put_u##type, 2); \
|
817
|
+
rb_define_method(classMemory, "get_u" #type, memory_get_u##type, 1); \
|
818
|
+
rb_define_method(classMemory, "write_" #type, memory_write_##type, 1); \
|
819
|
+
rb_define_method(classMemory, "read_" #type, memory_read_##type, 0); \
|
820
|
+
rb_define_method(classMemory, "write_u" #type, memory_write_u##type, 1); \
|
821
|
+
rb_define_method(classMemory, "read_u" #type, memory_read_u##type, 0); \
|
822
|
+
rb_define_method(classMemory, "put_array_of_" #type, memory_put_array_of_##type, 2); \
|
823
|
+
rb_define_method(classMemory, "get_array_of_" #type, memory_get_array_of_##type, 2); \
|
824
|
+
rb_define_method(classMemory, "put_array_of_u" #type, memory_put_array_of_u##type, 2); \
|
825
|
+
rb_define_method(classMemory, "get_array_of_u" #type, memory_get_array_of_u##type, 2); \
|
826
|
+
rb_define_method(classMemory, "write_array_of_" #type, memory_write_array_of_##type, 1); \
|
827
|
+
rb_define_method(classMemory, "read_array_of_" #type, memory_read_array_of_##type, 1); \
|
828
|
+
rb_define_method(classMemory, "write_array_of_u" #type, memory_write_array_of_u##type, 1); \
|
829
|
+
rb_define_method(classMemory, "read_array_of_u" #type, memory_read_array_of_u##type, 1);
|
830
|
+
|
831
|
+
INT(int8);
|
832
|
+
INT(int16);
|
833
|
+
INT(int32);
|
834
|
+
INT(int64);
|
835
|
+
INT(long);
|
836
|
+
|
837
|
+
#define ALIAS(name, old) \
|
838
|
+
rb_define_alias(classMemory, "put_" #name, "put_" #old); \
|
839
|
+
rb_define_alias(classMemory, "get_" #name, "get_" #old); \
|
840
|
+
rb_define_alias(classMemory, "put_u" #name, "put_u" #old); \
|
841
|
+
rb_define_alias(classMemory, "get_u" #name, "get_u" #old); \
|
842
|
+
rb_define_alias(classMemory, "write_" #name, "write_" #old); \
|
843
|
+
rb_define_alias(classMemory, "read_" #name, "read_" #old); \
|
844
|
+
rb_define_alias(classMemory, "write_u" #name, "write_u" #old); \
|
845
|
+
rb_define_alias(classMemory, "read_u" #name, "read_u" #old); \
|
846
|
+
rb_define_alias(classMemory, "put_array_of_" #name, "put_array_of_" #old); \
|
847
|
+
rb_define_alias(classMemory, "get_array_of_" #name, "get_array_of_" #old); \
|
848
|
+
rb_define_alias(classMemory, "put_array_of_u" #name, "put_array_of_u" #old); \
|
849
|
+
rb_define_alias(classMemory, "get_array_of_u" #name, "get_array_of_u" #old); \
|
850
|
+
rb_define_alias(classMemory, "write_array_of_" #name, "write_array_of_" #old); \
|
851
|
+
rb_define_alias(classMemory, "read_array_of_" #name, "read_array_of_" #old); \
|
852
|
+
rb_define_alias(classMemory, "write_array_of_u" #name, "write_array_of_u" #old); \
|
853
|
+
rb_define_alias(classMemory, "read_array_of_u" #name, "read_array_of_u" #old);
|
854
|
+
|
855
|
+
ALIAS(char, int8);
|
856
|
+
ALIAS(short, int16);
|
857
|
+
ALIAS(int, int32);
|
858
|
+
ALIAS(long_long, int64);
|
859
|
+
|
860
|
+
/*
|
861
|
+
* Document-method: put_float32
|
862
|
+
* call-seq: memory.put_float32offset, value)
|
863
|
+
* @param [Numeric] offset
|
864
|
+
* @param [Numeric] value
|
865
|
+
* @return [self]
|
866
|
+
* Put +value+ as a 32-bit float in memory at offset +offset+ (alias: #put_float).
|
867
|
+
*/
|
868
|
+
rb_define_method(classMemory, "put_float32", memory_put_float32, 2);
|
869
|
+
/*
|
870
|
+
* Document-method: get_float32
|
871
|
+
* call-seq: memory.get_float32(offset)
|
872
|
+
* @param [Numeric] offset
|
873
|
+
* @return [Float]
|
874
|
+
* Get a 32-bit float from memory at offset +offset+ (alias: #get_float).
|
875
|
+
*/
|
876
|
+
rb_define_method(classMemory, "get_float32", memory_get_float32, 1);
|
877
|
+
rb_define_alias(classMemory, "put_float", "put_float32");
|
878
|
+
rb_define_alias(classMemory, "get_float", "get_float32");
|
879
|
+
/*
|
880
|
+
* Document-method: write_float
|
881
|
+
* call-seq: memory.write_float(value)
|
882
|
+
* @param [Numeric] value
|
883
|
+
* @return [self]
|
884
|
+
* Write +value+ as a 32-bit float in memory.
|
885
|
+
*
|
886
|
+
* Same as:
|
887
|
+
* memory.put_float(0, value)
|
888
|
+
*/
|
889
|
+
rb_define_method(classMemory, "write_float", memory_write_float32, 1);
|
890
|
+
/*
|
891
|
+
* Document-method: read_float
|
892
|
+
* call-seq: memory.read_float
|
893
|
+
* @return [Float]
|
894
|
+
* Read a 32-bit float from memory.
|
895
|
+
*
|
896
|
+
* Same as:
|
897
|
+
* memory.get_float(0)
|
898
|
+
*/
|
899
|
+
rb_define_method(classMemory, "read_float", memory_read_float32, 0);
|
900
|
+
/*
|
901
|
+
* Document-method: put_array_of_float32
|
902
|
+
* call-seq: memory.put_array_of_float32(offset, ary)
|
903
|
+
* @param [Numeric] offset
|
904
|
+
* @param [Array<Numeric>] ary
|
905
|
+
* @return [self]
|
906
|
+
* Put values from +ary+ as 32-bit floats in memory from offset +offset+ (alias: #put_array_of_float).
|
907
|
+
*/
|
908
|
+
rb_define_method(classMemory, "put_array_of_float32", memory_put_array_of_float32, 2);
|
909
|
+
/*
|
910
|
+
* Document-method: get_array_of_float32
|
911
|
+
* call-seq: memory.get_array_of_float32(offset, length)
|
912
|
+
* @param [Numeric] offset
|
913
|
+
* @param [Numeric] length number of Float to get
|
914
|
+
* @return [Array<Float>]
|
915
|
+
* Get 32-bit floats in memory from offset +offset+ (alias: #get_array_of_float).
|
916
|
+
*/
|
917
|
+
rb_define_method(classMemory, "get_array_of_float32", memory_get_array_of_float32, 2);
|
918
|
+
/*
|
919
|
+
* Document-method: write_array_of_float
|
920
|
+
* call-seq: memory.write_array_of_float(ary)
|
921
|
+
* @param [Array<Numeric>] ary
|
922
|
+
* @return [self]
|
923
|
+
* Write values from +ary+ as 32-bit floats in memory.
|
924
|
+
*
|
925
|
+
* Same as:
|
926
|
+
* memory.put_array_of_float(0, ary)
|
927
|
+
*/
|
928
|
+
rb_define_method(classMemory, "write_array_of_float", memory_write_array_of_float32, 1);
|
929
|
+
/*
|
930
|
+
* Document-method: read_array_of_float
|
931
|
+
* call-seq: memory.read_array_of_float(length)
|
932
|
+
* @param [Numeric] length number of Float to read
|
933
|
+
* @return [Array<Float>]
|
934
|
+
* Read 32-bit floats from memory.
|
935
|
+
*
|
936
|
+
* Same as:
|
937
|
+
* memory.get_array_of_float(0, ary)
|
938
|
+
*/
|
939
|
+
rb_define_method(classMemory, "read_array_of_float", memory_read_array_of_float32, 1);
|
940
|
+
rb_define_alias(classMemory, "put_array_of_float", "put_array_of_float32");
|
941
|
+
rb_define_alias(classMemory, "get_array_of_float", "get_array_of_float32");
|
942
|
+
/*
|
943
|
+
* Document-method: put_float64
|
944
|
+
* call-seq: memory.put_float64(offset, value)
|
945
|
+
* @param [Numeric] offset
|
946
|
+
* @param [Numeric] value
|
947
|
+
* @return [self]
|
948
|
+
* Put +value+ as a 64-bit float (double) in memory at offset +offset+ (alias: #put_double).
|
949
|
+
*/
|
950
|
+
rb_define_method(classMemory, "put_float64", memory_put_float64, 2);
|
951
|
+
/*
|
952
|
+
* Document-method: get_float64
|
953
|
+
* call-seq: memory.get_float64(offset)
|
954
|
+
* @param [Numeric] offset
|
955
|
+
* @return [Float]
|
956
|
+
* Get a 64-bit float (double) from memory at offset +offset+ (alias: #get_double).
|
957
|
+
*/
|
958
|
+
rb_define_method(classMemory, "get_float64", memory_get_float64, 1);
|
959
|
+
rb_define_alias(classMemory, "put_double", "put_float64");
|
960
|
+
rb_define_alias(classMemory, "get_double", "get_float64");
|
961
|
+
/*
|
962
|
+
* Document-method: write_double
|
963
|
+
* call-seq: memory.write_double(value)
|
964
|
+
* @param [Numeric] value
|
965
|
+
* @return [self]
|
966
|
+
* Write +value+ as a 64-bit float (double) in memory.
|
967
|
+
*
|
968
|
+
* Same as:
|
969
|
+
* memory.put_double(0, value)
|
970
|
+
*/
|
971
|
+
rb_define_method(classMemory, "write_double", memory_write_float64, 1);
|
972
|
+
/*
|
973
|
+
* Document-method: read_double
|
974
|
+
* call-seq: memory.read_double
|
975
|
+
* @return [Float]
|
976
|
+
* Read a 64-bit float (double) from memory.
|
977
|
+
*
|
978
|
+
* Same as:
|
979
|
+
* memory.get_double(0)
|
980
|
+
*/
|
981
|
+
rb_define_method(classMemory, "read_double", memory_read_float64, 0);
|
982
|
+
/*
|
983
|
+
* Document-method: put_array_of_float64
|
984
|
+
* call-seq: memory.put_array_of_float64(offset, ary)
|
985
|
+
* @param [Numeric] offset
|
986
|
+
* @param [Array<Numeric>] ary
|
987
|
+
* @return [self]
|
988
|
+
* Put values from +ary+ as 64-bit floats (doubles) in memory from offset +offset+ (alias: #put_array_of_double).
|
989
|
+
*/
|
990
|
+
rb_define_method(classMemory, "put_array_of_float64", memory_put_array_of_float64, 2);
|
991
|
+
/*
|
992
|
+
* Document-method: get_array_of_float64
|
993
|
+
* call-seq: memory.get_array_of_float64(offset, length)
|
994
|
+
* @param [Numeric] offset
|
995
|
+
* @param [Numeric] length number of Float to get
|
996
|
+
* @return [Array<Float>]
|
997
|
+
* Get 64-bit floats (doubles) in memory from offset +offset+ (alias: #get_array_of_double).
|
998
|
+
*/
|
999
|
+
rb_define_method(classMemory, "get_array_of_float64", memory_get_array_of_float64, 2);
|
1000
|
+
/*
|
1001
|
+
* Document-method: write_array_of_double
|
1002
|
+
* call-seq: memory.write_array_of_double(ary)
|
1003
|
+
* @param [Array<Numeric>] ary
|
1004
|
+
* @return [self]
|
1005
|
+
* Write values from +ary+ as 64-bit floats (doubles) in memory.
|
1006
|
+
*
|
1007
|
+
* Same as:
|
1008
|
+
* memory.put_array_of_double(0, ary)
|
1009
|
+
*/
|
1010
|
+
rb_define_method(classMemory, "write_array_of_double", memory_write_array_of_float64, 1);
|
1011
|
+
/*
|
1012
|
+
* Document-method: read_array_of_double
|
1013
|
+
* call-seq: memory.read_array_of_double(length)
|
1014
|
+
* @param [Numeric] length number of Float to read
|
1015
|
+
* @return [Array<Float>]
|
1016
|
+
* Read 64-bit floats (doubles) from memory.
|
1017
|
+
*
|
1018
|
+
* Same as:
|
1019
|
+
* memory.get_array_of_double(0, ary)
|
1020
|
+
*/
|
1021
|
+
rb_define_method(classMemory, "read_array_of_double", memory_read_array_of_float64, 1);
|
1022
|
+
rb_define_alias(classMemory, "put_array_of_double", "put_array_of_float64");
|
1023
|
+
rb_define_alias(classMemory, "get_array_of_double", "get_array_of_float64");
|
1024
|
+
/*
|
1025
|
+
* Document-method: put_pointer
|
1026
|
+
* call-seq: memory.put_pointer(offset, value)
|
1027
|
+
* @param [Numeric] offset
|
1028
|
+
* @param [nil,Pointer, Integer, #to_ptr] value
|
1029
|
+
* @return [self]
|
1030
|
+
* Put +value+ in memory from +offset+..
|
1031
|
+
*/
|
1032
|
+
rb_define_method(classMemory, "put_pointer", memory_put_pointer, 2);
|
1033
|
+
/*
|
1034
|
+
* Document-method: get_pointer
|
1035
|
+
* call-seq: memory.get_pointer(offset)
|
1036
|
+
* @param [Numeric] offset
|
1037
|
+
* @return [Pointer]
|
1038
|
+
* Get a {Pointer} to the memory from +offset+.
|
1039
|
+
*/
|
1040
|
+
rb_define_method(classMemory, "get_pointer", memory_get_pointer, 1);
|
1041
|
+
/*
|
1042
|
+
* Document-method: write_pointer
|
1043
|
+
* call-seq: memory.write_pointer(value)
|
1044
|
+
* @param [nil,Pointer, Integer, #to_ptr] value
|
1045
|
+
* @return [self]
|
1046
|
+
* Write +value+ in memory.
|
1047
|
+
*
|
1048
|
+
* Equivalent to:
|
1049
|
+
* memory.put_pointer(0, value)
|
1050
|
+
*/
|
1051
|
+
rb_define_method(classMemory, "write_pointer", memory_write_pointer, 1);
|
1052
|
+
/*
|
1053
|
+
* Document-method: read_pointer
|
1054
|
+
* call-seq: memory.read_pointer
|
1055
|
+
* @return [Pointer]
|
1056
|
+
* Get a {Pointer} to the memory from base address.
|
1057
|
+
*
|
1058
|
+
* Equivalent to:
|
1059
|
+
* memory.get_pointer(0)
|
1060
|
+
*/
|
1061
|
+
rb_define_method(classMemory, "read_pointer", memory_read_pointer, 0);
|
1062
|
+
/*
|
1063
|
+
* Document-method: put_array_of_pointer
|
1064
|
+
* call-seq: memory.put_array_of_pointer(offset, ary)
|
1065
|
+
* @param [Numeric] offset
|
1066
|
+
* @param [Array<#to_ptr>] ary
|
1067
|
+
* @return [self]
|
1068
|
+
* Put an array of {Pointer} into memory from +offset+.
|
1069
|
+
*/
|
1070
|
+
rb_define_method(classMemory, "put_array_of_pointer", memory_put_array_of_pointer, 2);
|
1071
|
+
/*
|
1072
|
+
* Document-method: get_array_of_pointer
|
1073
|
+
* call-seq: memory.get_array_of_pointer(offset, length)
|
1074
|
+
* @param [Numeric] offset
|
1075
|
+
* @param [Numeric] length
|
1076
|
+
* @return [Array<Pointer>]
|
1077
|
+
* Get an array of {Pointer} of length +length+ from +offset+.
|
1078
|
+
*/
|
1079
|
+
rb_define_method(classMemory, "get_array_of_pointer", memory_get_array_of_pointer, 2);
|
1080
|
+
/*
|
1081
|
+
* Document-method: write_array_of_pointer
|
1082
|
+
* call-seq: memory.write_array_of_pointer(ary)
|
1083
|
+
* @param [Array<#to_ptr>] ary
|
1084
|
+
* @return [self]
|
1085
|
+
* Write an array of {Pointer} into memory from +offset+.
|
1086
|
+
*
|
1087
|
+
* Same as :
|
1088
|
+
* memory.put_array_of_pointer(0, ary)
|
1089
|
+
*/
|
1090
|
+
rb_define_method(classMemory, "write_array_of_pointer", memory_write_array_of_pointer, 1);
|
1091
|
+
/*
|
1092
|
+
* Document-method: read_array_of_pointer
|
1093
|
+
* call-seq: memory.read_array_of_pointer(length)
|
1094
|
+
* @param [Numeric] length
|
1095
|
+
* @return [Array<Pointer>]
|
1096
|
+
* Read an array of {Pointer} of length +length+.
|
1097
|
+
*
|
1098
|
+
* Same as:
|
1099
|
+
* memory.get_array_of_pointer(0, length)
|
1100
|
+
*/
|
1101
|
+
rb_define_method(classMemory, "read_array_of_pointer", memory_read_array_of_pointer, 1);
|
1102
|
+
|
1103
|
+
rb_define_method(classMemory, "get_string", memory_get_string, -1);
|
1104
|
+
rb_define_method(classMemory, "put_string", memory_put_string, 2);
|
1105
|
+
rb_define_method(classMemory, "get_bytes", memory_get_bytes, 2);
|
1106
|
+
rb_define_method(classMemory, "put_bytes", memory_put_bytes, -1);
|
1107
|
+
rb_define_method(classMemory, "read_bytes", memory_read_bytes, 1);
|
1108
|
+
rb_define_method(classMemory, "write_bytes", memory_write_bytes, -1);
|
1109
|
+
rb_define_method(classMemory, "get_array_of_string", memory_get_array_of_string, -1);
|
1110
|
+
|
1111
|
+
rb_define_method(classMemory, "get", memory_get, 2);
|
1112
|
+
rb_define_method(classMemory, "put", memory_put, 3);
|
1113
|
+
|
1114
|
+
rb_define_method(classMemory, "clear", memory_clear, 0);
|
1115
|
+
rb_define_method(classMemory, "total", memory_size, 0);
|
1116
|
+
rb_define_alias(classMemory, "size", "total");
|
1117
|
+
rb_define_method(classMemory, "type_size", memory_type_size, 0);
|
1118
|
+
rb_define_method(classMemory, "[]", memory_aref, 1);
|
1119
|
+
rb_define_method(classMemory, "__copy_from__", memory_copy_from, 2);
|
1120
|
+
rb_define_method(classMemory, "freeze", memory_freeze, 0 );
|
1121
|
+
|
1122
|
+
id_to_ptr = rb_intern("to_ptr");
|
1123
|
+
id_call = rb_intern("call");
|
1124
|
+
id_plus = rb_intern("+");
|
1125
|
+
}
|
1126
|
+
|