├── .gitignore ├── COPYING ├── README.md ├── autotest ├── atan2_cordic_autotest.h ├── autotest.c ├── autotest.h ├── autotestgen.c ├── cqtype_add_autotest.h ├── cqtype_mul_autotest.h ├── cqtype_trig_autotest.h ├── exp2_shiftadd_autotest.h ├── inv_newton_autotest.h ├── libversion_autotest.h ├── log2_shiftadd_autotest.h ├── qtype_add_autotest.h ├── qtype_constants_autotest.h ├── qtype_div_autotest.h ├── qtype_div_inv_newton_autotest.h ├── qtype_mul_autotest.h ├── qtype_sub_autotest.h ├── sinc_autotest.h ├── sincos_cordic_autotest.h ├── sinhcosh_cordic_autotest.h └── sqrt_newton_autotest.h ├── bench ├── bench.c ├── benchmarkgen.c ├── q32_atan2_benchmark.h ├── q32_log2_benchmark.h ├── q32_log2_shiftadd_benchmark.h ├── q32_sin_benchmark.h └── q32_sqrt_newton_benchmark.h ├── bootstrap.sh ├── configure.ac ├── depreciated ├── atan_table_q32_32_8.c ├── cq32.c ├── log.c ├── log2_fraction_table_256.c ├── log2_fraction_table_32.c └── sin_table_q32_256.c ├── doc ├── .gitignore ├── liquid-fpm.tex ├── listings │ ├── .gitignore │ └── q32.example.c ├── makefile └── sections │ └── qtype.arithmetic.tex ├── fpmtest.c ├── genlib ├── .gitignore ├── qtype.mul.intelmac.s ├── qtype.mul.ppc.s ├── qtype.mul.x86.s ├── qtype.mul.x86_64.s └── qtype.s.gen.c ├── gentab ├── .gitignore ├── gentab.atan2.pwpolyfit.c ├── gentab.constants.c ├── gentab.logexp.polyfit.c ├── gentab.logexp.shiftadd.c ├── gentab.logsin.c ├── gentab.math.transcendentals.c ├── gentab.sincos.cordic.c ├── gentab.sincos.pwpoly.c └── gentab.sinhcosh.cordic.c ├── include ├── liquidfpm.h └── liquidfpm.internal.h ├── makefile.in ├── sandbox ├── atan2.cordic.test.c ├── exp.shiftadd.test.c ├── log.shiftadd.test.c ├── loglogbesseli0.pwpoly.test.c ├── makefile ├── q32_atan2.cordic.test.c ├── q32_exp.shiftadd.test.c ├── q32_log.shiftadd.test.c ├── q32_loglogbesseli0.pwpoly.test.c ├── q32_sincos.cordic.test.c ├── q32_sinhcosh.cordic.test.c ├── sincos.cordic.test.c └── sinhcosh.cordic.test.c ├── scripts ├── config.guess ├── config.sub └── install-sh ├── src ├── atan.cordic.c ├── atan.pwpolyfit.c ├── complex_arithmetic.c ├── complex_conversion.c ├── complex_log.c ├── complex_trig.c ├── exp2.polyfit.c ├── exp2.shiftadd.c ├── inv.newton.c ├── kaiser.c ├── libliquidfpm.c ├── log2.polyfit.c ├── log2.shiftadd.c ├── loglogbesseli0.pwpoly.c ├── math.transcendentals.c ├── qfloat.c ├── qtype_div.inv.newton.c ├── qtype_div.port.c ├── qtype_dotprod.port.c ├── qtype_mul.port.c ├── ratio.c ├── sincos.cordic.c ├── sincos.pwpolyfit.c ├── sinhcosh.cordic.c ├── sqrt.logexp.c ├── sqrt.newton.c └── utility.c └── testing ├── liquidfpm_atan_compact.m ├── liquidfpm_atan_pwpoly_test.m ├── liquidfpm_atanlog2.m ├── liquidfpm_sin.m ├── loglogbesseli0_test.m └── piecewise_poly_fit.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/README.md -------------------------------------------------------------------------------- /autotest/atan2_cordic_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/atan2_cordic_autotest.h -------------------------------------------------------------------------------- /autotest/autotest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/autotest.c -------------------------------------------------------------------------------- /autotest/autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/autotest.h -------------------------------------------------------------------------------- /autotest/autotestgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/autotestgen.c -------------------------------------------------------------------------------- /autotest/cqtype_add_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/cqtype_add_autotest.h -------------------------------------------------------------------------------- /autotest/cqtype_mul_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/cqtype_mul_autotest.h -------------------------------------------------------------------------------- /autotest/cqtype_trig_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/cqtype_trig_autotest.h -------------------------------------------------------------------------------- /autotest/exp2_shiftadd_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/exp2_shiftadd_autotest.h -------------------------------------------------------------------------------- /autotest/inv_newton_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/inv_newton_autotest.h -------------------------------------------------------------------------------- /autotest/libversion_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/libversion_autotest.h -------------------------------------------------------------------------------- /autotest/log2_shiftadd_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/log2_shiftadd_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_add_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_add_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_constants_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_constants_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_div_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_div_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_div_inv_newton_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_div_inv_newton_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_mul_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_mul_autotest.h -------------------------------------------------------------------------------- /autotest/qtype_sub_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/qtype_sub_autotest.h -------------------------------------------------------------------------------- /autotest/sinc_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/sinc_autotest.h -------------------------------------------------------------------------------- /autotest/sincos_cordic_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/sincos_cordic_autotest.h -------------------------------------------------------------------------------- /autotest/sinhcosh_cordic_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/sinhcosh_cordic_autotest.h -------------------------------------------------------------------------------- /autotest/sqrt_newton_autotest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/autotest/sqrt_newton_autotest.h -------------------------------------------------------------------------------- /bench/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/bench.c -------------------------------------------------------------------------------- /bench/benchmarkgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/benchmarkgen.c -------------------------------------------------------------------------------- /bench/q32_atan2_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/q32_atan2_benchmark.h -------------------------------------------------------------------------------- /bench/q32_log2_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/q32_log2_benchmark.h -------------------------------------------------------------------------------- /bench/q32_log2_shiftadd_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/q32_log2_shiftadd_benchmark.h -------------------------------------------------------------------------------- /bench/q32_sin_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/q32_sin_benchmark.h -------------------------------------------------------------------------------- /bench/q32_sqrt_newton_benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bench/q32_sqrt_newton_benchmark.h -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/configure.ac -------------------------------------------------------------------------------- /depreciated/atan_table_q32_32_8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/atan_table_q32_32_8.c -------------------------------------------------------------------------------- /depreciated/cq32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/cq32.c -------------------------------------------------------------------------------- /depreciated/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/log.c -------------------------------------------------------------------------------- /depreciated/log2_fraction_table_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/log2_fraction_table_256.c -------------------------------------------------------------------------------- /depreciated/log2_fraction_table_32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/log2_fraction_table_32.c -------------------------------------------------------------------------------- /depreciated/sin_table_q32_256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/depreciated/sin_table_q32_256.c -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/liquid-fpm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/doc/liquid-fpm.tex -------------------------------------------------------------------------------- /doc/listings/.gitignore: -------------------------------------------------------------------------------- 1 | *.tex 2 | -------------------------------------------------------------------------------- /doc/listings/q32.example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/doc/listings/q32.example.c -------------------------------------------------------------------------------- /doc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/doc/makefile -------------------------------------------------------------------------------- /doc/sections/qtype.arithmetic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/doc/sections/qtype.arithmetic.tex -------------------------------------------------------------------------------- /fpmtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/fpmtest.c -------------------------------------------------------------------------------- /genlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/.gitignore -------------------------------------------------------------------------------- /genlib/qtype.mul.intelmac.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/qtype.mul.intelmac.s -------------------------------------------------------------------------------- /genlib/qtype.mul.ppc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/qtype.mul.ppc.s -------------------------------------------------------------------------------- /genlib/qtype.mul.x86.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/qtype.mul.x86.s -------------------------------------------------------------------------------- /genlib/qtype.mul.x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/qtype.mul.x86_64.s -------------------------------------------------------------------------------- /genlib/qtype.s.gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/genlib/qtype.s.gen.c -------------------------------------------------------------------------------- /gentab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/.gitignore -------------------------------------------------------------------------------- /gentab/gentab.atan2.pwpolyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.atan2.pwpolyfit.c -------------------------------------------------------------------------------- /gentab/gentab.constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.constants.c -------------------------------------------------------------------------------- /gentab/gentab.logexp.polyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.logexp.polyfit.c -------------------------------------------------------------------------------- /gentab/gentab.logexp.shiftadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.logexp.shiftadd.c -------------------------------------------------------------------------------- /gentab/gentab.logsin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.logsin.c -------------------------------------------------------------------------------- /gentab/gentab.math.transcendentals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.math.transcendentals.c -------------------------------------------------------------------------------- /gentab/gentab.sincos.cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.sincos.cordic.c -------------------------------------------------------------------------------- /gentab/gentab.sincos.pwpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.sincos.pwpoly.c -------------------------------------------------------------------------------- /gentab/gentab.sinhcosh.cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/gentab/gentab.sinhcosh.cordic.c -------------------------------------------------------------------------------- /include/liquidfpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/include/liquidfpm.h -------------------------------------------------------------------------------- /include/liquidfpm.internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/include/liquidfpm.internal.h -------------------------------------------------------------------------------- /makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/makefile.in -------------------------------------------------------------------------------- /sandbox/atan2.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/atan2.cordic.test.c -------------------------------------------------------------------------------- /sandbox/exp.shiftadd.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/exp.shiftadd.test.c -------------------------------------------------------------------------------- /sandbox/log.shiftadd.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/log.shiftadd.test.c -------------------------------------------------------------------------------- /sandbox/loglogbesseli0.pwpoly.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/loglogbesseli0.pwpoly.test.c -------------------------------------------------------------------------------- /sandbox/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/makefile -------------------------------------------------------------------------------- /sandbox/q32_atan2.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_atan2.cordic.test.c -------------------------------------------------------------------------------- /sandbox/q32_exp.shiftadd.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_exp.shiftadd.test.c -------------------------------------------------------------------------------- /sandbox/q32_log.shiftadd.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_log.shiftadd.test.c -------------------------------------------------------------------------------- /sandbox/q32_loglogbesseli0.pwpoly.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_loglogbesseli0.pwpoly.test.c -------------------------------------------------------------------------------- /sandbox/q32_sincos.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_sincos.cordic.test.c -------------------------------------------------------------------------------- /sandbox/q32_sinhcosh.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/q32_sinhcosh.cordic.test.c -------------------------------------------------------------------------------- /sandbox/sincos.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/sincos.cordic.test.c -------------------------------------------------------------------------------- /sandbox/sinhcosh.cordic.test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/sandbox/sinhcosh.cordic.test.c -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/scripts/install-sh -------------------------------------------------------------------------------- /src/atan.cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/atan.cordic.c -------------------------------------------------------------------------------- /src/atan.pwpolyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/atan.pwpolyfit.c -------------------------------------------------------------------------------- /src/complex_arithmetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/complex_arithmetic.c -------------------------------------------------------------------------------- /src/complex_conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/complex_conversion.c -------------------------------------------------------------------------------- /src/complex_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/complex_log.c -------------------------------------------------------------------------------- /src/complex_trig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/complex_trig.c -------------------------------------------------------------------------------- /src/exp2.polyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/exp2.polyfit.c -------------------------------------------------------------------------------- /src/exp2.shiftadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/exp2.shiftadd.c -------------------------------------------------------------------------------- /src/inv.newton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/inv.newton.c -------------------------------------------------------------------------------- /src/kaiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/kaiser.c -------------------------------------------------------------------------------- /src/libliquidfpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/libliquidfpm.c -------------------------------------------------------------------------------- /src/log2.polyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/log2.polyfit.c -------------------------------------------------------------------------------- /src/log2.shiftadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/log2.shiftadd.c -------------------------------------------------------------------------------- /src/loglogbesseli0.pwpoly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/loglogbesseli0.pwpoly.c -------------------------------------------------------------------------------- /src/math.transcendentals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/math.transcendentals.c -------------------------------------------------------------------------------- /src/qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/qfloat.c -------------------------------------------------------------------------------- /src/qtype_div.inv.newton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/qtype_div.inv.newton.c -------------------------------------------------------------------------------- /src/qtype_div.port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/qtype_div.port.c -------------------------------------------------------------------------------- /src/qtype_dotprod.port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/qtype_dotprod.port.c -------------------------------------------------------------------------------- /src/qtype_mul.port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/qtype_mul.port.c -------------------------------------------------------------------------------- /src/ratio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/ratio.c -------------------------------------------------------------------------------- /src/sincos.cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/sincos.cordic.c -------------------------------------------------------------------------------- /src/sincos.pwpolyfit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/sincos.pwpolyfit.c -------------------------------------------------------------------------------- /src/sinhcosh.cordic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/sinhcosh.cordic.c -------------------------------------------------------------------------------- /src/sqrt.logexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/sqrt.logexp.c -------------------------------------------------------------------------------- /src/sqrt.newton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/sqrt.newton.c -------------------------------------------------------------------------------- /src/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/src/utility.c -------------------------------------------------------------------------------- /testing/liquidfpm_atan_compact.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/liquidfpm_atan_compact.m -------------------------------------------------------------------------------- /testing/liquidfpm_atan_pwpoly_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/liquidfpm_atan_pwpoly_test.m -------------------------------------------------------------------------------- /testing/liquidfpm_atanlog2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/liquidfpm_atanlog2.m -------------------------------------------------------------------------------- /testing/liquidfpm_sin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/liquidfpm_sin.m -------------------------------------------------------------------------------- /testing/loglogbesseli0_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/loglogbesseli0_test.m -------------------------------------------------------------------------------- /testing/piecewise_poly_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgaeddert/liquid-fpm/HEAD/testing/piecewise_poly_fit.m --------------------------------------------------------------------------------