├── .github ├── FUNDING.yml └── workflows │ ├── c-api-docs.yml │ ├── c-runtime-unit-tests.yml │ ├── ci.yml │ └── formatting.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── Architecture.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Doxyfile ├── DoxygenLayout.xml ├── FUTURE ├── LICENSE ├── Makefile ├── Makefile.config ├── Makefile.config.raspberry-pi-2 ├── README.md ├── ck-polyfill.c ├── ck-polyfill.h ├── cyclone.scm ├── docs ├── API.md ├── Benchmarks.md ├── C-Calling-Conventions.md ├── C-Generation.md ├── C-Interface-Notes.md ├── Development.md ├── Garbage-Collection-Using-Lazy-Sweeping.md ├── Garbage-Collector-Revised-2022.md ├── Garbage-Collector.md ├── Multithreaded-Development.md ├── Release-Checklist.md ├── Scheme-Language-Compliance.md ├── Scheme-code-conventions.md ├── User-Manual.md ├── Writing-the-Cyclone-Scheme-Compiler-Revised-2017.md ├── Writing-the-Cyclone-Scheme-Compiler.md ├── api │ ├── api-index.scm │ ├── cyclone │ │ ├── concurrent.md │ │ ├── foreign.md │ │ ├── match.md │ │ └── test.md │ ├── primitives.md │ ├── scheme │ │ ├── base.md │ │ ├── case-lambda.md │ │ ├── char.md │ │ ├── complex.md │ │ ├── cxr.md │ │ ├── cyclone │ │ │ ├── ast.md │ │ │ ├── cgen.md │ │ │ ├── common.md │ │ │ ├── cps-optimizations.md │ │ │ ├── libraries.md │ │ │ ├── pretty-print.md │ │ │ ├── primitives.md │ │ │ ├── transforms.md │ │ │ └── util.md │ │ ├── eval.md │ │ ├── file.md │ │ ├── inexact.md │ │ ├── lazy.md │ │ ├── load.md │ │ ├── process-context.md │ │ ├── read.md │ │ ├── repl.md │ │ ├── time.md │ │ └── write.md │ └── srfi │ │ ├── 1.md │ │ ├── 106.md │ │ ├── 111.md │ │ ├── 113.md │ │ ├── 117.md │ │ ├── 121.md │ │ ├── 128.md │ │ ├── 132.md │ │ ├── 133.md │ │ ├── 143.md │ │ ├── 18.md │ │ ├── 2.md │ │ ├── 27.md │ │ ├── 28.md │ │ ├── 60.md │ │ ├── 69.md │ │ └── 8.md ├── benchmarks │ ├── benchmark-status.md │ ├── car4-dev │ │ ├── benchmark-status.md │ │ ├── results.Chicken.thinkpad-laptop-x86_64 │ │ └── results.Cyclone.thinkpad-laptop-x86_64 │ ├── extract-data.sh │ ├── results.Cyclone-0.1.5 │ ├── results.Cyclone-master │ └── results.Cyclone.thinkpad-laptop-x86_64 ├── images │ ├── arch-linux-thumb.png │ ├── benchmark-tests-finished.png │ ├── benchmark-total-runtimes.png │ ├── benchmarks │ │ ├── gabriel.png │ │ ├── gc.png │ │ ├── kvw.png │ │ ├── lazy-sweep-benchmark-times.png │ │ └── lazy-sweep.png │ ├── build-thumb.png │ ├── campfire.jpg │ ├── compiler.dia │ ├── compiler.png │ ├── cyclone-contribs.png │ ├── cyclone-logo-01.pdn │ ├── cyclone-logo-01.png │ ├── cyclone-logo-03-header.png │ ├── cyclone-logo-03-thumb.png │ ├── cyclone-logo-03.pdn │ ├── cyclone-logo-03.png │ ├── cyclone-logo-04-bootstrap.png │ ├── cyclone-logo-04-header.png │ ├── cyclone-logo-04.png │ ├── cyclone-logo-05-header.png │ ├── cyclone-logo-small.png │ ├── cyclone-logo-smaller.png │ ├── cyclone-winds-small.png │ ├── docker-thumb.png │ ├── game-of-life-gliders.gif │ ├── gc-graph-clear.dia │ ├── gc-graph-clear.png │ ├── gc-graph-mark.dia │ ├── gc-graph-mark.png │ ├── gc-graph-sweep.dia │ ├── gc-graph-sweep.png │ ├── gc-graph-trace.dia │ ├── gc-graph-trace.png │ ├── gentoo-linux-logo.png │ ├── gentoo-logo.svg │ ├── homebrew-thumb.png │ ├── logo.png │ ├── runtime.dia │ └── runtime.png ├── immutable-obj-notes.md ├── old-notes │ ├── Developer-How-To.md │ ├── TODO │ ├── gc-notes.txt │ └── global-opts-notes.txt ├── r7rs.pdf └── research-papers │ ├── CheneyMTA.pdf │ ├── d1-mlton-realtime.pdf │ └── syntactic-closures.pdf ├── examples ├── Makefile ├── begin-splicing.scm ├── call-scm-from-c │ ├── Makefile │ ├── Readme.md │ ├── basic-no-gc.scm │ ├── basic.c │ ├── basic.h │ ├── full-with-gc.scm │ ├── full.c │ └── full.h ├── cat.scm ├── fac.scm ├── ffi │ ├── custom-type.scm │ ├── sub-bignums.h │ └── sub-bignums.scm ├── game-of-life-png │ ├── Makefile │ ├── README.md │ ├── convert.sh │ ├── example │ │ ├── grid.sld │ │ └── life.sld │ ├── life.scm │ ├── write-png.c │ └── write-png.h ├── game-of-life │ ├── Makefile │ ├── README.md │ ├── example │ │ ├── grid.sld │ │ └── life.sld │ └── life.scm ├── greater-of.scm ├── hello-library │ ├── Makefile │ ├── hello.scm │ └── libs │ │ ├── lib1.scm │ │ ├── lib1.sld │ │ └── lib2.sld ├── long-running-process.scm ├── networking │ ├── client.scm │ ├── http-server.scm │ └── server.scm ├── resolve-dependencies.scm ├── tail-call-optimization.scm ├── tail-call-testing.scm └── threading │ ├── benchmarks │ ├── bv2string-integration.scm │ ├── bv2string.scm │ ├── ctak.scm │ └── paraffins.scm │ ├── cv-broadcast.scm │ ├── many-writers.scm │ ├── parameters.scm │ ├── producer-consumer.scm │ ├── sum-atomic.scm │ ├── sum-mutex.scm │ ├── sum-nosync.scm │ └── thread-join.scm ├── ffi.c ├── gc.c ├── generate-c.scm ├── guix └── cyclone.scm ├── hashset.c ├── icyc.scm ├── include └── cyclone │ ├── bignum.h │ ├── ck_ht_hash.h │ ├── hashset.h │ ├── runtime-main.h │ ├── runtime.h │ └── types.h ├── libs ├── cyclone │ ├── concurrent.sld │ ├── delay-promise.scm │ ├── foreign.sld │ ├── match.sld │ ├── test.scm │ ├── test.sld │ └── use-shared-queue.scm ├── test-atoms.scm ├── test-foreign.scm └── test-threads.scm ├── mstreams.c ├── runtime.c ├── scheme ├── base.sld ├── case-lambda.sld ├── char.sld ├── complex.sld ├── cxr.sld ├── cyclone │ ├── ast.sld │ ├── cgen.sld │ ├── common.sld │ ├── cps-opt-analyze-call-graph.scm │ ├── cps-opt-local-var-redux.scm │ ├── cps-opt-memoize-pure-fncs.scm │ ├── cps-optimizations.sld │ ├── hashset.sld │ ├── libraries.sld │ ├── macros.sld │ ├── opti-test.scm │ ├── pass-validate-syntax.scm │ ├── pretty-print.sld │ ├── primitives.sld │ ├── test-cps.scm │ ├── transforms.sld │ └── util.sld ├── eval.sld ├── file.sld ├── inexact.sld ├── lazy.sld ├── load.sld ├── process-context.sld ├── read.sld ├── repl.sld ├── time.sld └── write.sld ├── scripts ├── README.md ├── alphabetize.scm ├── api-update.sh ├── check-c-formatting.sh ├── convert-doc-index.scm ├── fixup-api-file.sh └── generate-doc-index.sh ├── srfi ├── 1.scm ├── 1.sld ├── 106.sld ├── 111.sld ├── 113.sld ├── 117.sld ├── 121.scm ├── 121.sld ├── 128.sld ├── 132.sld ├── 133.sld ├── 143.sld ├── 18.sld ├── 2.scm ├── 2.sld ├── 27.sld ├── 28.scm ├── 28.sld ├── 60.scm ├── 60.sld ├── 69.sld ├── README.md ├── comparators │ ├── 162-impl.scm │ ├── comparators-impl.scm │ ├── comparators-test.scm │ └── default.scm ├── list-queues │ ├── list-queues-impl.scm │ └── list-queues-test.scm ├── sets │ ├── comparators-shim.scm │ ├── sets-impl.scm │ └── sets-test.scm ├── sorting │ ├── delndups.scm │ ├── lmsort.scm │ ├── median.scm │ ├── merge.scm │ ├── select.scm │ ├── sort.scm │ ├── sortfaster.scm │ ├── sorting-test.scm │ ├── sortp.scm │ ├── srfi-132-test.sps │ ├── vbinsearch.scm │ ├── vector-util.scm │ ├── vhsort.scm │ ├── visort.scm │ ├── vmsort.scm │ ├── vqsort2.scm │ └── vqsort3.scm ├── test-1.scm ├── test-2.scm ├── vectors-impl.scm └── vectors │ └── vectors-test.scm ├── sync.sh ├── test-lib-dep.scm ├── test-lib.c ├── tests ├── array1-test.scm ├── base.scm ├── benchmarks │ ├── lattice-csc-cps-opt.scm │ ├── lattice-csc-cps.scm │ └── lattice-o2-ana.txt ├── bignum-test.scm ├── bytevector-tests.scm ├── c-compiler-options.scm ├── debug │ ├── ack-gmon-analysis.txt │ ├── api-testing.scm │ ├── compilation │ │ ├── beta-contraction-notes.txt │ │ ├── nqueens-chicken-clo.scm │ │ ├── nqueens-chicken-cps-after-opt.scm │ │ ├── nqueens-chicken-cps.scm │ │ ├── nqueens-chicken.scm │ │ ├── nqueens-cyclone-clo.scm │ │ ├── nqueens-cyclone-cps.scm │ │ ├── nqueens.scm │ │ ├── simple.scm │ │ └── tmp.scm │ ├── compiler-benchmark-debug.txt │ ├── compiler-int-dev.scm │ ├── cps-analysis │ │ └── find-named-lets.scm │ ├── cps-opt-analyze-call-graph-test.scm │ ├── debug.sh │ ├── diviter │ │ ├── Makefile │ │ ├── diviter.c │ │ └── diviter.scm │ ├── earley-gmon-analysis.txt │ ├── find-direct-rec-calls.scm │ ├── find-known-lambdas.scm │ ├── flatten-seq.scm │ ├── gcbench-gmon-analysis.txt │ ├── kons.scm │ ├── macro-test.scm │ ├── macro-testing.scm │ ├── match-test2.scm │ ├── maze-analysis.txt │ ├── maze-cps-opt.scm │ ├── maze-csc.c.txt │ ├── maze.txt │ ├── mbrot-analysis.txt │ ├── mbrot-csc-opt.txt │ ├── mbrot-cyc.txt │ ├── memo.scm │ ├── sboyer-csc.scm │ ├── sboyer-cyc.txt │ ├── seq-test.scm │ ├── test-ck.c │ ├── test-find-loop.scm │ ├── test-fixnum-packing.c │ ├── test-let-values.scm │ ├── test-sizes.c │ ├── test.scm │ ├── test2.scm │ └── unit-test-trans.scm ├── define-c-testing.scm ├── experimental │ ├── Makefile │ └── fac-test.scm ├── let-syntax-298.scm ├── macro-hygiene.scm ├── match-tests.scm ├── prof │ ├── ack-analysis.txt │ ├── browse-analysis.txt │ ├── bv2string-analysis.txt │ ├── diviter-analysis.txt │ ├── nboyer-analysis.txt │ ├── pi-analysis.txt │ └── read1-analysis.txt ├── srfi-121-tests.scm ├── srfi-128-162-tests.scm ├── srfi-143-tests.scm ├── srfi-28-tests.scm ├── srfi-60-tests.scm ├── test-lib │ └── test.sld ├── test-shared-queue.scm ├── test.scm ├── threading.scm ├── unit-tests.scm └── when.scm └── third-party └── libtommath-1.2.0 ├── LICENSE ├── README.md ├── appveyor.yml ├── astylerc ├── bn_cutoffs.c ├── bn_deprecated.c ├── bn_mp_2expt.c ├── bn_mp_abs.c ├── bn_mp_add.c ├── bn_mp_add_d.c ├── bn_mp_addmod.c ├── bn_mp_and.c ├── bn_mp_clamp.c ├── bn_mp_clear.c ├── bn_mp_clear_multi.c ├── bn_mp_cmp.c ├── bn_mp_cmp_d.c ├── bn_mp_cmp_mag.c ├── bn_mp_cnt_lsb.c ├── bn_mp_complement.c ├── bn_mp_copy.c ├── bn_mp_count_bits.c ├── bn_mp_decr.c ├── bn_mp_div.c ├── bn_mp_div_2.c ├── bn_mp_div_2d.c ├── bn_mp_div_3.c ├── bn_mp_div_d.c ├── bn_mp_dr_is_modulus.c ├── bn_mp_dr_reduce.c ├── bn_mp_dr_setup.c ├── bn_mp_error_to_string.c ├── bn_mp_exch.c ├── bn_mp_expt_u32.c ├── bn_mp_exptmod.c ├── bn_mp_exteuclid.c ├── bn_mp_fread.c ├── bn_mp_from_sbin.c ├── bn_mp_from_ubin.c ├── bn_mp_fwrite.c ├── bn_mp_gcd.c ├── bn_mp_get_double.c ├── bn_mp_get_i32.c ├── bn_mp_get_i64.c ├── bn_mp_get_l.c ├── bn_mp_get_ll.c ├── bn_mp_get_mag_u32.c ├── bn_mp_get_mag_u64.c ├── bn_mp_get_mag_ul.c ├── bn_mp_get_mag_ull.c ├── bn_mp_grow.c ├── bn_mp_incr.c ├── bn_mp_init.c ├── bn_mp_init_copy.c ├── bn_mp_init_i32.c ├── bn_mp_init_i64.c ├── bn_mp_init_l.c ├── bn_mp_init_ll.c ├── bn_mp_init_multi.c ├── bn_mp_init_set.c ├── bn_mp_init_size.c ├── bn_mp_init_u32.c ├── bn_mp_init_u64.c ├── bn_mp_init_ul.c ├── bn_mp_init_ull.c ├── bn_mp_invmod.c ├── bn_mp_is_square.c ├── bn_mp_iseven.c ├── bn_mp_isodd.c ├── bn_mp_kronecker.c ├── bn_mp_lcm.c ├── bn_mp_log_u32.c ├── bn_mp_lshd.c ├── bn_mp_mod.c ├── bn_mp_mod_2d.c ├── bn_mp_mod_d.c ├── bn_mp_montgomery_calc_normalization.c ├── bn_mp_montgomery_reduce.c ├── bn_mp_montgomery_setup.c ├── bn_mp_mul.c ├── bn_mp_mul_2.c ├── bn_mp_mul_2d.c ├── bn_mp_mul_d.c ├── bn_mp_mulmod.c ├── bn_mp_neg.c ├── bn_mp_or.c ├── bn_mp_pack.c ├── bn_mp_pack_count.c ├── bn_mp_prime_fermat.c ├── bn_mp_prime_frobenius_underwood.c ├── bn_mp_prime_is_prime.c ├── bn_mp_prime_miller_rabin.c ├── bn_mp_prime_next_prime.c ├── bn_mp_prime_rabin_miller_trials.c ├── bn_mp_prime_rand.c ├── bn_mp_prime_strong_lucas_selfridge.c ├── bn_mp_radix_size.c ├── bn_mp_radix_smap.c ├── bn_mp_rand.c ├── bn_mp_read_radix.c ├── bn_mp_reduce.c ├── bn_mp_reduce_2k.c ├── bn_mp_reduce_2k_l.c ├── bn_mp_reduce_2k_setup.c ├── bn_mp_reduce_2k_setup_l.c ├── bn_mp_reduce_is_2k.c ├── bn_mp_reduce_is_2k_l.c ├── bn_mp_reduce_setup.c ├── bn_mp_root_u32.c ├── bn_mp_rshd.c ├── bn_mp_sbin_size.c ├── bn_mp_set.c ├── bn_mp_set_double.c ├── bn_mp_set_i32.c ├── bn_mp_set_i64.c ├── bn_mp_set_l.c ├── bn_mp_set_ll.c ├── bn_mp_set_u32.c ├── bn_mp_set_u64.c ├── bn_mp_set_ul.c ├── bn_mp_set_ull.c ├── bn_mp_shrink.c ├── bn_mp_signed_rsh.c ├── bn_mp_sqr.c ├── bn_mp_sqrmod.c ├── bn_mp_sqrt.c ├── bn_mp_sqrtmod_prime.c ├── bn_mp_sub.c ├── bn_mp_sub_d.c ├── bn_mp_submod.c ├── bn_mp_to_radix.c ├── bn_mp_to_sbin.c ├── bn_mp_to_ubin.c ├── bn_mp_ubin_size.c ├── bn_mp_unpack.c ├── bn_mp_xor.c ├── bn_mp_zero.c ├── bn_prime_tab.c ├── bn_s_mp_add.c ├── bn_s_mp_balance_mul.c ├── bn_s_mp_exptmod.c ├── bn_s_mp_exptmod_fast.c ├── bn_s_mp_get_bit.c ├── bn_s_mp_invmod_fast.c ├── bn_s_mp_invmod_slow.c ├── bn_s_mp_karatsuba_mul.c ├── bn_s_mp_karatsuba_sqr.c ├── bn_s_mp_montgomery_reduce_fast.c ├── bn_s_mp_mul_digs.c ├── bn_s_mp_mul_digs_fast.c ├── bn_s_mp_mul_high_digs.c ├── bn_s_mp_mul_high_digs_fast.c ├── bn_s_mp_prime_is_divisible.c ├── bn_s_mp_rand_jenkins.c ├── bn_s_mp_rand_platform.c ├── bn_s_mp_reverse.c ├── bn_s_mp_sqr.c ├── bn_s_mp_sqr_fast.c ├── bn_s_mp_sub.c ├── bn_s_mp_toom_mul.c ├── bn_s_mp_toom_sqr.c ├── changes.txt ├── demo ├── mtest_opponent.c ├── shared.c ├── shared.h ├── test.c └── timing.c ├── doc ├── bn.tex └── makefile ├── etc ├── 2kprime.1 ├── 2kprime.c ├── drprime.c ├── drprimes.28 ├── drprimes.txt ├── makefile ├── makefile.icc ├── makefile.msvc ├── mersenne.c ├── mont.c ├── pprime.c ├── prime.1024 ├── prime.512 ├── timer.asm ├── tune.c └── tune_it.sh ├── gen.pl ├── helper.pl ├── libtommath.pc.in ├── libtommath_VS2008.sln ├── libtommath_VS2008.vcproj ├── logs ├── Makefile ├── README ├── add.log ├── addsub.png ├── expt.log ├── expt.png ├── expt_2k.log ├── expt_2kl.log ├── expt_dr.log ├── graphs.dem ├── index.html ├── invmod.log ├── invmod.png ├── mult.log ├── mult.png ├── mult_kara.log ├── sqr.log ├── sqr_kara.log └── sub.log ├── makefile ├── makefile.mingw ├── makefile.msvc ├── makefile.shared ├── makefile.unix ├── makefile_include.mk ├── mtest ├── logtab.h ├── mpi-config.h ├── mpi-types.h ├── mpi.c ├── mpi.h └── mtest.c ├── testme.sh ├── tommath.def ├── tommath.h ├── tommath_class.h ├── tommath_cutoffs.h ├── tommath_private.h └── tommath_superclass.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://www.paypal.me/justinethiermd 2 | -------------------------------------------------------------------------------- /.github/workflows/c-api-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.github/workflows/c-api-docs.yml -------------------------------------------------------------------------------- /.github/workflows/c-runtime-unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.github/workflows/c-runtime-unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/AUTHORS -------------------------------------------------------------------------------- /Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Architecture.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Dockerfile -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Doxyfile -------------------------------------------------------------------------------- /DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/DoxygenLayout.xml -------------------------------------------------------------------------------- /FUTURE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Makefile.config -------------------------------------------------------------------------------- /Makefile.config.raspberry-pi-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/Makefile.config.raspberry-pi-2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/README.md -------------------------------------------------------------------------------- /ck-polyfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/ck-polyfill.c -------------------------------------------------------------------------------- /ck-polyfill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/ck-polyfill.h -------------------------------------------------------------------------------- /cyclone.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/cyclone.scm -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/Benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Benchmarks.md -------------------------------------------------------------------------------- /docs/C-Calling-Conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/C-Calling-Conventions.md -------------------------------------------------------------------------------- /docs/C-Generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/C-Generation.md -------------------------------------------------------------------------------- /docs/C-Interface-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/C-Interface-Notes.md -------------------------------------------------------------------------------- /docs/Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Development.md -------------------------------------------------------------------------------- /docs/Garbage-Collection-Using-Lazy-Sweeping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Garbage-Collection-Using-Lazy-Sweeping.md -------------------------------------------------------------------------------- /docs/Garbage-Collector-Revised-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Garbage-Collector-Revised-2022.md -------------------------------------------------------------------------------- /docs/Garbage-Collector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Garbage-Collector.md -------------------------------------------------------------------------------- /docs/Multithreaded-Development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Multithreaded-Development.md -------------------------------------------------------------------------------- /docs/Release-Checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Release-Checklist.md -------------------------------------------------------------------------------- /docs/Scheme-Language-Compliance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Scheme-Language-Compliance.md -------------------------------------------------------------------------------- /docs/Scheme-code-conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Scheme-code-conventions.md -------------------------------------------------------------------------------- /docs/User-Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/User-Manual.md -------------------------------------------------------------------------------- /docs/Writing-the-Cyclone-Scheme-Compiler-Revised-2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Writing-the-Cyclone-Scheme-Compiler-Revised-2017.md -------------------------------------------------------------------------------- /docs/Writing-the-Cyclone-Scheme-Compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/Writing-the-Cyclone-Scheme-Compiler.md -------------------------------------------------------------------------------- /docs/api/api-index.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/api-index.scm -------------------------------------------------------------------------------- /docs/api/cyclone/concurrent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/cyclone/concurrent.md -------------------------------------------------------------------------------- /docs/api/cyclone/foreign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/cyclone/foreign.md -------------------------------------------------------------------------------- /docs/api/cyclone/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/cyclone/match.md -------------------------------------------------------------------------------- /docs/api/cyclone/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/cyclone/test.md -------------------------------------------------------------------------------- /docs/api/primitives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/primitives.md -------------------------------------------------------------------------------- /docs/api/scheme/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/base.md -------------------------------------------------------------------------------- /docs/api/scheme/case-lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/case-lambda.md -------------------------------------------------------------------------------- /docs/api/scheme/char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/char.md -------------------------------------------------------------------------------- /docs/api/scheme/complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/complex.md -------------------------------------------------------------------------------- /docs/api/scheme/cxr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cxr.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/ast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/ast.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/cgen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/cgen.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/common.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/cps-optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/cps-optimizations.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/libraries.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/pretty-print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/pretty-print.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/primitives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/primitives.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/transforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/transforms.md -------------------------------------------------------------------------------- /docs/api/scheme/cyclone/util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/cyclone/util.md -------------------------------------------------------------------------------- /docs/api/scheme/eval.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/eval.md -------------------------------------------------------------------------------- /docs/api/scheme/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/file.md -------------------------------------------------------------------------------- /docs/api/scheme/inexact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/inexact.md -------------------------------------------------------------------------------- /docs/api/scheme/lazy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/lazy.md -------------------------------------------------------------------------------- /docs/api/scheme/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/load.md -------------------------------------------------------------------------------- /docs/api/scheme/process-context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/process-context.md -------------------------------------------------------------------------------- /docs/api/scheme/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/read.md -------------------------------------------------------------------------------- /docs/api/scheme/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/repl.md -------------------------------------------------------------------------------- /docs/api/scheme/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/time.md -------------------------------------------------------------------------------- /docs/api/scheme/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/scheme/write.md -------------------------------------------------------------------------------- /docs/api/srfi/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/1.md -------------------------------------------------------------------------------- /docs/api/srfi/106.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/106.md -------------------------------------------------------------------------------- /docs/api/srfi/111.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/111.md -------------------------------------------------------------------------------- /docs/api/srfi/113.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/113.md -------------------------------------------------------------------------------- /docs/api/srfi/117.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/117.md -------------------------------------------------------------------------------- /docs/api/srfi/121.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/121.md -------------------------------------------------------------------------------- /docs/api/srfi/128.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/128.md -------------------------------------------------------------------------------- /docs/api/srfi/132.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/132.md -------------------------------------------------------------------------------- /docs/api/srfi/133.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/133.md -------------------------------------------------------------------------------- /docs/api/srfi/143.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/143.md -------------------------------------------------------------------------------- /docs/api/srfi/18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/18.md -------------------------------------------------------------------------------- /docs/api/srfi/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/2.md -------------------------------------------------------------------------------- /docs/api/srfi/27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/27.md -------------------------------------------------------------------------------- /docs/api/srfi/28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/28.md -------------------------------------------------------------------------------- /docs/api/srfi/60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/60.md -------------------------------------------------------------------------------- /docs/api/srfi/69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/69.md -------------------------------------------------------------------------------- /docs/api/srfi/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/api/srfi/8.md -------------------------------------------------------------------------------- /docs/benchmarks/benchmark-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/benchmark-status.md -------------------------------------------------------------------------------- /docs/benchmarks/car4-dev/benchmark-status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/car4-dev/benchmark-status.md -------------------------------------------------------------------------------- /docs/benchmarks/car4-dev/results.Chicken.thinkpad-laptop-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/car4-dev/results.Chicken.thinkpad-laptop-x86_64 -------------------------------------------------------------------------------- /docs/benchmarks/car4-dev/results.Cyclone.thinkpad-laptop-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/car4-dev/results.Cyclone.thinkpad-laptop-x86_64 -------------------------------------------------------------------------------- /docs/benchmarks/extract-data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/extract-data.sh -------------------------------------------------------------------------------- /docs/benchmarks/results.Cyclone-0.1.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/results.Cyclone-0.1.5 -------------------------------------------------------------------------------- /docs/benchmarks/results.Cyclone-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/results.Cyclone-master -------------------------------------------------------------------------------- /docs/benchmarks/results.Cyclone.thinkpad-laptop-x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/benchmarks/results.Cyclone.thinkpad-laptop-x86_64 -------------------------------------------------------------------------------- /docs/images/arch-linux-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/arch-linux-thumb.png -------------------------------------------------------------------------------- /docs/images/benchmark-tests-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmark-tests-finished.png -------------------------------------------------------------------------------- /docs/images/benchmark-total-runtimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmark-total-runtimes.png -------------------------------------------------------------------------------- /docs/images/benchmarks/gabriel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmarks/gabriel.png -------------------------------------------------------------------------------- /docs/images/benchmarks/gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmarks/gc.png -------------------------------------------------------------------------------- /docs/images/benchmarks/kvw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmarks/kvw.png -------------------------------------------------------------------------------- /docs/images/benchmarks/lazy-sweep-benchmark-times.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmarks/lazy-sweep-benchmark-times.png -------------------------------------------------------------------------------- /docs/images/benchmarks/lazy-sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/benchmarks/lazy-sweep.png -------------------------------------------------------------------------------- /docs/images/build-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/build-thumb.png -------------------------------------------------------------------------------- /docs/images/campfire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/campfire.jpg -------------------------------------------------------------------------------- /docs/images/compiler.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/compiler.dia -------------------------------------------------------------------------------- /docs/images/compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/compiler.png -------------------------------------------------------------------------------- /docs/images/cyclone-contribs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-contribs.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-01.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-01.pdn -------------------------------------------------------------------------------- /docs/images/cyclone-logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-01.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-03-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-03-header.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-03-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-03-thumb.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-03.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-03.pdn -------------------------------------------------------------------------------- /docs/images/cyclone-logo-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-03.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-04-bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-04-bootstrap.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-04-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-04-header.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-04.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-05-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-05-header.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-small.png -------------------------------------------------------------------------------- /docs/images/cyclone-logo-smaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-logo-smaller.png -------------------------------------------------------------------------------- /docs/images/cyclone-winds-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/cyclone-winds-small.png -------------------------------------------------------------------------------- /docs/images/docker-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/docker-thumb.png -------------------------------------------------------------------------------- /docs/images/game-of-life-gliders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/game-of-life-gliders.gif -------------------------------------------------------------------------------- /docs/images/gc-graph-clear.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-clear.dia -------------------------------------------------------------------------------- /docs/images/gc-graph-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-clear.png -------------------------------------------------------------------------------- /docs/images/gc-graph-mark.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-mark.dia -------------------------------------------------------------------------------- /docs/images/gc-graph-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-mark.png -------------------------------------------------------------------------------- /docs/images/gc-graph-sweep.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-sweep.dia -------------------------------------------------------------------------------- /docs/images/gc-graph-sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-sweep.png -------------------------------------------------------------------------------- /docs/images/gc-graph-trace.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-trace.dia -------------------------------------------------------------------------------- /docs/images/gc-graph-trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gc-graph-trace.png -------------------------------------------------------------------------------- /docs/images/gentoo-linux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gentoo-linux-logo.png -------------------------------------------------------------------------------- /docs/images/gentoo-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/gentoo-logo.svg -------------------------------------------------------------------------------- /docs/images/homebrew-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/homebrew-thumb.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/runtime.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/runtime.dia -------------------------------------------------------------------------------- /docs/images/runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/images/runtime.png -------------------------------------------------------------------------------- /docs/immutable-obj-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/immutable-obj-notes.md -------------------------------------------------------------------------------- /docs/old-notes/Developer-How-To.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/old-notes/Developer-How-To.md -------------------------------------------------------------------------------- /docs/old-notes/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/old-notes/TODO -------------------------------------------------------------------------------- /docs/old-notes/gc-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/old-notes/gc-notes.txt -------------------------------------------------------------------------------- /docs/old-notes/global-opts-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/old-notes/global-opts-notes.txt -------------------------------------------------------------------------------- /docs/r7rs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/r7rs.pdf -------------------------------------------------------------------------------- /docs/research-papers/CheneyMTA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/research-papers/CheneyMTA.pdf -------------------------------------------------------------------------------- /docs/research-papers/d1-mlton-realtime.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/research-papers/d1-mlton-realtime.pdf -------------------------------------------------------------------------------- /docs/research-papers/syntactic-closures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/docs/research-papers/syntactic-closures.pdf -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/begin-splicing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/begin-splicing.scm -------------------------------------------------------------------------------- /examples/call-scm-from-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/Makefile -------------------------------------------------------------------------------- /examples/call-scm-from-c/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/Readme.md -------------------------------------------------------------------------------- /examples/call-scm-from-c/basic-no-gc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/basic-no-gc.scm -------------------------------------------------------------------------------- /examples/call-scm-from-c/basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/basic.c -------------------------------------------------------------------------------- /examples/call-scm-from-c/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/basic.h -------------------------------------------------------------------------------- /examples/call-scm-from-c/full-with-gc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/full-with-gc.scm -------------------------------------------------------------------------------- /examples/call-scm-from-c/full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/full.c -------------------------------------------------------------------------------- /examples/call-scm-from-c/full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/call-scm-from-c/full.h -------------------------------------------------------------------------------- /examples/cat.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/cat.scm -------------------------------------------------------------------------------- /examples/fac.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/fac.scm -------------------------------------------------------------------------------- /examples/ffi/custom-type.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/ffi/custom-type.scm -------------------------------------------------------------------------------- /examples/ffi/sub-bignums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/ffi/sub-bignums.h -------------------------------------------------------------------------------- /examples/ffi/sub-bignums.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/ffi/sub-bignums.scm -------------------------------------------------------------------------------- /examples/game-of-life-png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/Makefile -------------------------------------------------------------------------------- /examples/game-of-life-png/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/README.md -------------------------------------------------------------------------------- /examples/game-of-life-png/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/convert.sh -------------------------------------------------------------------------------- /examples/game-of-life-png/example/grid.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/example/grid.sld -------------------------------------------------------------------------------- /examples/game-of-life-png/example/life.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/example/life.sld -------------------------------------------------------------------------------- /examples/game-of-life-png/life.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/life.scm -------------------------------------------------------------------------------- /examples/game-of-life-png/write-png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/write-png.c -------------------------------------------------------------------------------- /examples/game-of-life-png/write-png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life-png/write-png.h -------------------------------------------------------------------------------- /examples/game-of-life/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life/Makefile -------------------------------------------------------------------------------- /examples/game-of-life/README.md: -------------------------------------------------------------------------------- 1 | This is the game of life example program from R7RS. 2 | -------------------------------------------------------------------------------- /examples/game-of-life/example/grid.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life/example/grid.sld -------------------------------------------------------------------------------- /examples/game-of-life/example/life.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life/example/life.sld -------------------------------------------------------------------------------- /examples/game-of-life/life.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/game-of-life/life.scm -------------------------------------------------------------------------------- /examples/greater-of.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/greater-of.scm -------------------------------------------------------------------------------- /examples/hello-library/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/hello-library/Makefile -------------------------------------------------------------------------------- /examples/hello-library/hello.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/hello-library/hello.scm -------------------------------------------------------------------------------- /examples/hello-library/libs/lib1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/hello-library/libs/lib1.scm -------------------------------------------------------------------------------- /examples/hello-library/libs/lib1.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/hello-library/libs/lib1.sld -------------------------------------------------------------------------------- /examples/hello-library/libs/lib2.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/hello-library/libs/lib2.sld -------------------------------------------------------------------------------- /examples/long-running-process.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/long-running-process.scm -------------------------------------------------------------------------------- /examples/networking/client.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/networking/client.scm -------------------------------------------------------------------------------- /examples/networking/http-server.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/networking/http-server.scm -------------------------------------------------------------------------------- /examples/networking/server.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/networking/server.scm -------------------------------------------------------------------------------- /examples/resolve-dependencies.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/resolve-dependencies.scm -------------------------------------------------------------------------------- /examples/tail-call-optimization.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/tail-call-optimization.scm -------------------------------------------------------------------------------- /examples/tail-call-testing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/tail-call-testing.scm -------------------------------------------------------------------------------- /examples/threading/benchmarks/bv2string-integration.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/benchmarks/bv2string-integration.scm -------------------------------------------------------------------------------- /examples/threading/benchmarks/bv2string.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/benchmarks/bv2string.scm -------------------------------------------------------------------------------- /examples/threading/benchmarks/ctak.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/benchmarks/ctak.scm -------------------------------------------------------------------------------- /examples/threading/benchmarks/paraffins.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/benchmarks/paraffins.scm -------------------------------------------------------------------------------- /examples/threading/cv-broadcast.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/cv-broadcast.scm -------------------------------------------------------------------------------- /examples/threading/many-writers.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/many-writers.scm -------------------------------------------------------------------------------- /examples/threading/parameters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/parameters.scm -------------------------------------------------------------------------------- /examples/threading/producer-consumer.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/producer-consumer.scm -------------------------------------------------------------------------------- /examples/threading/sum-atomic.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/sum-atomic.scm -------------------------------------------------------------------------------- /examples/threading/sum-mutex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/sum-mutex.scm -------------------------------------------------------------------------------- /examples/threading/sum-nosync.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/sum-nosync.scm -------------------------------------------------------------------------------- /examples/threading/thread-join.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/examples/threading/thread-join.scm -------------------------------------------------------------------------------- /ffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/ffi.c -------------------------------------------------------------------------------- /gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/gc.c -------------------------------------------------------------------------------- /generate-c.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/generate-c.scm -------------------------------------------------------------------------------- /guix/cyclone.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/guix/cyclone.scm -------------------------------------------------------------------------------- /hashset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/hashset.c -------------------------------------------------------------------------------- /icyc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/icyc.scm -------------------------------------------------------------------------------- /include/cyclone/bignum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/bignum.h -------------------------------------------------------------------------------- /include/cyclone/ck_ht_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/ck_ht_hash.h -------------------------------------------------------------------------------- /include/cyclone/hashset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/hashset.h -------------------------------------------------------------------------------- /include/cyclone/runtime-main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/runtime-main.h -------------------------------------------------------------------------------- /include/cyclone/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/runtime.h -------------------------------------------------------------------------------- /include/cyclone/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/include/cyclone/types.h -------------------------------------------------------------------------------- /libs/cyclone/concurrent.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/concurrent.sld -------------------------------------------------------------------------------- /libs/cyclone/delay-promise.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/delay-promise.scm -------------------------------------------------------------------------------- /libs/cyclone/foreign.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/foreign.sld -------------------------------------------------------------------------------- /libs/cyclone/match.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/match.sld -------------------------------------------------------------------------------- /libs/cyclone/test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/test.scm -------------------------------------------------------------------------------- /libs/cyclone/test.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/test.sld -------------------------------------------------------------------------------- /libs/cyclone/use-shared-queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/cyclone/use-shared-queue.scm -------------------------------------------------------------------------------- /libs/test-atoms.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/test-atoms.scm -------------------------------------------------------------------------------- /libs/test-foreign.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/test-foreign.scm -------------------------------------------------------------------------------- /libs/test-threads.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/libs/test-threads.scm -------------------------------------------------------------------------------- /mstreams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/mstreams.c -------------------------------------------------------------------------------- /runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/runtime.c -------------------------------------------------------------------------------- /scheme/base.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/base.sld -------------------------------------------------------------------------------- /scheme/case-lambda.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/case-lambda.sld -------------------------------------------------------------------------------- /scheme/char.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/char.sld -------------------------------------------------------------------------------- /scheme/complex.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/complex.sld -------------------------------------------------------------------------------- /scheme/cxr.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cxr.sld -------------------------------------------------------------------------------- /scheme/cyclone/ast.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/ast.sld -------------------------------------------------------------------------------- /scheme/cyclone/cgen.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/cgen.sld -------------------------------------------------------------------------------- /scheme/cyclone/common.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/common.sld -------------------------------------------------------------------------------- /scheme/cyclone/cps-opt-analyze-call-graph.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/cps-opt-analyze-call-graph.scm -------------------------------------------------------------------------------- /scheme/cyclone/cps-opt-local-var-redux.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/cps-opt-local-var-redux.scm -------------------------------------------------------------------------------- /scheme/cyclone/cps-opt-memoize-pure-fncs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/cps-opt-memoize-pure-fncs.scm -------------------------------------------------------------------------------- /scheme/cyclone/cps-optimizations.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/cps-optimizations.sld -------------------------------------------------------------------------------- /scheme/cyclone/hashset.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/hashset.sld -------------------------------------------------------------------------------- /scheme/cyclone/libraries.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/libraries.sld -------------------------------------------------------------------------------- /scheme/cyclone/macros.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/macros.sld -------------------------------------------------------------------------------- /scheme/cyclone/opti-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/opti-test.scm -------------------------------------------------------------------------------- /scheme/cyclone/pass-validate-syntax.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/pass-validate-syntax.scm -------------------------------------------------------------------------------- /scheme/cyclone/pretty-print.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/pretty-print.sld -------------------------------------------------------------------------------- /scheme/cyclone/primitives.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/primitives.sld -------------------------------------------------------------------------------- /scheme/cyclone/test-cps.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/test-cps.scm -------------------------------------------------------------------------------- /scheme/cyclone/transforms.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/transforms.sld -------------------------------------------------------------------------------- /scheme/cyclone/util.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/cyclone/util.sld -------------------------------------------------------------------------------- /scheme/eval.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/eval.sld -------------------------------------------------------------------------------- /scheme/file.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/file.sld -------------------------------------------------------------------------------- /scheme/inexact.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/inexact.sld -------------------------------------------------------------------------------- /scheme/lazy.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/lazy.sld -------------------------------------------------------------------------------- /scheme/load.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/load.sld -------------------------------------------------------------------------------- /scheme/process-context.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/process-context.sld -------------------------------------------------------------------------------- /scheme/read.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/read.sld -------------------------------------------------------------------------------- /scheme/repl.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/repl.sld -------------------------------------------------------------------------------- /scheme/time.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/time.sld -------------------------------------------------------------------------------- /scheme/write.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scheme/write.sld -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/alphabetize.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/alphabetize.scm -------------------------------------------------------------------------------- /scripts/api-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/api-update.sh -------------------------------------------------------------------------------- /scripts/check-c-formatting.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/check-c-formatting.sh -------------------------------------------------------------------------------- /scripts/convert-doc-index.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/convert-doc-index.scm -------------------------------------------------------------------------------- /scripts/fixup-api-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/fixup-api-file.sh -------------------------------------------------------------------------------- /scripts/generate-doc-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/scripts/generate-doc-index.sh -------------------------------------------------------------------------------- /srfi/1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/1.scm -------------------------------------------------------------------------------- /srfi/1.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/1.sld -------------------------------------------------------------------------------- /srfi/106.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/106.sld -------------------------------------------------------------------------------- /srfi/111.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/111.sld -------------------------------------------------------------------------------- /srfi/113.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/113.sld -------------------------------------------------------------------------------- /srfi/117.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/117.sld -------------------------------------------------------------------------------- /srfi/121.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/121.scm -------------------------------------------------------------------------------- /srfi/121.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/121.sld -------------------------------------------------------------------------------- /srfi/128.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/128.sld -------------------------------------------------------------------------------- /srfi/132.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/132.sld -------------------------------------------------------------------------------- /srfi/133.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/133.sld -------------------------------------------------------------------------------- /srfi/143.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/143.sld -------------------------------------------------------------------------------- /srfi/18.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/18.sld -------------------------------------------------------------------------------- /srfi/2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/2.scm -------------------------------------------------------------------------------- /srfi/2.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/2.sld -------------------------------------------------------------------------------- /srfi/27.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/27.sld -------------------------------------------------------------------------------- /srfi/28.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/28.scm -------------------------------------------------------------------------------- /srfi/28.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/28.sld -------------------------------------------------------------------------------- /srfi/60.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/60.scm -------------------------------------------------------------------------------- /srfi/60.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/60.sld -------------------------------------------------------------------------------- /srfi/69.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/69.sld -------------------------------------------------------------------------------- /srfi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/README.md -------------------------------------------------------------------------------- /srfi/comparators/162-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/comparators/162-impl.scm -------------------------------------------------------------------------------- /srfi/comparators/comparators-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/comparators/comparators-impl.scm -------------------------------------------------------------------------------- /srfi/comparators/comparators-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/comparators/comparators-test.scm -------------------------------------------------------------------------------- /srfi/comparators/default.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/comparators/default.scm -------------------------------------------------------------------------------- /srfi/list-queues/list-queues-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/list-queues/list-queues-impl.scm -------------------------------------------------------------------------------- /srfi/list-queues/list-queues-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/list-queues/list-queues-test.scm -------------------------------------------------------------------------------- /srfi/sets/comparators-shim.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sets/comparators-shim.scm -------------------------------------------------------------------------------- /srfi/sets/sets-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sets/sets-impl.scm -------------------------------------------------------------------------------- /srfi/sets/sets-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sets/sets-test.scm -------------------------------------------------------------------------------- /srfi/sorting/delndups.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/delndups.scm -------------------------------------------------------------------------------- /srfi/sorting/lmsort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/lmsort.scm -------------------------------------------------------------------------------- /srfi/sorting/median.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/median.scm -------------------------------------------------------------------------------- /srfi/sorting/merge.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/merge.scm -------------------------------------------------------------------------------- /srfi/sorting/select.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/select.scm -------------------------------------------------------------------------------- /srfi/sorting/sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/sort.scm -------------------------------------------------------------------------------- /srfi/sorting/sortfaster.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/sortfaster.scm -------------------------------------------------------------------------------- /srfi/sorting/sorting-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/sorting-test.scm -------------------------------------------------------------------------------- /srfi/sorting/sortp.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/sortp.scm -------------------------------------------------------------------------------- /srfi/sorting/srfi-132-test.sps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/srfi-132-test.sps -------------------------------------------------------------------------------- /srfi/sorting/vbinsearch.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vbinsearch.scm -------------------------------------------------------------------------------- /srfi/sorting/vector-util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vector-util.scm -------------------------------------------------------------------------------- /srfi/sorting/vhsort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vhsort.scm -------------------------------------------------------------------------------- /srfi/sorting/visort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/visort.scm -------------------------------------------------------------------------------- /srfi/sorting/vmsort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vmsort.scm -------------------------------------------------------------------------------- /srfi/sorting/vqsort2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vqsort2.scm -------------------------------------------------------------------------------- /srfi/sorting/vqsort3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/sorting/vqsort3.scm -------------------------------------------------------------------------------- /srfi/test-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/test-1.scm -------------------------------------------------------------------------------- /srfi/test-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/test-2.scm -------------------------------------------------------------------------------- /srfi/vectors-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/vectors-impl.scm -------------------------------------------------------------------------------- /srfi/vectors/vectors-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/srfi/vectors/vectors-test.scm -------------------------------------------------------------------------------- /sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/sync.sh -------------------------------------------------------------------------------- /test-lib-dep.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/test-lib-dep.scm -------------------------------------------------------------------------------- /test-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/test-lib.c -------------------------------------------------------------------------------- /tests/array1-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/array1-test.scm -------------------------------------------------------------------------------- /tests/base.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/base.scm -------------------------------------------------------------------------------- /tests/benchmarks/lattice-csc-cps-opt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/benchmarks/lattice-csc-cps-opt.scm -------------------------------------------------------------------------------- /tests/benchmarks/lattice-csc-cps.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/benchmarks/lattice-csc-cps.scm -------------------------------------------------------------------------------- /tests/benchmarks/lattice-o2-ana.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/benchmarks/lattice-o2-ana.txt -------------------------------------------------------------------------------- /tests/bignum-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/bignum-test.scm -------------------------------------------------------------------------------- /tests/bytevector-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/bytevector-tests.scm -------------------------------------------------------------------------------- /tests/c-compiler-options.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/c-compiler-options.scm -------------------------------------------------------------------------------- /tests/debug/ack-gmon-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/ack-gmon-analysis.txt -------------------------------------------------------------------------------- /tests/debug/api-testing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/api-testing.scm -------------------------------------------------------------------------------- /tests/debug/compilation/beta-contraction-notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/beta-contraction-notes.txt -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-chicken-clo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-chicken-clo.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-chicken-cps-after-opt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-chicken-cps-after-opt.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-chicken-cps.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-chicken-cps.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-chicken.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-chicken.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-cyclone-clo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-cyclone-clo.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens-cyclone-cps.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens-cyclone-cps.scm -------------------------------------------------------------------------------- /tests/debug/compilation/nqueens.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/nqueens.scm -------------------------------------------------------------------------------- /tests/debug/compilation/simple.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/simple.scm -------------------------------------------------------------------------------- /tests/debug/compilation/tmp.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compilation/tmp.scm -------------------------------------------------------------------------------- /tests/debug/compiler-benchmark-debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compiler-benchmark-debug.txt -------------------------------------------------------------------------------- /tests/debug/compiler-int-dev.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/compiler-int-dev.scm -------------------------------------------------------------------------------- /tests/debug/cps-analysis/find-named-lets.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/cps-analysis/find-named-lets.scm -------------------------------------------------------------------------------- /tests/debug/cps-opt-analyze-call-graph-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/cps-opt-analyze-call-graph-test.scm -------------------------------------------------------------------------------- /tests/debug/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/debug.sh -------------------------------------------------------------------------------- /tests/debug/diviter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/diviter/Makefile -------------------------------------------------------------------------------- /tests/debug/diviter/diviter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/diviter/diviter.c -------------------------------------------------------------------------------- /tests/debug/diviter/diviter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/diviter/diviter.scm -------------------------------------------------------------------------------- /tests/debug/earley-gmon-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/earley-gmon-analysis.txt -------------------------------------------------------------------------------- /tests/debug/find-direct-rec-calls.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/find-direct-rec-calls.scm -------------------------------------------------------------------------------- /tests/debug/find-known-lambdas.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/find-known-lambdas.scm -------------------------------------------------------------------------------- /tests/debug/flatten-seq.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/flatten-seq.scm -------------------------------------------------------------------------------- /tests/debug/gcbench-gmon-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/gcbench-gmon-analysis.txt -------------------------------------------------------------------------------- /tests/debug/kons.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/kons.scm -------------------------------------------------------------------------------- /tests/debug/macro-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/macro-test.scm -------------------------------------------------------------------------------- /tests/debug/macro-testing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/macro-testing.scm -------------------------------------------------------------------------------- /tests/debug/match-test2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/match-test2.scm -------------------------------------------------------------------------------- /tests/debug/maze-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/maze-analysis.txt -------------------------------------------------------------------------------- /tests/debug/maze-cps-opt.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/maze-cps-opt.scm -------------------------------------------------------------------------------- /tests/debug/maze-csc.c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/maze-csc.c.txt -------------------------------------------------------------------------------- /tests/debug/maze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/maze.txt -------------------------------------------------------------------------------- /tests/debug/mbrot-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/mbrot-analysis.txt -------------------------------------------------------------------------------- /tests/debug/mbrot-csc-opt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/mbrot-csc-opt.txt -------------------------------------------------------------------------------- /tests/debug/mbrot-cyc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/mbrot-cyc.txt -------------------------------------------------------------------------------- /tests/debug/memo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/memo.scm -------------------------------------------------------------------------------- /tests/debug/sboyer-csc.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/sboyer-csc.scm -------------------------------------------------------------------------------- /tests/debug/sboyer-cyc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/sboyer-cyc.txt -------------------------------------------------------------------------------- /tests/debug/seq-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/seq-test.scm -------------------------------------------------------------------------------- /tests/debug/test-ck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test-ck.c -------------------------------------------------------------------------------- /tests/debug/test-find-loop.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test-find-loop.scm -------------------------------------------------------------------------------- /tests/debug/test-fixnum-packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test-fixnum-packing.c -------------------------------------------------------------------------------- /tests/debug/test-let-values.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test-let-values.scm -------------------------------------------------------------------------------- /tests/debug/test-sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test-sizes.c -------------------------------------------------------------------------------- /tests/debug/test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test.scm -------------------------------------------------------------------------------- /tests/debug/test2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/test2.scm -------------------------------------------------------------------------------- /tests/debug/unit-test-trans.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/debug/unit-test-trans.scm -------------------------------------------------------------------------------- /tests/define-c-testing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/define-c-testing.scm -------------------------------------------------------------------------------- /tests/experimental/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/experimental/Makefile -------------------------------------------------------------------------------- /tests/experimental/fac-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/experimental/fac-test.scm -------------------------------------------------------------------------------- /tests/let-syntax-298.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/let-syntax-298.scm -------------------------------------------------------------------------------- /tests/macro-hygiene.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/macro-hygiene.scm -------------------------------------------------------------------------------- /tests/match-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/match-tests.scm -------------------------------------------------------------------------------- /tests/prof/ack-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/ack-analysis.txt -------------------------------------------------------------------------------- /tests/prof/browse-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/browse-analysis.txt -------------------------------------------------------------------------------- /tests/prof/bv2string-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/bv2string-analysis.txt -------------------------------------------------------------------------------- /tests/prof/diviter-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/diviter-analysis.txt -------------------------------------------------------------------------------- /tests/prof/nboyer-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/nboyer-analysis.txt -------------------------------------------------------------------------------- /tests/prof/pi-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/pi-analysis.txt -------------------------------------------------------------------------------- /tests/prof/read1-analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/prof/read1-analysis.txt -------------------------------------------------------------------------------- /tests/srfi-121-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/srfi-121-tests.scm -------------------------------------------------------------------------------- /tests/srfi-128-162-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/srfi-128-162-tests.scm -------------------------------------------------------------------------------- /tests/srfi-143-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/srfi-143-tests.scm -------------------------------------------------------------------------------- /tests/srfi-28-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/srfi-28-tests.scm -------------------------------------------------------------------------------- /tests/srfi-60-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/srfi-60-tests.scm -------------------------------------------------------------------------------- /tests/test-lib/test.sld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/test-lib/test.sld -------------------------------------------------------------------------------- /tests/test-shared-queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/test-shared-queue.scm -------------------------------------------------------------------------------- /tests/test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/test.scm -------------------------------------------------------------------------------- /tests/threading.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/threading.scm -------------------------------------------------------------------------------- /tests/unit-tests.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/unit-tests.scm -------------------------------------------------------------------------------- /tests/when.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/tests/when.scm -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/LICENSE -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/README.md -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/appveyor.yml -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/astylerc -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_cutoffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_cutoffs.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_deprecated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_deprecated.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_2expt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_2expt.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_abs.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_add.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_add_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_add_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_addmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_addmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_and.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_and.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_clamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_clamp.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_clear.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_clear_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_clear_multi.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_cmp.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_cmp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_cmp_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_cmp_mag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_cmp_mag.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_cnt_lsb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_cnt_lsb.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_complement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_complement.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_copy.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_count_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_count_bits.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_decr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_decr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_div.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_div_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_div_2.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_div_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_div_2d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_div_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_div_3.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_div_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_div_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_dr_is_modulus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_dr_is_modulus.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_dr_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_dr_reduce.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_dr_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_dr_setup.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_error_to_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_error_to_string.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_exch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_exch.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_expt_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_expt_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_exptmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_exptmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_exteuclid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_exteuclid.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_fread.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_from_sbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_from_sbin.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_from_ubin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_from_ubin.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_fwrite.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_gcd.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_double.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_i32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_i64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_ll.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_mag_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_mag_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_mag_u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_mag_u64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_mag_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_mag_ul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_get_mag_ull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_get_mag_ull.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_grow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_grow.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_incr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_incr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_copy.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_i32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_i64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_ll.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_multi.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_set.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_size.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_u64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_ul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_init_ull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_init_ull.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_invmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_invmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_is_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_is_square.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_iseven.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_iseven.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_isodd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_isodd.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_kronecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_kronecker.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_lcm.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_log_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_log_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_lshd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_lshd.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mod_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mod_2d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mod_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mod_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_montgomery_calc_normalization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_montgomery_calc_normalization.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_montgomery_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_montgomery_reduce.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_montgomery_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_montgomery_setup.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mul_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mul_2.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mul_2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mul_2d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mul_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mul_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_mulmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_mulmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_neg.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_or.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_or.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_pack.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_pack_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_pack_count.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_fermat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_fermat.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_frobenius_underwood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_frobenius_underwood.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_is_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_is_prime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_miller_rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_miller_rabin.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_next_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_next_prime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_rabin_miller_trials.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_rabin_miller_trials.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_rand.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_prime_strong_lucas_selfridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_prime_strong_lucas_selfridge.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_radix_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_radix_size.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_radix_smap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_radix_smap.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_rand.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_read_radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_read_radix.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_2k.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_2k_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_2k_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_2k_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_2k_setup.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_2k_setup_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_2k_setup_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_is_2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_is_2k.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_is_2k_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_is_2k_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_reduce_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_reduce_setup.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_root_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_root_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_rshd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_rshd.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sbin_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sbin_size.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_double.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_i32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_i32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_i64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_i64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_l.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_ll.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_u32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_u32.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_u64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_u64.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_ul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_ul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_set_ull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_set_ull.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_shrink.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_signed_rsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_signed_rsh.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sqr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sqrmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sqrmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sqrt.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sqrtmod_prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sqrtmod_prime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sub.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_sub_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_sub_d.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_submod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_submod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_to_radix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_to_radix.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_to_sbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_to_sbin.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_to_ubin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_to_ubin.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_ubin_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_ubin_size.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_unpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_unpack.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_xor.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_mp_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_mp_zero.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_prime_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_prime_tab.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_add.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_balance_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_balance_mul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_exptmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_exptmod.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_exptmod_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_exptmod_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_get_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_get_bit.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_invmod_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_invmod_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_invmod_slow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_invmod_slow.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_karatsuba_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_karatsuba_mul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_karatsuba_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_karatsuba_sqr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_montgomery_reduce_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_montgomery_reduce_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_mul_digs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_mul_digs.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_mul_digs_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_mul_digs_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_mul_high_digs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_mul_high_digs.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_mul_high_digs_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_mul_high_digs_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_prime_is_divisible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_prime_is_divisible.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_rand_jenkins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_rand_jenkins.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_rand_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_rand_platform.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_reverse.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_sqr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_sqr_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_sqr_fast.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_sub.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_toom_mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_toom_mul.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/bn_s_mp_toom_sqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/bn_s_mp_toom_sqr.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/changes.txt -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/demo/mtest_opponent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/demo/mtest_opponent.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/demo/shared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/demo/shared.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/demo/shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/demo/shared.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/demo/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/demo/test.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/demo/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/demo/timing.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/doc/bn.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/doc/bn.tex -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/doc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/doc/makefile -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/2kprime.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/2kprime.1 -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/2kprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/2kprime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/drprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/drprime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/drprimes.28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/drprimes.28 -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/drprimes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/drprimes.txt -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/makefile -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/makefile.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/makefile.icc -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/makefile.msvc -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/mersenne.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/mersenne.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/mont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/mont.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/pprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/pprime.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/prime.1024: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/prime.1024 -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/prime.512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/prime.512 -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/timer.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/timer.asm -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/tune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/tune.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/etc/tune_it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/etc/tune_it.sh -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/gen.pl -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/helper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/helper.pl -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/libtommath.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/libtommath.pc.in -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/libtommath_VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/libtommath_VS2008.sln -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/libtommath_VS2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/libtommath_VS2008.vcproj -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | gnuplot graphs.dem 3 | -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/README -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/add.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/add.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/addsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/addsub.png -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/expt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/expt.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/expt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/expt.png -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/expt_2k.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/expt_2k.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/expt_2kl.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/expt_2kl.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/expt_dr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/expt_dr.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/graphs.dem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/graphs.dem -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/index.html -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/invmod.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/invmod.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/invmod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/invmod.png -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/mult.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/mult.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/mult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/mult.png -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/mult_kara.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/mult_kara.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/sqr.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/sqr.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/sqr_kara.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/sqr_kara.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/logs/sub.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/logs/sub.log -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile.mingw -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile.msvc -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile.shared: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile.shared -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile.unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile.unix -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/makefile_include.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/makefile_include.mk -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/logtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/logtab.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/mpi-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/mpi-config.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/mpi-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/mpi-types.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/mpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/mpi.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/mpi.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/mtest/mtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/mtest/mtest.c -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/testme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/testme.sh -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath.def -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath_class.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath_cutoffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath_cutoffs.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath_private.h -------------------------------------------------------------------------------- /third-party/libtommath-1.2.0/tommath_superclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinethier/cyclone/HEAD/third-party/libtommath-1.2.0/tommath_superclass.h --------------------------------------------------------------------------------