├── .github └── workflows │ └── jsource.yml ├── .gitignore ├── README.md ├── android ├── jni │ ├── Android.mk │ └── Application.mk ├── readme └── release-android.sh ├── asm ├── asm.txt ├── asm64 ├── asm64noovf.c ├── asm64noovf.s ├── copy_obj ├── create_asm_source ├── d.c ├── d.s ├── fix_overflow.ijs ├── linuxasm64.o ├── linuxasm64.s └── macasm64.o ├── base64 ├── LICENSE ├── include │ └── libbase64.h └── lib │ ├── arch │ ├── avx │ │ ├── codec.c │ │ ├── config.h │ │ └── enc_loop_asm.c │ ├── avx2 │ │ ├── codec.c │ │ ├── config.h │ │ ├── dec_loop.c │ │ ├── dec_reshuffle.c │ │ ├── enc_loop.c │ │ ├── enc_loop_asm.c │ │ ├── enc_reshuffle.c │ │ └── enc_translate.c │ ├── avx512 │ │ ├── codec.c │ │ ├── config.h │ │ ├── enc_loop.c │ │ └── enc_reshuffle_translate.c │ ├── generic │ │ ├── 32 │ │ │ ├── dec_loop.c │ │ │ └── enc_loop.c │ │ ├── 64 │ │ │ └── enc_loop.c │ │ ├── codec.c │ │ ├── config.h │ │ ├── dec_head.c │ │ ├── dec_tail.c │ │ ├── enc_head.c │ │ └── enc_tail.c │ ├── neon32 │ │ ├── codec.c │ │ ├── config.h │ │ ├── dec_loop.c │ │ ├── enc_loop.c │ │ ├── enc_reshuffle.c │ │ └── enc_translate.c │ ├── neon64 │ │ ├── codec.c │ │ ├── config.h │ │ ├── dec_loop.c │ │ ├── enc_loop.c │ │ ├── enc_loop_asm.c │ │ └── enc_reshuffle.c │ ├── sse41 │ │ ├── codec.c │ │ └── config.h │ ├── sse42 │ │ ├── codec.c │ │ └── config.h │ └── ssse3 │ │ ├── codec.c │ │ ├── config.h │ │ ├── dec_loop.c │ │ ├── dec_reshuffle.c │ │ ├── enc_loop.c │ │ ├── enc_loop_asm.c │ │ ├── enc_reshuffle.c │ │ └── enc_translate.c │ ├── codec_choose.c │ ├── codecs.h │ ├── config.h │ ├── env.h │ ├── lib.c │ ├── lib_openmp.c │ └── tables │ ├── table_dec_32bit.h │ ├── table_enc_12bit.h │ ├── tables.c │ └── tables.h ├── benchmark └── avx.ijs ├── dllsrc ├── jcedll.def ├── jdll.c ├── jdll.def ├── jdll.h ├── jdll.rc ├── jdll.tlb ├── jdll2.def ├── jdll3.def ├── jdll_original.tlb ├── jdll_rebuilt_from_old_source.tlb ├── jdllcom.h ├── jdllcomx.cpp ├── jdlltype.h └── jexe.h ├── hostdefs ├── Hostdefs-nopie.mk ├── Hostdefs.mk ├── hostdefs.c ├── hostdefs_win32.ijs ├── makefile └── pcre2posix.h ├── jlibrary ├── addons │ ├── data │ │ ├── jfiles │ │ │ ├── history.txt │ │ │ ├── jfiles.ijs │ │ │ ├── jfiles.txt │ │ │ ├── keyfiles.txt │ │ │ ├── manifest.ijs │ │ │ └── test │ │ │ │ ├── test0.ijs │ │ │ │ └── test1.ijs │ │ └── jmf │ │ │ ├── history.txt │ │ │ ├── jmf.ijs │ │ │ ├── manifest.ijs │ │ │ └── test │ │ │ ├── testdata.ijs │ │ │ └── testjmf.ijs │ ├── dev │ │ ├── eformat │ │ │ └── eformat.ijs │ │ ├── lu │ │ │ └── lu.ijs │ │ └── modular │ │ │ ├── manifest.ijs │ │ │ └── modular.ijs │ └── math │ │ └── lapack │ │ ├── dgeev.ijs │ │ ├── geev.ijs │ │ ├── jlapack.dll │ │ ├── jlapack64.dll │ │ ├── lapack.ijs │ │ └── zgeev.ijs ├── bin │ └── profile.ijs ├── copy_library_from_current.bat ├── system │ ├── config │ │ ├── base.cfg │ │ └── folders.cfg │ ├── defs │ │ ├── hostdefs_aix.ijs │ │ ├── hostdefs_android.ijs │ │ ├── hostdefs_android_64.ijs │ │ ├── hostdefs_darwin.ijs │ │ ├── hostdefs_darwin_64.ijs │ │ ├── hostdefs_freebsd_64.ijs │ │ ├── hostdefs_linux.ijs │ │ ├── hostdefs_linux_64.ijs │ │ ├── hostdefs_openbsd_64.ijs │ │ ├── hostdefs_sunos.ijs │ │ ├── hostdefs_win.ijs │ │ ├── hostdefs_win_64.ijs │ │ ├── netdefs_aix.ijs │ │ ├── netdefs_android.ijs │ │ ├── netdefs_android_64.ijs │ │ ├── netdefs_darwin.ijs │ │ ├── netdefs_darwin_64.ijs │ │ ├── netdefs_freebsd_64.ijs │ │ ├── netdefs_linux.ijs │ │ ├── netdefs_linux_64.ijs │ │ ├── netdefs_openbsd_64.ijs │ │ ├── netdefs_sunos.ijs │ │ ├── netdefs_win.ijs │ │ └── netdefs_win_64.ijs │ ├── main │ │ ├── regex.ijs │ │ ├── socket.ijs │ │ ├── stdlib.ijs │ │ └── task.ijs │ └── util │ │ ├── boot.ijs │ │ ├── configure.ijs │ │ ├── pacman.ijs │ │ ├── pm.ijs │ │ ├── pp.ijs │ │ ├── project.ijs │ │ ├── scripts.ijs │ │ └── tar.ijs └── tools │ ├── ftp │ ├── busybox.exe │ ├── busybox_license.txt │ ├── license.txt │ └── wget.exe │ └── regex │ ├── jpcre2.dll │ ├── libjpcre2.dylib │ ├── libjpcre2.so │ ├── libjpcre2_32.so │ └── readme.txt ├── jsrc ├── Android-static.mk ├── Android.mk ├── Jamalgam-nopie.mk ├── Jamalgam.mk ├── Jconsole-nopie.mk ├── Jconsole.mk ├── Jnative.mk ├── Tsdll.mk ├── a.c ├── a.h ├── ab.c ├── aes-arm.c ├── aes-arm_table.h ├── aes-c.c ├── aes-c.h ├── aes-ni.c ├── aes-sse2.c ├── af.c ├── ai.c ├── am.c ├── am1.c ├── amn.c ├── andjnative.c ├── ao.c ├── ap.c ├── ar.c ├── ar.h ├── as.c ├── au.c ├── avx2intrin-emu.h ├── avxintrin-emu.h ├── avxintrin-neon.h ├── blis.h ├── blis │ ├── gemm_c-ref.c │ ├── gemm_int-aarch64.c │ ├── gemm_int-avx.c │ ├── gemm_int-fma.c │ ├── gemm_int-sse2.c │ └── gemm_vec-ref.c ├── c.c ├── ca.c ├── cblas.c ├── cblas.h ├── cc.c ├── cd.c ├── cf.c ├── cg.c ├── ch.c ├── cip.c ├── cip_t.h ├── cipfloatmm_t.h ├── cl.c ├── codingrules.txt ├── com_jsoftware_j_JInterface.h ├── cp.c ├── cpdtsp.c ├── cpuinfo.c ├── cpuinfo.h ├── cr.c ├── cr_t.h ├── crc32c.c ├── crc32c.h ├── crc32ctables.h ├── crs.c ├── ct.c ├── cu.c ├── cv.c ├── cx.c ├── d.c ├── d.h ├── dc.c ├── dss.c ├── dstop.c ├── dsusp.c ├── dtoa.c ├── dtoa.h ├── f.c ├── f2.c ├── fbu.c ├── fnmatch.c ├── fnmatch.h ├── gemm.c ├── gemm.h ├── i.c ├── io.c ├── j.c ├── j.h ├── ja.h ├── jc.h ├── jconsole.c ├── jdlllic.c ├── je.h ├── jeload.c ├── jeload.h ├── jep.c ├── jerr.h ├── jfex.c ├── jfex.h ├── jgmp.h ├── jgmpinit.c ├── jlib.h ├── jr0.h ├── js.h ├── jsleef.h ├── jt.h ├── jtype.h ├── jversion-x.h ├── jx_utils_jnative.h ├── k.c ├── linenoise.c ├── linenoise.h ├── m.c ├── m.h ├── mbx.c ├── mt.c ├── mt.h ├── openssl │ └── sha │ │ ├── README.txt │ │ ├── asm │ │ ├── arm_arch.h │ │ ├── keccak1600-armv4-elf.S │ │ ├── keccak1600-armv8-elf.S │ │ ├── keccak1600-armv8-ios.S │ │ ├── keccak1600-avx2-elf.S │ │ ├── keccak1600-avx512-elf.S │ │ ├── keccak1600-mmx-android.S │ │ ├── keccak1600-mmx-elf.S │ │ ├── keccak1600-mmx-macho.S │ │ ├── keccak1600-mmx-masm.asm │ │ ├── keccak1600-mmx-nasm.asm │ │ ├── keccak1600-x86_64-elf.S │ │ ├── keccak1600-x86_64-macho.S │ │ ├── keccak1600-x86_64-masm.asm │ │ ├── keccak1600-x86_64-nasm.asm │ │ ├── md5-586-android.S │ │ ├── md5-586-elf.S │ │ ├── md5-586-macho.S │ │ ├── md5-586-masm.asm │ │ ├── md5-586-nasm.asm │ │ ├── md5-aarch64-elf.S │ │ ├── md5-aarch64-ios.S │ │ ├── md5-asm.sh │ │ ├── md5-x86_64-elf.S │ │ ├── md5-x86_64-macho.S │ │ ├── md5-x86_64-masm.asm │ │ ├── md5-x86_64-nasm.asm │ │ ├── nasm-build.sh │ │ ├── sha-asm.sh │ │ ├── sha1-586-android.S │ │ ├── sha1-586-elf.S │ │ ├── sha1-586-macho.S │ │ ├── sha1-586-masm.asm │ │ ├── sha1-586-nasm.asm │ │ ├── sha1-armv4-elf.S │ │ ├── sha1-armv8-elf.S │ │ ├── sha1-armv8-ios.S │ │ ├── sha1-x86_64-elf.S │ │ ├── sha1-x86_64-macho.S │ │ ├── sha1-x86_64-masm.asm │ │ ├── sha1-x86_64-nasm.asm │ │ ├── sha256-586-android.S │ │ ├── sha256-586-elf.S │ │ ├── sha256-586-macho.S │ │ ├── sha256-586-masm.asm │ │ ├── sha256-586-nasm.asm │ │ ├── sha256-armv4-elf.S │ │ ├── sha256-armv8-elf.S │ │ ├── sha256-armv8-ios.S │ │ ├── sha256-x86_64-elf.S │ │ ├── sha256-x86_64-macho.S │ │ ├── sha256-x86_64-masm.asm │ │ ├── sha256-x86_64-nasm.asm │ │ ├── sha512-586-android.S │ │ ├── sha512-586-elf.S │ │ ├── sha512-586-macho.S │ │ ├── sha512-586-masm.asm │ │ ├── sha512-586-nasm.asm │ │ ├── sha512-armv4-elf.S │ │ ├── sha512-armv8-elf.S │ │ ├── sha512-armv8-ios.S │ │ ├── sha512-x86_64-elf.S │ │ ├── sha512-x86_64-macho.S │ │ ├── sha512-x86_64-masm.asm │ │ └── sha512-x86_64-nasm.asm │ │ ├── keccak1600.c │ │ ├── md32_common.h │ │ ├── md4.h │ │ ├── md4_dgst.c │ │ ├── md4_locl.h │ │ ├── md4_one.c │ │ ├── md5.h │ │ ├── md5_dgst.c │ │ ├── md5_locl.h │ │ ├── md5_one.c │ │ ├── open_software_license.txt │ │ ├── openssl-util.c │ │ ├── openssl.h │ │ ├── sha.h │ │ ├── sha1_one.c │ │ ├── sha256.c │ │ ├── sha3.c │ │ ├── sha3.h │ │ ├── sha512.c │ │ └── sha_locl.h ├── p.c ├── p.h ├── pv.c ├── px.c ├── r.c ├── result.h ├── rl.c ├── rt.c ├── s.c ├── s.h ├── sc.c ├── sl.c ├── sn.c ├── sse2neon.h ├── sse2neon2.h ├── str.c ├── strptime.c ├── t.c ├── tags.txt ├── thread.c ├── thread.h ├── tsdll.c ├── u.c ├── utf │ ├── utf16le_to_utf8_avx512.S │ ├── utf16le_to_utf8_avx512i.c │ ├── utf8_to_utf16le_avx512.S │ └── utf8_to_utf16le_avx512i.c ├── v.c ├── v0.c ├── v1.c ├── v2.c ├── va.h ├── va1.c ├── va1ss.c ├── va2.c ├── va2s.c ├── va2ss.c ├── vamultsp.c ├── vasm.h ├── vb.c ├── vbang.c ├── vbit.c ├── vcant.c ├── vcat.c ├── vcatsp.c ├── vchar.c ├── vcomp.c ├── vcomp.h ├── vcompsc.c ├── vd.c ├── vdx.c ├── vdx.h ├── ve.c ├── ve.h ├── vf.c ├── vfft.c ├── vfrom.c ├── vfromsp.c ├── vg.c ├── vg.h ├── vgauss.c ├── vgcomp.c ├── vgmerge.h ├── vgmergemincomp.h ├── vgranking.c ├── vgsort.c ├── vgsort.h ├── vgsortavx512.h ├── vgsortinavx512.h ├── vgsortiqavx512.c ├── vgsortiqavx512.h ├── vgsortq.h ├── vgsp.c ├── vi.c ├── viavx.c ├── viavx.h ├── viavx1-2.c ├── viavx1-4.c ├── viavx1.h ├── viavx2.c ├── viavx3.c ├── viavx4.c ├── viavx5.c ├── viavx6.c ├── viix.c ├── viixamd64.asm ├── visp.c ├── vm.c ├── vo.c ├── vp.c ├── vq.c ├── vq.h ├── vrand.c ├── vrep.c ├── vs.c ├── vsb.c ├── vt.c ├── vu.c ├── vx.c ├── vx.h ├── vz.c ├── vz.h ├── w.c ├── w.h ├── wc.c ├── wn.c ├── ws.c ├── x.c ├── x.h ├── x15.c ├── xa.c ├── xaes.c ├── xb.c ├── xc.c ├── xc.h ├── xcrc.c ├── xd.c ├── xdic.c ├── xf.c ├── xfmt.c ├── xh.c ├── xi.c ├── xl.c ├── xlp.c ├── xo.c ├── xs.c ├── xsha.c ├── xt.c ├── xu.c └── xxhash.h ├── libbacktrace ├── alloc.c ├── atomic.c ├── backtrace-supported.h ├── backtrace.c ├── backtrace.h ├── config.h ├── dwarf.c ├── elf.c ├── fileline.c ├── filenames.h ├── internal.h ├── macho.c ├── mmap.c ├── mmapio.c ├── pecoff.c ├── posix.c ├── print.c ├── read.c ├── simple.c ├── sort.c └── state.c ├── libedit └── libedit.a ├── license.txt ├── make2 ├── build_all.sh ├── build_jamalgam.sh ├── build_jconsole.sh ├── build_jnative.sh ├── build_libj.sh ├── build_tsdll.sh ├── clean.sh ├── cpbin.sh ├── jplatform64.sh ├── macos-libomp.txt ├── make.txt ├── makefile-jamalgam ├── makefile-jconsole ├── makefile-jnative ├── makefile-libj ├── makefile-tsdll ├── mktoc.sh └── runtests ├── make_deprecated ├── build_all.sh ├── build_jconsole.sh ├── build_jnative.sh ├── build_libj.sh ├── build_tsdll.sh ├── clean.sh ├── comments.txt ├── copy_jlibrary.sh ├── domake.sh ├── install.sh ├── jvars.sh ├── make.txt ├── makefile └── run_tests.sh ├── makemsvc ├── jamalgam │ ├── makefile │ └── makefile.win ├── jconsole │ ├── makefile │ └── makefile.win ├── jdll │ ├── build.sh │ ├── clean.sh │ ├── makefile │ └── makefile.win ├── jnative │ ├── jnative.def │ ├── makefile │ └── makefile.win ├── makemsvc.txt ├── release.bat ├── release.sh └── tsdll │ ├── makefile │ └── makefile.win ├── makevs ├── README.md ├── copy_jlibrary.bat ├── install.bat ├── jconsole │ ├── jconsole.rc │ ├── jgray.ico │ ├── profile.ijs │ ├── resource.h │ ├── resource1.h │ └── template │ │ ├── .gitignore │ │ ├── jconsole_vs2013.sln │ │ ├── jconsole_vs2013.vcxproj │ │ ├── jconsole_vs2013.vcxproj.user │ │ ├── jconsole_vs2019.sln │ │ ├── jconsole_vs2019.vcxproj │ │ ├── jconsole_vs2019.vcxproj.user │ │ ├── jconsole_vs2019_clang.sln │ │ ├── jconsole_vs2019_clang.vcxproj │ │ └── jconsole_vs2019_clang.vcxproj.user ├── jdll │ ├── profile.ijs │ └── template │ │ ├── .gitignore │ │ ├── jdll_vs2013.sln │ │ ├── jdll_vs2013.vcxproj │ │ ├── jdll_vs2013.vcxproj.user │ │ ├── jdll_vs2019.sln │ │ ├── jdll_vs2019.vcxproj │ │ ├── jdll_vs2019.vcxproj.user │ │ ├── jdll_vs2019_clang.sln │ │ ├── jdll_vs2019_clang.vcxproj │ │ └── jdll_vs2019_clang.vcxproj.user ├── makevs.txt ├── midl │ ├── build.bat │ ├── jdll.idl │ ├── jdll.odl │ ├── jdll.tlb │ ├── jdll_i.c │ ├── jdllidl.h │ ├── methods.odl │ └── tlb.txt ├── release.bat ├── template.bat ├── templates.ijs └── tsdll │ ├── template │ ├── .gitignore │ ├── tsdll_vs2013.sln │ ├── tsdll_vs2013.vcxproj │ ├── tsdll_vs2013.vcxproj.user │ ├── tsdll_vs2019.sln │ ├── tsdll_vs2019.vcxproj │ ├── tsdll_vs2019.vcxproj.user │ ├── tsdll_vs2019_clang.sln │ ├── tsdll_vs2019_clang.vcxproj │ └── tsdll_vs2019_clang.vcxproj.user │ └── tsdll.def ├── mpir ├── apple │ ├── ios │ │ └── libgmp.a │ └── macos │ │ └── libgmp.dylib ├── freebsd │ ├── aarch64 │ │ └── libgmp.so │ └── x86_64 │ │ └── libgmp.so ├── include │ ├── android │ │ ├── gmp-arm64-v8a.h │ │ ├── gmp-armeabi-v7a.h │ │ ├── gmp-armeabi.h │ │ ├── gmp-x86.h │ │ └── gmp-x86_64.h │ ├── apple │ │ ├── gmp-arm64.h │ │ └── gmp-x86_64.h │ ├── gmp.h │ ├── linux │ │ ├── gmp-aarch64.h │ │ ├── gmp-arm.h │ │ ├── gmp-i386.h │ │ ├── gmp-wasm32.h │ │ └── gmp-x86_64.h │ └── mpir.h ├── linux │ ├── aarch64 │ │ └── libgmp.so │ ├── arm │ │ └── libgmp.so │ ├── i386 │ │ ├── libgmp.so │ │ └── libgmpd.so │ ├── wasm32 │ │ └── libgmp.a │ └── x86_64 │ │ ├── libgmp.so │ │ └── libgmpd.so ├── openbsd │ ├── aarch64 │ │ └── libgmp.so │ └── x86_64 │ │ └── libgmp.so └── windows │ ├── arm64 │ ├── mpir.dll │ └── mpir.lib │ ├── win32 │ ├── mpir.dll │ └── mpir.lib │ ├── x64 │ ├── mpir-md.dll │ ├── mpir-md.lib │ ├── mpir.dll │ └── mpir.lib │ └── x86 │ ├── mpir.dll │ └── mpir.lib ├── netdefs ├── Netdefs-nopie.mk ├── Netdefs.mk ├── makefile ├── netdefs.c └── netdefs_win32.ijs ├── openmp ├── include │ └── omp.h └── obj │ ├── linux │ ├── i386 │ │ └── libomp.so.5 │ └── x86_64 │ │ └── libomp.so.5 │ └── windows │ ├── libomp.dll │ ├── libomp.lib │ ├── libomp32.dll │ └── libomp32.lib ├── openssl-asm ├── keccak1600-mmx-nasm.o ├── keccak1600-x86_64-nasm.o ├── md5-586-nasm.o ├── md5-x86_64-nasm.o ├── sha1-586-nasm.o ├── sha1-x86_64-nasm.o ├── sha256-586-nasm.o ├── sha256-x86_64-nasm.o ├── sha512-586-nasm.o └── sha512-x86_64-nasm.o ├── overview.txt ├── pcre2 ├── apple │ └── macos │ │ └── libjpcre2.dylib ├── freebsd │ ├── aarch64 │ │ └── libjpcre2.so │ └── x86_64 │ │ └── libjpcre2.so ├── linux │ ├── aarch64 │ │ └── libjpcre2.so │ ├── arm │ │ └── libjpcre2.so │ ├── i386 │ │ └── libjpcre2.so │ ├── wasm32 │ │ └── libpcre2-8.a │ └── x86_64 │ │ └── libjpcre2.so ├── openbsd │ ├── aarch64 │ │ └── libjpcre2.so │ └── x86_64 │ │ └── libjpcre2.so └── windows │ ├── arm64 │ └── jpcre2.dll │ ├── x64 │ └── jpcre2.dll │ └── x86 │ └── jpcre2.dll ├── pthreads4w ├── bin │ ├── pthreadVC3-arm64.dll │ ├── pthreadVC3-w32.dll │ └── pthreadVC3.dll ├── include │ ├── _ptw32.h │ ├── pthread.h │ ├── sched.h │ └── semaphore.h └── lib │ ├── pthreadVC3-arm64.lib │ ├── pthreadVC3-w32.lib │ └── pthreadVC3.lib ├── script ├── build_test.ijs ├── buildga.cmd ├── buildga.sh ├── commit.sh ├── github_builds.txt ├── global_report.ijs ├── install-lnx.sh ├── install-mac.sh ├── install-rpi.sh ├── map_globals.sh ├── run_tests.ijs ├── tag.sh ├── testga.cmd ├── testga.ijs ├── testga.sh ├── testgares.sh └── ver.ijs ├── sleef └── include │ ├── aarch64 │ ├── sleef.h │ ├── sleefinline_advsimd.h │ ├── sleefinline_cuda.h │ ├── sleefinline_purecfma_scalar.h │ ├── sleefquad.h │ ├── sleefquadinline_advsimd.h │ ├── sleefquadinline_cuda.h │ ├── sleefquadinline_purec_scalar.h │ └── sleefquadinline_purecfma_scalar.h │ └── x86_64 │ ├── sleef.h │ ├── sleefinline_avx2.h │ ├── sleefinline_avx2128.h │ ├── sleefinline_avx512f.h │ ├── sleefinline_cuda.h │ ├── sleefinline_purecfma_scalar.h │ ├── sleefinline_sse2.h │ ├── sleefquad.h │ ├── sleefquadinline_avx2.h │ ├── sleefquadinline_avx2128.h │ ├── sleefquadinline_avx512f.h │ ├── sleefquadinline_cuda.h │ ├── sleefquadinline_purec_scalar.h │ ├── sleefquadinline_purecfma_scalar.h │ └── sleefquadinline_sse2.h ├── test ├── g0.ijs ├── g000.ijs ├── g000a.ijs ├── g000i.ijs ├── g000p.ijs ├── g000s.ijs ├── g001.ijs ├── g010.ijs ├── g010a.ijs ├── g010i.ijs ├── g010p.ijs ├── g010s.ijs ├── g011.ijs ├── g011a.ijs ├── g011i.ijs ├── g011p.ijs ├── g011s.ijs ├── g012.ijs ├── g012a.ijs ├── g012i.ijs ├── g012p.ijs ├── g012s.ijs ├── g020.ijs ├── g020a.ijs ├── g020i.ijs ├── g020p.ijs ├── g020s.ijs ├── g021.ijs ├── g021a.ijs ├── g021i.ijs ├── g021p.ijs ├── g021s.ijs ├── g022.ijs ├── g022a.ijs ├── g022i.ijs ├── g022p.ijs ├── g022s.ijs ├── g030.ijs ├── g030a.ijs ├── g031.ijs ├── g032.ijs ├── g0a.ijs ├── g0x.ijs ├── g100.ijs ├── g100a.ijs ├── g100i.ijs ├── g100p.ijs ├── g100s.ijs ├── g101.ijs ├── g101a.ijs ├── g101i.ijs ├── g101p.ijs ├── g101s.ijs ├── g102.ijs ├── g102a.ijs ├── g102i.ijs ├── g102p.ijs ├── g102s.ijs ├── g110.ijs ├── g110a.ijs ├── g110i.ijs ├── g110p.ijs ├── g110s.ijs ├── g111.ijs ├── g111a.ijs ├── g111i.ijs ├── g111p.ijs ├── g111s.ijs ├── g112.ijs ├── g112a.ijs ├── g112i.ijs ├── g112p.ijs ├── g112s.ijs ├── g120.ijs ├── g120a.ijs ├── g120i.ijs ├── g120p.ijs ├── g120s.ijs ├── g121.ijs ├── g122.ijs ├── g122a.ijs ├── g128x.ijs ├── g128x11.ijs ├── g128x11a.ijs ├── g128x14.ijs ├── g128x19.ijs ├── g128x3.ijs ├── g128x5.ijs ├── g128x6.ijs ├── g128x7.ijs ├── g130.ijs ├── g130a.ijs ├── g130i.ijs ├── g130p.ijs ├── g131.ijs ├── g132.ijs ├── g13x.ijs ├── g15x.ijs ├── g18x.ijs ├── g1x.ijs ├── g1x0.ijs ├── g1x1.ijs ├── g1x11.ijs ├── g1x12.ijs ├── g1x2.ijs ├── g1x20.ijs ├── g1x3.ijs ├── g1x30.ijs ├── g1x4.ijs ├── g1x43.ijs ├── g1x5.ijs ├── g1x55.ijs ├── g1x7.ijs ├── g200.ijs ├── g200a.ijs ├── g200i.ijs ├── g200m.ijs ├── g200p.ijs ├── g201.ijs ├── g202.ijs ├── g202b.ijs ├── g210.ijs ├── g210a.ijs ├── g211.ijs ├── g212.ijs ├── g220.ijs ├── g220t.ijs ├── g221.ijs ├── g222.ijs ├── g222a.ijs ├── g222i.ijs ├── g222p.ijs ├── g222s.ijs ├── g230.ijs ├── g230a.ijs ├── g230i.ijs ├── g230p.ijs ├── g230s.ijs ├── g231.ijs ├── g232.ijs ├── g2x.ijs ├── g300.ijs ├── g300b.ijs ├── g300t.ijs ├── g301.ijs ├── g310.ijs ├── g310a.ijs ├── g310names.ijs ├── g310r.ijs ├── g310t.ijs ├── g311.ijs ├── g312.ijs ├── g320.ijs ├── g320ip.ijs ├── g320ipt.ijs ├── g321.ijs ├── g321t.ijs ├── g322.ijs ├── g330.ijs ├── g330f.ijs ├── g330t.ijs ├── g331.ijs ├── g331bx.ijs ├── g331col.ijs ├── g331ins.ijs ├── g331ps.ijs ├── g331sp.ijs ├── g332.ijs ├── g332s.ijs ├── g3x.ijs ├── g3x02bak.ijs ├── g3x10.ijs ├── g3x12.ijs ├── g3x12a.ijs ├── g3x4.ijs ├── g3x5.ijs ├── g3x6.ijs ├── g400.ijs ├── g400e.ijs ├── g401.ijs ├── g402.ijs ├── g410.ijs ├── g410a.ijs ├── g410i.ijs ├── g410p.ijs ├── g410s.ijs ├── g411.ijs ├── g412.ijs ├── g420.ijs ├── g420ce.ijs ├── g420fg.ijs ├── g420r2.ijs ├── g420stch.ijs ├── g420t.ijs ├── g421.ijs ├── g421c.ijs ├── g421d.ijs ├── g421e.ijs ├── g421i.ijs ├── g421p.ijs ├── g421t.ijs ├── g422.ijs ├── g422os.ijs ├── g422rk.ijs ├── g422sort.ijs ├── g422sort1.ijs ├── g422tao.ijs ├── g430.ijs ├── g430a2.ijs ├── g430avg.ijs ├── g430b.ijs ├── g430d.ijs ├── g430fin.ijs ├── g430inv.ijs ├── g431.ijs ├── g431a.ijs ├── g432.ijs ├── g4x.ijs ├── g4x5.ijs ├── g500.ijs ├── g502.ijs ├── g510.ijs ├── g520.ijs ├── g520b.ijs ├── g520p.ijs ├── g521.ijs ├── g522.ijs ├── g530.ijs ├── g530m0.ijs ├── g530t.ijs ├── g531.ijs ├── g532.ijs ├── g5x.ijs ├── g5x0.ijs ├── g5x1.ijs ├── g5x2.ijs ├── g5x30.ijs ├── g5x4.ijs ├── g5x5.ijs ├── g5x6.ijs ├── g5x7.ijs ├── g600.ijs ├── g600ip.ijs ├── g601.ijs ├── g602.ijs ├── g610.ijs ├── g612.ijs ├── g620.ijs ├── g620a.ijs ├── g621.ijs ├── g622.ijs ├── g630.ijs ├── g631.ijs ├── g631c.ijs ├── g632.ijs ├── g640.ijs ├── g640k.ijs ├── g640r.ijs ├── g641.ijs ├── g6x.ijs ├── g6x0.ijs ├── g6x14.ijs ├── g7x.ijs ├── g7x5.ijs ├── g7x5s.ijs ├── g7x6.ijs ├── g8x.ijs ├── g9x.ijs ├── g9x40.ijs ├── ga.ijs ├── gassert.ijs ├── gb.ijs ├── gbpar.ijs ├── gc.ijs ├── gchar.ijs ├── gcip.ijs ├── gcip1.ijs ├── gcip2.ijs ├── gcompsc.ijs ├── gct.ijs ├── gctrl.ijs ├── gd.ijs ├── gddot.ijs ├── gdll.ijs ├── gdll_df.ijs ├── ge.ijs ├── gebar.ijs ├── gesc.ijs ├── gf.ijs ├── gfft.ijs ├── gfold.ijs ├── gfor.ijs ├── gft.ijs ├── ggoto.ijs ├── gh.ijs ├── gi.ijs ├── gi0.ijs ├── gibs.ijs ├── gibst.ijs ├── gicap.ijs ├── gicap2.ijs ├── gico.ijs ├── giconv.ijs ├── gif.ijs ├── gimaxmin.ijs ├── gintdiv.ijs ├── gintg.ijs ├── gintovfl.ijs ├── giph.ijs ├── gipht.ijs ├── giscode.ijs ├── git.ijs ├── gix.ijs ├── gj.ijs ├── gjfile.ijs ├── glapack.ijs ├── glco.ijs ├── gldot.ijs ├── glocale.ijs ├── gmbx.ijs ├── gmbx0.ijs ├── gmbx1.ijs ├── gmbx2.ijs ├── gmbx3.ijs ├── gmbx4.ijs ├── gmbx5.ijs ├── gmbx6.ijs ├── gmbxah.ijs ├── gmbxip.ijs ├── gmbxqz.ijs ├── gmbxx.ijs ├── gmbxx1u.ijs ├── gmbxx1w.ijs ├── gmean.ijs ├── gmemo.ijs ├── gmmf.ijs ├── gmmf1s.ijs ├── gmmf1u.ijs ├── gmmf1w.ijs ├── gmnom.ijs ├── gn.ijs ├── gnan.ijs ├── gnum.ijs ├── gnvv.ijs ├── go.ijs ├── goi.ijs ├── goox.ijs ├── gop.ijs ├── gos.ijs ├── gparse.ijs ├── gpco.ijs ├── gpco2.ijs ├── gpcoinv.ijs ├── gpdd.ijs ├── gpi.ijs ├── gpick.ijs ├── gpoly.ijs ├── gq.ijs ├── gq101.ijs ├── gq132.ijs ├── gq201.ijs ├── gqco.ijs ├── gqnonrat.ijs ├── gr.ijs ├── gr1.ijs ├── grefcount.ijs ├── gregex.ijs ├── gs.ijs ├── gsco.ijs ├── gsco1.ijs ├── gsco1u.ijs ├── gsco1w.ijs ├── gsco2.ijs ├── gsco2u.ijs ├── gsco2w.ijs ├── gscou.ijs ├── gsdot.ijs ├── gselect.ijs ├── gsp.ijs ├── gsp0.ijs ├── gsp000.ijs ├── gsp1.ijs ├── gsp100.ijs ├── gsp101.ijs ├── gsp102.ijs ├── gsp110.ijs ├── gsp111.ijs ├── gsp112.ijs ├── gsp120.ijs ├── gsp122.ijs ├── gsp130.ijs ├── gsp2.ijs ├── gsp221.ijs ├── gsp222.ijs ├── gsp231.ijs ├── gsp320.ijs ├── gsp321.ijs ├── gsp322.ijs ├── gsp331.ijs ├── gsp400.ijs ├── gsp410.ijs ├── gsp412.ijs ├── gsp420.ijs ├── gsp421.ijs ├── gsp422.ijs ├── gsp431.ijs ├── gsp432.ijs ├── gsp520.ijs ├── gsp520sd.ijs ├── gsp520ss.ijs ├── gsp521.ijs ├── gsp530i.ijs ├── gsp530l.ijs ├── gsp530n.ijs ├── gsp531.ijs ├── gsp5x5.ijs ├── gsp6.ijs ├── gsp600.ijs ├── gsp600a.ijs ├── gspi.ijs ├── gspj.ijs ├── gspo.ijs ├── gspr.ijs ├── gspx.ijs ├── gss.ijs ├── gstack.ijs ├── gt.ijs ├── gtdot.ijs ├── gtdot1.ijs ├── gtdot2.ijs ├── gtdot3.ijs ├── gtdot4.ijs ├── gtdot5.ijs ├── gthrow.ijs ├── gtrain.ijs ├── gtry.ijs ├── gu.ijs ├── gu0.ijs ├── gunderai.ijs ├── gwhile.ijs ├── gx.ijs ├── gx132.ijs ├── gxco.ijs ├── gxco1.ijs ├── gxco2.ijs ├── gxinf.ijs ├── gz001.ijs ├── t1.ijf ├── test.htm ├── test.jproj ├── tsheb.ijs └── tsu.ijs ├── unix ├── libedit.a └── libedit64.a └── version.txt /.github/workflows/jsource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/.github/workflows/jsource.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/README.md -------------------------------------------------------------------------------- /android/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/android/jni/Android.mk -------------------------------------------------------------------------------- /android/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/android/jni/Application.mk -------------------------------------------------------------------------------- /android/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/android/readme -------------------------------------------------------------------------------- /android/release-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/android/release-android.sh -------------------------------------------------------------------------------- /asm/asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/asm.txt -------------------------------------------------------------------------------- /asm/asm64: -------------------------------------------------------------------------------- 1 | gcc -c asm64.s 2 | -------------------------------------------------------------------------------- /asm/asm64noovf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/asm64noovf.c -------------------------------------------------------------------------------- /asm/asm64noovf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/asm64noovf.s -------------------------------------------------------------------------------- /asm/copy_obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/copy_obj -------------------------------------------------------------------------------- /asm/create_asm_source: -------------------------------------------------------------------------------- 1 | gcc -S -O3 asm64noovf.c 2 | -------------------------------------------------------------------------------- /asm/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/d.c -------------------------------------------------------------------------------- /asm/d.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/d.s -------------------------------------------------------------------------------- /asm/fix_overflow.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/fix_overflow.ijs -------------------------------------------------------------------------------- /asm/linuxasm64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/linuxasm64.o -------------------------------------------------------------------------------- /asm/linuxasm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/linuxasm64.s -------------------------------------------------------------------------------- /asm/macasm64.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/asm/macasm64.o -------------------------------------------------------------------------------- /base64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/LICENSE -------------------------------------------------------------------------------- /base64/include/libbase64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/include/libbase64.h -------------------------------------------------------------------------------- /base64/lib/arch/avx/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/avx/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/avx/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/avx2/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/avx2/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/avx2/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/avx2/dec_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/avx2/dec_loop.c -------------------------------------------------------------------------------- /base64/lib/arch/avx2/enc_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/avx2/enc_loop.c -------------------------------------------------------------------------------- /base64/lib/arch/avx512/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/avx512/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/avx512/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/generic/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/generic/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/generic/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/neon32/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/neon32/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/neon32/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/neon64/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/neon64/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/neon64/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/sse41/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/sse41/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/sse41/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/sse42/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/sse42/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/sse42/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/ssse3/codec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/ssse3/codec.c -------------------------------------------------------------------------------- /base64/lib/arch/ssse3/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/arch/ssse3/dec_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/ssse3/dec_loop.c -------------------------------------------------------------------------------- /base64/lib/arch/ssse3/enc_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/arch/ssse3/enc_loop.c -------------------------------------------------------------------------------- /base64/lib/codec_choose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/codec_choose.c -------------------------------------------------------------------------------- /base64/lib/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/codecs.h -------------------------------------------------------------------------------- /base64/lib/config.h: -------------------------------------------------------------------------------- 1 | // dummy 2 | -------------------------------------------------------------------------------- /base64/lib/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/env.h -------------------------------------------------------------------------------- /base64/lib/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/lib.c -------------------------------------------------------------------------------- /base64/lib/lib_openmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/lib_openmp.c -------------------------------------------------------------------------------- /base64/lib/tables/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/tables/tables.c -------------------------------------------------------------------------------- /base64/lib/tables/tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/base64/lib/tables/tables.h -------------------------------------------------------------------------------- /benchmark/avx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/benchmark/avx.ijs -------------------------------------------------------------------------------- /dllsrc/jcedll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jcedll.def -------------------------------------------------------------------------------- /dllsrc/jdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll.c -------------------------------------------------------------------------------- /dllsrc/jdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll.def -------------------------------------------------------------------------------- /dllsrc/jdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll.h -------------------------------------------------------------------------------- /dllsrc/jdll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll.rc -------------------------------------------------------------------------------- /dllsrc/jdll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll.tlb -------------------------------------------------------------------------------- /dllsrc/jdll2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll2.def -------------------------------------------------------------------------------- /dllsrc/jdll3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll3.def -------------------------------------------------------------------------------- /dllsrc/jdll_original.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdll_original.tlb -------------------------------------------------------------------------------- /dllsrc/jdllcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdllcom.h -------------------------------------------------------------------------------- /dllsrc/jdllcomx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdllcomx.cpp -------------------------------------------------------------------------------- /dllsrc/jdlltype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jdlltype.h -------------------------------------------------------------------------------- /dllsrc/jexe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/dllsrc/jexe.h -------------------------------------------------------------------------------- /hostdefs/Hostdefs-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/Hostdefs-nopie.mk -------------------------------------------------------------------------------- /hostdefs/Hostdefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/Hostdefs.mk -------------------------------------------------------------------------------- /hostdefs/hostdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/hostdefs.c -------------------------------------------------------------------------------- /hostdefs/hostdefs_win32.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/hostdefs_win32.ijs -------------------------------------------------------------------------------- /hostdefs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/makefile -------------------------------------------------------------------------------- /hostdefs/pcre2posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/hostdefs/pcre2posix.h -------------------------------------------------------------------------------- /jlibrary/addons/data/jmf/jmf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/addons/data/jmf/jmf.ijs -------------------------------------------------------------------------------- /jlibrary/addons/dev/lu/lu.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/addons/dev/lu/lu.ijs -------------------------------------------------------------------------------- /jlibrary/bin/profile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/bin/profile.ijs -------------------------------------------------------------------------------- /jlibrary/system/config/base.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/config/base.cfg -------------------------------------------------------------------------------- /jlibrary/system/main/regex.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/main/regex.ijs -------------------------------------------------------------------------------- /jlibrary/system/main/socket.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/main/socket.ijs -------------------------------------------------------------------------------- /jlibrary/system/main/stdlib.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/main/stdlib.ijs -------------------------------------------------------------------------------- /jlibrary/system/main/task.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/main/task.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/boot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/boot.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/pacman.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/pacman.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/pm.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/pm.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/pp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/pp.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/project.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/project.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/scripts.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/scripts.ijs -------------------------------------------------------------------------------- /jlibrary/system/util/tar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/system/util/tar.ijs -------------------------------------------------------------------------------- /jlibrary/tools/ftp/busybox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/tools/ftp/busybox.exe -------------------------------------------------------------------------------- /jlibrary/tools/ftp/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/tools/ftp/license.txt -------------------------------------------------------------------------------- /jlibrary/tools/ftp/wget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jlibrary/tools/ftp/wget.exe -------------------------------------------------------------------------------- /jlibrary/tools/regex/readme.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory is for the jpcre2 binaries. 3 | -------------------------------------------------------------------------------- /jsrc/Android-static.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Android-static.mk -------------------------------------------------------------------------------- /jsrc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Android.mk -------------------------------------------------------------------------------- /jsrc/Jamalgam-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Jamalgam-nopie.mk -------------------------------------------------------------------------------- /jsrc/Jamalgam.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Jamalgam.mk -------------------------------------------------------------------------------- /jsrc/Jconsole-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Jconsole-nopie.mk -------------------------------------------------------------------------------- /jsrc/Jconsole.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Jconsole.mk -------------------------------------------------------------------------------- /jsrc/Jnative.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Jnative.mk -------------------------------------------------------------------------------- /jsrc/Tsdll.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/Tsdll.mk -------------------------------------------------------------------------------- /jsrc/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/a.c -------------------------------------------------------------------------------- /jsrc/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/a.h -------------------------------------------------------------------------------- /jsrc/ab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ab.c -------------------------------------------------------------------------------- /jsrc/aes-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-arm.c -------------------------------------------------------------------------------- /jsrc/aes-arm_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-arm_table.h -------------------------------------------------------------------------------- /jsrc/aes-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-c.c -------------------------------------------------------------------------------- /jsrc/aes-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-c.h -------------------------------------------------------------------------------- /jsrc/aes-ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-ni.c -------------------------------------------------------------------------------- /jsrc/aes-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/aes-sse2.c -------------------------------------------------------------------------------- /jsrc/af.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/af.c -------------------------------------------------------------------------------- /jsrc/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ai.c -------------------------------------------------------------------------------- /jsrc/am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/am.c -------------------------------------------------------------------------------- /jsrc/am1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/am1.c -------------------------------------------------------------------------------- /jsrc/amn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/amn.c -------------------------------------------------------------------------------- /jsrc/andjnative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/andjnative.c -------------------------------------------------------------------------------- /jsrc/ao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ao.c -------------------------------------------------------------------------------- /jsrc/ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ap.c -------------------------------------------------------------------------------- /jsrc/ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ar.c -------------------------------------------------------------------------------- /jsrc/ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ar.h -------------------------------------------------------------------------------- /jsrc/as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/as.c -------------------------------------------------------------------------------- /jsrc/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/au.c -------------------------------------------------------------------------------- /jsrc/avx2intrin-emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/avx2intrin-emu.h -------------------------------------------------------------------------------- /jsrc/avxintrin-emu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/avxintrin-emu.h -------------------------------------------------------------------------------- /jsrc/avxintrin-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/avxintrin-neon.h -------------------------------------------------------------------------------- /jsrc/blis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis.h -------------------------------------------------------------------------------- /jsrc/blis/gemm_c-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_c-ref.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-aarch64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_int-aarch64.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-avx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_int-avx.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-fma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_int-fma.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_int-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_int-sse2.c -------------------------------------------------------------------------------- /jsrc/blis/gemm_vec-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/blis/gemm_vec-ref.c -------------------------------------------------------------------------------- /jsrc/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/c.c -------------------------------------------------------------------------------- /jsrc/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ca.c -------------------------------------------------------------------------------- /jsrc/cblas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cblas.c -------------------------------------------------------------------------------- /jsrc/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cblas.h -------------------------------------------------------------------------------- /jsrc/cc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cc.c -------------------------------------------------------------------------------- /jsrc/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cd.c -------------------------------------------------------------------------------- /jsrc/cf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cf.c -------------------------------------------------------------------------------- /jsrc/cg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cg.c -------------------------------------------------------------------------------- /jsrc/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ch.c -------------------------------------------------------------------------------- /jsrc/cip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cip.c -------------------------------------------------------------------------------- /jsrc/cip_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cip_t.h -------------------------------------------------------------------------------- /jsrc/cipfloatmm_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cipfloatmm_t.h -------------------------------------------------------------------------------- /jsrc/cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cl.c -------------------------------------------------------------------------------- /jsrc/codingrules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/codingrules.txt -------------------------------------------------------------------------------- /jsrc/cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cp.c -------------------------------------------------------------------------------- /jsrc/cpdtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cpdtsp.c -------------------------------------------------------------------------------- /jsrc/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cpuinfo.c -------------------------------------------------------------------------------- /jsrc/cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cpuinfo.h -------------------------------------------------------------------------------- /jsrc/cr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cr.c -------------------------------------------------------------------------------- /jsrc/cr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cr_t.h -------------------------------------------------------------------------------- /jsrc/crc32c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/crc32c.c -------------------------------------------------------------------------------- /jsrc/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/crc32c.h -------------------------------------------------------------------------------- /jsrc/crc32ctables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/crc32ctables.h -------------------------------------------------------------------------------- /jsrc/crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/crs.c -------------------------------------------------------------------------------- /jsrc/ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ct.c -------------------------------------------------------------------------------- /jsrc/cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cu.c -------------------------------------------------------------------------------- /jsrc/cv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cv.c -------------------------------------------------------------------------------- /jsrc/cx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/cx.c -------------------------------------------------------------------------------- /jsrc/d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/d.c -------------------------------------------------------------------------------- /jsrc/d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/d.h -------------------------------------------------------------------------------- /jsrc/dc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dc.c -------------------------------------------------------------------------------- /jsrc/dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dss.c -------------------------------------------------------------------------------- /jsrc/dstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dstop.c -------------------------------------------------------------------------------- /jsrc/dsusp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dsusp.c -------------------------------------------------------------------------------- /jsrc/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dtoa.c -------------------------------------------------------------------------------- /jsrc/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/dtoa.h -------------------------------------------------------------------------------- /jsrc/f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/f.c -------------------------------------------------------------------------------- /jsrc/f2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/f2.c -------------------------------------------------------------------------------- /jsrc/fbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/fbu.c -------------------------------------------------------------------------------- /jsrc/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/fnmatch.c -------------------------------------------------------------------------------- /jsrc/fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/fnmatch.h -------------------------------------------------------------------------------- /jsrc/gemm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/gemm.c -------------------------------------------------------------------------------- /jsrc/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/gemm.h -------------------------------------------------------------------------------- /jsrc/i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/i.c -------------------------------------------------------------------------------- /jsrc/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/io.c -------------------------------------------------------------------------------- /jsrc/j.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/j.c -------------------------------------------------------------------------------- /jsrc/j.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/j.h -------------------------------------------------------------------------------- /jsrc/ja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ja.h -------------------------------------------------------------------------------- /jsrc/jc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jc.h -------------------------------------------------------------------------------- /jsrc/jconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jconsole.c -------------------------------------------------------------------------------- /jsrc/jdlllic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jdlllic.c -------------------------------------------------------------------------------- /jsrc/je.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/je.h -------------------------------------------------------------------------------- /jsrc/jeload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jeload.c -------------------------------------------------------------------------------- /jsrc/jeload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jeload.h -------------------------------------------------------------------------------- /jsrc/jep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jep.c -------------------------------------------------------------------------------- /jsrc/jerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jerr.h -------------------------------------------------------------------------------- /jsrc/jfex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jfex.c -------------------------------------------------------------------------------- /jsrc/jfex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jfex.h -------------------------------------------------------------------------------- /jsrc/jgmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jgmp.h -------------------------------------------------------------------------------- /jsrc/jgmpinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jgmpinit.c -------------------------------------------------------------------------------- /jsrc/jlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jlib.h -------------------------------------------------------------------------------- /jsrc/jr0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jr0.h -------------------------------------------------------------------------------- /jsrc/js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/js.h -------------------------------------------------------------------------------- /jsrc/jsleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jsleef.h -------------------------------------------------------------------------------- /jsrc/jt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jt.h -------------------------------------------------------------------------------- /jsrc/jtype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jtype.h -------------------------------------------------------------------------------- /jsrc/jversion-x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jversion-x.h -------------------------------------------------------------------------------- /jsrc/jx_utils_jnative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/jx_utils_jnative.h -------------------------------------------------------------------------------- /jsrc/k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/k.c -------------------------------------------------------------------------------- /jsrc/linenoise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/linenoise.c -------------------------------------------------------------------------------- /jsrc/linenoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/linenoise.h -------------------------------------------------------------------------------- /jsrc/m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/m.c -------------------------------------------------------------------------------- /jsrc/m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/m.h -------------------------------------------------------------------------------- /jsrc/mbx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/mbx.c -------------------------------------------------------------------------------- /jsrc/mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/mt.c -------------------------------------------------------------------------------- /jsrc/mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/mt.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/README.txt -------------------------------------------------------------------------------- /jsrc/openssl/sha/keccak1600.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/keccak1600.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md32_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md32_common.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md4.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md4_dgst.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md4_locl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md4_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md4_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md5.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md5_dgst.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md5_locl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/md5_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/md5_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/openssl.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha1_one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha1_one.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha256.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha3.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha3.h -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha512.c -------------------------------------------------------------------------------- /jsrc/openssl/sha/sha_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/openssl/sha/sha_locl.h -------------------------------------------------------------------------------- /jsrc/p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/p.c -------------------------------------------------------------------------------- /jsrc/p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/p.h -------------------------------------------------------------------------------- /jsrc/pv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/pv.c -------------------------------------------------------------------------------- /jsrc/px.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/px.c -------------------------------------------------------------------------------- /jsrc/r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/r.c -------------------------------------------------------------------------------- /jsrc/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/result.h -------------------------------------------------------------------------------- /jsrc/rl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/rl.c -------------------------------------------------------------------------------- /jsrc/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/rt.c -------------------------------------------------------------------------------- /jsrc/s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/s.c -------------------------------------------------------------------------------- /jsrc/s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/s.h -------------------------------------------------------------------------------- /jsrc/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/sc.c -------------------------------------------------------------------------------- /jsrc/sl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/sl.c -------------------------------------------------------------------------------- /jsrc/sn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/sn.c -------------------------------------------------------------------------------- /jsrc/sse2neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/sse2neon.h -------------------------------------------------------------------------------- /jsrc/sse2neon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/sse2neon2.h -------------------------------------------------------------------------------- /jsrc/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/str.c -------------------------------------------------------------------------------- /jsrc/strptime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/strptime.c -------------------------------------------------------------------------------- /jsrc/t.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/t.c -------------------------------------------------------------------------------- /jsrc/tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/tags.txt -------------------------------------------------------------------------------- /jsrc/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/thread.c -------------------------------------------------------------------------------- /jsrc/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/thread.h -------------------------------------------------------------------------------- /jsrc/tsdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/tsdll.c -------------------------------------------------------------------------------- /jsrc/u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/u.c -------------------------------------------------------------------------------- /jsrc/v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/v.c -------------------------------------------------------------------------------- /jsrc/v0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/v0.c -------------------------------------------------------------------------------- /jsrc/v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/v1.c -------------------------------------------------------------------------------- /jsrc/v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/v2.c -------------------------------------------------------------------------------- /jsrc/va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va.h -------------------------------------------------------------------------------- /jsrc/va1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va1.c -------------------------------------------------------------------------------- /jsrc/va1ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va1ss.c -------------------------------------------------------------------------------- /jsrc/va2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va2.c -------------------------------------------------------------------------------- /jsrc/va2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va2s.c -------------------------------------------------------------------------------- /jsrc/va2ss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/va2ss.c -------------------------------------------------------------------------------- /jsrc/vamultsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vamultsp.c -------------------------------------------------------------------------------- /jsrc/vasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vasm.h -------------------------------------------------------------------------------- /jsrc/vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vb.c -------------------------------------------------------------------------------- /jsrc/vbang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vbang.c -------------------------------------------------------------------------------- /jsrc/vbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vbit.c -------------------------------------------------------------------------------- /jsrc/vcant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcant.c -------------------------------------------------------------------------------- /jsrc/vcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcat.c -------------------------------------------------------------------------------- /jsrc/vcatsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcatsp.c -------------------------------------------------------------------------------- /jsrc/vchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vchar.c -------------------------------------------------------------------------------- /jsrc/vcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcomp.c -------------------------------------------------------------------------------- /jsrc/vcomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcomp.h -------------------------------------------------------------------------------- /jsrc/vcompsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vcompsc.c -------------------------------------------------------------------------------- /jsrc/vd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vd.c -------------------------------------------------------------------------------- /jsrc/vdx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vdx.c -------------------------------------------------------------------------------- /jsrc/vdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vdx.h -------------------------------------------------------------------------------- /jsrc/ve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ve.c -------------------------------------------------------------------------------- /jsrc/ve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ve.h -------------------------------------------------------------------------------- /jsrc/vf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vf.c -------------------------------------------------------------------------------- /jsrc/vfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vfft.c -------------------------------------------------------------------------------- /jsrc/vfrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vfrom.c -------------------------------------------------------------------------------- /jsrc/vfromsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vfromsp.c -------------------------------------------------------------------------------- /jsrc/vg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vg.c -------------------------------------------------------------------------------- /jsrc/vg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vg.h -------------------------------------------------------------------------------- /jsrc/vgauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgauss.c -------------------------------------------------------------------------------- /jsrc/vgcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgcomp.c -------------------------------------------------------------------------------- /jsrc/vgmerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgmerge.h -------------------------------------------------------------------------------- /jsrc/vgmergemincomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgmergemincomp.h -------------------------------------------------------------------------------- /jsrc/vgranking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgranking.c -------------------------------------------------------------------------------- /jsrc/vgsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsort.c -------------------------------------------------------------------------------- /jsrc/vgsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsort.h -------------------------------------------------------------------------------- /jsrc/vgsortavx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsortavx512.h -------------------------------------------------------------------------------- /jsrc/vgsortinavx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsortinavx512.h -------------------------------------------------------------------------------- /jsrc/vgsortiqavx512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsortiqavx512.c -------------------------------------------------------------------------------- /jsrc/vgsortiqavx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsortiqavx512.h -------------------------------------------------------------------------------- /jsrc/vgsortq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsortq.h -------------------------------------------------------------------------------- /jsrc/vgsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vgsp.c -------------------------------------------------------------------------------- /jsrc/vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vi.c -------------------------------------------------------------------------------- /jsrc/viavx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx.c -------------------------------------------------------------------------------- /jsrc/viavx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx.h -------------------------------------------------------------------------------- /jsrc/viavx1-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx1-2.c -------------------------------------------------------------------------------- /jsrc/viavx1-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx1-4.c -------------------------------------------------------------------------------- /jsrc/viavx1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx1.h -------------------------------------------------------------------------------- /jsrc/viavx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx2.c -------------------------------------------------------------------------------- /jsrc/viavx3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx3.c -------------------------------------------------------------------------------- /jsrc/viavx4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx4.c -------------------------------------------------------------------------------- /jsrc/viavx5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx5.c -------------------------------------------------------------------------------- /jsrc/viavx6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viavx6.c -------------------------------------------------------------------------------- /jsrc/viix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viix.c -------------------------------------------------------------------------------- /jsrc/viixamd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/viixamd64.asm -------------------------------------------------------------------------------- /jsrc/visp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/visp.c -------------------------------------------------------------------------------- /jsrc/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vm.c -------------------------------------------------------------------------------- /jsrc/vo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vo.c -------------------------------------------------------------------------------- /jsrc/vp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vp.c -------------------------------------------------------------------------------- /jsrc/vq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vq.c -------------------------------------------------------------------------------- /jsrc/vq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vq.h -------------------------------------------------------------------------------- /jsrc/vrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vrand.c -------------------------------------------------------------------------------- /jsrc/vrep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vrep.c -------------------------------------------------------------------------------- /jsrc/vs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vs.c -------------------------------------------------------------------------------- /jsrc/vsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vsb.c -------------------------------------------------------------------------------- /jsrc/vt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vt.c -------------------------------------------------------------------------------- /jsrc/vu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vu.c -------------------------------------------------------------------------------- /jsrc/vx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vx.c -------------------------------------------------------------------------------- /jsrc/vx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vx.h -------------------------------------------------------------------------------- /jsrc/vz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vz.c -------------------------------------------------------------------------------- /jsrc/vz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/vz.h -------------------------------------------------------------------------------- /jsrc/w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/w.c -------------------------------------------------------------------------------- /jsrc/w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/w.h -------------------------------------------------------------------------------- /jsrc/wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/wc.c -------------------------------------------------------------------------------- /jsrc/wn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/wn.c -------------------------------------------------------------------------------- /jsrc/ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/ws.c -------------------------------------------------------------------------------- /jsrc/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/x.c -------------------------------------------------------------------------------- /jsrc/x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/x.h -------------------------------------------------------------------------------- /jsrc/x15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/x15.c -------------------------------------------------------------------------------- /jsrc/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xa.c -------------------------------------------------------------------------------- /jsrc/xaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xaes.c -------------------------------------------------------------------------------- /jsrc/xb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xb.c -------------------------------------------------------------------------------- /jsrc/xc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xc.c -------------------------------------------------------------------------------- /jsrc/xc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xc.h -------------------------------------------------------------------------------- /jsrc/xcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xcrc.c -------------------------------------------------------------------------------- /jsrc/xd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xd.c -------------------------------------------------------------------------------- /jsrc/xdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xdic.c -------------------------------------------------------------------------------- /jsrc/xf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xf.c -------------------------------------------------------------------------------- /jsrc/xfmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xfmt.c -------------------------------------------------------------------------------- /jsrc/xh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xh.c -------------------------------------------------------------------------------- /jsrc/xi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xi.c -------------------------------------------------------------------------------- /jsrc/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xl.c -------------------------------------------------------------------------------- /jsrc/xlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xlp.c -------------------------------------------------------------------------------- /jsrc/xo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xo.c -------------------------------------------------------------------------------- /jsrc/xs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xs.c -------------------------------------------------------------------------------- /jsrc/xsha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xsha.c -------------------------------------------------------------------------------- /jsrc/xt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xt.c -------------------------------------------------------------------------------- /jsrc/xu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xu.c -------------------------------------------------------------------------------- /jsrc/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/jsrc/xxhash.h -------------------------------------------------------------------------------- /libbacktrace/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/alloc.c -------------------------------------------------------------------------------- /libbacktrace/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/atomic.c -------------------------------------------------------------------------------- /libbacktrace/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/backtrace.c -------------------------------------------------------------------------------- /libbacktrace/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/backtrace.h -------------------------------------------------------------------------------- /libbacktrace/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/config.h -------------------------------------------------------------------------------- /libbacktrace/dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/dwarf.c -------------------------------------------------------------------------------- /libbacktrace/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/elf.c -------------------------------------------------------------------------------- /libbacktrace/fileline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/fileline.c -------------------------------------------------------------------------------- /libbacktrace/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/filenames.h -------------------------------------------------------------------------------- /libbacktrace/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/internal.h -------------------------------------------------------------------------------- /libbacktrace/macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/macho.c -------------------------------------------------------------------------------- /libbacktrace/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/mmap.c -------------------------------------------------------------------------------- /libbacktrace/mmapio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/mmapio.c -------------------------------------------------------------------------------- /libbacktrace/pecoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/pecoff.c -------------------------------------------------------------------------------- /libbacktrace/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/posix.c -------------------------------------------------------------------------------- /libbacktrace/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/print.c -------------------------------------------------------------------------------- /libbacktrace/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/read.c -------------------------------------------------------------------------------- /libbacktrace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/simple.c -------------------------------------------------------------------------------- /libbacktrace/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/sort.c -------------------------------------------------------------------------------- /libbacktrace/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libbacktrace/state.c -------------------------------------------------------------------------------- /libedit/libedit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/libedit/libedit.a -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/license.txt -------------------------------------------------------------------------------- /make2/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_all.sh -------------------------------------------------------------------------------- /make2/build_jamalgam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_jamalgam.sh -------------------------------------------------------------------------------- /make2/build_jconsole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_jconsole.sh -------------------------------------------------------------------------------- /make2/build_jnative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_jnative.sh -------------------------------------------------------------------------------- /make2/build_libj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_libj.sh -------------------------------------------------------------------------------- /make2/build_tsdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/build_tsdll.sh -------------------------------------------------------------------------------- /make2/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/clean.sh -------------------------------------------------------------------------------- /make2/cpbin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/cpbin.sh -------------------------------------------------------------------------------- /make2/jplatform64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/jplatform64.sh -------------------------------------------------------------------------------- /make2/macos-libomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/macos-libomp.txt -------------------------------------------------------------------------------- /make2/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/make.txt -------------------------------------------------------------------------------- /make2/makefile-jamalgam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/makefile-jamalgam -------------------------------------------------------------------------------- /make2/makefile-jconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/makefile-jconsole -------------------------------------------------------------------------------- /make2/makefile-jnative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/makefile-jnative -------------------------------------------------------------------------------- /make2/makefile-libj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/makefile-libj -------------------------------------------------------------------------------- /make2/makefile-tsdll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/makefile-tsdll -------------------------------------------------------------------------------- /make2/mktoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/mktoc.sh -------------------------------------------------------------------------------- /make2/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make2/runtests -------------------------------------------------------------------------------- /make_deprecated/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/build_all.sh -------------------------------------------------------------------------------- /make_deprecated/build_libj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/build_libj.sh -------------------------------------------------------------------------------- /make_deprecated/build_tsdll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/build_tsdll.sh -------------------------------------------------------------------------------- /make_deprecated/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/clean.sh -------------------------------------------------------------------------------- /make_deprecated/comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/comments.txt -------------------------------------------------------------------------------- /make_deprecated/domake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/domake.sh -------------------------------------------------------------------------------- /make_deprecated/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/install.sh -------------------------------------------------------------------------------- /make_deprecated/jvars.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/jvars.sh -------------------------------------------------------------------------------- /make_deprecated/make.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/make.txt -------------------------------------------------------------------------------- /make_deprecated/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/makefile -------------------------------------------------------------------------------- /make_deprecated/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/make_deprecated/run_tests.sh -------------------------------------------------------------------------------- /makemsvc/jamalgam/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jamalgam/makefile -------------------------------------------------------------------------------- /makemsvc/jamalgam/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jamalgam/makefile.win -------------------------------------------------------------------------------- /makemsvc/jconsole/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jconsole/makefile -------------------------------------------------------------------------------- /makemsvc/jconsole/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jconsole/makefile.win -------------------------------------------------------------------------------- /makemsvc/jdll/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jdll/build.sh -------------------------------------------------------------------------------- /makemsvc/jdll/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jdll/clean.sh -------------------------------------------------------------------------------- /makemsvc/jdll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jdll/makefile -------------------------------------------------------------------------------- /makemsvc/jdll/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jdll/makefile.win -------------------------------------------------------------------------------- /makemsvc/jnative/jnative.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jnative/jnative.def -------------------------------------------------------------------------------- /makemsvc/jnative/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jnative/makefile -------------------------------------------------------------------------------- /makemsvc/jnative/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/jnative/makefile.win -------------------------------------------------------------------------------- /makemsvc/makemsvc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/makemsvc.txt -------------------------------------------------------------------------------- /makemsvc/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/release.bat -------------------------------------------------------------------------------- /makemsvc/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/release.sh -------------------------------------------------------------------------------- /makemsvc/tsdll/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/tsdll/makefile -------------------------------------------------------------------------------- /makemsvc/tsdll/makefile.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makemsvc/tsdll/makefile.win -------------------------------------------------------------------------------- /makevs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/README.md -------------------------------------------------------------------------------- /makevs/copy_jlibrary.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/copy_jlibrary.bat -------------------------------------------------------------------------------- /makevs/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/install.bat -------------------------------------------------------------------------------- /makevs/jconsole/jconsole.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jconsole/jconsole.rc -------------------------------------------------------------------------------- /makevs/jconsole/jgray.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jconsole/jgray.ico -------------------------------------------------------------------------------- /makevs/jconsole/profile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jconsole/profile.ijs -------------------------------------------------------------------------------- /makevs/jconsole/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jconsole/resource.h -------------------------------------------------------------------------------- /makevs/jconsole/resource1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jconsole/resource1.h -------------------------------------------------------------------------------- /makevs/jdll/profile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/jdll/profile.ijs -------------------------------------------------------------------------------- /makevs/makevs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/makevs.txt -------------------------------------------------------------------------------- /makevs/midl/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/build.bat -------------------------------------------------------------------------------- /makevs/midl/jdll.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/jdll.idl -------------------------------------------------------------------------------- /makevs/midl/jdll.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/jdll.odl -------------------------------------------------------------------------------- /makevs/midl/jdll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/jdll.tlb -------------------------------------------------------------------------------- /makevs/midl/jdll_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/jdll_i.c -------------------------------------------------------------------------------- /makevs/midl/jdllidl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/jdllidl.h -------------------------------------------------------------------------------- /makevs/midl/methods.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/methods.odl -------------------------------------------------------------------------------- /makevs/midl/tlb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/midl/tlb.txt -------------------------------------------------------------------------------- /makevs/release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/release.bat -------------------------------------------------------------------------------- /makevs/template.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/template.bat -------------------------------------------------------------------------------- /makevs/templates.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/templates.ijs -------------------------------------------------------------------------------- /makevs/tsdll/tsdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/makevs/tsdll/tsdll.def -------------------------------------------------------------------------------- /mpir/apple/ios/libgmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/apple/ios/libgmp.a -------------------------------------------------------------------------------- /mpir/apple/macos/libgmp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/apple/macos/libgmp.dylib -------------------------------------------------------------------------------- /mpir/freebsd/aarch64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/freebsd/aarch64/libgmp.so -------------------------------------------------------------------------------- /mpir/freebsd/x86_64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/freebsd/x86_64/libgmp.so -------------------------------------------------------------------------------- /mpir/include/android/gmp-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/android/gmp-x86.h -------------------------------------------------------------------------------- /mpir/include/apple/gmp-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/apple/gmp-arm64.h -------------------------------------------------------------------------------- /mpir/include/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/gmp.h -------------------------------------------------------------------------------- /mpir/include/linux/gmp-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/linux/gmp-arm.h -------------------------------------------------------------------------------- /mpir/include/linux/gmp-i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/linux/gmp-i386.h -------------------------------------------------------------------------------- /mpir/include/mpir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/include/mpir.h -------------------------------------------------------------------------------- /mpir/linux/aarch64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/aarch64/libgmp.so -------------------------------------------------------------------------------- /mpir/linux/arm/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/arm/libgmp.so -------------------------------------------------------------------------------- /mpir/linux/i386/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/i386/libgmp.so -------------------------------------------------------------------------------- /mpir/linux/i386/libgmpd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/i386/libgmpd.so -------------------------------------------------------------------------------- /mpir/linux/wasm32/libgmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/wasm32/libgmp.a -------------------------------------------------------------------------------- /mpir/linux/x86_64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/x86_64/libgmp.so -------------------------------------------------------------------------------- /mpir/linux/x86_64/libgmpd.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/linux/x86_64/libgmpd.so -------------------------------------------------------------------------------- /mpir/openbsd/aarch64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/openbsd/aarch64/libgmp.so -------------------------------------------------------------------------------- /mpir/openbsd/x86_64/libgmp.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/openbsd/x86_64/libgmp.so -------------------------------------------------------------------------------- /mpir/windows/arm64/mpir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/arm64/mpir.dll -------------------------------------------------------------------------------- /mpir/windows/arm64/mpir.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/arm64/mpir.lib -------------------------------------------------------------------------------- /mpir/windows/win32/mpir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/win32/mpir.dll -------------------------------------------------------------------------------- /mpir/windows/win32/mpir.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/win32/mpir.lib -------------------------------------------------------------------------------- /mpir/windows/x64/mpir-md.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x64/mpir-md.dll -------------------------------------------------------------------------------- /mpir/windows/x64/mpir-md.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x64/mpir-md.lib -------------------------------------------------------------------------------- /mpir/windows/x64/mpir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x64/mpir.dll -------------------------------------------------------------------------------- /mpir/windows/x64/mpir.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x64/mpir.lib -------------------------------------------------------------------------------- /mpir/windows/x86/mpir.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x86/mpir.dll -------------------------------------------------------------------------------- /mpir/windows/x86/mpir.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/mpir/windows/x86/mpir.lib -------------------------------------------------------------------------------- /netdefs/Netdefs-nopie.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/netdefs/Netdefs-nopie.mk -------------------------------------------------------------------------------- /netdefs/Netdefs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/netdefs/Netdefs.mk -------------------------------------------------------------------------------- /netdefs/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/netdefs/makefile -------------------------------------------------------------------------------- /netdefs/netdefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/netdefs/netdefs.c -------------------------------------------------------------------------------- /netdefs/netdefs_win32.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/netdefs/netdefs_win32.ijs -------------------------------------------------------------------------------- /openmp/include/omp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openmp/include/omp.h -------------------------------------------------------------------------------- /openmp/obj/windows/libomp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openmp/obj/windows/libomp.dll -------------------------------------------------------------------------------- /openmp/obj/windows/libomp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openmp/obj/windows/libomp.lib -------------------------------------------------------------------------------- /openssl-asm/md5-586-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/md5-586-nasm.o -------------------------------------------------------------------------------- /openssl-asm/md5-x86_64-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/md5-x86_64-nasm.o -------------------------------------------------------------------------------- /openssl-asm/sha1-586-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/sha1-586-nasm.o -------------------------------------------------------------------------------- /openssl-asm/sha1-x86_64-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/sha1-x86_64-nasm.o -------------------------------------------------------------------------------- /openssl-asm/sha256-586-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/sha256-586-nasm.o -------------------------------------------------------------------------------- /openssl-asm/sha512-586-nasm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/openssl-asm/sha512-586-nasm.o -------------------------------------------------------------------------------- /overview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/overview.txt -------------------------------------------------------------------------------- /pcre2/linux/arm/libjpcre2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pcre2/linux/arm/libjpcre2.so -------------------------------------------------------------------------------- /pcre2/linux/i386/libjpcre2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pcre2/linux/i386/libjpcre2.so -------------------------------------------------------------------------------- /pcre2/windows/arm64/jpcre2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pcre2/windows/arm64/jpcre2.dll -------------------------------------------------------------------------------- /pcre2/windows/x64/jpcre2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pcre2/windows/x64/jpcre2.dll -------------------------------------------------------------------------------- /pcre2/windows/x86/jpcre2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pcre2/windows/x86/jpcre2.dll -------------------------------------------------------------------------------- /pthreads4w/bin/pthreadVC3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/bin/pthreadVC3.dll -------------------------------------------------------------------------------- /pthreads4w/include/_ptw32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/include/_ptw32.h -------------------------------------------------------------------------------- /pthreads4w/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/include/pthread.h -------------------------------------------------------------------------------- /pthreads4w/include/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/include/sched.h -------------------------------------------------------------------------------- /pthreads4w/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/include/semaphore.h -------------------------------------------------------------------------------- /pthreads4w/lib/pthreadVC3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/pthreads4w/lib/pthreadVC3.lib -------------------------------------------------------------------------------- /script/build_test.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/build_test.ijs -------------------------------------------------------------------------------- /script/buildga.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/buildga.cmd -------------------------------------------------------------------------------- /script/buildga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/buildga.sh -------------------------------------------------------------------------------- /script/commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/commit.sh -------------------------------------------------------------------------------- /script/github_builds.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/github_builds.txt -------------------------------------------------------------------------------- /script/global_report.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/global_report.ijs -------------------------------------------------------------------------------- /script/install-lnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/install-lnx.sh -------------------------------------------------------------------------------- /script/install-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/install-mac.sh -------------------------------------------------------------------------------- /script/install-rpi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/install-rpi.sh -------------------------------------------------------------------------------- /script/map_globals.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/map_globals.sh -------------------------------------------------------------------------------- /script/run_tests.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/run_tests.ijs -------------------------------------------------------------------------------- /script/tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/tag.sh -------------------------------------------------------------------------------- /script/testga.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/testga.cmd -------------------------------------------------------------------------------- /script/testga.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/testga.ijs -------------------------------------------------------------------------------- /script/testga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/testga.sh -------------------------------------------------------------------------------- /script/testgares.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/script/testgares.sh -------------------------------------------------------------------------------- /script/ver.ijs: -------------------------------------------------------------------------------- 1 | 2!:55 (9!:14'') 1!:2 [2 2 | -------------------------------------------------------------------------------- /sleef/include/aarch64/sleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/sleef/include/aarch64/sleef.h -------------------------------------------------------------------------------- /sleef/include/x86_64/sleef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/sleef/include/x86_64/sleef.h -------------------------------------------------------------------------------- /test/g0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g0.ijs -------------------------------------------------------------------------------- /test/g000.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g000.ijs -------------------------------------------------------------------------------- /test/g000a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g000a.ijs -------------------------------------------------------------------------------- /test/g000i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g000i.ijs -------------------------------------------------------------------------------- /test/g000p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g000p.ijs -------------------------------------------------------------------------------- /test/g000s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g000s.ijs -------------------------------------------------------------------------------- /test/g001.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g001.ijs -------------------------------------------------------------------------------- /test/g010.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g010.ijs -------------------------------------------------------------------------------- /test/g010a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g010a.ijs -------------------------------------------------------------------------------- /test/g010i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g010i.ijs -------------------------------------------------------------------------------- /test/g010p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g010p.ijs -------------------------------------------------------------------------------- /test/g010s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g010s.ijs -------------------------------------------------------------------------------- /test/g011.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g011.ijs -------------------------------------------------------------------------------- /test/g011a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g011a.ijs -------------------------------------------------------------------------------- /test/g011i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g011i.ijs -------------------------------------------------------------------------------- /test/g011p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g011p.ijs -------------------------------------------------------------------------------- /test/g011s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g011s.ijs -------------------------------------------------------------------------------- /test/g012.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g012.ijs -------------------------------------------------------------------------------- /test/g012a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g012a.ijs -------------------------------------------------------------------------------- /test/g012i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g012i.ijs -------------------------------------------------------------------------------- /test/g012p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g012p.ijs -------------------------------------------------------------------------------- /test/g012s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g012s.ijs -------------------------------------------------------------------------------- /test/g020.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g020.ijs -------------------------------------------------------------------------------- /test/g020a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g020a.ijs -------------------------------------------------------------------------------- /test/g020i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g020i.ijs -------------------------------------------------------------------------------- /test/g020p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g020p.ijs -------------------------------------------------------------------------------- /test/g020s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g020s.ijs -------------------------------------------------------------------------------- /test/g021.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g021.ijs -------------------------------------------------------------------------------- /test/g021a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g021a.ijs -------------------------------------------------------------------------------- /test/g021i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g021i.ijs -------------------------------------------------------------------------------- /test/g021p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g021p.ijs -------------------------------------------------------------------------------- /test/g021s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g021s.ijs -------------------------------------------------------------------------------- /test/g022.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g022.ijs -------------------------------------------------------------------------------- /test/g022a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g022a.ijs -------------------------------------------------------------------------------- /test/g022i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g022i.ijs -------------------------------------------------------------------------------- /test/g022p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g022p.ijs -------------------------------------------------------------------------------- /test/g022s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g022s.ijs -------------------------------------------------------------------------------- /test/g030.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g030.ijs -------------------------------------------------------------------------------- /test/g030a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g030a.ijs -------------------------------------------------------------------------------- /test/g031.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g031.ijs -------------------------------------------------------------------------------- /test/g032.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g032.ijs -------------------------------------------------------------------------------- /test/g0a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g0a.ijs -------------------------------------------------------------------------------- /test/g0x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g0x.ijs -------------------------------------------------------------------------------- /test/g100.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g100.ijs -------------------------------------------------------------------------------- /test/g100a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g100a.ijs -------------------------------------------------------------------------------- /test/g100i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g100i.ijs -------------------------------------------------------------------------------- /test/g100p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g100p.ijs -------------------------------------------------------------------------------- /test/g100s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g100s.ijs -------------------------------------------------------------------------------- /test/g101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g101.ijs -------------------------------------------------------------------------------- /test/g101a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g101a.ijs -------------------------------------------------------------------------------- /test/g101i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g101i.ijs -------------------------------------------------------------------------------- /test/g101p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g101p.ijs -------------------------------------------------------------------------------- /test/g101s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g101s.ijs -------------------------------------------------------------------------------- /test/g102.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g102.ijs -------------------------------------------------------------------------------- /test/g102a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g102a.ijs -------------------------------------------------------------------------------- /test/g102i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g102i.ijs -------------------------------------------------------------------------------- /test/g102p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g102p.ijs -------------------------------------------------------------------------------- /test/g102s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g102s.ijs -------------------------------------------------------------------------------- /test/g110.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g110.ijs -------------------------------------------------------------------------------- /test/g110a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g110a.ijs -------------------------------------------------------------------------------- /test/g110i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g110i.ijs -------------------------------------------------------------------------------- /test/g110p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g110p.ijs -------------------------------------------------------------------------------- /test/g110s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g110s.ijs -------------------------------------------------------------------------------- /test/g111.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g111.ijs -------------------------------------------------------------------------------- /test/g111a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g111a.ijs -------------------------------------------------------------------------------- /test/g111i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g111i.ijs -------------------------------------------------------------------------------- /test/g111p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g111p.ijs -------------------------------------------------------------------------------- /test/g111s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g111s.ijs -------------------------------------------------------------------------------- /test/g112.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g112.ijs -------------------------------------------------------------------------------- /test/g112a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g112a.ijs -------------------------------------------------------------------------------- /test/g112i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g112i.ijs -------------------------------------------------------------------------------- /test/g112p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g112p.ijs -------------------------------------------------------------------------------- /test/g112s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g112s.ijs -------------------------------------------------------------------------------- /test/g120.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g120.ijs -------------------------------------------------------------------------------- /test/g120a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g120a.ijs -------------------------------------------------------------------------------- /test/g120i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g120i.ijs -------------------------------------------------------------------------------- /test/g120p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g120p.ijs -------------------------------------------------------------------------------- /test/g120s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g120s.ijs -------------------------------------------------------------------------------- /test/g121.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g121.ijs -------------------------------------------------------------------------------- /test/g122.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g122.ijs -------------------------------------------------------------------------------- /test/g122a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g122a.ijs -------------------------------------------------------------------------------- /test/g128x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x.ijs -------------------------------------------------------------------------------- /test/g128x11.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x11.ijs -------------------------------------------------------------------------------- /test/g128x11a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x11a.ijs -------------------------------------------------------------------------------- /test/g128x14.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x14.ijs -------------------------------------------------------------------------------- /test/g128x19.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x19.ijs -------------------------------------------------------------------------------- /test/g128x3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x3.ijs -------------------------------------------------------------------------------- /test/g128x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x5.ijs -------------------------------------------------------------------------------- /test/g128x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x6.ijs -------------------------------------------------------------------------------- /test/g128x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g128x7.ijs -------------------------------------------------------------------------------- /test/g130.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g130.ijs -------------------------------------------------------------------------------- /test/g130a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g130a.ijs -------------------------------------------------------------------------------- /test/g130i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g130i.ijs -------------------------------------------------------------------------------- /test/g130p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g130p.ijs -------------------------------------------------------------------------------- /test/g131.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g131.ijs -------------------------------------------------------------------------------- /test/g132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g132.ijs -------------------------------------------------------------------------------- /test/g13x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g13x.ijs -------------------------------------------------------------------------------- /test/g15x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g15x.ijs -------------------------------------------------------------------------------- /test/g18x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g18x.ijs -------------------------------------------------------------------------------- /test/g1x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x.ijs -------------------------------------------------------------------------------- /test/g1x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x0.ijs -------------------------------------------------------------------------------- /test/g1x1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x1.ijs -------------------------------------------------------------------------------- /test/g1x11.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x11.ijs -------------------------------------------------------------------------------- /test/g1x12.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x12.ijs -------------------------------------------------------------------------------- /test/g1x2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x2.ijs -------------------------------------------------------------------------------- /test/g1x20.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x20.ijs -------------------------------------------------------------------------------- /test/g1x3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x3.ijs -------------------------------------------------------------------------------- /test/g1x30.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x30.ijs -------------------------------------------------------------------------------- /test/g1x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x4.ijs -------------------------------------------------------------------------------- /test/g1x43.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x43.ijs -------------------------------------------------------------------------------- /test/g1x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x5.ijs -------------------------------------------------------------------------------- /test/g1x55.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x55.ijs -------------------------------------------------------------------------------- /test/g1x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g1x7.ijs -------------------------------------------------------------------------------- /test/g200.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g200.ijs -------------------------------------------------------------------------------- /test/g200a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g200a.ijs -------------------------------------------------------------------------------- /test/g200i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g200i.ijs -------------------------------------------------------------------------------- /test/g200m.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g200m.ijs -------------------------------------------------------------------------------- /test/g200p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g200p.ijs -------------------------------------------------------------------------------- /test/g201.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g201.ijs -------------------------------------------------------------------------------- /test/g202.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g202.ijs -------------------------------------------------------------------------------- /test/g202b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g202b.ijs -------------------------------------------------------------------------------- /test/g210.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g210.ijs -------------------------------------------------------------------------------- /test/g210a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g210a.ijs -------------------------------------------------------------------------------- /test/g211.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g211.ijs -------------------------------------------------------------------------------- /test/g212.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g212.ijs -------------------------------------------------------------------------------- /test/g220.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g220.ijs -------------------------------------------------------------------------------- /test/g220t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g220t.ijs -------------------------------------------------------------------------------- /test/g221.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g221.ijs -------------------------------------------------------------------------------- /test/g222.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g222.ijs -------------------------------------------------------------------------------- /test/g222a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g222a.ijs -------------------------------------------------------------------------------- /test/g222i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g222i.ijs -------------------------------------------------------------------------------- /test/g222p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g222p.ijs -------------------------------------------------------------------------------- /test/g222s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g222s.ijs -------------------------------------------------------------------------------- /test/g230.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g230.ijs -------------------------------------------------------------------------------- /test/g230a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g230a.ijs -------------------------------------------------------------------------------- /test/g230i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g230i.ijs -------------------------------------------------------------------------------- /test/g230p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g230p.ijs -------------------------------------------------------------------------------- /test/g230s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g230s.ijs -------------------------------------------------------------------------------- /test/g231.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g231.ijs -------------------------------------------------------------------------------- /test/g232.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g232.ijs -------------------------------------------------------------------------------- /test/g2x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g2x.ijs -------------------------------------------------------------------------------- /test/g300.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g300.ijs -------------------------------------------------------------------------------- /test/g300b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g300b.ijs -------------------------------------------------------------------------------- /test/g300t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g300t.ijs -------------------------------------------------------------------------------- /test/g301.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g301.ijs -------------------------------------------------------------------------------- /test/g310.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g310.ijs -------------------------------------------------------------------------------- /test/g310a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g310a.ijs -------------------------------------------------------------------------------- /test/g310names.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g310names.ijs -------------------------------------------------------------------------------- /test/g310r.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g310r.ijs -------------------------------------------------------------------------------- /test/g310t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g310t.ijs -------------------------------------------------------------------------------- /test/g311.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g311.ijs -------------------------------------------------------------------------------- /test/g312.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g312.ijs -------------------------------------------------------------------------------- /test/g320.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g320.ijs -------------------------------------------------------------------------------- /test/g320ip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g320ip.ijs -------------------------------------------------------------------------------- /test/g320ipt.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g320ipt.ijs -------------------------------------------------------------------------------- /test/g321.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g321.ijs -------------------------------------------------------------------------------- /test/g321t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g321t.ijs -------------------------------------------------------------------------------- /test/g322.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g322.ijs -------------------------------------------------------------------------------- /test/g330.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g330.ijs -------------------------------------------------------------------------------- /test/g330f.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g330f.ijs -------------------------------------------------------------------------------- /test/g330t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g330t.ijs -------------------------------------------------------------------------------- /test/g331.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331.ijs -------------------------------------------------------------------------------- /test/g331bx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331bx.ijs -------------------------------------------------------------------------------- /test/g331col.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331col.ijs -------------------------------------------------------------------------------- /test/g331ins.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331ins.ijs -------------------------------------------------------------------------------- /test/g331ps.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331ps.ijs -------------------------------------------------------------------------------- /test/g331sp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g331sp.ijs -------------------------------------------------------------------------------- /test/g332.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g332.ijs -------------------------------------------------------------------------------- /test/g332s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g332s.ijs -------------------------------------------------------------------------------- /test/g3x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x.ijs -------------------------------------------------------------------------------- /test/g3x02bak.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x02bak.ijs -------------------------------------------------------------------------------- /test/g3x10.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x10.ijs -------------------------------------------------------------------------------- /test/g3x12.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x12.ijs -------------------------------------------------------------------------------- /test/g3x12a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x12a.ijs -------------------------------------------------------------------------------- /test/g3x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x4.ijs -------------------------------------------------------------------------------- /test/g3x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x5.ijs -------------------------------------------------------------------------------- /test/g3x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g3x6.ijs -------------------------------------------------------------------------------- /test/g400.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g400.ijs -------------------------------------------------------------------------------- /test/g400e.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g400e.ijs -------------------------------------------------------------------------------- /test/g401.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g401.ijs -------------------------------------------------------------------------------- /test/g402.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g402.ijs -------------------------------------------------------------------------------- /test/g410.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g410.ijs -------------------------------------------------------------------------------- /test/g410a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g410a.ijs -------------------------------------------------------------------------------- /test/g410i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g410i.ijs -------------------------------------------------------------------------------- /test/g410p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g410p.ijs -------------------------------------------------------------------------------- /test/g410s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g410s.ijs -------------------------------------------------------------------------------- /test/g411.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g411.ijs -------------------------------------------------------------------------------- /test/g412.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g412.ijs -------------------------------------------------------------------------------- /test/g420.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420.ijs -------------------------------------------------------------------------------- /test/g420ce.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420ce.ijs -------------------------------------------------------------------------------- /test/g420fg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420fg.ijs -------------------------------------------------------------------------------- /test/g420r2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420r2.ijs -------------------------------------------------------------------------------- /test/g420stch.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420stch.ijs -------------------------------------------------------------------------------- /test/g420t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g420t.ijs -------------------------------------------------------------------------------- /test/g421.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421.ijs -------------------------------------------------------------------------------- /test/g421c.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421c.ijs -------------------------------------------------------------------------------- /test/g421d.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421d.ijs -------------------------------------------------------------------------------- /test/g421e.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421e.ijs -------------------------------------------------------------------------------- /test/g421i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421i.ijs -------------------------------------------------------------------------------- /test/g421p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421p.ijs -------------------------------------------------------------------------------- /test/g421t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g421t.ijs -------------------------------------------------------------------------------- /test/g422.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422.ijs -------------------------------------------------------------------------------- /test/g422os.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422os.ijs -------------------------------------------------------------------------------- /test/g422rk.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422rk.ijs -------------------------------------------------------------------------------- /test/g422sort.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422sort.ijs -------------------------------------------------------------------------------- /test/g422sort1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422sort1.ijs -------------------------------------------------------------------------------- /test/g422tao.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g422tao.ijs -------------------------------------------------------------------------------- /test/g430.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430.ijs -------------------------------------------------------------------------------- /test/g430a2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430a2.ijs -------------------------------------------------------------------------------- /test/g430avg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430avg.ijs -------------------------------------------------------------------------------- /test/g430b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430b.ijs -------------------------------------------------------------------------------- /test/g430d.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430d.ijs -------------------------------------------------------------------------------- /test/g430fin.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430fin.ijs -------------------------------------------------------------------------------- /test/g430inv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g430inv.ijs -------------------------------------------------------------------------------- /test/g431.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g431.ijs -------------------------------------------------------------------------------- /test/g431a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g431a.ijs -------------------------------------------------------------------------------- /test/g432.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g432.ijs -------------------------------------------------------------------------------- /test/g4x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g4x.ijs -------------------------------------------------------------------------------- /test/g4x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g4x5.ijs -------------------------------------------------------------------------------- /test/g500.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g500.ijs -------------------------------------------------------------------------------- /test/g502.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g502.ijs -------------------------------------------------------------------------------- /test/g510.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g510.ijs -------------------------------------------------------------------------------- /test/g520.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g520.ijs -------------------------------------------------------------------------------- /test/g520b.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g520b.ijs -------------------------------------------------------------------------------- /test/g520p.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g520p.ijs -------------------------------------------------------------------------------- /test/g521.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g521.ijs -------------------------------------------------------------------------------- /test/g522.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g522.ijs -------------------------------------------------------------------------------- /test/g530.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g530.ijs -------------------------------------------------------------------------------- /test/g530m0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g530m0.ijs -------------------------------------------------------------------------------- /test/g530t.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g530t.ijs -------------------------------------------------------------------------------- /test/g531.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g531.ijs -------------------------------------------------------------------------------- /test/g532.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g532.ijs -------------------------------------------------------------------------------- /test/g5x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x.ijs -------------------------------------------------------------------------------- /test/g5x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x0.ijs -------------------------------------------------------------------------------- /test/g5x1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x1.ijs -------------------------------------------------------------------------------- /test/g5x2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x2.ijs -------------------------------------------------------------------------------- /test/g5x30.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x30.ijs -------------------------------------------------------------------------------- /test/g5x4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x4.ijs -------------------------------------------------------------------------------- /test/g5x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x5.ijs -------------------------------------------------------------------------------- /test/g5x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x6.ijs -------------------------------------------------------------------------------- /test/g5x7.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g5x7.ijs -------------------------------------------------------------------------------- /test/g600.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g600.ijs -------------------------------------------------------------------------------- /test/g600ip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g600ip.ijs -------------------------------------------------------------------------------- /test/g601.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g601.ijs -------------------------------------------------------------------------------- /test/g602.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g602.ijs -------------------------------------------------------------------------------- /test/g610.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g610.ijs -------------------------------------------------------------------------------- /test/g612.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g612.ijs -------------------------------------------------------------------------------- /test/g620.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g620.ijs -------------------------------------------------------------------------------- /test/g620a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g620a.ijs -------------------------------------------------------------------------------- /test/g621.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g621.ijs -------------------------------------------------------------------------------- /test/g622.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g622.ijs -------------------------------------------------------------------------------- /test/g630.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g630.ijs -------------------------------------------------------------------------------- /test/g631.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g631.ijs -------------------------------------------------------------------------------- /test/g631c.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g631c.ijs -------------------------------------------------------------------------------- /test/g632.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g632.ijs -------------------------------------------------------------------------------- /test/g640.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g640.ijs -------------------------------------------------------------------------------- /test/g640k.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g640k.ijs -------------------------------------------------------------------------------- /test/g640r.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g640r.ijs -------------------------------------------------------------------------------- /test/g641.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g641.ijs -------------------------------------------------------------------------------- /test/g6x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g6x.ijs -------------------------------------------------------------------------------- /test/g6x0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g6x0.ijs -------------------------------------------------------------------------------- /test/g6x14.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g6x14.ijs -------------------------------------------------------------------------------- /test/g7x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g7x.ijs -------------------------------------------------------------------------------- /test/g7x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g7x5.ijs -------------------------------------------------------------------------------- /test/g7x5s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g7x5s.ijs -------------------------------------------------------------------------------- /test/g7x6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g7x6.ijs -------------------------------------------------------------------------------- /test/g8x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g8x.ijs -------------------------------------------------------------------------------- /test/g9x.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g9x.ijs -------------------------------------------------------------------------------- /test/g9x40.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/g9x40.ijs -------------------------------------------------------------------------------- /test/ga.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/ga.ijs -------------------------------------------------------------------------------- /test/gassert.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gassert.ijs -------------------------------------------------------------------------------- /test/gb.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gb.ijs -------------------------------------------------------------------------------- /test/gbpar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gbpar.ijs -------------------------------------------------------------------------------- /test/gc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gc.ijs -------------------------------------------------------------------------------- /test/gchar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gchar.ijs -------------------------------------------------------------------------------- /test/gcip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gcip.ijs -------------------------------------------------------------------------------- /test/gcip1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gcip1.ijs -------------------------------------------------------------------------------- /test/gcip2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gcip2.ijs -------------------------------------------------------------------------------- /test/gcompsc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gcompsc.ijs -------------------------------------------------------------------------------- /test/gct.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gct.ijs -------------------------------------------------------------------------------- /test/gctrl.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gctrl.ijs -------------------------------------------------------------------------------- /test/gd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gd.ijs -------------------------------------------------------------------------------- /test/gddot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gddot.ijs -------------------------------------------------------------------------------- /test/gdll.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gdll.ijs -------------------------------------------------------------------------------- /test/gdll_df.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gdll_df.ijs -------------------------------------------------------------------------------- /test/ge.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/ge.ijs -------------------------------------------------------------------------------- /test/gebar.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gebar.ijs -------------------------------------------------------------------------------- /test/gesc.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gesc.ijs -------------------------------------------------------------------------------- /test/gf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gf.ijs -------------------------------------------------------------------------------- /test/gfft.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gfft.ijs -------------------------------------------------------------------------------- /test/gfold.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gfold.ijs -------------------------------------------------------------------------------- /test/gfor.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gfor.ijs -------------------------------------------------------------------------------- /test/gft.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gft.ijs -------------------------------------------------------------------------------- /test/ggoto.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/ggoto.ijs -------------------------------------------------------------------------------- /test/gh.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gh.ijs -------------------------------------------------------------------------------- /test/gi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gi.ijs -------------------------------------------------------------------------------- /test/gi0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gi0.ijs -------------------------------------------------------------------------------- /test/gibs.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gibs.ijs -------------------------------------------------------------------------------- /test/gibst.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gibst.ijs -------------------------------------------------------------------------------- /test/gicap.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gicap.ijs -------------------------------------------------------------------------------- /test/gicap2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gicap2.ijs -------------------------------------------------------------------------------- /test/gico.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gico.ijs -------------------------------------------------------------------------------- /test/giconv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/giconv.ijs -------------------------------------------------------------------------------- /test/gif.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gif.ijs -------------------------------------------------------------------------------- /test/gimaxmin.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gimaxmin.ijs -------------------------------------------------------------------------------- /test/gintdiv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gintdiv.ijs -------------------------------------------------------------------------------- /test/gintg.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gintg.ijs -------------------------------------------------------------------------------- /test/gintovfl.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gintovfl.ijs -------------------------------------------------------------------------------- /test/giph.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/giph.ijs -------------------------------------------------------------------------------- /test/gipht.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gipht.ijs -------------------------------------------------------------------------------- /test/giscode.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/giscode.ijs -------------------------------------------------------------------------------- /test/git.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/git.ijs -------------------------------------------------------------------------------- /test/gix.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gix.ijs -------------------------------------------------------------------------------- /test/gj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gj.ijs -------------------------------------------------------------------------------- /test/gjfile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gjfile.ijs -------------------------------------------------------------------------------- /test/glapack.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/glapack.ijs -------------------------------------------------------------------------------- /test/glco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/glco.ijs -------------------------------------------------------------------------------- /test/gldot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gldot.ijs -------------------------------------------------------------------------------- /test/glocale.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/glocale.ijs -------------------------------------------------------------------------------- /test/gmbx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx.ijs -------------------------------------------------------------------------------- /test/gmbx0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx0.ijs -------------------------------------------------------------------------------- /test/gmbx1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx1.ijs -------------------------------------------------------------------------------- /test/gmbx2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx2.ijs -------------------------------------------------------------------------------- /test/gmbx3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx3.ijs -------------------------------------------------------------------------------- /test/gmbx4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx4.ijs -------------------------------------------------------------------------------- /test/gmbx5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx5.ijs -------------------------------------------------------------------------------- /test/gmbx6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbx6.ijs -------------------------------------------------------------------------------- /test/gmbxah.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxah.ijs -------------------------------------------------------------------------------- /test/gmbxip.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxip.ijs -------------------------------------------------------------------------------- /test/gmbxqz.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxqz.ijs -------------------------------------------------------------------------------- /test/gmbxx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxx.ijs -------------------------------------------------------------------------------- /test/gmbxx1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxx1u.ijs -------------------------------------------------------------------------------- /test/gmbxx1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmbxx1w.ijs -------------------------------------------------------------------------------- /test/gmean.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmean.ijs -------------------------------------------------------------------------------- /test/gmemo.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmemo.ijs -------------------------------------------------------------------------------- /test/gmmf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmmf.ijs -------------------------------------------------------------------------------- /test/gmmf1s.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmmf1s.ijs -------------------------------------------------------------------------------- /test/gmmf1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmmf1u.ijs -------------------------------------------------------------------------------- /test/gmmf1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmmf1w.ijs -------------------------------------------------------------------------------- /test/gmnom.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gmnom.ijs -------------------------------------------------------------------------------- /test/gn.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gn.ijs -------------------------------------------------------------------------------- /test/gnan.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gnan.ijs -------------------------------------------------------------------------------- /test/gnum.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gnum.ijs -------------------------------------------------------------------------------- /test/gnvv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gnvv.ijs -------------------------------------------------------------------------------- /test/go.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/go.ijs -------------------------------------------------------------------------------- /test/goi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/goi.ijs -------------------------------------------------------------------------------- /test/goox.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/goox.ijs -------------------------------------------------------------------------------- /test/gop.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gop.ijs -------------------------------------------------------------------------------- /test/gos.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gos.ijs -------------------------------------------------------------------------------- /test/gparse.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gparse.ijs -------------------------------------------------------------------------------- /test/gpco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpco.ijs -------------------------------------------------------------------------------- /test/gpco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpco2.ijs -------------------------------------------------------------------------------- /test/gpcoinv.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpcoinv.ijs -------------------------------------------------------------------------------- /test/gpdd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpdd.ijs -------------------------------------------------------------------------------- /test/gpi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpi.ijs -------------------------------------------------------------------------------- /test/gpick.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpick.ijs -------------------------------------------------------------------------------- /test/gpoly.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gpoly.ijs -------------------------------------------------------------------------------- /test/gq.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gq.ijs -------------------------------------------------------------------------------- /test/gq101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gq101.ijs -------------------------------------------------------------------------------- /test/gq132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gq132.ijs -------------------------------------------------------------------------------- /test/gq201.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gq201.ijs -------------------------------------------------------------------------------- /test/gqco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gqco.ijs -------------------------------------------------------------------------------- /test/gqnonrat.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gqnonrat.ijs -------------------------------------------------------------------------------- /test/gr.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gr.ijs -------------------------------------------------------------------------------- /test/gr1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gr1.ijs -------------------------------------------------------------------------------- /test/grefcount.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/grefcount.ijs -------------------------------------------------------------------------------- /test/gregex.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gregex.ijs -------------------------------------------------------------------------------- /test/gs.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gs.ijs -------------------------------------------------------------------------------- /test/gsco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco.ijs -------------------------------------------------------------------------------- /test/gsco1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco1.ijs -------------------------------------------------------------------------------- /test/gsco1u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco1u.ijs -------------------------------------------------------------------------------- /test/gsco1w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco1w.ijs -------------------------------------------------------------------------------- /test/gsco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco2.ijs -------------------------------------------------------------------------------- /test/gsco2u.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco2u.ijs -------------------------------------------------------------------------------- /test/gsco2w.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsco2w.ijs -------------------------------------------------------------------------------- /test/gscou.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gscou.ijs -------------------------------------------------------------------------------- /test/gsdot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsdot.ijs -------------------------------------------------------------------------------- /test/gselect.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gselect.ijs -------------------------------------------------------------------------------- /test/gsp.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp.ijs -------------------------------------------------------------------------------- /test/gsp0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp0.ijs -------------------------------------------------------------------------------- /test/gsp000.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp000.ijs -------------------------------------------------------------------------------- /test/gsp1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp1.ijs -------------------------------------------------------------------------------- /test/gsp100.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp100.ijs -------------------------------------------------------------------------------- /test/gsp101.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp101.ijs -------------------------------------------------------------------------------- /test/gsp102.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp102.ijs -------------------------------------------------------------------------------- /test/gsp110.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp110.ijs -------------------------------------------------------------------------------- /test/gsp111.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp111.ijs -------------------------------------------------------------------------------- /test/gsp112.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp112.ijs -------------------------------------------------------------------------------- /test/gsp120.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp120.ijs -------------------------------------------------------------------------------- /test/gsp122.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp122.ijs -------------------------------------------------------------------------------- /test/gsp130.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp130.ijs -------------------------------------------------------------------------------- /test/gsp2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp2.ijs -------------------------------------------------------------------------------- /test/gsp221.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp221.ijs -------------------------------------------------------------------------------- /test/gsp222.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp222.ijs -------------------------------------------------------------------------------- /test/gsp231.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp231.ijs -------------------------------------------------------------------------------- /test/gsp320.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp320.ijs -------------------------------------------------------------------------------- /test/gsp321.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp321.ijs -------------------------------------------------------------------------------- /test/gsp322.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp322.ijs -------------------------------------------------------------------------------- /test/gsp331.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp331.ijs -------------------------------------------------------------------------------- /test/gsp400.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp400.ijs -------------------------------------------------------------------------------- /test/gsp410.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp410.ijs -------------------------------------------------------------------------------- /test/gsp412.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp412.ijs -------------------------------------------------------------------------------- /test/gsp420.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp420.ijs -------------------------------------------------------------------------------- /test/gsp421.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp421.ijs -------------------------------------------------------------------------------- /test/gsp422.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp422.ijs -------------------------------------------------------------------------------- /test/gsp431.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp431.ijs -------------------------------------------------------------------------------- /test/gsp432.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp432.ijs -------------------------------------------------------------------------------- /test/gsp520.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp520.ijs -------------------------------------------------------------------------------- /test/gsp520sd.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp520sd.ijs -------------------------------------------------------------------------------- /test/gsp520ss.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp520ss.ijs -------------------------------------------------------------------------------- /test/gsp521.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp521.ijs -------------------------------------------------------------------------------- /test/gsp530i.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp530i.ijs -------------------------------------------------------------------------------- /test/gsp530l.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp530l.ijs -------------------------------------------------------------------------------- /test/gsp530n.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp530n.ijs -------------------------------------------------------------------------------- /test/gsp531.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp531.ijs -------------------------------------------------------------------------------- /test/gsp5x5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp5x5.ijs -------------------------------------------------------------------------------- /test/gsp6.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp6.ijs -------------------------------------------------------------------------------- /test/gsp600.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp600.ijs -------------------------------------------------------------------------------- /test/gsp600a.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gsp600a.ijs -------------------------------------------------------------------------------- /test/gspi.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gspi.ijs -------------------------------------------------------------------------------- /test/gspj.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gspj.ijs -------------------------------------------------------------------------------- /test/gspo.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gspo.ijs -------------------------------------------------------------------------------- /test/gspr.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gspr.ijs -------------------------------------------------------------------------------- /test/gspx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gspx.ijs -------------------------------------------------------------------------------- /test/gss.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gss.ijs -------------------------------------------------------------------------------- /test/gstack.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gstack.ijs -------------------------------------------------------------------------------- /test/gt.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gt.ijs -------------------------------------------------------------------------------- /test/gtdot.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot.ijs -------------------------------------------------------------------------------- /test/gtdot1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot1.ijs -------------------------------------------------------------------------------- /test/gtdot2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot2.ijs -------------------------------------------------------------------------------- /test/gtdot3.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot3.ijs -------------------------------------------------------------------------------- /test/gtdot4.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot4.ijs -------------------------------------------------------------------------------- /test/gtdot5.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtdot5.ijs -------------------------------------------------------------------------------- /test/gthrow.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gthrow.ijs -------------------------------------------------------------------------------- /test/gtrain.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtrain.ijs -------------------------------------------------------------------------------- /test/gtry.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gtry.ijs -------------------------------------------------------------------------------- /test/gu.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gu.ijs -------------------------------------------------------------------------------- /test/gu0.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gu0.ijs -------------------------------------------------------------------------------- /test/gunderai.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gunderai.ijs -------------------------------------------------------------------------------- /test/gwhile.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gwhile.ijs -------------------------------------------------------------------------------- /test/gx.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gx.ijs -------------------------------------------------------------------------------- /test/gx132.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gx132.ijs -------------------------------------------------------------------------------- /test/gxco.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gxco.ijs -------------------------------------------------------------------------------- /test/gxco1.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gxco1.ijs -------------------------------------------------------------------------------- /test/gxco2.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gxco2.ijs -------------------------------------------------------------------------------- /test/gxinf.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gxinf.ijs -------------------------------------------------------------------------------- /test/gz001.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/gz001.ijs -------------------------------------------------------------------------------- /test/t1.ijf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/t1.ijf -------------------------------------------------------------------------------- /test/test.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/test.htm -------------------------------------------------------------------------------- /test/test.jproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tsheb.ijs: -------------------------------------------------------------------------------- 1 | #! [: 5 2 | sheb =: 9 -------------------------------------------------------------------------------- /test/tsu.ijs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/test/tsu.ijs -------------------------------------------------------------------------------- /unix/libedit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/unix/libedit.a -------------------------------------------------------------------------------- /unix/libedit64.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/unix/libedit64.a -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsoftware/jsource/HEAD/version.txt --------------------------------------------------------------------------------