├── LICENSE ├── README.md ├── binding.gyp ├── lib └── nativescript.js ├── metadata └── metadata-arm64.bin ├── package.json ├── scripts ├── build_libffi.sh └── generate_js_headers.sh └── src ├── NativeScriptRuntime ├── Calling │ ├── FFICache.cpp │ ├── FFICache.h │ ├── FFICall.cpp │ ├── FFICall.h │ ├── FFICallPrototype.cpp │ ├── FFICallPrototype.h │ ├── FFICallback.h │ ├── FFICallbackInlines.h │ ├── FFIFunctionCall.h │ ├── FFIFunctionCall.mm │ ├── FFIFunctionCallback.cpp │ └── FFIFunctionCallback.h ├── Interop.h ├── Interop.mm ├── JSErrors.h ├── JSErrors.mm ├── JSWarnings.cpp ├── JSWarnings.h ├── Marshalling │ ├── FFISimpleType.cpp │ ├── FFISimpleType.h │ ├── FFIType.h │ ├── FFIType.mm │ ├── FunctionReference │ │ ├── FunctionReferenceConstructor.cpp │ │ ├── FunctionReferenceConstructor.h │ │ ├── FunctionReferenceInstance.cpp │ │ ├── FunctionReferenceInstance.h │ │ ├── FunctionReferenceTypeConstructor.h │ │ ├── FunctionReferenceTypeConstructor.mm │ │ ├── FunctionReferenceTypeInstance.cpp │ │ └── FunctionReferenceTypeInstance.h │ ├── Fundamentals │ │ ├── FFINumericTypes.h │ │ ├── FFINumericTypes.mm │ │ ├── FFIPrimitiveTypes.h │ │ └── FFIPrimitiveTypes.mm │ ├── Pointer │ │ ├── PointerConstructor.cpp │ │ ├── PointerConstructor.h │ │ ├── PointerInstance.cpp │ │ ├── PointerInstance.h │ │ ├── PointerPrototype.cpp │ │ └── PointerPrototype.h │ ├── Record │ │ ├── RecordConstructor.cpp │ │ ├── RecordConstructor.h │ │ ├── RecordField.cpp │ │ ├── RecordField.h │ │ ├── RecordInstance.cpp │ │ ├── RecordInstance.h │ │ ├── RecordPrototype.cpp │ │ ├── RecordPrototype.h │ │ ├── RecordPrototypeFunctions.cpp │ │ ├── RecordPrototypeFunctions.h │ │ └── RecordType.h │ └── Reference │ │ ├── ExtVectorTypeInstance.cpp │ │ ├── ExtVectorTypeInstance.h │ │ ├── IndexedRefInstance.cpp │ │ ├── IndexedRefInstance.h │ │ ├── IndexedRefPrototype.cpp │ │ ├── IndexedRefPrototype.h │ │ ├── IndexedRefTypeInstance.cpp │ │ ├── IndexedRefTypeInstance.h │ │ ├── ReferenceConstructor.cpp │ │ ├── ReferenceConstructor.h │ │ ├── ReferenceInstance.cpp │ │ ├── ReferenceInstance.h │ │ ├── ReferencePrototype.cpp │ │ ├── ReferencePrototype.h │ │ ├── ReferenceTypeConstructor.h │ │ ├── ReferenceTypeConstructor.mm │ │ ├── ReferenceTypeInstance.cpp │ │ └── ReferenceTypeInstance.h ├── Metadata │ ├── Metadata.h │ └── Metadata.mm ├── NativeScriptRuntime.h ├── NativeScriptRuntime.mm ├── ObjC │ ├── AllocatedPlaceholder.h │ ├── AllocatedPlaceholder.mm │ ├── Block │ │ ├── ObjCBlockCall.h │ │ ├── ObjCBlockCall.mm │ │ ├── ObjCBlockCallback.h │ │ ├── ObjCBlockCallback.mm │ │ ├── ObjCBlockType.h │ │ ├── ObjCBlockType.mm │ │ ├── ObjCBlockTypeConstructor.h │ │ └── ObjCBlockTypeConstructor.mm │ ├── Constructor │ │ ├── ObjCConstructorBase.h │ │ ├── ObjCConstructorBase.mm │ │ ├── ObjCConstructorCall.h │ │ ├── ObjCConstructorCall.mm │ │ ├── ObjCConstructorDerived.h │ │ ├── ObjCConstructorDerived.mm │ │ ├── ObjCConstructorNative.h │ │ └── ObjCConstructorNative.mm │ ├── Enumeration │ │ ├── ObjCFastEnumerationIterator.h │ │ ├── ObjCFastEnumerationIterator.mm │ │ ├── ObjCFastEnumerationIteratorPrototype.h │ │ ├── ObjCFastEnumerationIteratorPrototype.mm │ │ ├── TNSFastEnumerationAdapter.h │ │ └── TNSFastEnumerationAdapter.mm │ ├── Inheritance │ │ ├── ObjCClassBuilder.h │ │ ├── ObjCClassBuilder.mm │ │ ├── ObjCExtend.h │ │ ├── ObjCExtend.mm │ │ ├── ObjCTypeScriptExtend.h │ │ └── ObjCTypeScriptExtend.mm │ ├── JSStringUtils.h │ ├── JSStringUtils.mm │ ├── NSErrorWrapperConstructor.h │ ├── NSErrorWrapperConstructor.mm │ ├── ObjCMethodCall.h │ ├── ObjCMethodCall.mm │ ├── ObjCMethodCallback.h │ ├── ObjCMethodCallback.mm │ ├── ObjCPrimitiveTypes.h │ ├── ObjCPrimitiveTypes.mm │ ├── ObjCProtocolWrapper.h │ ├── ObjCProtocolWrapper.mm │ ├── ObjCPrototype.h │ ├── ObjCPrototype.mm │ ├── ObjCSuperObject.h │ ├── ObjCSuperObject.mm │ ├── ObjCTypes.h │ ├── ObjCTypes.mm │ ├── ObjCWrapperObject.h │ ├── ObjCWrapperObject.mm │ ├── TNSArrayAdapter.h │ ├── TNSArrayAdapter.mm │ ├── TNSDataAdapter.h │ ├── TNSDataAdapter.mm │ ├── TNSDictionaryAdapter.h │ ├── TNSDictionaryAdapter.mm │ └── Unmanaged │ │ ├── UnmanagedInstance.cpp │ │ ├── UnmanagedInstance.h │ │ ├── UnmanagedPrototype.h │ │ ├── UnmanagedPrototype.mm │ │ ├── UnmanagedType.cpp │ │ └── UnmanagedType.h ├── Runtime │ ├── JSWeakRefConstructor.cpp │ ├── JSWeakRefConstructor.h │ ├── JSWeakRefInstance.cpp │ ├── JSWeakRefInstance.h │ ├── JSWeakRefPrototype.cpp │ ├── JSWeakRefPrototype.h │ └── ReleasePool.h ├── RuntimeLock.cpp ├── RuntimeLock.h ├── SymbolLoader.h ├── SymbolLoader.mm ├── TypeFactory.h ├── TypeFactory.mm ├── WeakHandleOwners.h ├── __extends.js ├── inlineFunctions.js └── jsc-includes.h ├── binding.cpp ├── createNativeScriptRuntime.h ├── createNativeScriptRuntime.mm └── libffi ├── ChangeLog.libffi ├── ChangeLog.libffi-3.1 ├── ChangeLog.libgcj ├── ChangeLog.v1 ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── acinclude.m4 ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.sub ├── configure ├── configure.ac ├── configure.host ├── darwin_common ├── include │ ├── ffi.h │ ├── ffi_cfi.h │ ├── ffi_common.h │ ├── fficonfig.h │ └── ffitarget.h └── src │ ├── closures.c │ ├── debug.c │ ├── dlmalloc.c │ ├── java_raw_api.c │ ├── prep_cif.c │ ├── raw_api.c │ └── types.c ├── darwin_ios ├── include │ ├── ffi_arm64.h │ ├── ffi_armv7.h │ ├── ffi_i386.h │ ├── ffi_x86_64.h │ ├── fficonfig_arm64.h │ ├── fficonfig_armv7.h │ ├── fficonfig_i386.h │ ├── fficonfig_x86_64.h │ ├── ffitarget_arm64.h │ ├── ffitarget_armv7.h │ ├── ffitarget_i386.h │ └── ffitarget_x86_64.h └── src │ ├── aarch64 │ ├── ffi_arm64.c │ ├── internal.h │ └── sysv_arm64.S │ ├── arm │ ├── ffi_armv7.c │ ├── internal.h │ └── sysv_armv7.S │ └── x86 │ ├── asmnames.h │ ├── ffi64_x86_64.c │ ├── ffi_i386.c │ ├── ffiw64_x86_64.c │ ├── internal.h │ ├── internal64.h │ ├── sysv_i386.S │ ├── unix64_x86_64.S │ └── win64_x86_64.S ├── depcomp ├── doc ├── Makefile.am ├── Makefile.in ├── libffi.texi ├── mdate-sh ├── texinfo.tex └── version.texi ├── fficonfig.h.in ├── generate-darwin-source-and-headers.py ├── include ├── Makefile.am ├── Makefile.in ├── ffi.h.in ├── ffi_cfi.h └── ffi_common.h ├── install-sh ├── libffi.map.in ├── libffi.pc.in ├── libffi.xcodeproj └── project.pbxproj ├── libtool-ldflags ├── libtool-version ├── ltmain.sh ├── m4 ├── asmcfi.m4 ├── ax_append_flag.m4 ├── ax_cc_maxopt.m4 ├── ax_cflags_warn_all.m4 ├── ax_check_compile_flag.m4 ├── ax_compiler_vendor.m4 ├── ax_configure_args.m4 ├── ax_enable_builddir.m4 ├── ax_gcc_archflag.m4 ├── ax_gcc_x86_cpuid.m4 ├── libtool.m4 ├── ltoptions.m4 ├── ltsugar.m4 ├── ltversion.m4 └── lt~obsolete.m4 ├── man ├── Makefile.am ├── Makefile.in ├── ffi.3 ├── ffi_call.3 ├── ffi_prep_cif.3 └── ffi_prep_cif_var.3 ├── missing ├── msvcc.sh ├── src ├── aarch64 │ ├── ffi.c │ ├── ffitarget.h │ ├── internal.h │ └── sysv.S ├── alpha │ ├── ffi.c │ ├── ffitarget.h │ ├── internal.h │ └── osf.S ├── arc │ ├── arcompact.S │ ├── ffi.c │ └── ffitarget.h ├── arm │ ├── ffi.c │ ├── ffitarget.h │ ├── internal.h │ └── sysv.S ├── avr32 │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── bfin │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── closures.c ├── cris │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── debug.c ├── dlmalloc.c ├── frv │ ├── eabi.S │ ├── ffi.c │ └── ffitarget.h ├── ia64 │ ├── ffi.c │ ├── ffitarget.h │ ├── ia64_flags.h │ └── unix.S ├── java_raw_api.c ├── m32r │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── m68k │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── m88k │ ├── ffi.c │ ├── ffitarget.h │ └── obsd.S ├── metag │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── microblaze │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── mips │ ├── ffi.c │ ├── ffitarget.h │ ├── n32.S │ └── o32.S ├── moxie │ ├── eabi.S │ ├── ffi.c │ └── ffitarget.h ├── nios2 │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── or1k │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── pa │ ├── ffi.c │ ├── ffitarget.h │ ├── hpux32.S │ └── linux.S ├── powerpc │ ├── aix.S │ ├── aix_closure.S │ ├── asm.h │ ├── darwin.S │ ├── darwin_closure.S │ ├── ffi.c │ ├── ffi_darwin.c │ ├── ffi_linux64.c │ ├── ffi_powerpc.h │ ├── ffi_sysv.c │ ├── ffitarget.h │ ├── linux64.S │ ├── linux64_closure.S │ ├── ppc_closure.S │ └── sysv.S ├── prep_cif.c ├── raw_api.c ├── s390 │ ├── ffi.c │ ├── ffitarget.h │ ├── internal.h │ └── sysv.S ├── sh │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── sh64 │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── sparc │ ├── ffi.c │ ├── ffi64.c │ ├── ffitarget.h │ ├── internal.h │ ├── v8.S │ └── v9.S ├── tile │ ├── ffi.c │ ├── ffitarget.h │ └── tile.S ├── types.c ├── vax │ ├── elfbsd.S │ ├── ffi.c │ └── ffitarget.h ├── x86 │ ├── asmnames.h │ ├── ffi.c │ ├── ffi64.c │ ├── ffitarget.h │ ├── ffiw64.c │ ├── internal.h │ ├── internal64.h │ ├── sysv.S │ ├── unix64.S │ ├── win64.S │ └── win64_intel.S └── xtensa │ ├── ffi.c │ ├── ffitarget.h │ └── sysv.S ├── stamp-h.in └── testsuite ├── Makefile.am ├── Makefile.in ├── config └── default.exp ├── lib ├── libffi.exp ├── target-libpath.exp └── wrapper.exp ├── libffi.call ├── align_mixed.c ├── call.exp ├── closure_fn0.c ├── closure_fn1.c ├── closure_fn2.c ├── closure_fn3.c ├── closure_fn4.c ├── closure_fn5.c ├── closure_fn6.c ├── closure_loc_fn0.c ├── closure_simple.c ├── cls_12byte.c ├── cls_16byte.c ├── cls_18byte.c ├── cls_19byte.c ├── cls_1_1byte.c ├── cls_20byte.c ├── cls_20byte1.c ├── cls_24byte.c ├── cls_2byte.c ├── cls_3_1byte.c ├── cls_3byte1.c ├── cls_3byte2.c ├── cls_3float.c ├── cls_4_1byte.c ├── cls_4byte.c ├── cls_5_1_byte.c ├── cls_5byte.c ├── cls_64byte.c ├── cls_6_1_byte.c ├── cls_6byte.c ├── cls_7_1_byte.c ├── cls_7byte.c ├── cls_8byte.c ├── cls_9byte1.c ├── cls_9byte2.c ├── cls_align_double.c ├── cls_align_float.c ├── cls_align_longdouble.c ├── cls_align_longdouble_split.c ├── cls_align_longdouble_split2.c ├── cls_align_pointer.c ├── cls_align_sint16.c ├── cls_align_sint32.c ├── cls_align_sint64.c ├── cls_align_uint16.c ├── cls_align_uint32.c ├── cls_align_uint64.c ├── cls_dbls_struct.c ├── cls_double.c ├── cls_double_va.c ├── cls_float.c ├── cls_longdouble.c ├── cls_longdouble_va.c ├── cls_many_mixed_args.c ├── cls_many_mixed_float_double.c ├── cls_multi_schar.c ├── cls_multi_sshort.c ├── cls_multi_sshortchar.c ├── cls_multi_uchar.c ├── cls_multi_ushort.c ├── cls_multi_ushortchar.c ├── cls_pointer.c ├── cls_pointer_stack.c ├── cls_schar.c ├── cls_sint.c ├── cls_sshort.c ├── cls_struct_va1.c ├── cls_uchar.c ├── cls_uchar_va.c ├── cls_uint.c ├── cls_uint_va.c ├── cls_ulong_va.c ├── cls_ulonglong.c ├── cls_ushort.c ├── cls_ushort_va.c ├── err_bad_abi.c ├── err_bad_typedef.c ├── ffitest.h ├── float.c ├── float1.c ├── float2.c ├── float3.c ├── float4.c ├── float_va.c ├── huge_struct.c ├── many.c ├── many2.c ├── many_double.c ├── many_mixed.c ├── negint.c ├── nested_struct.c ├── nested_struct1.c ├── nested_struct10.c ├── nested_struct11.c ├── nested_struct2.c ├── nested_struct3.c ├── nested_struct4.c ├── nested_struct5.c ├── nested_struct6.c ├── nested_struct7.c ├── nested_struct8.c ├── nested_struct9.c ├── offsets.c ├── pr1172638.c ├── problem1.c ├── promotion.c ├── pyobjc-tc.c ├── return_dbl.c ├── return_dbl1.c ├── return_dbl2.c ├── return_fl.c ├── return_fl1.c ├── return_fl2.c ├── return_fl3.c ├── return_ldl.c ├── return_ll.c ├── return_ll1.c ├── return_sc.c ├── return_sl.c ├── return_uc.c ├── return_ul.c ├── stret_large.c ├── stret_large2.c ├── stret_medium.c ├── stret_medium2.c ├── strlen.c ├── strlen2.c ├── strlen3.c ├── strlen4.c ├── struct1.c ├── struct2.c ├── struct3.c ├── struct4.c ├── struct5.c ├── struct6.c ├── struct7.c ├── struct8.c ├── struct9.c ├── testclosure.c ├── uninitialized.c ├── unwindtest.cc ├── unwindtest_ffi_call.cc ├── va_1.c ├── va_struct1.c ├── va_struct2.c └── va_struct3.c ├── libffi.complex ├── cls_align_complex.inc ├── cls_align_complex_double.c ├── cls_align_complex_float.c ├── cls_align_complex_longdouble.c ├── cls_complex.inc ├── cls_complex_double.c ├── cls_complex_float.c ├── cls_complex_longdouble.c ├── cls_complex_struct.inc ├── cls_complex_struct_double.c ├── cls_complex_struct_float.c ├── cls_complex_struct_longdouble.c ├── cls_complex_va.inc ├── cls_complex_va_double.c ├── cls_complex_va_float.c ├── cls_complex_va_longdouble.c ├── complex.exp ├── complex.inc ├── complex_defs_double.inc ├── complex_defs_float.inc ├── complex_defs_longdouble.inc ├── complex_double.c ├── complex_float.c ├── complex_int.c ├── complex_longdouble.c ├── ffitest.h ├── many_complex.inc ├── many_complex_double.c ├── many_complex_float.c ├── many_complex_longdouble.c ├── return_complex.inc ├── return_complex1.inc ├── return_complex1_double.c ├── return_complex1_float.c ├── return_complex1_longdouble.c ├── return_complex2.inc ├── return_complex2_double.c ├── return_complex2_float.c ├── return_complex2_longdouble.c ├── return_complex_double.c ├── return_complex_float.c └── return_complex_longdouble.c └── libffi.go ├── aa-direct.c ├── closure1.c ├── ffitest.h ├── go.exp └── static-chain.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/binding.gyp -------------------------------------------------------------------------------- /lib/nativescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/lib/nativescript.js -------------------------------------------------------------------------------- /metadata/metadata-arm64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/metadata/metadata-arm64.bin -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build_libffi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/scripts/build_libffi.sh -------------------------------------------------------------------------------- /scripts/generate_js_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/scripts/generate_js_headers.sh -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICache.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICache.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICall.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICall.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICallPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICallPrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICallPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICallPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICallback.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFICallbackInlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFICallbackInlines.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFIFunctionCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFIFunctionCall.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFIFunctionCall.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFIFunctionCall.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFIFunctionCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFIFunctionCallback.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Calling/FFIFunctionCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Calling/FFIFunctionCallback.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Interop.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Interop.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Interop.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/JSErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/JSErrors.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/JSErrors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/JSErrors.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/JSWarnings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/JSWarnings.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/JSWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/JSWarnings.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FFISimpleType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FFISimpleType.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FFISimpleType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FFISimpleType.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FFIType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FFIType.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FFIType.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FFIType.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceConstructor.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeConstructor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeConstructor.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/FunctionReference/FunctionReferenceTypeInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Fundamentals/FFINumericTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Fundamentals/FFINumericTypes.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Fundamentals/FFINumericTypes.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Fundamentals/FFINumericTypes.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Fundamentals/FFIPrimitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Fundamentals/FFIPrimitiveTypes.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Fundamentals/FFIPrimitiveTypes.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Fundamentals/FFIPrimitiveTypes.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerConstructor.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerPrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Pointer/PointerPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Pointer/PointerPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordConstructor.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordField.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordField.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordPrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordPrototypeFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordPrototypeFunctions.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordPrototypeFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordPrototypeFunctions.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Record/RecordType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Record/RecordType.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ExtVectorTypeInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ExtVectorTypeInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ExtVectorTypeInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ExtVectorTypeInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefPrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefTypeInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefTypeInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/IndexedRefTypeInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/IndexedRefTypeInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceConstructor.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferencePrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferencePrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferencePrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferencePrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeConstructor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeConstructor.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Marshalling/Reference/ReferenceTypeInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Metadata/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Metadata/Metadata.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Metadata/Metadata.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Metadata/Metadata.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/NativeScriptRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/NativeScriptRuntime.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/NativeScriptRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/NativeScriptRuntime.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/AllocatedPlaceholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/AllocatedPlaceholder.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/AllocatedPlaceholder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/AllocatedPlaceholder.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockCall.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockCall.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockCall.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockCallback.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockCallback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockCallback.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockType.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockType.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockType.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockTypeConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockTypeConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Block/ObjCBlockTypeConstructor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Block/ObjCBlockTypeConstructor.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorBase.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorBase.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorCall.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorCall.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorCall.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorDerived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorDerived.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorDerived.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorDerived.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorNative.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorNative.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Constructor/ObjCConstructorNative.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIterator.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIterator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIterator.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIteratorPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIteratorPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIteratorPrototype.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/ObjCFastEnumerationIteratorPrototype.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/TNSFastEnumerationAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/TNSFastEnumerationAdapter.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Enumeration/TNSFastEnumerationAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Enumeration/TNSFastEnumerationAdapter.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCClassBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCClassBuilder.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCClassBuilder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCClassBuilder.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCExtend.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCExtend.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCExtend.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCTypeScriptExtend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCTypeScriptExtend.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Inheritance/ObjCTypeScriptExtend.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Inheritance/ObjCTypeScriptExtend.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/JSStringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/JSStringUtils.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/JSStringUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/JSStringUtils.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/NSErrorWrapperConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/NSErrorWrapperConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/NSErrorWrapperConstructor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/NSErrorWrapperConstructor.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCMethodCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCMethodCall.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCMethodCall.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCMethodCall.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCMethodCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCMethodCallback.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCMethodCallback.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCMethodCallback.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCPrimitiveTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCPrimitiveTypes.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCPrimitiveTypes.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCPrimitiveTypes.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCProtocolWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCProtocolWrapper.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCProtocolWrapper.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCProtocolWrapper.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCPrototype.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCPrototype.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCSuperObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCSuperObject.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCSuperObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCSuperObject.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCTypes.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCTypes.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCTypes.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCWrapperObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCWrapperObject.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/ObjCWrapperObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/ObjCWrapperObject.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSArrayAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSArrayAdapter.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSArrayAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSArrayAdapter.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSDataAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSDataAdapter.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSDataAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSDataAdapter.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSDictionaryAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSDictionaryAdapter.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/TNSDictionaryAdapter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/TNSDictionaryAdapter.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedPrototype.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedPrototype.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedType.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/ObjC/Unmanaged/UnmanagedType.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefConstructor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefConstructor.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefConstructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefConstructor.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefInstance.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefInstance.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefPrototype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefPrototype.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/JSWeakRefPrototype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/JSWeakRefPrototype.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/Runtime/ReleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/Runtime/ReleasePool.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/RuntimeLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/RuntimeLock.cpp -------------------------------------------------------------------------------- /src/NativeScriptRuntime/RuntimeLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/RuntimeLock.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/SymbolLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/SymbolLoader.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/SymbolLoader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/SymbolLoader.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/TypeFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/TypeFactory.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/TypeFactory.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/TypeFactory.mm -------------------------------------------------------------------------------- /src/NativeScriptRuntime/WeakHandleOwners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/WeakHandleOwners.h -------------------------------------------------------------------------------- /src/NativeScriptRuntime/__extends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/__extends.js -------------------------------------------------------------------------------- /src/NativeScriptRuntime/inlineFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/inlineFunctions.js -------------------------------------------------------------------------------- /src/NativeScriptRuntime/jsc-includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/NativeScriptRuntime/jsc-includes.h -------------------------------------------------------------------------------- /src/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/binding.cpp -------------------------------------------------------------------------------- /src/createNativeScriptRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/createNativeScriptRuntime.h -------------------------------------------------------------------------------- /src/createNativeScriptRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/createNativeScriptRuntime.mm -------------------------------------------------------------------------------- /src/libffi/ChangeLog.libffi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/ChangeLog.libffi -------------------------------------------------------------------------------- /src/libffi/ChangeLog.libffi-3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/ChangeLog.libffi-3.1 -------------------------------------------------------------------------------- /src/libffi/ChangeLog.libgcj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/ChangeLog.libgcj -------------------------------------------------------------------------------- /src/libffi/ChangeLog.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/ChangeLog.v1 -------------------------------------------------------------------------------- /src/libffi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/LICENSE -------------------------------------------------------------------------------- /src/libffi/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/Makefile.am -------------------------------------------------------------------------------- /src/libffi/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/Makefile.in -------------------------------------------------------------------------------- /src/libffi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/README -------------------------------------------------------------------------------- /src/libffi/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/acinclude.m4 -------------------------------------------------------------------------------- /src/libffi/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/aclocal.m4 -------------------------------------------------------------------------------- /src/libffi/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec autoreconf -v -i 3 | -------------------------------------------------------------------------------- /src/libffi/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/compile -------------------------------------------------------------------------------- /src/libffi/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/config.guess -------------------------------------------------------------------------------- /src/libffi/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/config.sub -------------------------------------------------------------------------------- /src/libffi/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/configure -------------------------------------------------------------------------------- /src/libffi/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/configure.ac -------------------------------------------------------------------------------- /src/libffi/configure.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/configure.host -------------------------------------------------------------------------------- /src/libffi/darwin_common/include/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/include/ffi.h -------------------------------------------------------------------------------- /src/libffi/darwin_common/include/ffi_cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/include/ffi_cfi.h -------------------------------------------------------------------------------- /src/libffi/darwin_common/include/ffi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/include/ffi_common.h -------------------------------------------------------------------------------- /src/libffi/darwin_common/include/fficonfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/include/fficonfig.h -------------------------------------------------------------------------------- /src/libffi/darwin_common/include/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/include/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/closures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/closures.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/debug.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/dlmalloc.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/java_raw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/java_raw_api.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/prep_cif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/prep_cif.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/raw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/raw_api.c -------------------------------------------------------------------------------- /src/libffi/darwin_common/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_common/src/types.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffi_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffi_arm64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffi_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffi_armv7.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffi_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffi_i386.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffi_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffi_x86_64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/fficonfig_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/fficonfig_arm64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/fficonfig_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/fficonfig_armv7.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/fficonfig_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/fficonfig_i386.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/fficonfig_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/fficonfig_x86_64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffitarget_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffitarget_arm64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffitarget_armv7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffitarget_armv7.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffitarget_i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffitarget_i386.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/include/ffitarget_x86_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/include/ffitarget_x86_64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/aarch64/ffi_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/aarch64/ffi_arm64.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/aarch64/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/aarch64/internal.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/aarch64/sysv_arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/aarch64/sysv_arm64.S -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/arm/ffi_armv7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/arm/ffi_armv7.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/arm/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/arm/internal.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/arm/sysv_armv7.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/arm/sysv_armv7.S -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/asmnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/asmnames.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/ffi64_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/ffi64_x86_64.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/ffi_i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/ffi_i386.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/ffiw64_x86_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/ffiw64_x86_64.c -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/internal.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/internal64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/internal64.h -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/sysv_i386.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/sysv_i386.S -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/unix64_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/unix64_x86_64.S -------------------------------------------------------------------------------- /src/libffi/darwin_ios/src/x86/win64_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/darwin_ios/src/x86/win64_x86_64.S -------------------------------------------------------------------------------- /src/libffi/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/depcomp -------------------------------------------------------------------------------- /src/libffi/doc/Makefile.am: -------------------------------------------------------------------------------- 1 | ## Process this with automake to create Makefile.in 2 | 3 | info_TEXINFOS = libffi.texi 4 | -------------------------------------------------------------------------------- /src/libffi/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/doc/Makefile.in -------------------------------------------------------------------------------- /src/libffi/doc/libffi.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/doc/libffi.texi -------------------------------------------------------------------------------- /src/libffi/doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/doc/mdate-sh -------------------------------------------------------------------------------- /src/libffi/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/doc/texinfo.tex -------------------------------------------------------------------------------- /src/libffi/doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/doc/version.texi -------------------------------------------------------------------------------- /src/libffi/fficonfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/fficonfig.h.in -------------------------------------------------------------------------------- /src/libffi/generate-darwin-source-and-headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/generate-darwin-source-and-headers.py -------------------------------------------------------------------------------- /src/libffi/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/include/Makefile.am -------------------------------------------------------------------------------- /src/libffi/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/include/Makefile.in -------------------------------------------------------------------------------- /src/libffi/include/ffi.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/include/ffi.h.in -------------------------------------------------------------------------------- /src/libffi/include/ffi_cfi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/include/ffi_cfi.h -------------------------------------------------------------------------------- /src/libffi/include/ffi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/include/ffi_common.h -------------------------------------------------------------------------------- /src/libffi/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/install-sh -------------------------------------------------------------------------------- /src/libffi/libffi.map.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/libffi.map.in -------------------------------------------------------------------------------- /src/libffi/libffi.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/libffi.pc.in -------------------------------------------------------------------------------- /src/libffi/libffi.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/libffi.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /src/libffi/libtool-ldflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/libtool-ldflags -------------------------------------------------------------------------------- /src/libffi/libtool-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/libtool-version -------------------------------------------------------------------------------- /src/libffi/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/ltmain.sh -------------------------------------------------------------------------------- /src/libffi/m4/asmcfi.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/asmcfi.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_cc_maxopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_cc_maxopt.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_cflags_warn_all.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_cflags_warn_all.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_compiler_vendor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_compiler_vendor.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_configure_args.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_configure_args.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_enable_builddir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_enable_builddir.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_gcc_archflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_gcc_archflag.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ax_gcc_x86_cpuid.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ax_gcc_x86_cpuid.m4 -------------------------------------------------------------------------------- /src/libffi/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/libtool.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ltoptions.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ltsugar.m4 -------------------------------------------------------------------------------- /src/libffi/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/ltversion.m4 -------------------------------------------------------------------------------- /src/libffi/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /src/libffi/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/Makefile.am -------------------------------------------------------------------------------- /src/libffi/man/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/Makefile.in -------------------------------------------------------------------------------- /src/libffi/man/ffi.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/ffi.3 -------------------------------------------------------------------------------- /src/libffi/man/ffi_call.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/ffi_call.3 -------------------------------------------------------------------------------- /src/libffi/man/ffi_prep_cif.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/ffi_prep_cif.3 -------------------------------------------------------------------------------- /src/libffi/man/ffi_prep_cif_var.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/man/ffi_prep_cif_var.3 -------------------------------------------------------------------------------- /src/libffi/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/missing -------------------------------------------------------------------------------- /src/libffi/msvcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/msvcc.sh -------------------------------------------------------------------------------- /src/libffi/src/aarch64/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/aarch64/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/aarch64/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/aarch64/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/aarch64/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/aarch64/internal.h -------------------------------------------------------------------------------- /src/libffi/src/aarch64/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/aarch64/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/alpha/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/alpha/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/alpha/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/alpha/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/alpha/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/alpha/internal.h -------------------------------------------------------------------------------- /src/libffi/src/alpha/osf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/alpha/osf.S -------------------------------------------------------------------------------- /src/libffi/src/arc/arcompact.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arc/arcompact.S -------------------------------------------------------------------------------- /src/libffi/src/arc/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arc/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/arc/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arc/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/arm/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arm/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/arm/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arm/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/arm/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arm/internal.h -------------------------------------------------------------------------------- /src/libffi/src/arm/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/arm/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/avr32/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/avr32/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/avr32/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/avr32/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/avr32/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/avr32/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/bfin/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/bfin/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/bfin/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/bfin/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/bfin/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/bfin/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/closures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/closures.c -------------------------------------------------------------------------------- /src/libffi/src/cris/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/cris/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/cris/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/cris/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/cris/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/cris/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/debug.c -------------------------------------------------------------------------------- /src/libffi/src/dlmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/dlmalloc.c -------------------------------------------------------------------------------- /src/libffi/src/frv/eabi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/frv/eabi.S -------------------------------------------------------------------------------- /src/libffi/src/frv/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/frv/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/frv/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/frv/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/ia64/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/ia64/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/ia64/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/ia64/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/ia64/ia64_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/ia64/ia64_flags.h -------------------------------------------------------------------------------- /src/libffi/src/ia64/unix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/ia64/unix.S -------------------------------------------------------------------------------- /src/libffi/src/java_raw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/java_raw_api.c -------------------------------------------------------------------------------- /src/libffi/src/m32r/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m32r/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/m32r/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m32r/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/m32r/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m32r/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/m68k/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m68k/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/m68k/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m68k/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/m68k/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m68k/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/m88k/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m88k/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/m88k/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m88k/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/m88k/obsd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/m88k/obsd.S -------------------------------------------------------------------------------- /src/libffi/src/metag/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/metag/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/metag/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/metag/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/metag/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/metag/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/microblaze/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/microblaze/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/microblaze/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/microblaze/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/microblaze/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/microblaze/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/mips/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/mips/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/mips/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/mips/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/mips/n32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/mips/n32.S -------------------------------------------------------------------------------- /src/libffi/src/mips/o32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/mips/o32.S -------------------------------------------------------------------------------- /src/libffi/src/moxie/eabi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/moxie/eabi.S -------------------------------------------------------------------------------- /src/libffi/src/moxie/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/moxie/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/moxie/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/moxie/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/nios2/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/nios2/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/nios2/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/nios2/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/nios2/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/nios2/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/or1k/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/or1k/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/or1k/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/or1k/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/or1k/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/or1k/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/pa/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/pa/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/pa/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/pa/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/pa/hpux32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/pa/hpux32.S -------------------------------------------------------------------------------- /src/libffi/src/pa/linux.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/pa/linux.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/aix.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/aix.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/aix_closure.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/aix_closure.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/asm.h -------------------------------------------------------------------------------- /src/libffi/src/powerpc/darwin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/darwin.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/darwin_closure.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/darwin_closure.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffi_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffi_darwin.c -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffi_linux64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffi_linux64.c -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffi_powerpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffi_powerpc.h -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffi_sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffi_sysv.c -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/powerpc/linux64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/linux64.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/linux64_closure.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/linux64_closure.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/ppc_closure.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/ppc_closure.S -------------------------------------------------------------------------------- /src/libffi/src/powerpc/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/powerpc/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/prep_cif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/prep_cif.c -------------------------------------------------------------------------------- /src/libffi/src/raw_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/raw_api.c -------------------------------------------------------------------------------- /src/libffi/src/s390/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/s390/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/s390/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/s390/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/s390/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/s390/internal.h -------------------------------------------------------------------------------- /src/libffi/src/s390/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/s390/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/sh/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/sh/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/sh/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/sh64/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh64/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/sh64/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh64/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/sh64/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sh64/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/sparc/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/sparc/ffi64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/ffi64.c -------------------------------------------------------------------------------- /src/libffi/src/sparc/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/sparc/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/internal.h -------------------------------------------------------------------------------- /src/libffi/src/sparc/v8.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/v8.S -------------------------------------------------------------------------------- /src/libffi/src/sparc/v9.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/sparc/v9.S -------------------------------------------------------------------------------- /src/libffi/src/tile/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/tile/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/tile/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/tile/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/tile/tile.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/tile/tile.S -------------------------------------------------------------------------------- /src/libffi/src/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/types.c -------------------------------------------------------------------------------- /src/libffi/src/vax/elfbsd.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/vax/elfbsd.S -------------------------------------------------------------------------------- /src/libffi/src/vax/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/vax/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/vax/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/vax/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/x86/asmnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/asmnames.h -------------------------------------------------------------------------------- /src/libffi/src/x86/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/x86/ffi64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/ffi64.c -------------------------------------------------------------------------------- /src/libffi/src/x86/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/x86/ffiw64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/ffiw64.c -------------------------------------------------------------------------------- /src/libffi/src/x86/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/internal.h -------------------------------------------------------------------------------- /src/libffi/src/x86/internal64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/internal64.h -------------------------------------------------------------------------------- /src/libffi/src/x86/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/sysv.S -------------------------------------------------------------------------------- /src/libffi/src/x86/unix64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/unix64.S -------------------------------------------------------------------------------- /src/libffi/src/x86/win64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/win64.S -------------------------------------------------------------------------------- /src/libffi/src/x86/win64_intel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/x86/win64_intel.S -------------------------------------------------------------------------------- /src/libffi/src/xtensa/ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/xtensa/ffi.c -------------------------------------------------------------------------------- /src/libffi/src/xtensa/ffitarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/xtensa/ffitarget.h -------------------------------------------------------------------------------- /src/libffi/src/xtensa/sysv.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/src/xtensa/sysv.S -------------------------------------------------------------------------------- /src/libffi/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/libffi/testsuite/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/Makefile.am -------------------------------------------------------------------------------- /src/libffi/testsuite/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/Makefile.in -------------------------------------------------------------------------------- /src/libffi/testsuite/config/default.exp: -------------------------------------------------------------------------------- 1 | load_lib "standard.exp" 2 | -------------------------------------------------------------------------------- /src/libffi/testsuite/lib/libffi.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/lib/libffi.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/lib/target-libpath.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/lib/target-libpath.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/lib/wrapper.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/lib/wrapper.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/align_mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/align_mixed.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/call.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/call.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn0.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn4.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn5.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_fn6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_fn6.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_loc_fn0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_loc_fn0.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/closure_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/closure_simple.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_12byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_12byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_16byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_16byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_18byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_18byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_19byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_19byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_1_1byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_1_1byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_20byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_20byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_20byte1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_20byte1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_24byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_24byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_2byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_2byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_3_1byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_3_1byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_3byte1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_3byte1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_3byte2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_3byte2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_3float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_3float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_4_1byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_4_1byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_4byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_4byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_5_1_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_5_1_byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_5byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_5byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_64byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_64byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_6_1_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_6_1_byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_6byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_6byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_7_1_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_7_1_byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_7byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_7byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_8byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_8byte.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_9byte1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_9byte1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_9byte2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_9byte2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_longdouble_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_longdouble_split.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_pointer.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_sint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_sint16.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_sint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_sint32.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_sint64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_sint64.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_uint16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_uint16.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_uint32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_uint32.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_align_uint64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_align_uint64.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_dbls_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_dbls_struct.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_double_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_double_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_longdouble_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_longdouble_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_many_mixed_args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_many_mixed_args.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_schar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_schar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_sshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_sshort.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_sshortchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_sshortchar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_uchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_uchar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_ushort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_ushort.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_multi_ushortchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_multi_ushortchar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_pointer.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_pointer_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_pointer_stack.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_schar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_schar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_sint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_sint.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_sshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_sshort.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_struct_va1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_struct_va1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_uchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_uchar.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_uchar_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_uchar_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_uint.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_uint_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_uint_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_ulong_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_ulong_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_ulonglong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_ulonglong.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_ushort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_ushort.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/cls_ushort_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/cls_ushort_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/err_bad_abi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/err_bad_abi.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/err_bad_typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/err_bad_typedef.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/ffitest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/ffitest.h -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float4.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/float_va.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/float_va.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/huge_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/huge_struct.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/many.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/many2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/many2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/many_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/many_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/many_mixed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/many_mixed.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/negint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/negint.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct10.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct11.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct4.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct5.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct6.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct7.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct8.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/nested_struct9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/nested_struct9.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/offsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/offsets.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/pr1172638.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/pr1172638.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/problem1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/problem1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/promotion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/promotion.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/pyobjc-tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/pyobjc-tc.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_dbl.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_dbl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_dbl1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_dbl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_dbl2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_fl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_fl.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_fl1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_fl1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_fl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_fl2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_fl3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_fl3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_ldl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_ldl.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_ll.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_ll1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_ll1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_sc.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_sl.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_uc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_uc.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/return_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/return_ul.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/stret_large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/stret_large.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/stret_large2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/stret_large2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/stret_medium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/stret_medium.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/stret_medium2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/stret_medium2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/strlen.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/strlen2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/strlen2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/strlen3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/strlen3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/strlen4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/strlen4.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct4.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct5.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct6.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct7.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct8.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/struct9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/struct9.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/testclosure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/testclosure.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/uninitialized.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/uninitialized.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/unwindtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/unwindtest.cc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/va_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/va_1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/va_struct1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/va_struct1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/va_struct2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/va_struct2.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.call/va_struct3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.call/va_struct3.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_align_complex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_align_complex.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_align_complex_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_align_complex_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_align_complex_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_align_complex_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_struct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_struct.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_struct_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_struct_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_struct_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_struct_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_va.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_va.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_va_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_va_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_va_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_va_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_defs_double.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_defs_double.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_defs_float.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_defs_float.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_int.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/complex_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/complex_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/ffitest.h: -------------------------------------------------------------------------------- 1 | #include "../libffi.call/ffitest.h" 2 | -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/many_complex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/many_complex.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/many_complex_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/many_complex_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/many_complex_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/many_complex_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/many_complex_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/many_complex_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex1.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex1.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex1_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex1_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex1_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex1_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex1_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex1_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex2.inc -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex2_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex2_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex2_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex2_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex2_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex2_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex_double.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex_float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex_float.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.complex/return_complex_longdouble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.complex/return_complex_longdouble.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.go/aa-direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.go/aa-direct.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.go/closure1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.go/closure1.c -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.go/ffitest.h: -------------------------------------------------------------------------------- 1 | #include "../libffi.call/ffitest.h" 2 | -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.go/go.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.go/go.exp -------------------------------------------------------------------------------- /src/libffi/testsuite/libffi.go/static-chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mceSystems/node-native-script/HEAD/src/libffi/testsuite/libffi.go/static-chain.h --------------------------------------------------------------------------------