├── .gitattributes ├── .gitignore ├── BTCGen.vbp ├── CBTCGenerator.cls ├── README.md ├── frmMain.frm ├── hashlibvb.dll ├── hashlibvb ├── Coin25519 │ ├── spec │ │ ├── PatriciaTrie.v │ │ ├── Script.v │ │ ├── Statistics.tm │ │ └── primeCerts │ │ │ ├── prime57896044618658097711785492504343953926634992332820282019728792003956564819949.v │ │ │ └── prime7237005577332262213973186563042994240857116359379907606001950938285454250989.v │ └── src │ │ └── crypto │ │ ├── ed25519 │ │ ├── Makefile │ │ ├── SCHEME │ │ ├── amd64-51-30k │ │ │ ├── LICENSE │ │ │ ├── api.h │ │ │ ├── architectures │ │ │ ├── choose_t.s │ │ │ ├── consts.s │ │ │ ├── fe25519.h │ │ │ ├── fe25519_add.c │ │ │ ├── fe25519_freeze.s │ │ │ ├── fe25519_getparity.c │ │ │ ├── fe25519_invert.c │ │ │ ├── fe25519_iseq.c │ │ │ ├── fe25519_iszero.c │ │ │ ├── fe25519_mul.s │ │ │ ├── fe25519_neg.c │ │ │ ├── fe25519_nsquare.s │ │ │ ├── fe25519_pack.c │ │ │ ├── fe25519_pow2523.c │ │ │ ├── fe25519_setint.c │ │ │ ├── fe25519_square.s │ │ │ ├── fe25519_sub.c │ │ │ ├── fe25519_unpack.c │ │ │ ├── ge25519.h │ │ │ ├── ge25519_add.c │ │ │ ├── ge25519_add_p1p1.s │ │ │ ├── ge25519_base.c │ │ │ ├── ge25519_base_niels_smalltables.data │ │ │ ├── ge25519_base_slide_multiples.data │ │ │ ├── ge25519_dbl_p1p1.s │ │ │ ├── ge25519_double.c │ │ │ ├── ge25519_double_scalarmult.c │ │ │ ├── ge25519_isneutral.c │ │ │ ├── ge25519_nielsadd2.s │ │ │ ├── ge25519_nielsadd_p1p1.s │ │ │ ├── ge25519_p1p1_to_p2.s │ │ │ ├── ge25519_p1p1_to_p3.s │ │ │ ├── ge25519_p1p1_to_pniels.s │ │ │ ├── ge25519_pack.c │ │ │ ├── ge25519_pnielsadd_p1p1.s │ │ │ ├── ge25519_scalarmult_base.c │ │ │ ├── ge25519_unpackneg.c │ │ │ ├── implementors │ │ │ ├── sc25519.h │ │ │ ├── sc25519_add.s │ │ │ ├── sc25519_barrett.s │ │ │ ├── sc25519_from32bytes.c │ │ │ ├── sc25519_from64bytes.c │ │ │ ├── sc25519_from_shortsc.c │ │ │ ├── sc25519_iszero.c │ │ │ ├── sc25519_lt.s │ │ │ ├── sc25519_mul.c │ │ │ ├── sc25519_mul_shortsc.c │ │ │ ├── sc25519_slide.c │ │ │ ├── sc25519_sub_nored.s │ │ │ ├── sc25519_to32bytes.c │ │ │ ├── sc25519_window4.c │ │ │ └── ull4_mul.s │ │ ├── amd64-64-24k │ │ │ ├── LICENSE │ │ │ ├── architectures │ │ │ ├── choose_t.s │ │ │ ├── consts.s │ │ │ ├── fe25519.h │ │ │ ├── fe25519_add.s │ │ │ ├── fe25519_freeze.s │ │ │ ├── fe25519_getparity.c │ │ │ ├── fe25519_invert.c │ │ │ ├── fe25519_iseq.c │ │ │ ├── fe25519_iszero.c │ │ │ ├── fe25519_mul.s │ │ │ ├── fe25519_neg.c │ │ │ ├── fe25519_pack.c │ │ │ ├── fe25519_pow2523.c │ │ │ ├── fe25519_setint.c │ │ │ ├── fe25519_square.s │ │ │ ├── fe25519_sub.s │ │ │ ├── fe25519_unpack.c │ │ │ ├── ge25519.h │ │ │ ├── ge25519_add.c │ │ │ ├── ge25519_add_p1p1.s │ │ │ ├── ge25519_base.c │ │ │ ├── ge25519_base_niels_smalltables.data │ │ │ ├── ge25519_base_slide_multiples.data │ │ │ ├── ge25519_dbl_p1p1.s │ │ │ ├── ge25519_double.c │ │ │ ├── ge25519_double_scalarmult.c │ │ │ ├── ge25519_isneutral.c │ │ │ ├── ge25519_nielsadd2.s │ │ │ ├── ge25519_nielsadd_p1p1.s │ │ │ ├── ge25519_p1p1_to_p2.s │ │ │ ├── ge25519_p1p1_to_p3.s │ │ │ ├── ge25519_pack.c │ │ │ ├── ge25519_pnielsadd_p1p1.s │ │ │ ├── ge25519_scalarmult_base.c │ │ │ ├── ge25519_unpackneg.c │ │ │ ├── implementors │ │ │ ├── sc25519.h │ │ │ ├── sc25519_add.s │ │ │ ├── sc25519_barrett.s │ │ │ ├── sc25519_from32bytes.c │ │ │ ├── sc25519_from64bytes.c │ │ │ ├── sc25519_from_shortsc.c │ │ │ ├── sc25519_iszero.c │ │ │ ├── sc25519_lt.s │ │ │ ├── sc25519_mul.c │ │ │ ├── sc25519_mul_shortsc.c │ │ │ ├── sc25519_slide.c │ │ │ ├── sc25519_sub_nored.s │ │ │ ├── sc25519_to32bytes.c │ │ │ ├── sc25519_window4.c │ │ │ └── ull4_mul.s │ │ ├── lib │ │ ├── ref │ │ │ ├── LICENSE │ │ │ ├── crypto_uint32.h │ │ │ ├── fe25519.c │ │ │ ├── fe25519.h │ │ │ ├── ge25519.c │ │ │ ├── ge25519.h │ │ │ ├── ge25519_base.data │ │ │ ├── sc25519.c │ │ │ └── sc25519.h │ │ ├── sign.c │ │ ├── sign.h │ │ └── test.c │ │ ├── ripemd160.c │ │ ├── ripemd160.h │ │ ├── sha256.c │ │ ├── sha256.h │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── test-ripemd160.c │ │ ├── test-sha256.c │ │ └── test-sha512.c ├── README.md ├── Release │ └── hashlibvb.dll ├── common.h ├── hashlibvb.sln ├── hashlibvb.suo ├── hashlibvb.vcxproj ├── hashlibvb.vcxproj.filters ├── hashlibvb.vcxproj.user └── libdef.def ├── libsecp256k1vb.dll ├── mpir-2.6.0 ├── .gdbinit ├── AUTHORS ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── INSTALL.autoconf ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── acinclude.m4 ├── aclocal.m4 ├── assert.c ├── build.vc10 │ ├── Win32 │ │ └── Release │ │ │ └── mpir.lib │ ├── add.express.py │ ├── cfg.h │ ├── config.guess.c │ ├── dll_mpir_core2 │ │ ├── dll_mpir_core2.vcxproj │ │ ├── dll_mpir_core2.vcxproj.filters │ │ └── dll_mpir_core2.vcxproj.user │ ├── dll_mpir_gc │ │ ├── dll_mpir_gc.vcxproj │ │ ├── dll_mpir_gc.vcxproj.filters │ │ └── dll_mpir_gc.vcxproj.user │ ├── dll_mpir_k8 │ │ ├── dll_mpir_k8.vcxproj │ │ ├── dll_mpir_k8.vcxproj.filters │ │ └── dll_mpir_k8.vcxproj.user │ ├── dll_mpir_nehalem │ │ ├── dll_mpir_nehalem.vcxproj │ │ ├── dll_mpir_nehalem.vcxproj.filters │ │ └── dll_mpir_nehalem.vcxproj.user │ ├── g2y.py │ ├── gen_config_h.bat │ ├── gen_mpir_h.bat │ ├── getopt.c │ ├── getopt.h │ ├── getrusage.c │ ├── getrusage.h │ ├── gettimeofday.c │ ├── gettimeofday.h │ ├── gmp-mparam.h │ ├── lib_mpir_core2 │ │ ├── lib_mpir_core2.vcxproj │ │ ├── lib_mpir_core2.vcxproj.filters │ │ └── lib_mpir_core2.vcxproj.user │ ├── lib_mpir_cxx │ │ ├── lib_mpir_cxx.vcxproj │ │ ├── lib_mpir_cxx.vcxproj.filters │ │ └── lib_mpir_cxx.vcxproj.user │ ├── lib_mpir_gc │ │ ├── lib_mpir_gc.vcxproj │ │ ├── lib_mpir_gc.vcxproj.filters │ │ └── lib_mpir_gc.vcxproj.user │ ├── lib_mpir_k8 │ │ ├── lib_mpir_k8.vcxproj │ │ ├── lib_mpir_k8.vcxproj.filters │ │ └── lib_mpir_k8.vcxproj.user │ ├── lib_mpir_nehalem │ │ ├── lib_mpir_nehalem.vcxproj │ │ ├── lib_mpir_nehalem.vcxproj.filters │ │ └── lib_mpir_nehalem.vcxproj.user │ ├── lib_speed │ │ ├── lib_speed.vcxproj │ │ └── lib_speed.vcxproj.filters │ ├── mpir-tests.sln │ ├── mpir-tests │ │ ├── add-test-lib │ │ │ ├── add-test-lib.vcxproj │ │ │ └── add-test-lib.vcxproj.filters │ │ ├── bswap │ │ │ └── bswap.vcxproj │ │ ├── check_config.bat │ │ ├── constants │ │ │ └── constants.vcxproj │ │ ├── count_zeros │ │ │ └── count_zeros.vcxproj │ │ ├── cxx.assign │ │ │ └── cxx.assign.vcxproj │ │ ├── cxx.binary │ │ │ └── cxx.binary.vcxproj │ │ ├── cxx.cast │ │ │ └── cxx.cast.vcxproj │ │ ├── cxx.constr │ │ │ └── cxx.constr.vcxproj │ │ ├── cxx.headers │ │ │ └── cxx.headers.vcxproj │ │ ├── cxx.istream │ │ │ └── cxx.istream.vcxproj │ │ ├── cxx.locale │ │ │ └── cxx.locale.vcxproj │ │ ├── cxx.misc │ │ │ └── cxx.misc.vcxproj │ │ ├── cxx.ops │ │ │ └── cxx.ops.vcxproj │ │ ├── cxx.ostream │ │ │ └── cxx.ostream.vcxproj │ │ ├── cxx.prec │ │ │ └── cxx.prec.vcxproj │ │ ├── cxx.rand │ │ │ └── cxx.rand.vcxproj │ │ ├── cxx.ternary │ │ │ └── cxx.ternary.vcxproj │ │ ├── cxx.unary │ │ │ └── cxx.unary.vcxproj │ │ ├── dll-debug-config.props │ │ ├── dll-release-config.props │ │ ├── f.adjust │ │ │ └── f.adjust.vcxproj │ │ ├── f.adjust_sqrt2 │ │ │ ├── f.adjust_sqrt2.vcxproj │ │ │ └── f.adjust_sqrt2.vcxproj.user │ │ ├── f.butterfly │ │ │ └── f.butterfly.vcxproj │ │ ├── f.butterfly_lshb │ │ │ └── f.butterfly_lshb.vcxproj │ │ ├── f.butterfly_rshb │ │ │ └── f.butterfly_rshb.vcxproj │ │ ├── f.butterfly_sqrt2 │ │ │ └── f.butterfly_sqrt2.vcxproj │ │ ├── f.butterfly_twiddle │ │ │ └── f.butterfly_twiddle.vcxproj │ │ ├── f.div_2expmod_2expp1 │ │ │ └── f.div_2expmod_2expp1.vcxproj │ │ ├── f.fft_ifft_mfa_trunc_sqrt2 │ │ │ └── f.fft_ifft_mfa_trunc_sqrt2.vcxproj │ │ ├── f.fft_ifft_negacyclic │ │ │ └── f.fft_ifft_negacyclic.vcxproj │ │ ├── f.fft_ifft_radix2 │ │ │ └── f.fft_ifft_radix2.vcxproj │ │ ├── f.fft_ifft_trunc │ │ │ └── f.fft_ifft_trunc.vcxproj │ │ ├── f.fft_ifft_trunc_sqrt2 │ │ │ └── f.fft_ifft_trunc_sqrt2.vcxproj │ │ ├── f.mul_2expmod_2expp1 │ │ │ └── f.mul_2expmod_2expp1.vcxproj │ │ ├── f.mul_fft_main │ │ │ └── f.mul_fft_main.vcxproj │ │ ├── f.mul_mfa_trunc_sqrt2 │ │ │ └── f.mul_mfa_trunc_sqrt2.vcxproj │ │ ├── f.mul_trunc_sqrt2 │ │ │ └── f.mul_trunc_sqrt2.vcxproj │ │ ├── f.mulmod_2expp1 │ │ │ └── f.mulmod_2expp1.vcxproj │ │ ├── f.normmod_2expp1 │ │ │ └── f.normmod_2expp1.vcxproj │ │ ├── f.split_combine_bits │ │ │ └── f.split_combine_bits.vcxproj │ │ ├── gmpmax │ │ │ └── gmpmax.vcxproj │ │ ├── hightomask │ │ │ └── hightomask.vcxproj │ │ ├── lib-debug-config.props │ │ ├── lib-release-config.props │ │ ├── misc.locale │ │ │ └── misc.locale.vcxproj │ │ ├── misc.printf │ │ │ └── misc.printf.vcxproj │ │ ├── misc.scanf │ │ │ └── misc.scanf.vcxproj │ │ ├── modlinv │ │ │ └── modlinv.vcxproj │ │ ├── mpf.add │ │ │ └── mpf.add.vcxproj │ │ ├── mpf.cmp_d │ │ │ └── mpf.cmp_d.vcxproj │ │ ├── mpf.cmp_si │ │ │ └── mpf.cmp_si.vcxproj │ │ ├── mpf.conv │ │ │ └── mpf.conv.vcxproj │ │ ├── mpf.div │ │ │ └── mpf.div.vcxproj │ │ ├── mpf.dm2exp │ │ │ └── mpf.dm2exp.vcxproj │ │ ├── mpf.eq │ │ │ └── mpf.eq.vcxproj │ │ ├── mpf.fits │ │ │ └── mpf.fits.vcxproj │ │ ├── mpf.get_d │ │ │ └── mpf.get_d.vcxproj │ │ ├── mpf.get_d_2exp │ │ │ └── mpf.get_d_2exp.vcxproj │ │ ├── mpf.get_si │ │ │ └── mpf.get_si.vcxproj │ │ ├── mpf.get_ui │ │ │ └── mpf.get_ui.vcxproj │ │ ├── mpf.gsprec │ │ │ └── mpf.gsprec.vcxproj │ │ ├── mpf.inp_str │ │ │ └── mpf.inp_str.vcxproj │ │ ├── mpf.int_p │ │ │ └── mpf.int_p.vcxproj │ │ ├── mpf.mul_ui │ │ │ └── mpf.mul_ui.vcxproj │ │ ├── mpf.muldiv │ │ │ └── mpf.muldiv.vcxproj │ │ ├── mpf.reuse │ │ │ └── mpf.reuse.vcxproj │ │ ├── mpf.set │ │ │ └── mpf.set.vcxproj │ │ ├── mpf.set_q │ │ │ └── mpf.set_q.vcxproj │ │ ├── mpf.set_si │ │ │ └── mpf.set_si.vcxproj │ │ ├── mpf.set_ui │ │ │ └── mpf.set_ui.vcxproj │ │ ├── mpf.sqrt │ │ │ └── mpf.sqrt.vcxproj │ │ ├── mpf.sqrt_ui │ │ │ └── mpf.sqrt_ui.vcxproj │ │ ├── mpf.sub │ │ │ └── mpf.sub.vcxproj │ │ ├── mpf.trunc │ │ │ └── mpf.trunc.vcxproj │ │ ├── mpf.ui_div │ │ │ └── mpf.ui_div.vcxproj │ │ ├── mpn.addadd_n │ │ │ └── mpn.addadd_n.vcxproj │ │ ├── mpn.addsub_n │ │ │ └── mpn.addsub_n.vcxproj │ │ ├── mpn.aors_1 │ │ │ └── mpn.aors_1.vcxproj │ │ ├── mpn.asmtype │ │ │ └── mpn.asmtype.vcxproj │ │ ├── mpn.dc_bdiv_q │ │ │ └── mpn.dc_bdiv_q.vcxproj │ │ ├── mpn.dc_bdiv_q_n │ │ │ └── mpn.dc_bdiv_q_n.vcxproj │ │ ├── mpn.dc_bdiv_qr │ │ │ └── mpn.dc_bdiv_qr.vcxproj │ │ ├── mpn.dc_bdiv_qr_n │ │ │ └── mpn.dc_bdiv_qr_n.vcxproj │ │ ├── mpn.dc_div_q │ │ │ └── mpn.dc_div_q.vcxproj │ │ ├── mpn.dc_div_qr │ │ │ └── mpn.dc_div_qr.vcxproj │ │ ├── mpn.dc_div_qr_n │ │ │ └── mpn.dc_div_qr_n.vcxproj │ │ ├── mpn.dc_divappr_q │ │ │ └── mpn.dc_divappr_q.vcxproj │ │ ├── mpn.dc_divappr_q_n │ │ │ └── mpn.dc_divappr_q_n.vcxproj │ │ ├── mpn.divebyff │ │ │ └── mpn.divebyff.vcxproj │ │ ├── mpn.divebyfobm1 │ │ │ └── mpn.divebyfobm1.vcxproj │ │ ├── mpn.divrem_1 │ │ │ └── mpn.divrem_1.vcxproj │ │ ├── mpn.gcdext │ │ │ └── mpn.gcdext.vcxproj │ │ ├── mpn.get_d │ │ │ └── mpn.get_d.vcxproj │ │ ├── mpn.hgcd │ │ │ └── mpn.hgcd.vcxproj │ │ ├── mpn.instrument │ │ │ └── mpn.instrument.vcxproj │ │ ├── mpn.inv_div_q │ │ │ └── mpn.inv_div_q.vcxproj │ │ ├── mpn.inv_div_qr │ │ │ └── mpn.inv_div_qr.vcxproj │ │ ├── mpn.inv_div_qr_n │ │ │ └── mpn.inv_div_qr_n.vcxproj │ │ ├── mpn.inv_divappr_q │ │ │ └── mpn.inv_divappr_q.vcxproj │ │ ├── mpn.inv_divappr_q_n │ │ │ └── mpn.inv_divappr_q_n.vcxproj │ │ ├── mpn.invert │ │ │ └── mpn.invert.vcxproj │ │ ├── mpn.iord_u │ │ │ └── mpn.iord_u.vcxproj │ │ ├── mpn.lorrshift1 │ │ │ └── mpn.lorrshift1.vcxproj │ │ ├── mpn.matrix22 │ │ │ └── mpn.matrix22.vcxproj │ │ ├── mpn.mp_bases │ │ │ └── mpn.mp_bases.vcxproj │ │ ├── mpn.mullow_basecase │ │ │ └── mpn.mullow_basecase.vcxproj │ │ ├── mpn.mullowhigh │ │ │ └── mpn.mullowhigh.vcxproj │ │ ├── mpn.mulmid │ │ │ └── mpn.mulmid.vcxproj │ │ ├── mpn.mulmod_2expm1 │ │ │ └── mpn.mulmod_2expm1.vcxproj │ │ ├── mpn.neg │ │ │ └── mpn.neg.vcxproj │ │ ├── mpn.perfsqr │ │ │ └── mpn.perfsqr.vcxproj │ │ ├── mpn.redc_1 │ │ │ ├── mpn.redc_1.vcxproj │ │ │ └── mpn.redc_1.vcxproj.user │ │ ├── mpn.sb_bdiv_q │ │ │ └── mpn.sb_bdiv_q.vcxproj │ │ ├── mpn.sb_bdiv_qr │ │ │ └── mpn.sb_bdiv_qr.vcxproj │ │ ├── mpn.sb_div_q │ │ │ └── mpn.sb_div_q.vcxproj │ │ ├── mpn.sb_div_qr │ │ │ └── mpn.sb_div_qr.vcxproj │ │ ├── mpn.sb_divappr_q │ │ │ └── mpn.sb_divappr_q.vcxproj │ │ ├── mpn.scan │ │ │ └── mpn.scan.vcxproj │ │ ├── mpn.subadd_n │ │ │ └── mpn.subadd_n.vcxproj │ │ ├── mpn.tdiv_q │ │ │ └── mpn.tdiv_q.vcxproj │ │ ├── mpn.tdiv_qr │ │ │ └── mpn.tdiv_qr.vcxproj │ │ ├── mpq.aors │ │ │ └── mpq.aors.vcxproj │ │ ├── mpq.cmp │ │ │ └── mpq.cmp.vcxproj │ │ ├── mpq.cmp_si │ │ │ └── mpq.cmp_si.vcxproj │ │ ├── mpq.cmp_ui │ │ │ └── mpq.cmp_ui.vcxproj │ │ ├── mpq.equal │ │ │ └── mpq.equal.vcxproj │ │ ├── mpq.get_d │ │ │ └── mpq.get_d.vcxproj │ │ ├── mpq.get_str │ │ │ └── mpq.get_str.vcxproj │ │ ├── mpq.inp_str │ │ │ └── mpq.inp_str.vcxproj │ │ ├── mpq.md_2exp │ │ │ └── mpq.md_2exp.vcxproj │ │ ├── mpq.set_f │ │ │ └── mpq.set_f.vcxproj │ │ ├── mpq.set_str │ │ │ └── mpq.set_str.vcxproj │ │ ├── mpz.addsub │ │ │ └── mpz.addsub.vcxproj │ │ ├── mpz.aorsmul │ │ │ └── mpz.aorsmul.vcxproj │ │ ├── mpz.bin │ │ │ └── mpz.bin.vcxproj │ │ ├── mpz.bit │ │ │ └── mpz.bit.vcxproj │ │ ├── mpz.cdiv_ui │ │ │ └── mpz.cdiv_ui.vcxproj │ │ ├── mpz.cmp │ │ │ └── mpz.cmp.vcxproj │ │ ├── mpz.cmp_d │ │ │ └── mpz.cmp_d.vcxproj │ │ ├── mpz.cmp_si │ │ │ └── mpz.cmp_si.vcxproj │ │ ├── mpz.cong │ │ │ └── mpz.cong.vcxproj │ │ ├── mpz.cong_2exp │ │ │ └── mpz.cong_2exp.vcxproj │ │ ├── mpz.convert │ │ │ └── mpz.convert.vcxproj │ │ ├── mpz.div_2exp │ │ │ └── mpz.div_2exp.vcxproj │ │ ├── mpz.dive │ │ │ └── mpz.dive.vcxproj │ │ ├── mpz.dive_ui │ │ │ └── mpz.dive_ui.vcxproj │ │ ├── mpz.divis │ │ │ └── mpz.divis.vcxproj │ │ ├── mpz.divis_2exp │ │ │ └── mpz.divis_2exp.vcxproj │ │ ├── mpz.export │ │ │ └── mpz.export.vcxproj │ │ ├── mpz.fac_ui │ │ │ └── mpz.fac_ui.vcxproj │ │ ├── mpz.fdiv │ │ │ └── mpz.fdiv.vcxproj │ │ ├── mpz.fdiv_ui │ │ │ └── mpz.fdiv_ui.vcxproj │ │ ├── mpz.fib_ui │ │ │ └── mpz.fib_ui.vcxproj │ │ ├── mpz.fits │ │ │ └── mpz.fits.vcxproj │ │ ├── mpz.gcd │ │ │ └── mpz.gcd.vcxproj │ │ ├── mpz.gcd_ui │ │ │ └── mpz.gcd_ui.vcxproj │ │ ├── mpz.get_d │ │ │ └── mpz.get_d.vcxproj │ │ ├── mpz.get_d_2exp │ │ │ └── mpz.get_d_2exp.vcxproj │ │ ├── mpz.get_si │ │ │ └── mpz.get_si.vcxproj │ │ ├── mpz.get_sx │ │ │ └── mpz.get_sx.vcxproj │ │ ├── mpz.get_ux │ │ │ └── mpz.get_ux.vcxproj │ │ ├── mpz.hamdist │ │ │ └── mpz.hamdist.vcxproj │ │ ├── mpz.import │ │ │ └── mpz.import.vcxproj │ │ ├── mpz.inp_str │ │ │ └── mpz.inp_str.vcxproj │ │ ├── mpz.io │ │ │ └── mpz.io.vcxproj │ │ ├── mpz.io_raw │ │ │ └── mpz.io_raw.vcxproj │ │ ├── mpz.jac │ │ │ └── mpz.jac.vcxproj │ │ ├── mpz.lcm │ │ │ └── mpz.lcm.vcxproj │ │ ├── mpz.likely_prime_p │ │ │ └── mpz.likely_prime_p.vcxproj │ │ ├── mpz.logic │ │ │ └── mpz.logic.vcxproj │ │ ├── mpz.lucnum_ui │ │ │ └── mpz.lucnum_ui.vcxproj │ │ ├── mpz.mul │ │ │ └── mpz.mul.vcxproj │ │ ├── mpz.mul_i │ │ │ └── mpz.mul_i.vcxproj │ │ ├── mpz.next_likely_prime │ │ │ └── mpz.next_likely_prime.vcxproj │ │ ├── mpz.oddeven │ │ │ └── mpz.oddeven.vcxproj │ │ ├── mpz.perfpow │ │ │ └── mpz.perfpow.vcxproj │ │ ├── mpz.perfsqr │ │ │ └── mpz.perfsqr.vcxproj │ │ ├── mpz.popcount │ │ │ └── mpz.popcount.vcxproj │ │ ├── mpz.pow │ │ │ └── mpz.pow.vcxproj │ │ ├── mpz.powm │ │ │ └── mpz.powm.vcxproj │ │ ├── mpz.powm_ui │ │ │ └── mpz.powm_ui.vcxproj │ │ ├── mpz.pprime_p │ │ │ └── mpz.pprime_p.vcxproj │ │ ├── mpz.reuse │ │ │ └── mpz.reuse.vcxproj │ │ ├── mpz.root │ │ │ └── mpz.root.vcxproj │ │ ├── mpz.scan │ │ │ └── mpz.scan.vcxproj │ │ ├── mpz.set_d │ │ │ └── mpz.set_d.vcxproj │ │ ├── mpz.set_f │ │ │ └── mpz.set_f.vcxproj │ │ ├── mpz.set_si │ │ │ └── mpz.set_si.vcxproj │ │ ├── mpz.set_str │ │ │ └── mpz.set_str.vcxproj │ │ ├── mpz.set_sx │ │ │ └── mpz.set_sx.vcxproj │ │ ├── mpz.set_ux │ │ │ └── mpz.set_ux.vcxproj │ │ ├── mpz.sizeinbase │ │ │ └── mpz.sizeinbase.vcxproj │ │ ├── mpz.sqrtrem │ │ │ └── mpz.sqrtrem.vcxproj │ │ ├── mpz.tdiv │ │ │ └── mpz.tdiv.vcxproj │ │ ├── mpz.tdiv_ui │ │ │ └── mpz.tdiv_ui.vcxproj │ │ ├── mpz.trial_division │ │ │ └── mpz.trial_division.vcxproj │ │ ├── parity │ │ │ └── parity.vcxproj │ │ ├── popc │ │ │ └── popc.vcxproj │ │ ├── rand.iset │ │ │ └── rand.iset.vcxproj │ │ ├── rand.lc2exp │ │ │ └── rand.lc2exp.vcxproj │ │ ├── rand.mt │ │ │ └── rand.mt.vcxproj │ │ ├── rand.rand │ │ │ └── rand.rand.vcxproj │ │ ├── rand.urbui │ │ │ └── rand.urbui.vcxproj │ │ ├── rand.urmui │ │ │ └── rand.urmui.vcxproj │ │ ├── rand.urndmm │ │ │ └── rand.urndmm.vcxproj │ │ ├── run-tests.py │ │ ├── subc │ │ │ └── subc.vcxproj │ │ └── test-config.props │ ├── mpir.sln │ ├── mpir.suo │ ├── mpir_config.py │ ├── out_copy_rename.bat │ ├── output_params.bat │ ├── postbuild.bat │ ├── prebuild.bat │ ├── readme.txt │ ├── remove.express.py │ ├── speed.sln │ ├── speed │ │ ├── speed.vcxproj │ │ └── speed.vcxproj.filters │ ├── to_gmp.bat │ ├── to_mpir.bat │ ├── try.sln │ ├── try │ │ ├── try.vcxproj │ │ └── try.vcxproj.filters │ ├── tune.sln │ ├── tune │ │ ├── dc_bdiv_q.c │ │ ├── dc_bdiv_qr.c │ │ ├── dc_div_qr.c │ │ ├── dc_divappr_q.c │ │ ├── divrem_1.c │ │ ├── divrem_2.c │ │ ├── divrem_euclidean_r_1.c │ │ ├── divrem_hensel_qr_1.c │ │ ├── gcd.c │ │ ├── gcdext.c │ │ ├── get_str.c │ │ ├── inv_div_qr.c │ │ ├── inv_divappr_q.c │ │ ├── mod_1.c │ │ ├── mul.c │ │ ├── mul_fft.c │ │ ├── mul_n.c │ │ ├── mulhigh_n.c │ │ ├── mullow_n.c │ │ ├── mulmod_2expm1.c │ │ ├── rootrem.c │ │ ├── rsh_divrem_hensel_qr_1.c │ │ ├── tdiv_q.c │ │ ├── tdiv_qr.c │ │ ├── toom3_mul.c │ │ ├── toom3_mul_n.c │ │ ├── toom4_mul.c │ │ ├── toom4_mul_n.c │ │ ├── toom8_sqr_n.c │ │ ├── toom8h_mul.c │ │ ├── tune-fft.vcxproj │ │ ├── tune.log │ │ ├── tune.vcxproj │ │ ├── tune.vcxproj.filters │ │ └── tune_prebuild.py │ ├── unistd.h │ ├── vsyasm.props │ ├── vsyasm.targets │ ├── vsyasm.xml │ ├── win_timing.c │ └── win_timing.h ├── compat.c ├── config.guess ├── config.h ├── config.in ├── config.sub ├── configfsf.guess ├── configfsf.sub ├── configure ├── configure.in ├── cpuid.c ├── cxx │ ├── Makefile.am │ ├── Makefile.in │ ├── dummy.cc │ ├── isfuns.cc │ ├── ismpf.cc │ ├── ismpq.cc │ ├── ismpz.cc │ ├── ismpznw.cc │ ├── osdoprnti.cc │ ├── osfuns.cc │ ├── osmpf.cc │ ├── osmpq.cc │ └── osmpz.cc ├── doc │ ├── Makefile.am │ ├── Makefile.in │ ├── devel │ │ ├── Configure.txt │ │ ├── FILES.txt │ │ ├── configuration │ │ ├── gmp-h.txt │ │ ├── gmp-impl-h.txt │ │ ├── mpn_functions.txt │ │ ├── projects.html │ │ └── tasks.html │ ├── fdl.texi │ ├── isa_abi_headache │ ├── mdate-sh │ ├── mpir.info │ ├── mpir.info-1 │ ├── mpir.info-2 │ ├── mpir.texi │ ├── stamp-vti │ ├── texinfo.tex │ └── version.texi ├── errno.c ├── extract-dbl.c ├── fft │ ├── Makefile.am │ ├── Makefile.in │ ├── adjust.c │ ├── adjust_sqrt2.c │ ├── butterfly_lshB.c │ ├── butterfly_rshB.c │ ├── combine_bits.c │ ├── div_2expmod_2expp1.c │ ├── fermat_to_mpz.c │ ├── fft_mfa_trunc_sqrt2.c │ ├── fft_mfa_trunc_sqrt2_inner.c │ ├── fft_negacylic.c │ ├── fft_radix2.c │ ├── fft_trunc.c │ ├── fft_trunc_sqrt2.c │ ├── fft_tuning.h │ ├── ifft_mfa_trunc_sqrt2.c │ ├── ifft_negacyclic.c │ ├── ifft_radix2.c │ ├── ifft_trunc.c │ ├── ifft_trunc_sqrt2.c │ ├── mul_2expmod_2expp1.c │ ├── mul_fft_main.c │ ├── mul_mfa_trunc_sqrt2.c │ ├── mul_trunc_sqrt2.c │ ├── mulmod_2expp1.c │ ├── normmod_2expp1.c │ ├── revbin.c │ ├── split_bits.c │ └── tune │ │ └── tune-fft.c ├── gmp-h.in ├── gmp-impl.h ├── gmp-mparam.h ├── gmp.h ├── gpl-2.0.txt ├── install-sh ├── invalid.c ├── lgpl-2.1.txt ├── lib │ └── Win32 │ │ └── Release │ │ ├── config.h │ │ ├── gmp-impl.h │ │ ├── gmp-mparam.h │ │ ├── gmp.h │ │ ├── gmpxx.h │ │ ├── longlong.h │ │ ├── mpir.h │ │ ├── mpir.lib │ │ └── mpirxx.h ├── longlong.h ├── longlong_post.h ├── longlong_pre.h ├── ltmain.sh ├── memory.c ├── missing ├── mp_bpl.c ├── mp_clz_tab.c ├── mp_dv_tab.c ├── mp_get_fns.c ├── mp_minv_tab.c ├── mp_set_fns.c ├── mpf │ ├── Makefile.am │ ├── Makefile.in │ ├── abs.c │ ├── add.c │ ├── add_ui.c │ ├── ceilfloor.c │ ├── clear.c │ ├── clears.c │ ├── cmp.c │ ├── cmp_d.c │ ├── cmp_si.c │ ├── cmp_ui.c │ ├── div.c │ ├── div_2exp.c │ ├── div_ui.c │ ├── dump.c │ ├── eq.c │ ├── fits_s.h │ ├── fits_si.c │ ├── fits_sint.c │ ├── fits_slong.c │ ├── fits_sshort.c │ ├── fits_u.h │ ├── fits_ui.c │ ├── fits_uint.c │ ├── fits_ulong.c │ ├── fits_ushort.c │ ├── get_d.c │ ├── get_d_2exp.c │ ├── get_dfl_prec.c │ ├── get_prc.c │ ├── get_si.c │ ├── get_str.c │ ├── get_ui.c │ ├── init.c │ ├── init2.c │ ├── inits.c │ ├── inp_str.c │ ├── int_p.c │ ├── iset.c │ ├── iset_d.c │ ├── iset_si.c │ ├── iset_str.c │ ├── iset_ui.c │ ├── mul.c │ ├── mul_2exp.c │ ├── mul_ui.c │ ├── neg.c │ ├── out_str.c │ ├── pow_ui.c │ ├── random2.c │ ├── reldiff.c │ ├── rrandomb.c │ ├── set.c │ ├── set_d.c │ ├── set_dfl_prec.c │ ├── set_prc.c │ ├── set_prc_raw.c │ ├── set_q.c │ ├── set_si.c │ ├── set_str.c │ ├── set_ui.c │ ├── set_z.c │ ├── size.c │ ├── sqrt.c │ ├── sqrt_ui.c │ ├── sub.c │ ├── sub_ui.c │ ├── swap.c │ ├── trunc.c │ ├── ui_div.c │ ├── ui_sub.c │ └── urandomb.c ├── mpir.h ├── mpirxx.h ├── mpn │ ├── Makeasm.am │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── alpha │ │ ├── README │ │ ├── add_n.asm │ │ ├── addlsh1_n.asm │ │ ├── addmul_1.asm │ │ ├── alpha-defs.m4 │ │ ├── cntlz.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── default.m4 │ │ ├── divexact_1.c │ │ ├── divexact_by3c.asm │ │ ├── ev5 │ │ │ ├── add_n.asm │ │ │ ├── com_n.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── lshift.asm │ │ │ ├── rshift.asm │ │ │ └── sub_n.asm │ │ ├── ev6 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── mul_1.asm │ │ │ ├── slot.pl │ │ │ ├── sqr_diagonal.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── ev67 │ │ │ ├── gcd_1.asm │ │ │ ├── hamdist.asm │ │ │ └── popcount.asm │ │ ├── gmp-mparam.h │ │ ├── invert_limb.asm │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mod_34lsub1.asm │ │ ├── modexact_1c_odd.asm │ │ ├── mul_1.asm │ │ ├── rshift.asm │ │ ├── sqr_diagonal.asm │ │ ├── sub_n.asm │ │ ├── sublsh1_n.asm │ │ ├── submul_1.asm │ │ └── umul.asm │ ├── arm │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── arm-defs.m4 │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── gmp-mparam.h │ │ ├── invert_limb.asm │ │ ├── longlong_inc.h │ │ ├── mul_1.asm │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ └── udiv.asm │ ├── asm-defs.m4 │ ├── cpp-ccas │ ├── generic │ │ ├── add.c │ │ ├── add_1.c │ │ ├── add_err1_n.c │ │ ├── add_err2_n.c │ │ ├── add_n.c │ │ ├── addadd_n.c │ │ ├── addmul_1.c │ │ ├── addsub_n.c │ │ ├── and_n.c │ │ ├── andn_n.c │ │ ├── bdivmod.c │ │ ├── cfg.h │ │ ├── cmp.c │ │ ├── com_n.c │ │ ├── copyd.c │ │ ├── copyi.c │ │ ├── dc_bdiv_q.c │ │ ├── dc_bdiv_q_n.c │ │ ├── dc_bdiv_qr.c │ │ ├── dc_bdiv_qr_n.c │ │ ├── dc_div_q.c │ │ ├── dc_div_qr.c │ │ ├── dc_div_qr_n.c │ │ ├── dc_divappr_q.c │ │ ├── dc_divappr_q_n.c │ │ ├── divexact.c │ │ ├── divexact_1.c │ │ ├── divexact_by3c.c │ │ ├── divexact_byff.c │ │ ├── divexact_byfobm1.c │ │ ├── divisible_p.c │ │ ├── divrem.c │ │ ├── divrem_1.c │ │ ├── divrem_2.c │ │ ├── divrem_euclidean_qr_1.c │ │ ├── divrem_euclidean_qr_2.c │ │ ├── divrem_euclidean_r_1.c │ │ ├── divrem_hensel_qr_1.c │ │ ├── divrem_hensel_qr_1_1.c │ │ ├── divrem_hensel_qr_1_2.c │ │ ├── divrem_hensel_r_1.c │ │ ├── divrem_hensel_rsh_qr_1.c │ │ ├── dump.c │ │ ├── fib2_ui.c │ │ ├── fib_table.c │ │ ├── gcd.c │ │ ├── gcd_1.c │ │ ├── gcd_lehmer.c │ │ ├── gcd_subdiv_step.c │ │ ├── gcdext.c │ │ ├── gcdext_1.c │ │ ├── gcdext_lehmer.c │ │ ├── gcdext_subdiv_step.c │ │ ├── get_d.c │ │ ├── get_str.c │ │ ├── gmp-mparam.h │ │ ├── hamdist.c │ │ ├── hgcd.c │ │ ├── hgcd2.c │ │ ├── inv_div_q.c │ │ ├── inv_div_qr.c │ │ ├── inv_div_qr_n.c │ │ ├── inv_divappr_q.c │ │ ├── inv_divappr_q_n.c │ │ ├── invert.c │ │ ├── ior_n.c │ │ ├── iorn_n.c │ │ ├── jacobi_base.c │ │ ├── longlong_inc.h │ │ ├── lshift.c │ │ ├── matrix22_mul.c │ │ ├── mod_1.c │ │ ├── mod_1_1.c │ │ ├── mod_1_2.c │ │ ├── mod_1_3.c │ │ ├── mod_34lsub1.c │ │ ├── modexact_1c_odd.c │ │ ├── mp_bases.c │ │ ├── mul.c │ │ ├── mul_1.c │ │ ├── mul_basecase.c │ │ ├── mul_n.c │ │ ├── mulhigh_n.c │ │ ├── mullow_basecase.c │ │ ├── mullow_n.c │ │ ├── mullow_n_basecase.c │ │ ├── mulmid.c │ │ ├── mulmid_basecase.c │ │ ├── mulmid_n.c │ │ ├── mulmod_2expm1.c │ │ ├── mulmod_2expp1_basecase.c │ │ ├── mulmod_bexpp1.c │ │ ├── nand_n.c │ │ ├── neg_n.c │ │ ├── nior_n.c │ │ ├── perfect_square_p.c │ │ ├── popcount.c │ │ ├── pow_1.c │ │ ├── preinv_divrem_1.c │ │ ├── preinv_mod_1.c │ │ ├── random.c │ │ ├── random2.c │ │ ├── randomb.c │ │ ├── redc_1.c │ │ ├── redc_2.c │ │ ├── rootrem.c │ │ ├── rootrem_basecase.c │ │ ├── rrandom.c │ │ ├── rsh_divrem_hensel_qr_1.c │ │ ├── rsh_divrem_hensel_qr_1_1.c │ │ ├── rsh_divrem_hensel_qr_1_2.c │ │ ├── rshift.c │ │ ├── sb_bdiv_q.c │ │ ├── sb_bdiv_qr.c │ │ ├── sb_div_q.c │ │ ├── sb_div_qr.c │ │ ├── sb_divappr_q.c │ │ ├── scan0.c │ │ ├── scan1.c │ │ ├── set_str.c │ │ ├── sizeinbase.c │ │ ├── sqr_basecase.c │ │ ├── sqrtrem.c │ │ ├── sub.c │ │ ├── sub_1.c │ │ ├── sub_err1_n.c │ │ ├── sub_err2_n.c │ │ ├── sub_n.c │ │ ├── subadd_n.c │ │ ├── submul_1.c │ │ ├── sumdiff_n.c │ │ ├── tdiv_q.c │ │ ├── tdiv_qr.c │ │ ├── toom3_mul.c │ │ ├── toom3_mul_n.c │ │ ├── toom42_mulmid.c │ │ ├── toom4_mul.c │ │ ├── toom4_mul_n.c │ │ ├── toom8_sqr_n.c │ │ ├── toom8h_mul.c │ │ ├── toom_couple_handling.c │ │ ├── toom_eval_dgr3_pm1.c │ │ ├── toom_eval_dgr3_pm2.c │ │ ├── toom_eval_pm1.c │ │ ├── toom_eval_pm2.c │ │ ├── toom_eval_pm2exp.c │ │ ├── toom_eval_pm2rexp.c │ │ ├── toom_interpolate_16pts.c │ │ ├── udiv_w_sdiv.c │ │ ├── urandomb.c │ │ ├── urandomm.c │ │ ├── xnor_n.c │ │ ├── xor_n.c │ │ └── zero.c │ ├── ia64 │ │ ├── README │ │ ├── add_n.asm │ │ ├── addlsh1_n.asm │ │ ├── addmul_1.asm │ │ ├── addmul_2.asm │ │ ├── addmul_4.asm │ │ ├── and_n.asm │ │ ├── andn_n.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── divexact_1.asm │ │ ├── divrem_2.asm │ │ ├── divrem_euclidean_qr_1.asm │ │ ├── gcd_1.asm │ │ ├── gmp-mparam.h │ │ ├── hamdist.asm │ │ ├── ia64-defs.m4 │ │ ├── invert_limb.asm │ │ ├── ior_n.asm │ │ ├── iorn_n.asm │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── modexact_1c_odd.asm │ │ ├── mul_1.asm │ │ ├── mul_2.asm │ │ ├── nand_n.asm │ │ ├── nior_n.asm │ │ ├── popcount.asm │ │ ├── rsh1add_n.asm │ │ ├── rsh1sub_n.asm │ │ ├── rshift.asm │ │ ├── sqr_diagonal.asm │ │ ├── sub_n.asm │ │ ├── sublsh1_n.asm │ │ ├── submul_1.c │ │ ├── xnor_n.asm │ │ └── xor_n.asm │ ├── m4-ccas │ ├── mips32 │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mips-defs.m4 │ │ ├── mips.m4 │ │ ├── mul_1.asm │ │ ├── rshift.asm │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ └── umul.asm │ ├── mips64 │ │ ├── README │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── divrem_1.asm │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mul_1.asm │ │ ├── rshift.asm │ │ ├── sqr_diagonal.asm │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ └── umul.asm │ ├── powerpc32 │ │ ├── 750 │ │ │ ├── com_n.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── lshift.asm │ │ │ └── rshift.asm │ │ ├── README │ │ ├── add_n.asm │ │ ├── addlsh1_n.asm │ │ ├── addmul_1.asm │ │ ├── aix.m4 │ │ ├── darwin.m4 │ │ ├── divexact_by3c.asm │ │ ├── eabi.m4 │ │ ├── elf.m4 │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mod_34lsub1.asm │ │ ├── modexact_1c_odd.asm │ │ ├── mul_1.asm │ │ ├── powerpc-defs.m4 │ │ ├── rshift.asm │ │ ├── sqr_diagonal.asm │ │ ├── sub_n.asm │ │ ├── sublsh1_n.asm │ │ ├── submul_1.asm │ │ ├── umul.asm │ │ └── vmx │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ ├── powerpc64 │ │ ├── README │ │ ├── aix.m4 │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── darwin.m4 │ │ ├── elf.m4 │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mode32 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── mul_1.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── mode64 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── mul_1.asm │ │ │ ├── sub_n.asm │ │ │ ├── submul_1.asm │ │ │ └── umul.asm │ │ ├── rshift.asm │ │ ├── sqr_diagonal.asm │ │ ├── umul.asm │ │ └── vmx │ │ │ └── popcount.asm │ ├── sparc32 │ │ ├── README │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mul_1.asm │ │ ├── rshift.asm │ │ ├── sparc-defs.m4 │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ ├── udiv.asm │ │ ├── udiv_nfp.asm │ │ ├── umul.asm │ │ └── v9 │ │ │ ├── README │ │ │ ├── add_n.asm.broken │ │ │ ├── addmul_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── mul_1.asm │ │ │ ├── sqr_diagonal.asm │ │ │ ├── sub_n.asm.broken │ │ │ ├── submul_1.asm │ │ │ └── udiv.asm │ ├── sparc64 │ │ ├── README │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── addmul_2.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── divexact_1.c │ │ ├── divrem_1.c │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mod_1.c │ │ ├── modexact_1c_odd.c │ │ ├── mul_1.asm │ │ ├── rshift.asm │ │ ├── sparc64.h │ │ ├── sqr_diagonal.asm │ │ ├── sub_n.asm │ │ └── submul_1.asm │ ├── x86 │ │ ├── README │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── applenopic │ │ │ ├── addmul_1.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── core2 │ │ │ │ ├── addmul_1.asm │ │ │ │ ├── com_n.asm │ │ │ │ ├── copyd.asm │ │ │ │ ├── copyi.asm │ │ │ │ ├── divrem_1.asm │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── mul_1.asm │ │ │ │ ├── mul_basecase.asm │ │ │ │ └── sqr_basecase.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── divrem_1.asm │ │ │ ├── lshift.asm │ │ │ ├── mod_1.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── submul_1.asm │ │ │ ├── udiv.asm │ │ │ └── umul.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── core2 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divrem_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── lshift.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── divrem_1.asm │ │ ├── fat │ │ │ ├── divexact_byfobm1.c │ │ │ ├── divrem_2.c │ │ │ ├── divrem_euclidean_qr_1.c │ │ │ ├── divrem_euclidean_qr_2.c │ │ │ ├── fat.c │ │ │ ├── fat_entry.asm │ │ │ ├── gcd_1.c │ │ │ ├── gmp-mparam.h │ │ │ ├── modexact_1c_odd.c │ │ │ ├── preinv_divrem_1.c │ │ │ ├── preinv_mod_1.c │ │ │ ├── redc_1.c │ │ │ └── sumdiff_n.c │ │ ├── gmp-mparam.h │ │ ├── i386 │ │ │ └── longlong_inc.h │ │ ├── i486 │ │ │ └── gmp-mparam.h │ │ ├── k6 │ │ │ ├── README │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── cross.pl │ │ │ ├── divexact_by3c.asm │ │ │ ├── divrem_1.asm │ │ │ ├── gcd_1.asm │ │ │ ├── gcd_finda.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── k62mmx │ │ │ │ ├── copyd.asm │ │ │ │ ├── lshift.asm │ │ │ │ └── rshift.asm │ │ │ ├── mmx │ │ │ │ ├── and_n.asm │ │ │ │ ├── andn_n.asm │ │ │ │ ├── com_n.asm │ │ │ │ ├── divexact_1.asm │ │ │ │ ├── hamdist.asm │ │ │ │ ├── ior_n.asm │ │ │ │ ├── iorn_n.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── nand_n.asm │ │ │ │ ├── nior_n.asm │ │ │ │ ├── popcount.asm │ │ │ │ ├── rshift.asm │ │ │ │ ├── xnor_n.asm │ │ │ │ └── xor_n.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── preinv_mod_1.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── k7 │ │ │ ├── README │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── gcd_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── mmx │ │ │ │ ├── com_n.asm │ │ │ │ ├── copyd.asm │ │ │ │ ├── copyi.asm │ │ │ │ ├── divrem_1.asm │ │ │ │ ├── hamdist.asm │ │ │ │ ├── k8 │ │ │ │ │ ├── addmul_1.asm │ │ │ │ │ ├── gmp-mparam.h │ │ │ │ │ ├── mul_basecase.asm │ │ │ │ │ └── submul_1.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── mod_1.asm │ │ │ │ ├── popcount.asm │ │ │ │ └── rshift.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mod_1.asm │ │ ├── mod_34lsub1.asm │ │ ├── mul_1.asm │ │ ├── mul_basecase.asm │ │ ├── nehalem │ │ │ ├── add_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── divrem_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── lshift.asm │ │ │ ├── mod_1.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── popcount.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── p6 │ │ │ ├── README │ │ │ ├── add_n.asm │ │ │ ├── addmul_1,asm │ │ │ ├── copyd.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── mmx │ │ │ │ ├── divrem_1.asm │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── hamdist.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── popcount.asm │ │ │ │ └── rshift.asm │ │ │ ├── mod_1.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── p3mmx │ │ │ │ ├── hamdist.asm │ │ │ │ └── popcount.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1,asm │ │ ├── pentium │ │ │ ├── README │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── lshift.asm │ │ │ ├── mmx │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── hamdist.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── mul_1.asm │ │ │ │ └── rshift.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── pentium4 │ │ │ ├── README │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── mmx │ │ │ │ ├── hamdist.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── popcount.asm │ │ │ │ └── rshift.asm │ │ │ └── sse2 │ │ │ │ ├── add_n.asm │ │ │ │ ├── addlsh1_n.asm │ │ │ │ ├── addmul_1.asm │ │ │ │ ├── divexact_1.asm │ │ │ │ ├── divexact_by3c.asm │ │ │ │ ├── divrem_1.asm │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── mod_1.asm │ │ │ │ ├── mod_34lsub1.asm │ │ │ │ ├── modexact_1c_odd.asm │ │ │ │ ├── mul_1.asm │ │ │ │ ├── mul_basecase.asm │ │ │ │ ├── rsh1add_n.asm │ │ │ │ ├── sqr_basecase.asm │ │ │ │ ├── sub_n.asm │ │ │ │ └── submul_1.asm │ │ ├── rshift.asm │ │ ├── sqr_basecase.asm │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ ├── t-zdisp.sh │ │ ├── t-zdisp2.pl │ │ ├── udiv.asm │ │ ├── umul.asm │ │ └── x86-defs.m4 │ ├── x86_64 │ │ ├── add_err1_n.asm │ │ ├── add_err2_n.asm │ │ ├── atom │ │ │ ├── add_n.as │ │ │ ├── addlsh1_n.as │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.as │ │ │ ├── addmul_2.as │ │ │ ├── and_n.as │ │ │ ├── andn_n.as │ │ │ ├── com_n.as │ │ │ ├── copyd.as │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── ior_n.as │ │ │ ├── iorn_n.as │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.as │ │ │ ├── lshift1.as │ │ │ ├── lshift2.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.as │ │ │ ├── mul_2.as │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.as │ │ │ ├── nior_n.as │ │ │ ├── redc_1.as │ │ │ ├── rsh1add_n.as │ │ │ ├── rsh1sub_n.as │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rshift.as │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_n.as │ │ │ ├── sublsh1_n.as │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.as │ │ │ ├── xnor_n.as │ │ │ └── xor_n.as │ │ ├── bobcat │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.as │ │ │ ├── addadd_n.as │ │ │ ├── addlsh1_n.as │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.as │ │ │ ├── addsub_n.as │ │ │ ├── and_n.asm │ │ │ ├── andn_n.as │ │ │ ├── com_n.as │ │ │ ├── copyd.as │ │ │ ├── copyi.as │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── divrem_hensel_r_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.as │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.as │ │ │ ├── lshift1.as │ │ │ ├── lshift2.asm │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── not.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.as │ │ │ ├── rsh1add_n.as │ │ │ ├── rsh1sub_n.as │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── rshift2.asm │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.as │ │ │ ├── subadd_n.as │ │ │ ├── sublsh1_n.as │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.as │ │ │ ├── sumdiff_n.as │ │ │ ├── xnor_n.as │ │ │ └── xor_n.asm │ │ ├── core2 │ │ │ ├── README │ │ │ ├── add_n.as │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh_n.as │ │ │ ├── addmul_1.as │ │ │ ├── addmul_2.as │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.as │ │ │ ├── andn_n.as │ │ │ ├── com_n.as │ │ │ ├── copyd.as │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.as │ │ │ ├── iorn_n.as │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.as │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.as │ │ │ ├── nior_n.as │ │ │ ├── penryn │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── mod_1_1.asm │ │ │ │ └── sumdiff_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.as │ │ │ ├── rsh1add_n.as │ │ │ ├── rsh1sub_n.as │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_n.as │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.as │ │ │ ├── submul_1.as │ │ │ ├── sumdiff_n.asm │ │ │ ├── xnor_n.as │ │ │ └── xor_n.as │ │ ├── divexact_by3c.as │ │ ├── divexact_byfobm1.as │ │ ├── divrem_2.as │ │ ├── divrem_euclidean_qr_1.as │ │ ├── divrem_euclidean_qr_2.as │ │ ├── fat │ │ │ ├── add_n.c │ │ │ ├── addmul_1.c │ │ │ ├── copyd.c │ │ │ ├── copyi.c │ │ │ ├── divexact_1.c │ │ │ ├── divexact_by3c.c │ │ │ ├── divexact_byfobm1.c │ │ │ ├── divrem_1.c │ │ │ ├── divrem_2.c │ │ │ ├── divrem_euclidean_qr_1.c │ │ │ ├── divrem_euclidean_qr_2.c │ │ │ ├── fat.c │ │ │ ├── fat_entry.asm │ │ │ ├── gcd_1.c │ │ │ ├── gmp-mparam.h │ │ │ ├── lshift.c │ │ │ ├── mod_1.c │ │ │ ├── mod_34lsub1.c │ │ │ ├── modexact_1c_odd.c │ │ │ ├── mul_1.c │ │ │ ├── mul_basecase.c │ │ │ ├── preinv_divrem_1.c │ │ │ ├── preinv_mod_1.c │ │ │ ├── redc_1.c │ │ │ ├── rshift.c │ │ │ ├── sqr_basecase.c │ │ │ ├── sub_n.c │ │ │ ├── submul_1.c │ │ │ └── sumdiff_n.c │ │ ├── gmp-mparam.h │ │ ├── k8 │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.as │ │ │ ├── addadd_n.as │ │ │ ├── addlsh1_n.as │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.as │ │ │ ├── addsub_n.as │ │ │ ├── and_n.asm │ │ │ ├── andn_n.as │ │ │ ├── com_n.as │ │ │ ├── copyd.as │ │ │ ├── copyi.as │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── divrem_hensel_r_1.asm │ │ │ ├── double.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── half.asm │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.as │ │ │ ├── k10 │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── hamdist.asm │ │ │ │ ├── k102 │ │ │ │ │ └── gmp-mparam.h │ │ │ │ ├── karaadd.asm │ │ │ │ ├── karasub.asm │ │ │ │ ├── lshift.as │ │ │ │ ├── popcount.asm │ │ │ │ └── rshift.as │ │ │ ├── k8only │ │ │ │ ├── lshift2.asm │ │ │ │ ├── lshift3.asm │ │ │ │ ├── lshift4.asm │ │ │ │ ├── lshift5.asm │ │ │ │ ├── lshift6.asm │ │ │ │ └── rshift2.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.as │ │ │ ├── lshift1.as │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.as │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── not.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.as │ │ │ ├── rsh1add_n.as │ │ │ ├── rsh1sub_n.as │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── rshift1.as │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.as │ │ │ ├── subadd_n.as │ │ │ ├── sublsh1_n.as │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── sumdiff_n.as │ │ │ ├── xnor_n.as │ │ │ └── xor_n.asm │ │ ├── longlong_inc.h │ │ ├── modexact_1c_odd.as │ │ ├── mulmid_basecase.asm │ │ ├── nehalem │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.as │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh_n.as │ │ │ ├── addmul_1.as │ │ │ ├── addmul_2.as │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.as │ │ │ ├── rsh1add_n.as │ │ │ ├── rsh1sub_n.as │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.as │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.as │ │ │ ├── submul_1.as │ │ │ ├── sumdiff_n.asm │ │ │ ├── westmere │ │ │ │ └── gmp-mparam.h │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── netburst │ │ │ ├── add_n.as │ │ │ ├── addmul_1.as │ │ │ ├── addmul_2.as │ │ │ ├── and_n.as │ │ │ ├── andn_n.as │ │ │ ├── com_n.as │ │ │ ├── divexact_byff.as │ │ │ ├── gmp-mparam.h │ │ │ ├── ior_n.as │ │ │ ├── iorn_n.as │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.as │ │ │ ├── mul_1.as │ │ │ ├── mul_2.as │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.as │ │ │ ├── nior_n.as │ │ │ ├── redc_1.as │ │ │ ├── rshift.as │ │ │ ├── sqr_basecase.as │ │ │ ├── sub_n.as │ │ │ ├── submul_1.as │ │ │ ├── xnor_n.as │ │ │ └── xor_n.as │ │ ├── sandybridge │ │ │ ├── add_n.as │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.as │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.as │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.as │ │ │ ├── lshift1.as │ │ │ ├── lshift2.asm │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.as │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.as │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.as │ │ │ ├── sqr_basecase.as │ │ │ ├── store.asm │ │ │ ├── sub_n.as │ │ │ ├── submul_1.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── sub_err1_n.asm │ │ ├── sub_err2_n.asm │ │ └── x86_64-defs.m4 │ ├── x86_64w │ │ ├── add_err1_n.asm │ │ ├── add_err2_n.asm │ │ ├── addmul_2.asm │ │ ├── atom │ │ │ ├── add_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift1.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rsh1sub_n.asm │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_n.asm │ │ │ ├── sublsh1_n.asm │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.asm │ │ │ └── xnor_n.asm │ │ ├── bobcat │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.asm │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── divrem_hensel_r_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── lshift1.asm │ │ │ ├── lshift2.asm │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── not.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rsh1sub_n.asm │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── rshift2.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.asm │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.asm │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── sumdiff_n.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── cfg.h │ │ ├── core2 │ │ │ ├── add_n.asm │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── cfg.h │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── lshift1.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── penryn │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── mod_1_1.asm │ │ │ │ └── sumdiff_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rsh1sub_n.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── rshift1.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_n.asm │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── sumdiff_n.asm │ │ │ ├── udiv_qrnnd.asm │ │ │ ├── umul_ppmm.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── divexact_byfobm1.asm │ │ ├── divrem_2.asm │ │ ├── divrem_euclidean_qr_1.asm │ │ ├── divrem_euclidean_qr_2.asm │ │ ├── fat │ │ │ ├── add_n.c │ │ │ ├── addmul_1.c │ │ │ ├── copyd.c │ │ │ ├── copyi.c │ │ │ ├── divexact_1.c │ │ │ ├── divexact_by3c.c │ │ │ ├── divexact_byfobm1.c │ │ │ ├── divrem_1.c │ │ │ ├── divrem_2.c │ │ │ ├── divrem_euclidean_qr_1.c │ │ │ ├── divrem_euclidean_qr_2.c │ │ │ ├── fat.c │ │ │ ├── fat_entry.asm │ │ │ ├── gcd_1.c │ │ │ ├── gmp-mparam.h │ │ │ ├── lshift.c │ │ │ ├── mod_1.c │ │ │ ├── mod_34lsub1.c │ │ │ ├── modexact_1c_odd.c │ │ │ ├── mul_1.c │ │ │ ├── mul_basecase.c │ │ │ ├── preinv_divrem_1.c │ │ │ ├── preinv_mod_1.c │ │ │ ├── redc_1.c │ │ │ ├── rshift.c │ │ │ ├── sqr_basecase.c │ │ │ ├── sub_n.c │ │ │ ├── submul_1.c │ │ │ └── sumdiff_n.c │ │ ├── gmp-mparam.h │ │ ├── k8 │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.asm │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── cfg.h │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── divrem_hensel_r_1.asm │ │ │ ├── double.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── half.asm │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── k10 │ │ │ │ ├── cfg.h │ │ │ │ ├── gmp-mparam.h │ │ │ │ ├── hamdist.asm │ │ │ │ ├── k102 │ │ │ │ │ └── gmp-mparam.h │ │ │ │ ├── karaadd.asm │ │ │ │ ├── karasub.asm │ │ │ │ ├── lshift.asm │ │ │ │ ├── popcount.asm │ │ │ │ ├── rshift.asm │ │ │ │ └── store.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── lshift1.asm │ │ │ ├── lshift2.asm │ │ │ ├── lshift3.asm │ │ │ ├── lshift4.asm │ │ │ ├── lshift5.asm │ │ │ ├── lshift6.asm │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── not.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rsh1sub_n.asm │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── rshift1.asm │ │ │ ├── rshift2.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.asm │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.asm │ │ │ ├── sublsh_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── sumdiff_n.asm │ │ │ ├── udiv_qrnnd.asm │ │ │ ├── umul_ppmm.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── longlong_inc.h │ │ ├── modexact_1c_odd.asm │ │ ├── mul_2.asm │ │ ├── mulmid_basecase.asm │ │ ├── nehalem │ │ │ ├── add_err1_n.asm │ │ │ ├── add_n.asm │ │ │ ├── addadd_n.asm │ │ │ ├── addlsh1_n.asm │ │ │ ├── addlsh_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── addsub_n.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── cfg.h │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_2.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh1add_n.asm │ │ │ ├── rsh1sub_n.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_err1_n.asm │ │ │ ├── sub_n.asm │ │ │ ├── subadd_n.asm │ │ │ ├── sublsh1_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── sumdiff_n.asm │ │ │ ├── westmere │ │ │ │ └── gmp-mparam.h │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── netburst │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── redc_1.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── submul_1.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── sandybridge │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── addmul_2.asm │ │ │ ├── and_n.asm │ │ │ ├── andn_n.asm │ │ │ ├── com_n.asm │ │ │ ├── copyd.asm │ │ │ ├── copyi.asm │ │ │ ├── divexact_byff.asm │ │ │ ├── divrem_hensel_qr_1_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── ior_n.asm │ │ │ ├── iorn_n.asm │ │ │ ├── karaadd.asm │ │ │ ├── karasub.asm │ │ │ ├── lshift.asm │ │ │ ├── lshift1.asm │ │ │ ├── lshiftc.asm │ │ │ ├── mod_1_1.asm │ │ │ ├── mod_1_2.asm │ │ │ ├── mod_1_3.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_2.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── nand_n.asm │ │ │ ├── nior_n.asm │ │ │ ├── popcount.asm │ │ │ ├── redc_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_1.asm │ │ │ ├── rsh_divrem_hensel_qr_1_2.asm │ │ │ ├── rshift.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── store.asm │ │ │ ├── sub_n.asm │ │ │ ├── submul_1.asm │ │ │ ├── xnor_n.asm │ │ │ └── xor_n.asm │ │ ├── sub_err1_n.asm │ │ ├── sub_err2_n.asm │ │ ├── udiv_qrnnd.asm │ │ ├── umul_ppmm.asm │ │ └── yasm_mac.inc │ └── x86w │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── divrem_1.asm │ │ ├── gmp-mparam.h │ │ ├── longlong_inc.h │ │ ├── lshift.asm │ │ ├── mod_1.asm │ │ ├── mod_34lsub1.asm │ │ ├── mul_1.asm │ │ ├── mul_basecase.asm │ │ ├── p0 │ │ └── gmp-mparam.h │ │ ├── p3 │ │ ├── addmul_1.asm │ │ ├── copyd.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── divrem_1.asm │ │ ├── gmp-mparam.h │ │ ├── hamdist.asm │ │ ├── lshift.asm │ │ ├── mod_1.asm │ │ ├── p3mmx │ │ │ ├── hamdist.asm │ │ │ └── popcount.asm │ │ ├── popcount.asm │ │ └── submul_1.asm │ │ ├── p4 │ │ ├── add_n.asm │ │ ├── addmul_1.asm │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── gmp-mparam.h │ │ ├── hamdist.asm │ │ ├── lshift.asm │ │ ├── mmx │ │ │ ├── hamdist.asm │ │ │ ├── lshift.asm │ │ │ ├── popcount.asm │ │ │ └── rshift.asm │ │ ├── mod_34lsub1.asm │ │ ├── modexact_1c_odd.asm │ │ ├── mul_1.asm │ │ ├── mul_basecase.asm │ │ ├── popcount.asm │ │ ├── rshift.asm │ │ ├── sqr_basecase.asm │ │ ├── sse2 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── sub_n.asm │ │ └── submul_1.asm │ │ ├── p6 │ │ ├── addmul_1.asm │ │ ├── copyd.asm │ │ ├── divexact_1.asm │ │ ├── divexact_by3c.asm │ │ ├── gmp-mparam.h │ │ ├── mmx │ │ │ ├── divrem_1.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── hamdist.asm │ │ │ ├── lshift.asm │ │ │ ├── popcount.asm │ │ │ └── rshift.asm │ │ ├── mod_1.asm │ │ ├── modexact_1c_odd.asm │ │ ├── p3mmx │ │ │ ├── hamdist.asm │ │ │ └── popcount.asm │ │ ├── sqr_basecase.asm │ │ └── submul_1.asm │ │ ├── pentium4 │ │ ├── copyd.asm │ │ ├── copyi.asm │ │ ├── gmp-mparam.h │ │ ├── mmx │ │ │ ├── hamdist.asm │ │ │ ├── lshift.asm │ │ │ ├── popcount.asm │ │ │ └── rshift.asm │ │ └── sse2 │ │ │ ├── add_n.asm │ │ │ ├── addmul_1.asm │ │ │ ├── divexact_1.asm │ │ │ ├── divexact_by3c.asm │ │ │ ├── gmp-mparam.h │ │ │ ├── mod_34lsub1.asm │ │ │ ├── modexact_1c_odd.asm │ │ │ ├── mul_1.asm │ │ │ ├── mul_basecase.asm │ │ │ ├── sqr_basecase.asm │ │ │ ├── sub_n.asm │ │ │ └── submul_1.asm │ │ ├── rshift.asm │ │ ├── sub_n.asm │ │ ├── submul_1.asm │ │ ├── udiv_qrnnd.asm │ │ ├── umul_ppmm.asm │ │ └── x86i.inc ├── mpq │ ├── Makefile.am │ ├── Makefile.in │ ├── abs.c │ ├── aors.c │ ├── canonicalize.c │ ├── clear.c │ ├── clears.c │ ├── cmp.c │ ├── cmp_si.c │ ├── cmp_ui.c │ ├── div.c │ ├── equal.c │ ├── get_d.c │ ├── get_den.c │ ├── get_num.c │ ├── get_str.c │ ├── init.c │ ├── inits.c │ ├── inp_str.c │ ├── inv.c │ ├── md_2exp.c │ ├── mul.c │ ├── neg.c │ ├── out_str.c │ ├── set.c │ ├── set_d.c │ ├── set_den.c │ ├── set_f.c │ ├── set_num.c │ ├── set_si.c │ ├── set_str.c │ ├── set_ui.c │ ├── set_z.c │ └── swap.c ├── mpz │ ├── Makefile.am │ ├── Makefile.in │ ├── abs.c │ ├── add.c │ ├── add_ui.c │ ├── and.c │ ├── aors.h │ ├── aors_ui.h │ ├── aorsmul.c │ ├── aorsmul_i.c │ ├── array_init.c │ ├── bin_ui.c │ ├── bin_uiui.c │ ├── cdiv_q.c │ ├── cdiv_q_ui.c │ ├── cdiv_qr.c │ ├── cdiv_qr_ui.c │ ├── cdiv_r.c │ ├── cdiv_r_ui.c │ ├── cdiv_ui.c │ ├── cfdiv_q_2exp.c │ ├── cfdiv_r_2exp.c │ ├── clear.c │ ├── clears.c │ ├── clrbit.c │ ├── cmp.c │ ├── cmp_d.c │ ├── cmp_si.c │ ├── cmp_ui.c │ ├── cmpabs.c │ ├── cmpabs_d.c │ ├── cmpabs_ui.c │ ├── com.c │ ├── combit.c │ ├── cong.c │ ├── cong_2exp.c │ ├── cong_ui.c │ ├── dive_ui.c │ ├── divegcd.c │ ├── divexact.c │ ├── divis.c │ ├── divis_2exp.c │ ├── divis_ui.c │ ├── dump.c │ ├── export.c │ ├── fac_ui.c │ ├── fdiv_q.c │ ├── fdiv_q_ui.c │ ├── fdiv_qr.c │ ├── fdiv_qr_ui.c │ ├── fdiv_r.c │ ├── fdiv_r_ui.c │ ├── fdiv_ui.c │ ├── fib2_ui.c │ ├── fib_ui.c │ ├── fits_s.h │ ├── fits_si.c │ ├── fits_sint.c │ ├── fits_slong.c │ ├── fits_sshort.c │ ├── fits_ui.c │ ├── fits_uint.c │ ├── fits_ulong.c │ ├── fits_ushort.c │ ├── gcd.c │ ├── gcd_ui.c │ ├── gcdext.c │ ├── get_d.c │ ├── get_d_2exp.c │ ├── get_si.c │ ├── get_str.c │ ├── get_sx.c │ ├── get_ui.c │ ├── get_ux.c │ ├── getlimbn.c │ ├── hamdist.c │ ├── import.c │ ├── init.c │ ├── init2.c │ ├── inits.c │ ├── inp_raw.c │ ├── inp_str.c │ ├── invert.c │ ├── ior.c │ ├── iset.c │ ├── iset_d.c │ ├── iset_si.c │ ├── iset_str.c │ ├── iset_sx.c │ ├── iset_ui.c │ ├── iset_ux.c │ ├── jacobi.c │ ├── kronsz.c │ ├── kronuz.c │ ├── kronzs.c │ ├── kronzu.c │ ├── lcm.c │ ├── lcm_ui.c │ ├── likely_prime_p.c │ ├── lucnum2_ui.c │ ├── lucnum_ui.c │ ├── miller_rabin.c │ ├── millerrabin.c │ ├── mod.c │ ├── mul.c │ ├── mul_2exp.c │ ├── mul_i.h │ ├── mul_si.c │ ├── mul_ui.c │ ├── n_pow_ui.c │ ├── neg.c │ ├── next_likely_prime.c │ ├── nextprime.c │ ├── nthroot.c │ ├── out_raw.c │ ├── out_str.c │ ├── perfpow.c │ ├── perfsqr.c │ ├── popcount.c │ ├── pow_ui.c │ ├── powm.c │ ├── powm_ui.c │ ├── pprime_p.c │ ├── probable_prime_p.c │ ├── realloc.c │ ├── realloc2.c │ ├── remove.c │ ├── root.c │ ├── rootrem.c │ ├── rrandomb.c │ ├── scan0.c │ ├── scan1.c │ ├── set.c │ ├── set_d.c │ ├── set_f.c │ ├── set_q.c │ ├── set_si.c │ ├── set_str.c │ ├── set_sx.c │ ├── set_ui.c │ ├── set_ux.c │ ├── setbit.c │ ├── size.c │ ├── sizeinbase.c │ ├── sqrt.c │ ├── sqrtrem.c │ ├── sub.c │ ├── sub_ui.c │ ├── swap.c │ ├── tdiv_q.c │ ├── tdiv_q_2exp.c │ ├── tdiv_q_ui.c │ ├── tdiv_qr.c │ ├── tdiv_qr_ui.c │ ├── tdiv_r.c │ ├── tdiv_r_2exp.c │ ├── tdiv_r_ui.c │ ├── tdiv_ui.c │ ├── trial_division.c │ ├── tstbit.c │ ├── ui_pow_ui.c │ ├── ui_sub.c │ ├── urandomb.c │ ├── urandomm.c │ └── xor.c ├── printf │ ├── Makefile.am │ ├── Makefile.in │ ├── asprintf.c │ ├── asprntffuns.c │ ├── doprnt.c │ ├── doprntf.c │ ├── doprnti.c │ ├── fprintf.c │ ├── obprintf.c │ ├── obprntffuns.c │ ├── obvprintf.c │ ├── printf.c │ ├── printffuns.c │ ├── repl-vsnprintf.c │ ├── snprintf.c │ ├── snprntffuns.c │ ├── sprintf.c │ ├── sprintffuns.c │ ├── vasprintf.c │ ├── vfprintf.c │ ├── vprintf.c │ ├── vsnprintf.c │ └── vsprintf.c ├── randbui.c ├── randclr.c ├── randdef.c ├── randiset.c ├── randlc2s.c ├── randlc2x.c ├── randmt.c ├── randmt.h ├── randmts.c ├── randmui.c ├── rands.c ├── randsd.c ├── randsdui.c ├── scanf │ ├── Makefile.am │ ├── Makefile.in │ ├── doscan.c │ ├── fscanf.c │ ├── fscanffuns.c │ ├── scanf.c │ ├── sscanf.c │ ├── sscanffuns.c │ ├── vfscanf.c │ ├── vscanf.c │ └── vsscanf.c ├── strip_fPIC.sh ├── tal-debug.c ├── tal-notreent.c ├── tal-reent.c ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── cxx │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── clocale.c │ │ ├── t-assign.cc │ │ ├── t-binary.cc │ │ ├── t-cast.cc │ │ ├── t-constr.cc │ │ ├── t-headers.cc │ │ ├── t-istream.cc │ │ ├── t-locale.cc │ │ ├── t-misc.cc │ │ ├── t-ops.cc │ │ ├── t-ostream.cc │ │ ├── t-prec.cc │ │ ├── t-rand.cc │ │ ├── t-ternary.cc │ │ └── t-unary.cc │ ├── devel │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── addmul_N.c │ │ ├── anymul_1.c │ │ ├── aors_n.c │ │ ├── copy.c │ │ ├── divmod_1.c │ │ ├── logops_n.c │ │ ├── mul_N.c │ │ ├── shift.c │ │ └── try.c │ ├── fft │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── t-adjust.c │ │ ├── t-adjust_sqrt2.c │ │ ├── t-butterfly.c │ │ ├── t-butterfly_lshB.c │ │ ├── t-butterfly_rshB.c │ │ ├── t-butterfly_sqrt2.c │ │ ├── t-butterfly_twiddle.c │ │ ├── t-div_2expmod_2expp1.c │ │ ├── t-fft_ifft_mfa_trunc_sqrt2.c │ │ ├── t-fft_ifft_negacyclic.c │ │ ├── t-fft_ifft_radix2.c │ │ ├── t-fft_ifft_trunc.c │ │ ├── t-fft_ifft_trunc_sqrt2.c │ │ ├── t-mul_2expmod_2expp1.c │ │ ├── t-mul_fft_main.c │ │ ├── t-mul_mfa_trunc_sqrt2.c │ │ ├── t-mul_trunc_sqrt2.c │ │ ├── t-mulmod_2expp1.c │ │ ├── t-normmod_2expp1.c │ │ └── t-split_combine_bits.c │ ├── memory.c │ ├── misc.c │ ├── misc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── t-locale.c │ │ ├── t-printf.c │ │ └── t-scanf.c │ ├── mpf │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── reuse.c │ │ ├── t-add.c │ │ ├── t-cmp_d.c │ │ ├── t-cmp_si.c │ │ ├── t-conv.c │ │ ├── t-div.c │ │ ├── t-dm2exp.c │ │ ├── t-eq.c │ │ ├── t-fits.c │ │ ├── t-get_d.c │ │ ├── t-get_d_2exp.c │ │ ├── t-get_si.c │ │ ├── t-get_ui.c │ │ ├── t-gsprec.c │ │ ├── t-inp_str.c │ │ ├── t-int_p.c │ │ ├── t-mul_ui.c │ │ ├── t-muldiv.c │ │ ├── t-set.c │ │ ├── t-set_q.c │ │ ├── t-set_si.c │ │ ├── t-set_ui.c │ │ ├── t-sqrt.c │ │ ├── t-sqrt_ui.c │ │ ├── t-sub.c │ │ ├── t-trunc.c │ │ └── t-ui_div.c │ ├── mpn │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── t-addadd_n.c │ │ ├── t-addsub_n.c │ │ ├── t-aors_1.c │ │ ├── t-asmtype.c │ │ ├── t-dc_bdiv_q.c │ │ ├── t-dc_bdiv_q_n.c │ │ ├── t-dc_bdiv_qr.c │ │ ├── t-dc_bdiv_qr_n.c │ │ ├── t-dc_div_q.c │ │ ├── t-dc_div_qr.c │ │ ├── t-dc_div_qr_n.c │ │ ├── t-dc_divappr_q.c │ │ ├── t-dc_divappr_q_n.c │ │ ├── t-divebyff.c │ │ ├── t-divebyfobm1.c │ │ ├── t-divrem_1.c │ │ ├── t-fat.c │ │ ├── t-gcdext.c │ │ ├── t-get_d.c │ │ ├── t-hgcd.c │ │ ├── t-instrument.c │ │ ├── t-inv_div_q.c │ │ ├── t-inv_div_qr.c │ │ ├── t-inv_div_qr_n.c │ │ ├── t-inv_divappr_q.c │ │ ├── t-inv_divappr_q_n.c │ │ ├── t-invert.c │ │ ├── t-iord_u.c │ │ ├── t-lorrshift1.c │ │ ├── t-matrix22.c │ │ ├── t-mp_bases.c │ │ ├── t-mullow_basecase.c │ │ ├── t-mullowhigh.c │ │ ├── t-mulmid.c │ │ ├── t-mulmod_2expm1.c │ │ ├── t-mulmod_2expp1.c │ │ ├── t-neg.c │ │ ├── t-perfsqr.c │ │ ├── t-redc_1.c │ │ ├── t-sb_bdiv_q.c │ │ ├── t-sb_bdiv_qr.c │ │ ├── t-sb_div_q.c │ │ ├── t-sb_div_qr.c │ │ ├── t-sb_divappr_q.c │ │ ├── t-scan.c │ │ ├── t-subadd_n.c │ │ ├── t-tdiv_q.c │ │ └── t-tdiv_qr.c │ ├── mpq │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── t-aors.c │ │ ├── t-cmp.c │ │ ├── t-cmp_si.c │ │ ├── t-cmp_ui.c │ │ ├── t-equal.c │ │ ├── t-get_d.c │ │ ├── t-get_str.c │ │ ├── t-inp_str.c │ │ ├── t-md_2exp.c │ │ ├── t-set_f.c │ │ └── t-set_str.c │ ├── mpz │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── bit.c │ │ ├── convert.c │ │ ├── dive.c │ │ ├── dive_ui.c │ │ ├── io.c │ │ ├── logic.c │ │ ├── reuse.c │ │ ├── t-addsub.c │ │ ├── t-aorsmul.c │ │ ├── t-bin.c │ │ ├── t-cdiv_ui.c │ │ ├── t-cmp.c │ │ ├── t-cmp_d.c │ │ ├── t-cmp_si.c │ │ ├── t-cong.c │ │ ├── t-cong_2exp.c │ │ ├── t-div_2exp.c │ │ ├── t-divis.c │ │ ├── t-divis_2exp.c │ │ ├── t-export.c │ │ ├── t-fac_ui.c │ │ ├── t-fdiv.c │ │ ├── t-fdiv_ui.c │ │ ├── t-fib_ui.c │ │ ├── t-fits.c │ │ ├── t-gcd.c │ │ ├── t-gcd_ui.c │ │ ├── t-get_d.c │ │ ├── t-get_d_2exp.c │ │ ├── t-get_si.c │ │ ├── t-get_sx.c │ │ ├── t-get_ux.c │ │ ├── t-hamdist.c │ │ ├── t-import.c │ │ ├── t-inp_str.c │ │ ├── t-io_raw.c │ │ ├── t-jac.c │ │ ├── t-lcm.c │ │ ├── t-likely_prime_p.c │ │ ├── t-lucnum_ui.c │ │ ├── t-mul.c │ │ ├── t-mul_i.c │ │ ├── t-next_likely_prime.c │ │ ├── t-oddeven.c │ │ ├── t-perfpow.c │ │ ├── t-perfsqr.c │ │ ├── t-popcount.c │ │ ├── t-pow.c │ │ ├── t-powm.c │ │ ├── t-powm_ui.c │ │ ├── t-pprime_p.c │ │ ├── t-root.c │ │ ├── t-scan.c │ │ ├── t-set_d.c │ │ ├── t-set_f.c │ │ ├── t-set_si.c │ │ ├── t-set_str.c │ │ ├── t-set_sx.c │ │ ├── t-set_ux.c │ │ ├── t-sizeinbase.c │ │ ├── t-sqrtrem.c │ │ ├── t-tdiv.c │ │ ├── t-tdiv_ui.c │ │ └── t-trial_division.c │ ├── rand │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── findlc.c │ │ ├── gen.c │ │ ├── gmpstat.h │ │ ├── spect.c │ │ ├── stat.c │ │ ├── statlib.c │ │ ├── t-iset.c │ │ ├── t-lc2exp.c │ │ ├── t-mt.c │ │ ├── t-rand.c │ │ ├── t-urbui.c │ │ ├── t-urmui.c │ │ ├── t-urndmm.c │ │ └── zdiv_round.c │ ├── refmpf.c │ ├── refmpn.c │ ├── refmpq.c │ ├── refmpz.c │ ├── spinner.c │ ├── t-bswap.c │ ├── t-constants.c │ ├── t-count_zeros.c │ ├── t-gmpmax.c │ ├── t-hightomask.c │ ├── t-modlinv.c │ ├── t-parity.c │ ├── t-popc.c │ ├── t-sub.c │ ├── tests.h │ ├── trace.c │ ├── x86_64call.as │ ├── x86_64check.c │ ├── x86call.asm │ └── x86check.c ├── tune │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── alpha.asm │ ├── common.c │ ├── divrem1div.c │ ├── divrem1inv.c │ ├── divrem2div.c │ ├── divrem2inv.c │ ├── fac_ui_large.c │ ├── fac_ui_small.c │ ├── freq.c │ ├── gcd_bin.c │ ├── gcdextod.c │ ├── gcdextos.c │ ├── hppa.asm │ ├── hppa2.asm │ ├── hppa2w.asm │ ├── ia64.asm │ ├── jacbase1.c │ ├── jacbase2.c │ ├── jacbase3.c │ ├── many.pl │ ├── mod_1_div.c │ ├── mod_1_inv.c │ ├── modlinv.c │ ├── noop.c │ ├── pentium.asm │ ├── powerpc.asm │ ├── powerpc64.asm │ ├── powm_mod.c │ ├── powm_redc.c │ ├── preinv_divrem_1.c │ ├── set_strb.c │ ├── set_strp.c │ ├── set_strs.c │ ├── sparcv9.asm │ ├── speed-ext.c │ ├── speed.c │ ├── speed.h │ ├── time.c │ ├── tuneup.c │ └── x86_64.as ├── version.c ├── win │ ├── configure.bat │ └── make.bat ├── yasm │ ├── ABOUT-NLS │ ├── AUTHORS │ ├── Artistic.txt │ ├── BSD.txt │ ├── COPYING │ ├── ChangeLog │ ├── GNU_GPL-2.0 │ ├── GNU_LGPL-2.0 │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── Mkfiles │ │ ├── Makefile.dj │ │ ├── Makefile.flat │ │ ├── dj │ │ │ ├── YASM-VERSION.h │ │ │ ├── config.h │ │ │ └── libyasm-stdint.h │ │ ├── vc10 │ │ │ ├── YASM-VERSION.h │ │ │ ├── config.h │ │ │ ├── crt_secure_no_deprecate.props │ │ │ ├── crt_secure_no_deprecate.vsprops │ │ │ ├── genmacro │ │ │ │ ├── genmacro.vcxproj │ │ │ │ ├── genmacro.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── genmodule │ │ │ │ ├── genmodule.vcxproj │ │ │ │ ├── genmodule.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── genperf │ │ │ │ ├── genperf.vcxproj │ │ │ │ ├── genperf.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── genstring │ │ │ │ ├── genstring.vcxproj │ │ │ │ ├── genstring.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── genversion │ │ │ │ ├── genversion.vcxproj │ │ │ │ ├── genversion.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── libyasm-stdint.h │ │ │ ├── libyasm │ │ │ │ ├── libyasm.vcxproj │ │ │ │ └── libyasm.vcxproj.filters │ │ │ ├── modules │ │ │ │ ├── modules.vcxproj │ │ │ │ └── modules.vcxproj.filters │ │ │ ├── out_copy_rename.bat │ │ │ ├── re2c │ │ │ │ ├── re2c.vcxproj │ │ │ │ ├── re2c.vcxproj.filters │ │ │ │ └── run.bat │ │ │ ├── readme.vc10.txt │ │ │ ├── vsyasm.props │ │ │ ├── vsyasm.targets │ │ │ ├── vsyasm.vcxproj │ │ │ ├── vsyasm.xml │ │ │ ├── yasm.sln │ │ │ ├── yasm.vcxproj │ │ │ ├── yasm.vcxproj.filters │ │ │ └── ytasm.vcxproj │ │ └── vc9 │ │ │ ├── YASM-VERSION.h │ │ │ ├── config.h │ │ │ ├── crt_secure_no_deprecate.vsprops │ │ │ ├── genmacro │ │ │ ├── genmacro.vcproj │ │ │ └── run.bat │ │ │ ├── genmodule │ │ │ ├── genmodule.vcproj │ │ │ └── run.bat │ │ │ ├── genperf │ │ │ ├── genperf.vcproj │ │ │ └── run.bat │ │ │ ├── genstring │ │ │ ├── genstring.vcproj │ │ │ └── run.bat │ │ │ ├── genversion │ │ │ ├── genversion.vcproj │ │ │ └── run.bat │ │ │ ├── libyasm-stdint.h │ │ │ ├── libyasm │ │ │ └── libyasm.vcproj │ │ │ ├── modules │ │ │ └── modules.vcproj │ │ │ ├── re2c │ │ │ ├── re2c.vcproj │ │ │ └── run.bat │ │ │ ├── readme.vc9.txt │ │ │ ├── vc98_swap.py │ │ │ ├── vsyasm.vcproj │ │ │ ├── yasm.rules │ │ │ ├── yasm.sln │ │ │ ├── yasm.vcproj │ │ │ └── ytasm.vcproj │ ├── NEWS │ ├── README │ ├── YASM-VERSION-GEN.sh │ ├── aclocal.m4 │ ├── config.h.in │ ├── config │ │ ├── config.guess │ │ ├── config.rpath │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── missing │ │ └── mkinstalldirs │ ├── configure │ ├── configure.ac │ ├── frontends │ │ ├── Makefile.inc │ │ ├── tasm │ │ │ ├── Makefile.inc │ │ │ ├── tasm-options.c │ │ │ ├── tasm-options.h │ │ │ └── tasm.c │ │ ├── vsyasm │ │ │ ├── Makefile.inc │ │ │ └── vsyasm.c │ │ └── yasm │ │ │ ├── Makefile.inc │ │ │ ├── yasm-options.c │ │ │ ├── yasm-options.h │ │ │ ├── yasm.c │ │ │ └── yasm.xml │ ├── genstring.c │ ├── libyasm.h │ ├── libyasm │ │ ├── Makefile.inc │ │ ├── arch.h │ │ ├── assocdat.c │ │ ├── assocdat.h │ │ ├── bc-align.c │ │ ├── bc-data.c │ │ ├── bc-incbin.c │ │ ├── bc-org.c │ │ ├── bc-reserve.c │ │ ├── bitvect.c │ │ ├── bitvect.h │ │ ├── bytecode.c │ │ ├── bytecode.h │ │ ├── compat-queue.h │ │ ├── coretype.h │ │ ├── dbgfmt.h │ │ ├── errwarn.c │ │ ├── errwarn.h │ │ ├── expr.c │ │ ├── expr.h │ │ ├── file.c │ │ ├── file.h │ │ ├── floatnum.c │ │ ├── floatnum.h │ │ ├── genmodule.c │ │ ├── hamt.c │ │ ├── hamt.h │ │ ├── insn.c │ │ ├── insn.h │ │ ├── intnum.c │ │ ├── intnum.h │ │ ├── inttree.c │ │ ├── inttree.h │ │ ├── linemap.c │ │ ├── linemap.h │ │ ├── listfmt.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mergesort.c │ │ ├── module.h │ │ ├── module.in │ │ ├── objfmt.h │ │ ├── parser.h │ │ ├── phash.c │ │ ├── phash.h │ │ ├── preproc.h │ │ ├── section.c │ │ ├── section.h │ │ ├── strcasecmp.c │ │ ├── strsep.c │ │ ├── symrec.c │ │ ├── symrec.h │ │ ├── tests │ │ │ ├── 1shl0.asm │ │ │ ├── 1shl0.hex │ │ │ ├── Makefile.inc │ │ │ ├── absloop-err.asm │ │ │ ├── absloop-err.errwarn │ │ │ ├── bitvect_test.c │ │ │ ├── charconst64.asm │ │ │ ├── charconst64.hex │ │ │ ├── combpath_test.c │ │ │ ├── data-rawvalue.asm │ │ │ ├── data-rawvalue.hex │ │ │ ├── duplabel-err.asm │ │ │ ├── duplabel-err.errwarn │ │ │ ├── emptydata.asm │ │ │ ├── emptydata.hex │ │ │ ├── equ-expand.asm │ │ │ ├── equ-expand.hex │ │ │ ├── expr-fold-level.asm │ │ │ ├── expr-fold-level.hex │ │ │ ├── expr-simplify-identity.asm │ │ │ ├── expr-simplify-identity.hex │ │ │ ├── expr-wide-ident.asm │ │ │ ├── expr-wide-ident.hex │ │ │ ├── externdef.asm │ │ │ ├── externdef.errwarn │ │ │ ├── externdef.hex │ │ │ ├── floatnum_test.c │ │ │ ├── incbin.asm │ │ │ ├── incbin.hex │ │ │ ├── jmpsize1-err.asm │ │ │ ├── jmpsize1-err.errwarn │ │ │ ├── jmpsize1.asm │ │ │ ├── jmpsize1.hex │ │ │ ├── leb128_test.c │ │ │ ├── libyasm_test.sh │ │ │ ├── opt-align1.asm │ │ │ ├── opt-align1.hex │ │ │ ├── opt-align2.asm │ │ │ ├── opt-align2.hex │ │ │ ├── opt-align3.asm │ │ │ ├── opt-align3.hex │ │ │ ├── opt-circular1-err.asm │ │ │ ├── opt-circular1-err.errwarn │ │ │ ├── opt-circular2-err.asm │ │ │ ├── opt-circular2-err.errwarn │ │ │ ├── opt-circular3-err.asm │ │ │ ├── opt-circular3-err.errwarn │ │ │ ├── opt-gvmat64.asm │ │ │ ├── opt-gvmat64.hex │ │ │ ├── opt-immexpand.asm │ │ │ ├── opt-immexpand.hex │ │ │ ├── opt-immnoexpand.asm │ │ │ ├── opt-immnoexpand.hex │ │ │ ├── opt-oldalign.asm │ │ │ ├── opt-oldalign.hex │ │ │ ├── opt-struc.asm │ │ │ ├── opt-struc.hex │ │ │ ├── reserve-err1.asm │ │ │ ├── reserve-err1.errwarn │ │ │ ├── reserve-err2.asm │ │ │ ├── reserve-err2.errwarn │ │ │ ├── splitpath_test.c │ │ │ ├── strucsize.asm │ │ │ ├── strucsize.hex │ │ │ ├── times-res.asm │ │ │ ├── times-res.errwarn │ │ │ ├── times-res.hex │ │ │ ├── times0.asm │ │ │ ├── times0.hex │ │ │ ├── timesfwd.asm │ │ │ ├── timesfwd.hex │ │ │ ├── timesover-err.asm │ │ │ ├── timesover-err.errwarn │ │ │ ├── timesunder.asm │ │ │ ├── timesunder.hex │ │ │ ├── unary.asm │ │ │ ├── unary.hex │ │ │ ├── uncstring_test.c │ │ │ ├── value-err.asm │ │ │ ├── value-err.errwarn │ │ │ ├── value-mask.asm │ │ │ ├── value-mask.errwarn │ │ │ ├── value-mask.hex │ │ │ ├── value-samesym.asm │ │ │ ├── value-samesym.errwarn │ │ │ ├── value-samesym.hex │ │ │ ├── value-shr-symexpr.asm │ │ │ └── value-shr-symexpr.hex │ │ ├── valparam.c │ │ ├── valparam.h │ │ ├── value.c │ │ ├── value.h │ │ ├── xmalloc.c │ │ └── xstrdup.c │ ├── m4 │ │ ├── Makefile.inc │ │ ├── ax_create_stdint_h.m4 │ │ ├── codeset.m4 │ │ ├── cython.m4 │ │ ├── gettext.m4 │ │ ├── glibc21.m4 │ │ ├── iconv.m4 │ │ ├── intdiv0.m4 │ │ ├── intmax.m4 │ │ ├── inttypes-pri.m4 │ │ ├── inttypes.m4 │ │ ├── inttypes_h.m4 │ │ ├── isc-posix.m4 │ │ ├── lcmessage.m4 │ │ ├── lib-ld.m4 │ │ ├── lib-link.m4 │ │ ├── lib-prefix.m4 │ │ ├── longdouble.m4 │ │ ├── longlong.m4 │ │ ├── nls.m4 │ │ ├── po.m4 │ │ ├── printf-posix.m4 │ │ ├── progtest.m4 │ │ ├── pythonhead.m4 │ │ ├── signed.m4 │ │ ├── size_max.m4 │ │ ├── stdint_h.m4 │ │ ├── uintmax_t.m4 │ │ ├── ulonglong.m4 │ │ ├── wchar_t.m4 │ │ ├── wint_t.m4 │ │ └── xsize.m4 │ ├── modules │ │ ├── Makefile.inc │ │ ├── arch │ │ │ ├── Makefile.inc │ │ │ ├── lc3b │ │ │ │ ├── Makefile.inc │ │ │ │ ├── lc3barch.c │ │ │ │ ├── lc3barch.h │ │ │ │ ├── lc3bbc.c │ │ │ │ ├── lc3bid.re │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── lc3b-basic.asm │ │ │ │ │ ├── lc3b-basic.errwarn │ │ │ │ │ ├── lc3b-basic.hex │ │ │ │ │ ├── lc3b-br.asm │ │ │ │ │ ├── lc3b-br.hex │ │ │ │ │ ├── lc3b-ea-err.asm │ │ │ │ │ ├── lc3b-ea-err.errwarn │ │ │ │ │ ├── lc3b-mp22NC.asm │ │ │ │ │ ├── lc3b-mp22NC.hex │ │ │ │ │ └── lc3b_test.sh │ │ │ ├── x86 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── gen_x86_insn.py │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── addbyte.asm │ │ │ │ │ ├── addbyte.errwarn │ │ │ │ │ ├── addbyte.hex │ │ │ │ │ ├── addrop-err.asm │ │ │ │ │ ├── addrop-err.errwarn │ │ │ │ │ ├── addrop.asm │ │ │ │ │ ├── addrop.errwarn │ │ │ │ │ ├── addrop.hex │ │ │ │ │ ├── aes.asm │ │ │ │ │ ├── aes.hex │ │ │ │ │ ├── amd-fma4.asm │ │ │ │ │ ├── amd-fma4.hex │ │ │ │ │ ├── amd200707.asm │ │ │ │ │ ├── amd200707.hex │ │ │ │ │ ├── arithsmall.asm │ │ │ │ │ ├── arithsmall.errwarn │ │ │ │ │ ├── arithsmall.hex │ │ │ │ │ ├── avx.asm │ │ │ │ │ ├── avx.hex │ │ │ │ │ ├── avx16.asm │ │ │ │ │ ├── avx16.hex │ │ │ │ │ ├── avx2.asm │ │ │ │ │ ├── avx2.hex │ │ │ │ │ ├── avxcc.asm │ │ │ │ │ ├── avxcc.hex │ │ │ │ │ ├── bittest.asm │ │ │ │ │ ├── bittest.hex │ │ │ │ │ ├── bmi1.asm │ │ │ │ │ ├── bmi1.hex │ │ │ │ │ ├── bmi2.asm │ │ │ │ │ ├── bmi2.hex │ │ │ │ │ ├── bswap64.asm │ │ │ │ │ ├── bswap64.hex │ │ │ │ │ ├── clmul.asm │ │ │ │ │ ├── clmul.hex │ │ │ │ │ ├── cmpxchg.asm │ │ │ │ │ ├── cmpxchg.hex │ │ │ │ │ ├── cpubasic-err.asm │ │ │ │ │ ├── cpubasic-err.errwarn │ │ │ │ │ ├── cyrix.asm │ │ │ │ │ ├── cyrix.hex │ │ │ │ │ ├── div-err.asm │ │ │ │ │ ├── div-err.errwarn │ │ │ │ │ ├── ea-nonzero.asm │ │ │ │ │ ├── ea-nonzero.hex │ │ │ │ │ ├── ea-over.asm │ │ │ │ │ ├── ea-over.errwarn │ │ │ │ │ ├── ea-over.hex │ │ │ │ │ ├── ea-warn.asm │ │ │ │ │ ├── ea-warn.errwarn │ │ │ │ │ ├── ea-warn.hex │ │ │ │ │ ├── ebpindex.asm │ │ │ │ │ ├── ebpindex.hex │ │ │ │ │ ├── effaddr.asm │ │ │ │ │ ├── effaddr.hex │ │ │ │ │ ├── enter.asm │ │ │ │ │ ├── enter.errwarn │ │ │ │ │ ├── enter.hex │ │ │ │ │ ├── eptvpid.asm │ │ │ │ │ ├── eptvpid.hex │ │ │ │ │ ├── f16c.asm │ │ │ │ │ ├── f16c.hex │ │ │ │ │ ├── far64.asm │ │ │ │ │ ├── far64.hex │ │ │ │ │ ├── farbasic.asm │ │ │ │ │ ├── farbasic.hex │ │ │ │ │ ├── farithr.asm │ │ │ │ │ ├── farithr.hex │ │ │ │ │ ├── fcmov.asm │ │ │ │ │ ├── fcmov.hex │ │ │ │ │ ├── fma.asm │ │ │ │ │ ├── fma.hex │ │ │ │ │ ├── fsgsbase.asm │ │ │ │ │ ├── fsgsbase.hex │ │ │ │ │ ├── fwdequ64.asm │ │ │ │ │ ├── fwdequ64.hex │ │ │ │ │ ├── gas32 │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── align32.asm │ │ │ │ │ │ ├── align32.hex │ │ │ │ │ │ ├── gas-farithr.asm │ │ │ │ │ │ ├── gas-farithr.hex │ │ │ │ │ │ ├── gas-farjump.asm │ │ │ │ │ │ ├── gas-farjump.hex │ │ │ │ │ │ ├── gas-fpmem.asm │ │ │ │ │ │ ├── gas-fpmem.hex │ │ │ │ │ │ ├── gas-invlpg.asm │ │ │ │ │ │ ├── gas-invlpg.hex │ │ │ │ │ │ ├── gas-loop32.asm │ │ │ │ │ │ ├── gas-loop32.hex │ │ │ │ │ │ ├── gas-movdq32.asm │ │ │ │ │ │ ├── gas-movdq32.hex │ │ │ │ │ │ ├── gas-movsd.asm │ │ │ │ │ │ ├── gas-movsd.hex │ │ │ │ │ │ ├── gas-pop.asm │ │ │ │ │ │ ├── gas-pop.hex │ │ │ │ │ │ ├── gas32-jmpcall.asm │ │ │ │ │ │ ├── gas32-jmpcall.hex │ │ │ │ │ │ └── x86_gas32_test.sh │ │ │ │ │ ├── gas64 │ │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ │ ├── align64.asm │ │ │ │ │ │ ├── align64.hex │ │ │ │ │ │ ├── gas-cbw.asm │ │ │ │ │ │ ├── gas-cbw.hex │ │ │ │ │ │ ├── gas-fp.asm │ │ │ │ │ │ ├── gas-fp.hex │ │ │ │ │ │ ├── gas-inout.asm │ │ │ │ │ │ ├── gas-inout.hex │ │ │ │ │ │ ├── gas-loop64.asm │ │ │ │ │ │ ├── gas-loop64.hex │ │ │ │ │ │ ├── gas-moreinsn.asm │ │ │ │ │ │ ├── gas-moreinsn.hex │ │ │ │ │ │ ├── gas-movabs.asm │ │ │ │ │ │ ├── gas-movabs.hex │ │ │ │ │ │ ├── gas-movdq64.asm │ │ │ │ │ │ ├── gas-movdq64.hex │ │ │ │ │ │ ├── gas-movsxs.asm │ │ │ │ │ │ ├── gas-movsxs.hex │ │ │ │ │ │ ├── gas-muldiv.asm │ │ │ │ │ │ ├── gas-muldiv.hex │ │ │ │ │ │ ├── gas-prefix.asm │ │ │ │ │ │ ├── gas-prefix.errwarn │ │ │ │ │ │ ├── gas-prefix.hex │ │ │ │ │ │ ├── gas-retenter.asm │ │ │ │ │ │ ├── gas-retenter.hex │ │ │ │ │ │ ├── gas-shift.asm │ │ │ │ │ │ ├── gas-shift.hex │ │ │ │ │ │ ├── gas64-jmpcall.asm │ │ │ │ │ │ ├── gas64-jmpcall.hex │ │ │ │ │ │ ├── riprel.asm │ │ │ │ │ │ ├── riprel.hex │ │ │ │ │ │ └── x86_gas64_test.sh │ │ │ │ │ ├── gen-fma-test.py │ │ │ │ │ ├── genopcode.asm │ │ │ │ │ ├── genopcode.hex │ │ │ │ │ ├── imm64.asm │ │ │ │ │ ├── imm64.errwarn │ │ │ │ │ ├── imm64.hex │ │ │ │ │ ├── invpcid.asm │ │ │ │ │ ├── invpcid.hex │ │ │ │ │ ├── iret.asm │ │ │ │ │ ├── iret.hex │ │ │ │ │ ├── jmp64-1.asm │ │ │ │ │ ├── jmp64-1.hex │ │ │ │ │ ├── jmp64-2.asm │ │ │ │ │ ├── jmp64-2.hex │ │ │ │ │ ├── jmp64-3.asm │ │ │ │ │ ├── jmp64-3.hex │ │ │ │ │ ├── jmp64-4.asm │ │ │ │ │ ├── jmp64-4.hex │ │ │ │ │ ├── jmp64-5.asm │ │ │ │ │ ├── jmp64-5.hex │ │ │ │ │ ├── jmp64-6.asm │ │ │ │ │ ├── jmp64-6.hex │ │ │ │ │ ├── jmpfar.asm │ │ │ │ │ ├── jmpfar.hex │ │ │ │ │ ├── larlsl.asm │ │ │ │ │ ├── larlsl.hex │ │ │ │ │ ├── lds.asm │ │ │ │ │ ├── lds.hex │ │ │ │ │ ├── lfs64.asm │ │ │ │ │ ├── lfs64.hex │ │ │ │ │ ├── loopadsz.asm │ │ │ │ │ ├── loopadsz.hex │ │ │ │ │ ├── lsahf.asm │ │ │ │ │ ├── lsahf.hex │ │ │ │ │ ├── lzcnt.asm │ │ │ │ │ ├── lzcnt.hex │ │ │ │ │ ├── mem64-err.asm │ │ │ │ │ ├── mem64-err.errwarn │ │ │ │ │ ├── mem64.asm │ │ │ │ │ ├── mem64.errwarn │ │ │ │ │ ├── mem64.hex │ │ │ │ │ ├── mem64hi32.asm │ │ │ │ │ ├── mem64hi32.hex │ │ │ │ │ ├── mem64rip.asm │ │ │ │ │ ├── mem64rip.hex │ │ │ │ │ ├── mixcase.asm │ │ │ │ │ ├── mixcase.hex │ │ │ │ │ ├── movbe.asm │ │ │ │ │ ├── movbe.hex │ │ │ │ │ ├── movdq32.asm │ │ │ │ │ ├── movdq32.hex │ │ │ │ │ ├── movdq64.asm │ │ │ │ │ ├── movdq64.hex │ │ │ │ │ ├── negequ.asm │ │ │ │ │ ├── negequ.hex │ │ │ │ │ ├── nomem64-err.asm │ │ │ │ │ ├── nomem64-err.errwarn │ │ │ │ │ ├── nomem64-err2.asm │ │ │ │ │ ├── nomem64-err2.errwarn │ │ │ │ │ ├── nomem64.asm │ │ │ │ │ ├── nomem64.errwarn │ │ │ │ │ ├── nomem64.hex │ │ │ │ │ ├── o64.asm │ │ │ │ │ ├── o64.hex │ │ │ │ │ ├── o64loop.asm │ │ │ │ │ ├── o64loop.errwarn │ │ │ │ │ ├── o64loop.hex │ │ │ │ │ ├── opersize.asm │ │ │ │ │ ├── opersize.hex │ │ │ │ │ ├── opsize-err.asm │ │ │ │ │ ├── opsize-err.errwarn │ │ │ │ │ ├── overflow.asm │ │ │ │ │ ├── overflow.errwarn │ │ │ │ │ ├── overflow.hex │ │ │ │ │ ├── padlock.asm │ │ │ │ │ ├── padlock.hex │ │ │ │ │ ├── pinsrb.asm │ │ │ │ │ ├── pinsrb.hex │ │ │ │ │ ├── pshift.asm │ │ │ │ │ ├── pshift.hex │ │ │ │ │ ├── push64.asm │ │ │ │ │ ├── push64.errwarn │ │ │ │ │ ├── push64.hex │ │ │ │ │ ├── pushf-err.asm │ │ │ │ │ ├── pushf-err.errwarn │ │ │ │ │ ├── pushf.asm │ │ │ │ │ ├── pushf.hex │ │ │ │ │ ├── pushnosize.asm │ │ │ │ │ ├── pushnosize.errwarn │ │ │ │ │ ├── pushnosize.hex │ │ │ │ │ ├── rdrnd.asm │ │ │ │ │ ├── rdrnd.hex │ │ │ │ │ ├── rep.asm │ │ │ │ │ ├── rep.hex │ │ │ │ │ ├── ret.asm │ │ │ │ │ ├── ret.hex │ │ │ │ │ ├── riprel1.asm │ │ │ │ │ ├── riprel1.hex │ │ │ │ │ ├── riprel2.asm │ │ │ │ │ ├── riprel2.errwarn │ │ │ │ │ ├── riprel2.hex │ │ │ │ │ ├── ripseg.asm │ │ │ │ │ ├── ripseg.errwarn │ │ │ │ │ ├── ripseg.hex │ │ │ │ │ ├── segmov.asm │ │ │ │ │ ├── segmov.hex │ │ │ │ │ ├── segoff-err.asm │ │ │ │ │ ├── segoff-err.errwarn │ │ │ │ │ ├── segoff.asm │ │ │ │ │ ├── segoff.hex │ │ │ │ │ ├── shift.asm │ │ │ │ │ ├── shift.hex │ │ │ │ │ ├── shift64.asm │ │ │ │ │ ├── shift64.hex │ │ │ │ │ ├── simd-1.asm │ │ │ │ │ ├── simd-1.hex │ │ │ │ │ ├── simd-2.asm │ │ │ │ │ ├── simd-2.hex │ │ │ │ │ ├── simd64-1.asm │ │ │ │ │ ├── simd64-1.hex │ │ │ │ │ ├── simd64-2.asm │ │ │ │ │ ├── simd64-2.hex │ │ │ │ │ ├── smx.asm │ │ │ │ │ ├── smx.hex │ │ │ │ │ ├── sse-prefix.asm │ │ │ │ │ ├── sse-prefix.hex │ │ │ │ │ ├── sse3.asm │ │ │ │ │ ├── sse3.hex │ │ │ │ │ ├── sse4-err.asm │ │ │ │ │ ├── sse4-err.errwarn │ │ │ │ │ ├── sse4.asm │ │ │ │ │ ├── sse4.hex │ │ │ │ │ ├── ssewidth.asm │ │ │ │ │ ├── ssewidth.hex │ │ │ │ │ ├── ssse3.asm │ │ │ │ │ ├── ssse3.c │ │ │ │ │ ├── ssse3.hex │ │ │ │ │ ├── stos.asm │ │ │ │ │ ├── stos.hex │ │ │ │ │ ├── str.asm │ │ │ │ │ ├── str.hex │ │ │ │ │ ├── strict-err.asm │ │ │ │ │ ├── strict-err.errwarn │ │ │ │ │ ├── strict.asm │ │ │ │ │ ├── strict.errwarn │ │ │ │ │ ├── strict.hex │ │ │ │ │ ├── stringseg.asm │ │ │ │ │ ├── stringseg.errwarn │ │ │ │ │ ├── stringseg.hex │ │ │ │ │ ├── svm.asm │ │ │ │ │ ├── svm.hex │ │ │ │ │ ├── twobytemem.asm │ │ │ │ │ ├── twobytemem.errwarn │ │ │ │ │ ├── twobytemem.hex │ │ │ │ │ ├── vmx-err.asm │ │ │ │ │ ├── vmx-err.errwarn │ │ │ │ │ ├── vmx.asm │ │ │ │ │ ├── vmx.hex │ │ │ │ │ ├── vsib-err.asm │ │ │ │ │ ├── vsib-err.errwarn │ │ │ │ │ ├── vsib.asm │ │ │ │ │ ├── vsib.hex │ │ │ │ │ ├── vsib2-err.asm │ │ │ │ │ ├── vsib2-err.errwarn │ │ │ │ │ ├── x86_test.sh │ │ │ │ │ ├── x86label.asm │ │ │ │ │ ├── x86label.hex │ │ │ │ │ ├── xchg64.asm │ │ │ │ │ ├── xchg64.hex │ │ │ │ │ ├── xmm64.asm │ │ │ │ │ ├── xmm64.hex │ │ │ │ │ ├── xop-all.asm │ │ │ │ │ ├── xop-all.hex │ │ │ │ │ ├── xop-basic.asm │ │ │ │ │ ├── xop-basic.hex │ │ │ │ │ ├── xop-cc.asm │ │ │ │ │ ├── xop-cc.hex │ │ │ │ │ ├── xsave.asm │ │ │ │ │ └── xsave.hex │ │ │ │ ├── x86arch.c │ │ │ │ ├── x86arch.h │ │ │ │ ├── x86bc.c │ │ │ │ ├── x86cpu.gperf │ │ │ │ ├── x86expr.c │ │ │ │ ├── x86id.c │ │ │ │ └── x86regtmod.gperf │ │ │ └── yasm_arch.xml │ │ ├── dbgfmts │ │ │ ├── Makefile.inc │ │ │ ├── codeview │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cv-dbgfmt.c │ │ │ │ ├── cv-dbgfmt.h │ │ │ │ ├── cv-symline.c │ │ │ │ ├── cv-type.c │ │ │ │ └── cv8.txt │ │ │ ├── dwarf2 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── dwarf2-aranges.c │ │ │ │ ├── dwarf2-dbgfmt.c │ │ │ │ ├── dwarf2-dbgfmt.h │ │ │ │ ├── dwarf2-info.c │ │ │ │ ├── dwarf2-line.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gen64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── dwarf2_gen64_test.sh │ │ │ │ │ ├── dwarf64_pathname.asm │ │ │ │ │ └── dwarf64_pathname.hex │ │ │ │ │ ├── pass32 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── dwarf2_pass32_test.sh │ │ │ │ │ ├── dwarf32-err.asm │ │ │ │ │ ├── dwarf32-err.errwarn │ │ │ │ │ ├── dwarf32_testhd.asm │ │ │ │ │ └── dwarf32_testhd.hex │ │ │ │ │ ├── pass64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── dwarf2_pass64_test.sh │ │ │ │ │ ├── dwarf64_2loc.asm │ │ │ │ │ ├── dwarf64_2loc.hex │ │ │ │ │ ├── dwarf64_leb128.asm │ │ │ │ │ └── dwarf64_leb128.hex │ │ │ │ │ └── passwin64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── dwarf2_passwin64_test.sh │ │ │ │ │ ├── dwarfwin64_testhd.asm │ │ │ │ │ ├── dwarfwin64_testhd.errwarn │ │ │ │ │ └── dwarfwin64_testhd.hex │ │ │ ├── null │ │ │ │ ├── Makefile.inc │ │ │ │ └── null-dbgfmt.c │ │ │ ├── stabs │ │ │ │ ├── Makefile.inc │ │ │ │ ├── stabs-dbgfmt.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── stabs-elf.asm │ │ │ │ │ ├── stabs-elf.hex │ │ │ │ │ └── stabs_test.sh │ │ │ └── yasm_dbgfmts.xml │ │ ├── listfmts │ │ │ ├── Makefile.inc │ │ │ └── nasm │ │ │ │ ├── Makefile.inc │ │ │ │ └── nasm-listfmt.c │ │ ├── objfmts │ │ │ ├── Makefile.inc │ │ │ ├── bin │ │ │ │ ├── Makefile.inc │ │ │ │ ├── bin-objfmt.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── abs.asm │ │ │ │ │ ├── abs.hex │ │ │ │ │ ├── bigorg.asm │ │ │ │ │ ├── bigorg.errwarn │ │ │ │ │ ├── bigorg.hex │ │ │ │ │ ├── bin-farabs.asm │ │ │ │ │ ├── bin-farabs.hex │ │ │ │ │ ├── bin-rip.asm │ │ │ │ │ ├── bin-rip.hex │ │ │ │ │ ├── bin_test.sh │ │ │ │ │ ├── bintest.asm │ │ │ │ │ ├── bintest.hex │ │ │ │ │ ├── float-err.asm │ │ │ │ │ ├── float-err.errwarn │ │ │ │ │ ├── float.asm │ │ │ │ │ ├── float.hex │ │ │ │ │ ├── integer-warn.asm │ │ │ │ │ ├── integer-warn.errwarn │ │ │ │ │ ├── integer-warn.hex │ │ │ │ │ ├── integer.asm │ │ │ │ │ ├── integer.hex │ │ │ │ │ ├── levelop.asm │ │ │ │ │ ├── levelop.hex │ │ │ │ │ ├── multisect │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── bin-align.asm │ │ │ │ │ ├── bin-align.errwarn │ │ │ │ │ ├── bin-align.hex │ │ │ │ │ ├── bin-align.map │ │ │ │ │ ├── bin-ssym.asm │ │ │ │ │ ├── bin-ssym.hex │ │ │ │ │ ├── bin-ssym.map │ │ │ │ │ ├── bin_multi_test.sh │ │ │ │ │ ├── follows-loop1-err.asm │ │ │ │ │ ├── follows-loop1-err.errwarn │ │ │ │ │ ├── follows-loop2-err.asm │ │ │ │ │ ├── follows-loop2-err.errwarn │ │ │ │ │ ├── follows-notfound-err.asm │ │ │ │ │ ├── follows-notfound-err.errwarn │ │ │ │ │ ├── initbss.asm │ │ │ │ │ ├── initbss.errwarn │ │ │ │ │ ├── initbss.hex │ │ │ │ │ ├── initbss.map │ │ │ │ │ ├── ldlinux-sects.asm │ │ │ │ │ ├── ldlinux-sects.hex │ │ │ │ │ ├── ldlinux-sects.map │ │ │ │ │ ├── multisect1.asm │ │ │ │ │ ├── multisect1.hex │ │ │ │ │ ├── multisect1.map │ │ │ │ │ ├── multisect2.asm │ │ │ │ │ ├── multisect2.hex │ │ │ │ │ ├── multisect2.map │ │ │ │ │ ├── multisect3.asm │ │ │ │ │ ├── multisect3.hex │ │ │ │ │ ├── multisect3.map │ │ │ │ │ ├── multisect4.asm │ │ │ │ │ ├── multisect4.hex │ │ │ │ │ ├── multisect4.map │ │ │ │ │ ├── multisect5.asm │ │ │ │ │ ├── multisect5.hex │ │ │ │ │ ├── multisect5.map │ │ │ │ │ ├── nomultisect1.asm │ │ │ │ │ ├── nomultisect1.hex │ │ │ │ │ ├── nomultisect1.map │ │ │ │ │ ├── nomultisect2.asm │ │ │ │ │ ├── nomultisect2.hex │ │ │ │ │ ├── nomultisect2.map │ │ │ │ │ ├── vfollows-loop1-err.asm │ │ │ │ │ ├── vfollows-loop1-err.errwarn │ │ │ │ │ ├── vfollows-loop2-err.asm │ │ │ │ │ ├── vfollows-loop2-err.errwarn │ │ │ │ │ ├── vfollows-notfound-err.asm │ │ │ │ │ └── vfollows-notfound-err.errwarn │ │ │ │ │ ├── reserve.asm │ │ │ │ │ ├── reserve.errwarn │ │ │ │ │ ├── reserve.hex │ │ │ │ │ ├── shr.asm │ │ │ │ │ └── shr.hex │ │ │ ├── coff │ │ │ │ ├── Makefile.inc │ │ │ │ ├── coff-objfmt.c │ │ │ │ ├── coff-objfmt.h │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── coff_test.sh │ │ │ │ │ ├── cofftest.asm │ │ │ │ │ ├── cofftest.c │ │ │ │ │ ├── cofftest.hex │ │ │ │ │ ├── cofftimes.asm │ │ │ │ │ ├── cofftimes.hex │ │ │ │ │ ├── x86id.asm │ │ │ │ │ ├── x86id.errwarn │ │ │ │ │ └── x86id.hex │ │ │ │ ├── win64-except.c │ │ │ │ ├── win64-gas.mac │ │ │ │ └── win64-nasm.mac │ │ │ ├── dbg │ │ │ │ ├── Makefile.inc │ │ │ │ └── dbg-objfmt.c │ │ │ ├── elf │ │ │ │ ├── Makefile.inc │ │ │ │ ├── elf-machine.h │ │ │ │ ├── elf-objfmt.c │ │ │ │ ├── elf-x86-amd64.c │ │ │ │ ├── elf-x86-x86.c │ │ │ │ ├── elf.c │ │ │ │ ├── elf.h │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── amd64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── elf-rip.asm │ │ │ │ │ ├── elf-rip.hex │ │ │ │ │ ├── elf_amd64_test.sh │ │ │ │ │ ├── elfso64.asm │ │ │ │ │ ├── elfso64.hex │ │ │ │ │ ├── gotpcrel.asm │ │ │ │ │ ├── gotpcrel.hex │ │ │ │ │ ├── multiplefixup.asm │ │ │ │ │ └── multiplefixup.hex │ │ │ │ │ ├── curpos-err.asm │ │ │ │ │ ├── curpos-err.errwarn │ │ │ │ │ ├── curpos.asm │ │ │ │ │ ├── curpos.hex │ │ │ │ │ ├── elf-overdef.asm │ │ │ │ │ ├── elf-overdef.hex │ │ │ │ │ ├── elf-x86id.asm │ │ │ │ │ ├── elf-x86id.hex │ │ │ │ │ ├── elf_test.sh │ │ │ │ │ ├── elfabssect.asm │ │ │ │ │ ├── elfabssect.hex │ │ │ │ │ ├── elfcond.asm │ │ │ │ │ ├── elfcond.hex │ │ │ │ │ ├── elfequabs.asm │ │ │ │ │ ├── elfequabs.hex │ │ │ │ │ ├── elfglobal.asm │ │ │ │ │ ├── elfglobal.hex │ │ │ │ │ ├── elfglobext.asm │ │ │ │ │ ├── elfglobext.hex │ │ │ │ │ ├── elfglobext2.asm │ │ │ │ │ ├── elfglobext2.hex │ │ │ │ │ ├── elfmanysym.asm │ │ │ │ │ ├── elfmanysym.hex │ │ │ │ │ ├── elfreloc-ext.asm │ │ │ │ │ ├── elfreloc-ext.hex │ │ │ │ │ ├── elfreloc.asm │ │ │ │ │ ├── elfreloc.hex │ │ │ │ │ ├── elfsectalign.asm │ │ │ │ │ ├── elfsectalign.hex │ │ │ │ │ ├── elfso.asm │ │ │ │ │ ├── elfso.hex │ │ │ │ │ ├── elftest.asm │ │ │ │ │ ├── elftest.c │ │ │ │ │ ├── elftest.hex │ │ │ │ │ ├── elftimes.asm │ │ │ │ │ ├── elftimes.hex │ │ │ │ │ ├── elftypesize.asm │ │ │ │ │ ├── elftypesize.hex │ │ │ │ │ ├── elfvisibility.asm │ │ │ │ │ ├── elfvisibility.errwarn │ │ │ │ │ ├── elfvisibility.hex │ │ │ │ │ ├── gas32 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── elf_gas32_got.asm │ │ │ │ │ ├── elf_gas32_got.hex │ │ │ │ │ ├── elf_gas32_ssym.asm │ │ │ │ │ ├── elf_gas32_ssym.hex │ │ │ │ │ └── elf_gas32_test.sh │ │ │ │ │ ├── gas64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── crosssect.asm │ │ │ │ │ ├── crosssect.hex │ │ │ │ │ ├── elf_gas64_curpos.asm │ │ │ │ │ ├── elf_gas64_curpos.hex │ │ │ │ │ ├── elf_gas64_reloc.asm │ │ │ │ │ ├── elf_gas64_reloc.hex │ │ │ │ │ ├── elf_gas64_ssym.asm │ │ │ │ │ ├── elf_gas64_ssym.hex │ │ │ │ │ └── elf_gas64_test.sh │ │ │ │ │ ├── nasm-forceident.asm │ │ │ │ │ ├── nasm-forceident.hex │ │ │ │ │ ├── nasm-sectname.asm │ │ │ │ │ └── nasm-sectname.hex │ │ │ ├── macho │ │ │ │ ├── Makefile.inc │ │ │ │ ├── macho-objfmt.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gas32 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gas-macho32.asm │ │ │ │ │ ├── gas-macho32.hex │ │ │ │ │ └── gas_macho32_test.sh │ │ │ │ │ ├── gas64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gas-macho64-pic.asm │ │ │ │ │ ├── gas-macho64-pic.hex │ │ │ │ │ ├── gas-macho64.asm │ │ │ │ │ ├── gas-macho64.hex │ │ │ │ │ └── gas_macho64_test.sh │ │ │ │ │ ├── nasm32 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── macho-reloc.asm │ │ │ │ │ ├── macho-reloc.hex │ │ │ │ │ ├── macho32-pext.asm │ │ │ │ │ ├── macho32-pext.hex │ │ │ │ │ ├── macho32-pic.asm │ │ │ │ │ ├── macho32-pic.hex │ │ │ │ │ ├── macho32-sect.asm │ │ │ │ │ ├── macho32-sect.errwarn │ │ │ │ │ ├── macho32-sect.hex │ │ │ │ │ ├── macho32-size.asm │ │ │ │ │ ├── macho32-size.hex │ │ │ │ │ ├── macho32_test.sh │ │ │ │ │ ├── machotest.asm │ │ │ │ │ ├── machotest.c │ │ │ │ │ └── machotest.hex │ │ │ │ │ └── nasm64 │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── macho-reloc64-err.asm │ │ │ │ │ ├── macho-reloc64-err.errwarn │ │ │ │ │ ├── macho64_test.sh │ │ │ │ │ ├── machotest64.asm │ │ │ │ │ ├── machotest64.c │ │ │ │ │ ├── machotest64.hex │ │ │ │ │ ├── nasm-macho64-pic.asm │ │ │ │ │ └── nasm-macho64-pic.hex │ │ │ ├── rdf │ │ │ │ ├── Makefile.inc │ │ │ │ ├── rdf-objfmt.c │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── rdf_test.sh │ │ │ │ │ ├── rdfabs.asm │ │ │ │ │ ├── rdfabs.errwarn │ │ │ │ │ ├── rdfabs.hex │ │ │ │ │ ├── rdfext.asm │ │ │ │ │ ├── rdfext.hex │ │ │ │ │ ├── rdfseg.asm │ │ │ │ │ ├── rdfseg.hex │ │ │ │ │ ├── rdfseg2.asm │ │ │ │ │ ├── rdfseg2.hex │ │ │ │ │ ├── rdftest1.asm │ │ │ │ │ ├── rdftest1.hex │ │ │ │ │ ├── rdftest2.asm │ │ │ │ │ ├── rdftest2.hex │ │ │ │ │ ├── rdtlib.asm │ │ │ │ │ ├── rdtlib.hex │ │ │ │ │ ├── rdtmain.asm │ │ │ │ │ ├── rdtmain.hex │ │ │ │ │ ├── testlib.asm │ │ │ │ │ └── testlib.hex │ │ │ ├── win32 │ │ │ │ ├── Makefile.inc │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── export.asm │ │ │ │ │ ├── export.hex │ │ │ │ │ ├── gas │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── win32_gas_test.sh │ │ │ │ │ ├── win32at.asm │ │ │ │ │ ├── win32at.hex │ │ │ │ │ ├── win32def.asm │ │ │ │ │ ├── win32def.hex │ │ │ │ │ ├── win32secrel32.asm │ │ │ │ │ └── win32secrel32.hex │ │ │ │ │ ├── win32-curpos.asm │ │ │ │ │ ├── win32-curpos.hex │ │ │ │ │ ├── win32-overdef.asm │ │ │ │ │ ├── win32-overdef.hex │ │ │ │ │ ├── win32-safeseh.asm │ │ │ │ │ ├── win32-safeseh.hex │ │ │ │ │ ├── win32-safeseh.masm │ │ │ │ │ ├── win32-segof.asm │ │ │ │ │ ├── win32-segof.hex │ │ │ │ │ ├── win32_test.sh │ │ │ │ │ ├── win32test.asm │ │ │ │ │ ├── win32test.c │ │ │ │ │ └── win32test.hex │ │ │ ├── win64 │ │ │ │ ├── Makefile.inc │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gas │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── win64-gas-sce.asm │ │ │ │ │ ├── win64-gas-sce.hex │ │ │ │ │ └── win64_gas_test.sh │ │ │ │ │ ├── sce1-err.asm │ │ │ │ │ ├── sce1-err.errwarn │ │ │ │ │ ├── sce1.asm │ │ │ │ │ ├── sce1.hex │ │ │ │ │ ├── sce2-err.asm │ │ │ │ │ ├── sce2-err.errwarn │ │ │ │ │ ├── sce2.asm │ │ │ │ │ ├── sce2.hex │ │ │ │ │ ├── sce3.asm │ │ │ │ │ ├── sce3.hex │ │ │ │ │ ├── sce3.masm │ │ │ │ │ ├── sce4-err.asm │ │ │ │ │ ├── sce4-err.errwarn │ │ │ │ │ ├── sce4.asm │ │ │ │ │ ├── sce4.hex │ │ │ │ │ ├── sce4.masm │ │ │ │ │ ├── win64-abs.asm │ │ │ │ │ ├── win64-abs.hex │ │ │ │ │ ├── win64-curpos.asm │ │ │ │ │ ├── win64-curpos.hex │ │ │ │ │ ├── win64-dataref.asm │ │ │ │ │ ├── win64-dataref.hex │ │ │ │ │ ├── win64-dataref.masm │ │ │ │ │ ├── win64-dataref2.asm │ │ │ │ │ ├── win64-dataref2.hex │ │ │ │ │ ├── win64-dataref2.masm │ │ │ │ │ ├── win64-imagebase.asm │ │ │ │ │ ├── win64-imagebase.hex │ │ │ │ │ └── win64_test.sh │ │ │ ├── xdf │ │ │ │ ├── Makefile.inc │ │ │ │ ├── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── xdf-overdef.asm │ │ │ │ │ ├── xdf-overdef.hex │ │ │ │ │ ├── xdf_test.sh │ │ │ │ │ ├── xdflong.asm │ │ │ │ │ ├── xdflong.errwarn │ │ │ │ │ ├── xdflong.hex │ │ │ │ │ ├── xdfother.asm │ │ │ │ │ ├── xdfother.hex │ │ │ │ │ ├── xdfprotect.asm │ │ │ │ │ ├── xdfprotect.hex │ │ │ │ │ ├── xdfsect-err.asm │ │ │ │ │ ├── xdfsect-err.errwarn │ │ │ │ │ ├── xdfsect.asm │ │ │ │ │ ├── xdfsect.hex │ │ │ │ │ ├── xdfvirtual.asm │ │ │ │ │ └── xdfvirtual.hex │ │ │ │ └── xdf-objfmt.c │ │ │ └── yasm_objfmts.xml │ │ ├── parsers │ │ │ ├── Makefile.inc │ │ │ ├── gas │ │ │ │ ├── Makefile.inc │ │ │ │ ├── gas-parse-intel.c │ │ │ │ ├── gas-parse.c │ │ │ │ ├── gas-parser.c │ │ │ │ ├── gas-parser.h │ │ │ │ ├── gas-token.re │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── bin │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── gas-comment.asm │ │ │ │ │ ├── gas-comment.errwarn │ │ │ │ │ ├── gas-comment.hex │ │ │ │ │ ├── gas-intel_syntax-noprefix.asm │ │ │ │ │ ├── gas-intel_syntax-noprefix.hex │ │ │ │ │ ├── gas-llabel.asm │ │ │ │ │ ├── gas-llabel.hex │ │ │ │ │ ├── gas-macro.asm │ │ │ │ │ ├── gas-macro.hex │ │ │ │ │ ├── gas-set.asm │ │ │ │ │ ├── gas-set.hex │ │ │ │ │ ├── gas-str.asm │ │ │ │ │ ├── gas-str.hex │ │ │ │ │ ├── gas_bin_test.sh │ │ │ │ │ ├── rept-err.asm │ │ │ │ │ ├── rept-err.errwarn │ │ │ │ │ ├── reptempty.asm │ │ │ │ │ ├── reptempty.hex │ │ │ │ │ ├── reptlong.asm │ │ │ │ │ ├── reptlong.hex │ │ │ │ │ ├── reptnested.asm │ │ │ │ │ ├── reptnested.hex │ │ │ │ │ ├── reptsimple.asm │ │ │ │ │ ├── reptsimple.hex │ │ │ │ │ ├── reptwarn.asm │ │ │ │ │ ├── reptwarn.errwarn │ │ │ │ │ ├── reptwarn.hex │ │ │ │ │ ├── reptzero.asm │ │ │ │ │ └── reptzero.hex │ │ │ │ │ ├── dataref-imm.asm │ │ │ │ │ ├── dataref-imm.hex │ │ │ │ │ ├── datavis.asm │ │ │ │ │ ├── datavis.errwarn │ │ │ │ │ ├── datavis.hex │ │ │ │ │ ├── datavis2.asm │ │ │ │ │ ├── datavis2.hex │ │ │ │ │ ├── execsect.asm │ │ │ │ │ ├── execsect.hex │ │ │ │ │ ├── gas-fill.asm │ │ │ │ │ ├── gas-fill.hex │ │ │ │ │ ├── gas-float.asm │ │ │ │ │ ├── gas-float.hex │ │ │ │ │ ├── gas-instlabel.asm │ │ │ │ │ ├── gas-instlabel.hex │ │ │ │ │ ├── gas-line-err.asm │ │ │ │ │ ├── gas-line-err.errwarn │ │ │ │ │ ├── gas-line2-err.asm │ │ │ │ │ ├── gas-line2-err.errwarn │ │ │ │ │ ├── gas-push.asm │ │ │ │ │ ├── gas-push.hex │ │ │ │ │ ├── gas-segprefix.asm │ │ │ │ │ ├── gas-segprefix.hex │ │ │ │ │ ├── gas-semi.asm │ │ │ │ │ ├── gas-semi.hex │ │ │ │ │ ├── gas_test.sh │ │ │ │ │ ├── gassectalign.asm │ │ │ │ │ ├── gassectalign.hex │ │ │ │ │ ├── jmpcall.asm │ │ │ │ │ ├── jmpcall.errwarn │ │ │ │ │ ├── jmpcall.hex │ │ │ │ │ ├── leb128.asm │ │ │ │ │ ├── leb128.hex │ │ │ │ │ ├── localcomm.asm │ │ │ │ │ ├── localcomm.hex │ │ │ │ │ ├── reggroup-err.asm │ │ │ │ │ ├── reggroup-err.errwarn │ │ │ │ │ ├── reggroup.asm │ │ │ │ │ ├── reggroup.hex │ │ │ │ │ ├── strzero.asm │ │ │ │ │ ├── strzero.hex │ │ │ │ │ ├── varinsn.asm │ │ │ │ │ └── varinsn.hex │ │ │ ├── nasm │ │ │ │ ├── Makefile.inc │ │ │ │ ├── nasm-parse.c │ │ │ │ ├── nasm-parser-struct.h │ │ │ │ ├── nasm-parser.c │ │ │ │ ├── nasm-parser.h │ │ │ │ ├── nasm-std.mac │ │ │ │ ├── nasm-token.re │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── alignnop16.asm │ │ │ │ │ ├── alignnop16.hex │ │ │ │ │ ├── alignnop32.asm │ │ │ │ │ ├── alignnop32.hex │ │ │ │ │ ├── charconstmath.asm │ │ │ │ │ ├── charconstmath.hex │ │ │ │ │ ├── dirwarning.asm │ │ │ │ │ ├── dirwarning.errwarn │ │ │ │ │ ├── dirwarning.hex │ │ │ │ │ ├── dy.asm │ │ │ │ │ ├── dy.hex │ │ │ │ │ ├── endcomma.asm │ │ │ │ │ ├── endcomma.hex │ │ │ │ │ ├── equcolon.asm │ │ │ │ │ ├── equcolon.hex │ │ │ │ │ ├── equlocal.asm │ │ │ │ │ ├── equlocal.hex │ │ │ │ │ ├── hexconst.asm │ │ │ │ │ ├── hexconst.hex │ │ │ │ │ ├── locallabel.asm │ │ │ │ │ ├── locallabel.hex │ │ │ │ │ ├── locallabel2.asm │ │ │ │ │ ├── locallabel2.hex │ │ │ │ │ ├── long.asm │ │ │ │ │ ├── long.hex │ │ │ │ │ ├── nasm-prefix.asm │ │ │ │ │ ├── nasm-prefix.hex │ │ │ │ │ ├── nasm_test.sh │ │ │ │ │ ├── newsect.asm │ │ │ │ │ ├── newsect.hex │ │ │ │ │ ├── orphannowarn.asm │ │ │ │ │ ├── orphannowarn.hex │ │ │ │ │ ├── prevlocalwarn.asm │ │ │ │ │ ├── prevlocalwarn.errwarn │ │ │ │ │ ├── prevlocalwarn.hex │ │ │ │ │ ├── strucalign.asm │ │ │ │ │ ├── strucalign.hex │ │ │ │ │ ├── strucbase.asm │ │ │ │ │ ├── strucbase.hex │ │ │ │ │ ├── struczero.asm │ │ │ │ │ ├── struczero.hex │ │ │ │ │ ├── syntax-err.asm │ │ │ │ │ ├── syntax-err.errwarn │ │ │ │ │ ├── uscore.asm │ │ │ │ │ ├── uscore.hex │ │ │ │ │ └── worphan │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── nasm_worphan_test.sh │ │ │ │ │ ├── orphanwarn.asm │ │ │ │ │ ├── orphanwarn.errwarn │ │ │ │ │ └── orphanwarn.hex │ │ │ ├── tasm │ │ │ │ ├── Makefile.inc │ │ │ │ └── tests │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── array.asm │ │ │ │ │ ├── array.hex │ │ │ │ │ ├── case.asm │ │ │ │ │ ├── case.hex │ │ │ │ │ ├── charstr.asm │ │ │ │ │ ├── charstr.hex │ │ │ │ │ ├── dup.asm │ │ │ │ │ ├── dup.hex │ │ │ │ │ ├── equal.asm │ │ │ │ │ ├── equal.hex │ │ │ │ │ ├── exe │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── exe.asm │ │ │ │ │ ├── exe.hex │ │ │ │ │ └── tasm_exe_test.sh │ │ │ │ │ ├── expr.asm │ │ │ │ │ ├── expr.hex │ │ │ │ │ ├── irp.asm │ │ │ │ │ ├── irp.hex │ │ │ │ │ ├── label.asm │ │ │ │ │ ├── label.hex │ │ │ │ │ ├── les.asm │ │ │ │ │ ├── les.hex │ │ │ │ │ ├── lidt.asm │ │ │ │ │ ├── lidt.hex │ │ │ │ │ ├── macro.asm │ │ │ │ │ ├── macro.hex │ │ │ │ │ ├── offset.asm │ │ │ │ │ ├── offset.hex │ │ │ │ │ ├── quote.asm │ │ │ │ │ ├── quote.hex │ │ │ │ │ ├── res.asm │ │ │ │ │ ├── res.errwarn │ │ │ │ │ ├── res.hex │ │ │ │ │ ├── segment.asm │ │ │ │ │ ├── segment.hex │ │ │ │ │ ├── size.asm │ │ │ │ │ ├── size.hex │ │ │ │ │ ├── struc.asm │ │ │ │ │ ├── struc.errwarn │ │ │ │ │ ├── struc.hex │ │ │ │ │ └── tasm_test.sh │ │ │ └── yasm_parsers.xml │ │ └── preprocs │ │ │ ├── Makefile.inc │ │ │ ├── cpp │ │ │ ├── Makefile.inc │ │ │ └── cpp-preproc.c │ │ │ ├── gas │ │ │ ├── Makefile.inc │ │ │ ├── gas-eval.c │ │ │ ├── gas-eval.h │ │ │ ├── gas-preproc.c │ │ │ └── tests │ │ │ │ └── Makefile.inc │ │ │ ├── nasm │ │ │ ├── Makefile.inc │ │ │ ├── genversion.c │ │ │ ├── nasm-eval.c │ │ │ ├── nasm-eval.h │ │ │ ├── nasm-pp.c │ │ │ ├── nasm-pp.h │ │ │ ├── nasm-preproc.c │ │ │ ├── nasm.h │ │ │ ├── nasmlib.c │ │ │ ├── nasmlib.h │ │ │ └── tests │ │ │ │ ├── 16args.asm │ │ │ │ ├── 16args.hex │ │ │ │ ├── Makefile.inc │ │ │ │ ├── ifcritical-err.asm │ │ │ │ ├── ifcritical-err.errwarn │ │ │ │ ├── longline.asm │ │ │ │ ├── longline.hex │ │ │ │ ├── macroeof-err.asm │ │ │ │ ├── macroeof-err.errwarn │ │ │ │ ├── nasmpp-bigint.asm │ │ │ │ ├── nasmpp-bigint.hex │ │ │ │ ├── nasmpp-decimal.asm │ │ │ │ ├── nasmpp-decimal.hex │ │ │ │ ├── nasmpp-nested.asm │ │ │ │ ├── nasmpp-nested.errwarn │ │ │ │ ├── nasmpp-nested.hex │ │ │ │ ├── nasmpp_test.sh │ │ │ │ ├── noinclude-err.asm │ │ │ │ ├── noinclude-err.errwarn │ │ │ │ ├── orgsect.asm │ │ │ │ ├── orgsect.hex │ │ │ │ ├── scope-err.asm │ │ │ │ └── scope-err.errwarn │ │ │ ├── raw │ │ │ ├── Makefile.inc │ │ │ ├── raw-preproc.c │ │ │ └── tests │ │ │ │ ├── Makefile.inc │ │ │ │ ├── longline.asm │ │ │ │ ├── longline.hex │ │ │ │ └── rawpp_test.sh │ │ │ └── tasm │ │ │ ├── Makefile.inc │ │ │ └── tests │ │ │ ├── Makefile.inc │ │ │ ├── tasm-assume-comment.asm │ │ │ ├── tasm-assume-comment.hex │ │ │ ├── tasm-comment-instr.asm │ │ │ ├── tasm-comment-instr.hex │ │ │ └── tasmpp_test.sh │ ├── out_test.sh │ ├── po │ │ ├── ChangeLog │ │ ├── Makefile.in.in │ │ ├── Makevars │ │ ├── POTFILES.in │ │ ├── Rules-quot │ │ ├── boldquot.sed │ │ ├── en@boldquot.header │ │ ├── en@quot.header │ │ ├── insert-header.sin │ │ ├── quot.sed │ │ ├── remove-potcdate.sin │ │ ├── stamp-po │ │ └── yasm.pot │ ├── splint.sh │ ├── test_hd.c │ ├── tools │ │ ├── Makefile.inc │ │ ├── genmacro │ │ │ ├── Makefile.inc │ │ │ └── genmacro.c │ │ ├── genperf │ │ │ ├── Makefile.inc │ │ │ ├── genperf.c │ │ │ ├── perfect.c │ │ │ ├── perfect.h │ │ │ └── standard.h │ │ ├── python-yasm │ │ │ ├── Makefile.inc │ │ │ ├── bytecode.pxi │ │ │ ├── errwarn.pxi │ │ │ ├── expr.pxi │ │ │ ├── floatnum.pxi │ │ │ ├── intnum.pxi │ │ │ ├── pyxelator │ │ │ │ ├── cparse.py │ │ │ │ ├── genpyx.py │ │ │ │ ├── ir.py │ │ │ │ ├── lexer.py │ │ │ │ ├── node.py │ │ │ │ ├── parse_core.py │ │ │ │ ├── work_unit.py │ │ │ │ └── wrap_yasm.py │ │ │ ├── setup.py │ │ │ ├── symrec.pxi │ │ │ ├── tests │ │ │ │ ├── Makefile.inc │ │ │ │ ├── __init__.py │ │ │ │ ├── python_test.sh │ │ │ │ ├── test_bytecode.py │ │ │ │ ├── test_expr.py │ │ │ │ ├── test_intnum.py │ │ │ │ └── test_symrec.py │ │ │ ├── value.pxi │ │ │ └── yasm.pyx │ │ └── re2c │ │ │ ├── CHANGELOG │ │ │ ├── Makefile.inc │ │ │ ├── NO_WARRANTY │ │ │ ├── README │ │ │ ├── actions.c │ │ │ ├── basics.h │ │ │ ├── bootstrap │ │ │ └── scanner.c │ │ │ ├── code.c │ │ │ ├── dfa.c │ │ │ ├── dfa.h │ │ │ ├── doc │ │ │ ├── loplas.ps.gz │ │ │ └── sample.bib │ │ │ ├── examples │ │ │ ├── basemmap.c │ │ │ ├── c.re │ │ │ ├── cmmap.re │ │ │ ├── cnokw.re │ │ │ ├── cunroll.re │ │ │ ├── modula.re │ │ │ ├── repeater.re │ │ │ ├── rexx │ │ │ │ ├── README │ │ │ │ ├── rexx.l │ │ │ │ └── scanio.c │ │ │ ├── sample.re │ │ │ └── simple.re │ │ │ ├── globals.h │ │ │ ├── ins.h │ │ │ ├── main.c │ │ │ ├── mbo_getopt.c │ │ │ ├── mbo_getopt.h │ │ │ ├── parse.h │ │ │ ├── parser.c │ │ │ ├── parser.h │ │ │ ├── re.h │ │ │ ├── re2c.1 │ │ │ ├── scanner.c │ │ │ ├── scanner.h │ │ │ ├── scanner.re │ │ │ ├── substr.c │ │ │ ├── substr.h │ │ │ ├── token.h │ │ │ └── translate.c │ ├── util.h │ ├── version │ ├── x86insn_gas.gperf │ ├── x86insn_nasm.gperf │ ├── x86insns.c │ ├── yasm.1 │ ├── yasm_arch.7 │ ├── yasm_dbgfmts.7 │ ├── yasm_objfmts.7 │ └── yasm_parsers.7 ├── yasm_mac.inc.fat ├── yasm_mac.inc.nofat ├── yasm_macwin.inc.fat ├── yasm_macwin.inc.nofat └── ylwrap ├── secp256k1vb ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── README.md ├── SECURITY.md ├── autogen.sh ├── build-aux │ └── m4 │ │ ├── ax_prog_cc_for_build.m4 │ │ └── bitcoin_secp.m4 ├── config │ └── libsecp256k1-config.h ├── configure.ac ├── contrib │ ├── lax_der_parsing.c │ ├── lax_der_parsing.h │ ├── lax_der_privatekey_parsing.c │ ├── lax_der_privatekey_parsing.h │ └── travis.sh ├── include │ ├── secp256k1.h │ ├── secp256k1_ecdh.h │ ├── secp256k1_extrakeys.h │ ├── secp256k1_preallocated.h │ ├── secp256k1_recovery.h │ └── secp256k1_schnorrsig.h ├── libsecp256k1.pc.in ├── obj │ └── .gitignore ├── sage │ ├── gen_exhaustive_groups.sage │ ├── gen_split_lambda_constants.sage │ ├── group_prover.sage │ ├── prove_group_implementations.sage │ ├── secp256k1_params.sage │ └── weierstrass_prover.sage ├── src │ ├── asm │ │ └── field_10x26_arm.s │ ├── assumptions.h │ ├── basic-config.h │ ├── bench.h │ ├── bench_ecdh.c │ ├── bench_ecmult.c │ ├── bench_internal.c │ ├── bench_recover.c │ ├── bench_schnorrsig.c │ ├── bench_sign.c │ ├── bench_verify.c │ ├── ecdsa.h │ ├── ecdsa_impl.h │ ├── eckey.h │ ├── eckey_impl.h │ ├── ecmult.h │ ├── ecmult_const.h │ ├── ecmult_const_impl.h │ ├── ecmult_gen.h │ ├── ecmult_gen_impl.h │ ├── ecmult_impl.h │ ├── field.h │ ├── field_10x26.h │ ├── field_10x26_impl.h │ ├── field_5x52.h │ ├── field_5x52_asm_impl.h │ ├── field_5x52_impl.h │ ├── field_5x52_int128_impl.h │ ├── field_impl.h │ ├── gen_context.c │ ├── group.h │ ├── group_impl.h │ ├── hash.h │ ├── hash_impl.h │ ├── modules │ │ ├── ecdh │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ └── tests_impl.h │ │ ├── extrakeys │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ │ ├── recovery │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ │ └── schnorrsig │ │ │ ├── Makefile.am.include │ │ │ ├── main_impl.h │ │ │ ├── tests_exhaustive_impl.h │ │ │ └── tests_impl.h │ ├── num.h │ ├── num_gmp.h │ ├── num_gmp_impl.h │ ├── num_impl.h │ ├── scalar.h │ ├── scalar_4x64.h │ ├── scalar_4x64_impl.h │ ├── scalar_8x32.h │ ├── scalar_8x32_impl.h │ ├── scalar_impl.h │ ├── scalar_low.h │ ├── scalar_low_impl.h │ ├── scratch.h │ ├── scratch_impl.h │ ├── secp256k1.c │ ├── selftest.h │ ├── testrand.h │ ├── testrand_impl.h │ ├── tests.c │ ├── tests_exhaustive.c │ ├── util.h │ └── valgrind_ctime_test.c └── vs2010 │ ├── Release │ └── libsecp256k1vb.dll │ ├── libdef.def │ ├── secp256k1vb_vs2010.sln │ ├── secp256k1vb_vs2010.suo │ ├── secp256k1vb_vs2010.vcxproj │ ├── secp256k1vb_vs2010.vcxproj.filters │ └── secp256k1vb_vs2010.vcxproj.user └── typelibs ├── compile.bat ├── hashlibvb.idl ├── hashlibvb.tlb ├── secp256k1vb.idl └── secp256k1vb.tlb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/.gitignore -------------------------------------------------------------------------------- /BTCGen.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/BTCGen.vbp -------------------------------------------------------------------------------- /CBTCGenerator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/CBTCGenerator.cls -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/README.md -------------------------------------------------------------------------------- /frmMain.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/frmMain.frm -------------------------------------------------------------------------------- /hashlibvb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb.dll -------------------------------------------------------------------------------- /hashlibvb/Coin25519/src/crypto/ed25519/amd64-51-30k/architectures: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /hashlibvb/Coin25519/src/crypto/ed25519/amd64-64-24k/architectures: -------------------------------------------------------------------------------- 1 | amd64 2 | -------------------------------------------------------------------------------- /hashlibvb/Coin25519/src/crypto/ed25519/lib: -------------------------------------------------------------------------------- 1 | amd64-51-30k -------------------------------------------------------------------------------- /hashlibvb/README.md: -------------------------------------------------------------------------------- 1 | Original code - https://github.com/sipa/Coin25519 -------------------------------------------------------------------------------- /hashlibvb/Release/hashlibvb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/Release/hashlibvb.dll -------------------------------------------------------------------------------- /hashlibvb/common.h: -------------------------------------------------------------------------------- 1 | 2 | #define HASHLIBVB_CC __stdcall -------------------------------------------------------------------------------- /hashlibvb/hashlibvb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/hashlibvb.sln -------------------------------------------------------------------------------- /hashlibvb/hashlibvb.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/hashlibvb.suo -------------------------------------------------------------------------------- /hashlibvb/hashlibvb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/hashlibvb.vcxproj -------------------------------------------------------------------------------- /hashlibvb/hashlibvb.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/hashlibvb.vcxproj.user -------------------------------------------------------------------------------- /hashlibvb/libdef.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/hashlibvb/libdef.def -------------------------------------------------------------------------------- /libsecp256k1vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/libsecp256k1vb.dll -------------------------------------------------------------------------------- /mpir-2.6.0/.gdbinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/.gdbinit -------------------------------------------------------------------------------- /mpir-2.6.0/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/AUTHORS -------------------------------------------------------------------------------- /mpir-2.6.0/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/COPYING -------------------------------------------------------------------------------- /mpir-2.6.0/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/COPYING.LIB -------------------------------------------------------------------------------- /mpir-2.6.0/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/ChangeLog -------------------------------------------------------------------------------- /mpir-2.6.0/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/INSTALL -------------------------------------------------------------------------------- /mpir-2.6.0/INSTALL.autoconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/INSTALL.autoconf -------------------------------------------------------------------------------- /mpir-2.6.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/NEWS -------------------------------------------------------------------------------- /mpir-2.6.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/README -------------------------------------------------------------------------------- /mpir-2.6.0/acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/acinclude.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/aclocal.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/assert.c -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/cfg.h -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/g2y.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/g2y.py -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/getopt.c -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/getopt.h -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/mpir.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/mpir.sln -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/mpir.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/mpir.suo -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/readme.txt -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/speed.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/speed.sln -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/to_gmp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/to_gmp.bat -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/try.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/try.sln -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/tune.sln -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/dc_bdiv_q.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\dc_bdiv_q.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/dc_bdiv_qr.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\dc_bdiv_qr.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/dc_div_qr.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\dc_div_qr.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/divrem_2.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\divrem_2.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/gcd.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\gcd.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/gcdext.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\gcdext.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/inv_div_qr.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\inv_div_qr.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/mul.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\mul.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/mul_fft.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\mul_fft.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/mul_n.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\mul_n.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/mulhigh_n.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\mulhigh_n.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/mullow_n.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\mullow_n.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/rootrem.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\rootrem.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/tdiv_q.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\tdiv_q.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/tdiv_qr.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\tdiv_qr.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/tune/toom3_mul.c: -------------------------------------------------------------------------------- 1 | #define TUNE_PROGRAM_BUILD 1 2 | #include "..\..\mpn\generic\toom3_mul.c" 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/build.vc10/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/build.vc10/unistd.h -------------------------------------------------------------------------------- /mpir-2.6.0/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/compat.c -------------------------------------------------------------------------------- /mpir-2.6.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/config.guess -------------------------------------------------------------------------------- /mpir-2.6.0/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/config.h -------------------------------------------------------------------------------- /mpir-2.6.0/config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/config.in -------------------------------------------------------------------------------- /mpir-2.6.0/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/config.sub -------------------------------------------------------------------------------- /mpir-2.6.0/configfsf.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/configfsf.guess -------------------------------------------------------------------------------- /mpir-2.6.0/configfsf.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/configfsf.sub -------------------------------------------------------------------------------- /mpir-2.6.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/configure -------------------------------------------------------------------------------- /mpir-2.6.0/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/configure.in -------------------------------------------------------------------------------- /mpir-2.6.0/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cpuid.c -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/dummy.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/isfuns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/isfuns.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/ismpf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/ismpf.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/ismpq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/ismpq.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/ismpz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/ismpz.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/ismpznw.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/ismpznw.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/osdoprnti.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/osdoprnti.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/osfuns.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/osfuns.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/osmpf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/osmpf.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/osmpq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/osmpq.cc -------------------------------------------------------------------------------- /mpir-2.6.0/cxx/osmpz.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/cxx/osmpz.cc -------------------------------------------------------------------------------- /mpir-2.6.0/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/doc/devel/FILES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/devel/FILES.txt -------------------------------------------------------------------------------- /mpir-2.6.0/doc/devel/gmp-h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/devel/gmp-h.txt -------------------------------------------------------------------------------- /mpir-2.6.0/doc/fdl.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/fdl.texi -------------------------------------------------------------------------------- /mpir-2.6.0/doc/mdate-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/mdate-sh -------------------------------------------------------------------------------- /mpir-2.6.0/doc/mpir.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/mpir.info -------------------------------------------------------------------------------- /mpir-2.6.0/doc/mpir.info-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/mpir.info-1 -------------------------------------------------------------------------------- /mpir-2.6.0/doc/mpir.info-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/mpir.info-2 -------------------------------------------------------------------------------- /mpir-2.6.0/doc/mpir.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/mpir.texi -------------------------------------------------------------------------------- /mpir-2.6.0/doc/stamp-vti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/stamp-vti -------------------------------------------------------------------------------- /mpir-2.6.0/doc/texinfo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/texinfo.tex -------------------------------------------------------------------------------- /mpir-2.6.0/doc/version.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/doc/version.texi -------------------------------------------------------------------------------- /mpir-2.6.0/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/errno.c -------------------------------------------------------------------------------- /mpir-2.6.0/extract-dbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/extract-dbl.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/fft/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/fft/adjust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/adjust.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/adjust_sqrt2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/adjust_sqrt2.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/combine_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/combine_bits.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/fermat_to_mpz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/fermat_to_mpz.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/fft_negacylic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/fft_negacylic.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/fft_radix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/fft_radix2.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/fft_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/fft_trunc.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/fft_tuning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/fft_tuning.h -------------------------------------------------------------------------------- /mpir-2.6.0/fft/ifft_radix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/ifft_radix2.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/ifft_trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/ifft_trunc.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/mul_fft_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/mul_fft_main.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/mulmod_2expp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/mulmod_2expp1.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/revbin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/revbin.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/split_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/split_bits.c -------------------------------------------------------------------------------- /mpir-2.6.0/fft/tune/tune-fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/fft/tune/tune-fft.c -------------------------------------------------------------------------------- /mpir-2.6.0/gmp-h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/gmp-h.in -------------------------------------------------------------------------------- /mpir-2.6.0/gmp-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/gmp-impl.h -------------------------------------------------------------------------------- /mpir-2.6.0/gmp-mparam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/gmp-mparam.h -------------------------------------------------------------------------------- /mpir-2.6.0/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/gmp.h -------------------------------------------------------------------------------- /mpir-2.6.0/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/gpl-2.0.txt -------------------------------------------------------------------------------- /mpir-2.6.0/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/install-sh -------------------------------------------------------------------------------- /mpir-2.6.0/invalid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/invalid.c -------------------------------------------------------------------------------- /mpir-2.6.0/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/lgpl-2.1.txt -------------------------------------------------------------------------------- /mpir-2.6.0/longlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/longlong.h -------------------------------------------------------------------------------- /mpir-2.6.0/longlong_post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/longlong_post.h -------------------------------------------------------------------------------- /mpir-2.6.0/longlong_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/longlong_pre.h -------------------------------------------------------------------------------- /mpir-2.6.0/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/ltmain.sh -------------------------------------------------------------------------------- /mpir-2.6.0/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/memory.c -------------------------------------------------------------------------------- /mpir-2.6.0/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/missing -------------------------------------------------------------------------------- /mpir-2.6.0/mp_bpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_bpl.c -------------------------------------------------------------------------------- /mpir-2.6.0/mp_clz_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_clz_tab.c -------------------------------------------------------------------------------- /mpir-2.6.0/mp_dv_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_dv_tab.c -------------------------------------------------------------------------------- /mpir-2.6.0/mp_get_fns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_get_fns.c -------------------------------------------------------------------------------- /mpir-2.6.0/mp_minv_tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_minv_tab.c -------------------------------------------------------------------------------- /mpir-2.6.0/mp_set_fns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mp_set_fns.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/abs.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/add.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/add_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/add_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/ceilfloor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/ceilfloor.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/clear.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/clears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/clears.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/cmp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/cmp_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/cmp_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/cmp_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/cmp_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/cmp_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/div.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/div_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/div_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/div_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/div_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/dump.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/eq.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_s.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_sint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_sint.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_slong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_slong.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_sshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_sshort.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_u.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_u.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_uint.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_ulong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_ulong.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/fits_ushort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/fits_ushort.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_d_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_d_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_dfl_prec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_dfl_prec.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_prc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_prc.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/get_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/get_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/init.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/init2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/init2.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/inits.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/inp_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/inp_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/int_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/int_p.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/iset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/iset.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/iset_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/iset_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/iset_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/iset_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/iset_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/iset_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/iset_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/iset_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/mul.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/mul_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/mul_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/mul_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/mul_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/neg.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/out_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/out_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/pow_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/pow_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/random2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/random2.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/reldiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/reldiff.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/rrandomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/rrandomb.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_dfl_prec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_dfl_prec.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_prc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_prc.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_prc_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_prc_raw.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/set_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/set_z.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/size.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/sqrt.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/sqrt_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/sqrt_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/sub_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/sub_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/swap.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/trunc.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/ui_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/ui_div.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/ui_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/ui_sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpf/urandomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpf/urandomb.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpir.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpirxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpirxx.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/Makeasm.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/Makeasm.am -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/add_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/add_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/cntlz.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/cntlz.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/copyd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/copyd.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/copyi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/copyi.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/mul_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/mul_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/sub_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/sub_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/alpha/umul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/alpha/umul.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/add_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/add_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/arm-defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/arm-defs.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/copyd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/copyd.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/copyi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/copyi.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/mul_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/mul_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/sub_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/sub_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/arm/udiv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/arm/udiv.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/asm-defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/asm-defs.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/cpp-ccas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/cpp-ccas -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/add.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/add_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/add_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/add_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/add_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/and_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/and_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/cfg.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/com_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/com_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/copyd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/copyd.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/copyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/copyi.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/dump.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/gcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/gcd_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/gcd_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/hgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/hgcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/hgcd2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/hgcd2.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/ior_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/ior_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/mod_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/mod_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/mul.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/mul_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/mul_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/mul_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/mul_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/neg_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/neg_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/pow_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/pow_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/scan0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/scan0.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/scan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/scan1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/sub_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/sub_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/sub_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/sub_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/xor_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/xor_n.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/generic/zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/generic/zero.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/add_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/add_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/and_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/and_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/andn_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/andn_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/copyd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/copyd.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/copyi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/copyi.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/gcd_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/gcd_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/ior_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/ior_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/iorn_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/iorn_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/lshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/lshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/mul_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/mul_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/mul_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/mul_2.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/nand_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/nand_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/nior_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/nior_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/rshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/rshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/sub_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/sub_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/submul_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/submul_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/xnor_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/xnor_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/ia64/xor_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/ia64/xor_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/m4-ccas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/m4-ccas -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/mips32/mips.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/mips32/mips.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/mips32/umul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/mips32/umul.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/mips64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/mips64/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/mips64/umul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/mips64/umul.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/sparc32/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/sparc32/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/sparc64/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/sparc64/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/sparc64/mod_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/sparc64/mod_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/add_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/add_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/copyd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/copyd.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/copyi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/copyi.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/fat/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/fat/fat.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/fat/gcd_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/fat/gcd_1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/k6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/k6/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/k6/cross.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/k6/cross.pl -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/k7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/k7/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/lshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/lshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/mod_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/mod_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/mul_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/mul_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/p6/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/p6/README -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/rshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/rshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/sub_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/sub_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/t-zdisp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/t-zdisp.sh -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/t-zdisp2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/t-zdisp2.pl -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/udiv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/udiv.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/umul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/umul.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86/x86-defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86/x86-defs.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86_64w/cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86_64w/cfg.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/add_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/add_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/copyd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/copyd.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/copyi.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/copyi.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/lshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/lshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/mod_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/mod_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/mul_1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/mul_1.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/rshift.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/rshift.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/sub_n.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/sub_n.asm -------------------------------------------------------------------------------- /mpir-2.6.0/mpn/x86w/x86i.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpn/x86w/x86i.inc -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/abs.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/aors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/aors.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/canonicalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/canonicalize.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/clear.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/clears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/clears.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/cmp_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/cmp_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/cmp_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/cmp_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/div.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/equal.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/get_den.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/get_den.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/get_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/get_num.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/get_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/get_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/init.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/inits.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/inp_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/inp_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/inv.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/md_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/md_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/mul.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/neg.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/out_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/out_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_den.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_den.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_f.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_num.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/set_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/set_z.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpq/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpq/swap.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/abs.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/add.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/add_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/add_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/and.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/and.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/aors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/aors.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/aors_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/aors_ui.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/aorsmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/aorsmul.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/aorsmul_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/aorsmul_i.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/array_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/array_init.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/bin_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/bin_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/bin_uiui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/bin_uiui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_q_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_q_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_qr.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_qr_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_qr_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_r.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_r_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_r_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cdiv_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cdiv_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cfdiv_q_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cfdiv_q_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cfdiv_r_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cfdiv_r_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/clear.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/clears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/clears.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/clrbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/clrbit.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmp_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmp_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmp_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmp_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmp_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmpabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmpabs.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmpabs_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmpabs_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cmpabs_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cmpabs_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/com.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/combit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/combit.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cong.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cong_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cong_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/cong_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/cong_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/dive_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/dive_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/divegcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/divegcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/divexact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/divexact.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/divis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/divis.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/divis_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/divis_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/divis_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/divis_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/dump.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/export.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fac_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fac_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_q_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_q_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_qr.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_qr_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_qr_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_r.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_r_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_r_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fdiv_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fdiv_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fib2_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fib2_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fib_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fib_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_s.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_sint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_sint.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_slong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_slong.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_sshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_sshort.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_uint.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_ulong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_ulong.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/fits_ushort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/fits_ushort.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/gcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/gcd_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/gcd_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/gcdext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/gcdext.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_d_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_d_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_sx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_sx.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/get_ux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/get_ux.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/getlimbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/getlimbn.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/hamdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/hamdist.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/import.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/import.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/init.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/init2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/init2.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/inits.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/inp_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/inp_raw.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/inp_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/inp_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/invert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/invert.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/ior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/ior.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_sx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_sx.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/iset_ux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/iset_ux.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/jacobi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/jacobi.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/kronsz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/kronsz.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/kronuz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/kronuz.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/kronzs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/kronzs.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/kronzu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/kronzu.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/lcm.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/lcm_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/lcm_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/lucnum2_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/lucnum2_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/lucnum_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/lucnum_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/miller_rabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/miller_rabin.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/millerrabin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/millerrabin.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mod.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mul.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mul_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mul_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mul_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mul_i.h -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mul_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mul_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/mul_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/mul_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/n_pow_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/n_pow_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/neg.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/nextprime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/nextprime.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/nthroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/nthroot.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/out_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/out_raw.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/out_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/out_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/perfpow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/perfpow.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/perfsqr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/perfsqr.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/popcount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/popcount.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/pow_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/pow_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/powm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/powm.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/powm_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/powm_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/pprime_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/pprime_p.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/realloc.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/realloc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/realloc2.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/remove.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/root.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/rootrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/rootrem.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/rrandomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/rrandomb.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/scan0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/scan0.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/scan1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/scan1.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_f.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_si.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_si.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_str.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_sx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_sx.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/set_ux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/set_ux.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/setbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/setbit.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/size.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/sizeinbase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/sizeinbase.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/sqrt.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/sqrtrem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/sqrtrem.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/sub_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/sub_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/swap.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_q_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_q_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_q_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_q_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_qr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_qr.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_qr_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_qr_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_r.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_r_2exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_r_2exp.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_r_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_r_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tdiv_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tdiv_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/tstbit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/tstbit.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/ui_pow_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/ui_pow_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/ui_sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/ui_sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/urandomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/urandomb.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/urandomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/urandomm.c -------------------------------------------------------------------------------- /mpir-2.6.0/mpz/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/mpz/xor.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/printf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/printf/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/asprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/doprnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/doprnt.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/doprntf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/doprntf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/doprnti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/doprnti.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/fprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/fprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/obprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/obprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/obvprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/obvprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/printf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/printffuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/printffuns.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/snprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/sprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/vasprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/vasprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/vfprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/vprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/vprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/vsnprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/printf/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/printf/vsprintf.c -------------------------------------------------------------------------------- /mpir-2.6.0/randbui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randbui.c -------------------------------------------------------------------------------- /mpir-2.6.0/randclr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randclr.c -------------------------------------------------------------------------------- /mpir-2.6.0/randdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randdef.c -------------------------------------------------------------------------------- /mpir-2.6.0/randiset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randiset.c -------------------------------------------------------------------------------- /mpir-2.6.0/randlc2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randlc2s.c -------------------------------------------------------------------------------- /mpir-2.6.0/randlc2x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randlc2x.c -------------------------------------------------------------------------------- /mpir-2.6.0/randmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randmt.c -------------------------------------------------------------------------------- /mpir-2.6.0/randmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randmt.h -------------------------------------------------------------------------------- /mpir-2.6.0/randmts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randmts.c -------------------------------------------------------------------------------- /mpir-2.6.0/randmui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randmui.c -------------------------------------------------------------------------------- /mpir-2.6.0/rands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/rands.c -------------------------------------------------------------------------------- /mpir-2.6.0/randsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randsd.c -------------------------------------------------------------------------------- /mpir-2.6.0/randsdui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/randsdui.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/doscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/doscan.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/fscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/fscanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/fscanffuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/fscanffuns.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/scanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/scanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/sscanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/sscanffuns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/sscanffuns.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/vfscanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/vscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/vscanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/scanf/vsscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/scanf/vsscanf.c -------------------------------------------------------------------------------- /mpir-2.6.0/strip_fPIC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/strip_fPIC.sh -------------------------------------------------------------------------------- /mpir-2.6.0/tal-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tal-debug.c -------------------------------------------------------------------------------- /mpir-2.6.0/tal-notreent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tal-notreent.c -------------------------------------------------------------------------------- /mpir-2.6.0/tal-reent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tal-reent.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/clocale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/clocale.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/t-cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/t-cast.cc -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/t-misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/t-misc.cc -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/t-ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/t-ops.cc -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/t-prec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/t-prec.cc -------------------------------------------------------------------------------- /mpir-2.6.0/tests/cxx/t-rand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/cxx/t-rand.cc -------------------------------------------------------------------------------- /mpir-2.6.0/tests/devel/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/devel/README -------------------------------------------------------------------------------- /mpir-2.6.0/tests/devel/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/devel/copy.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/devel/mul_N.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/devel/mul_N.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/devel/shift.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/devel/shift.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/devel/try.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/devel/try.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/memory.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/misc.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/reuse.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-add.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-cmp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-cmp_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-conv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-div.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-eq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-eq.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-fits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-fits.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-int_p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-int_p.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-set.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-set_q.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-set_q.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-sqrt.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpf/t-trunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpf/t-trunc.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpn/t-fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpn/t-fat.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpn/t-get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpn/t-get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpn/t-hgcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpn/t-hgcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpn/t-neg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpn/t-neg.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpn/t-scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpn/t-scan.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpq/t-aors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpq/t-aors.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpq/t-cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpq/t-cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpq/t-equal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpq/t-equal.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpq/t-get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpq/t-get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpq/t-set_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpq/t-set_f.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/bit.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/convert.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/dive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/dive.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/dive_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/dive_ui.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/io.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/logic.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/reuse.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-bin.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-cmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-cmp.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-cmp_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-cmp_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-cong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-cong.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-divis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-divis.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-fdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-fdiv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-fits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-fits.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-gcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-gcd.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-get_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-get_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-jac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-jac.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-lcm.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-mul.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-mul_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-mul_i.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-pow.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-powm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-powm.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-root.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-scan.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-set_d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-set_d.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-set_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-set_f.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/mpz/t-tdiv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/mpz/t-tdiv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/findlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/findlc.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/gen.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/spect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/spect.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/stat.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/t-iset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/t-iset.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/t-mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/t-mt.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/rand/t-rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/rand/t-rand.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/refmpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/refmpf.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/refmpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/refmpn.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/refmpq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/refmpq.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/refmpz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/refmpz.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/spinner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/spinner.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-bswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-bswap.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-constants.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-gmpmax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-gmpmax.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-modlinv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-modlinv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-parity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-parity.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-popc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-popc.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/t-sub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/t-sub.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/tests.h -------------------------------------------------------------------------------- /mpir-2.6.0/tests/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/trace.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/x86_64call.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/x86_64call.as -------------------------------------------------------------------------------- /mpir-2.6.0/tests/x86_64check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/x86_64check.c -------------------------------------------------------------------------------- /mpir-2.6.0/tests/x86call.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/x86call.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tests/x86check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tests/x86check.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/tune/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/tune/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/README -------------------------------------------------------------------------------- /mpir-2.6.0/tune/alpha.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/alpha.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/common.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/divrem1div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/divrem1div.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/divrem1inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/divrem1inv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/divrem2div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/divrem2div.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/divrem2inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/divrem2inv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/fac_ui_large.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/fac_ui_large.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/fac_ui_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/fac_ui_small.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/freq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/freq.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/gcd_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/gcd_bin.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/gcdextod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/gcdextod.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/gcdextos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/gcdextos.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/hppa.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/hppa.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/hppa2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/hppa2.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/hppa2w.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/hppa2w.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/ia64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/ia64.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/jacbase1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/jacbase1.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/jacbase2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/jacbase2.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/jacbase3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/jacbase3.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/many.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/many.pl -------------------------------------------------------------------------------- /mpir-2.6.0/tune/mod_1_div.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/mod_1_div.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/mod_1_inv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/mod_1_inv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/modlinv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/modlinv.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/noop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/noop.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/pentium.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/pentium.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/powerpc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/powerpc.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/powerpc64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/powerpc64.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/powm_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/powm_mod.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/powm_redc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/powm_redc.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/set_strb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/set_strb.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/set_strp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/set_strp.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/set_strs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/set_strs.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/sparcv9.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/sparcv9.asm -------------------------------------------------------------------------------- /mpir-2.6.0/tune/speed-ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/speed-ext.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/speed.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/speed.h -------------------------------------------------------------------------------- /mpir-2.6.0/tune/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/time.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/tuneup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/tuneup.c -------------------------------------------------------------------------------- /mpir-2.6.0/tune/x86_64.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/tune/x86_64.as -------------------------------------------------------------------------------- /mpir-2.6.0/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/version.c -------------------------------------------------------------------------------- /mpir-2.6.0/win/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/win/configure.bat -------------------------------------------------------------------------------- /mpir-2.6.0/win/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/win/make.bat -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/ABOUT-NLS -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/AUTHORS -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/Artistic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/Artistic.txt -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/BSD.txt -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/COPYING -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/GNU_GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/GNU_GPL-2.0 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/GNU_LGPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/GNU_LGPL-2.0 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/INSTALL -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/Makefile.am -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/Makefile.in -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/aclocal.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/config.h.in -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/config/depcomp -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/config/missing -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/configure -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/configure.ac -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/genstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/genstring.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/arch.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/expr.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/expr.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/file.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/file.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/hamt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/hamt.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/hamt.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/insn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/insn.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/insn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/insn.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/md5.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/libyasm/md5.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/1shl0.asm: -------------------------------------------------------------------------------- 1 | dd (1<<0) 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/charconst64.asm: -------------------------------------------------------------------------------- 1 | [bits 64] 2 | 3 | mov rax, '12345678' 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/data-rawvalue.asm: -------------------------------------------------------------------------------- 1 | x db 0 2 | dd 0,x,0 3 | 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/emptydata.asm: -------------------------------------------------------------------------------- 1 | db '' 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/emptydata.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/externdef.asm: -------------------------------------------------------------------------------- 1 | extern foo 2 | foo: 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/externdef.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/opt-circular1-err.errwarn: -------------------------------------------------------------------------------- 1 | -:1: error: circular reference detected 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/opt-circular2-err.errwarn: -------------------------------------------------------------------------------- 1 | -:1: error: circular reference detected 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/opt-circular3-err.errwarn: -------------------------------------------------------------------------------- 1 | -:6: error: circular reference detected 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/times0.asm: -------------------------------------------------------------------------------- 1 | times 0 db 1 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/times0.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/timesover-err.errwarn: -------------------------------------------------------------------------------- 1 | -:2: error: multiple is negative 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/libyasm/tests/value-mask.hex: -------------------------------------------------------------------------------- 1 | f8 2 | f8 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/codeset.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/cython.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/cython.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/gettext.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/glibc21.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/iconv.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/intdiv0.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/intmax.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/inttypes.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/inttypes.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/lib-ld.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/lib-link.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/longlong.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/nls.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/po.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/progtest.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/signed.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/signed.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/size_max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/size_max.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/stdint_h.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/wchar_t.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/wint_t.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/m4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/m4/xsize.m4 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/lc3b/tests/lc3b-ea-err.asm: -------------------------------------------------------------------------------- 1 | ld r5, [r6+5] 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/addrop.errwarn: -------------------------------------------------------------------------------- 1 | -:22: warning: invalid displacement size; fixed 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/bittest.asm: -------------------------------------------------------------------------------- 1 | btr eax, 4 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/bittest.hex: -------------------------------------------------------------------------------- 1 | 66 2 | 0f 3 | ba 4 | f0 5 | 04 6 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/ea-nonzero.hex: -------------------------------------------------------------------------------- 1 | 48 2 | 8d 3 | 6c 4 | 2e 5 | 05 6 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/ea-over.hex: -------------------------------------------------------------------------------- 1 | 8d 2 | 80 3 | 1c 4 | cb 5 | 18 6 | 56 7 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/fwdequ64.asm: -------------------------------------------------------------------------------- 1 | [bits 64] 2 | l1: 3 | inc dword [l2] 4 | l2 equ 4-(l1-$$) 5 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/gas32/gas-invlpg.asm: -------------------------------------------------------------------------------- 1 | invlpg (%eax) 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/gas64/riprel.asm: -------------------------------------------------------------------------------- 1 | mov %rax,foo(%rip) 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/mixcase.asm: -------------------------------------------------------------------------------- 1 | CPU SSSE3 2 | MOV AX,5 3 | 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/mixcase.hex: -------------------------------------------------------------------------------- 1 | b8 2 | 05 3 | 00 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/o64loop.errwarn: -------------------------------------------------------------------------------- 1 | -:2: warning: ignoring REX prefix on jump 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/o64loop.hex: -------------------------------------------------------------------------------- 1 | e2 2 | 00 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/opsize-err.errwarn: -------------------------------------------------------------------------------- 1 | -:3: error: invalid size for operand 2 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/push64.errwarn: -------------------------------------------------------------------------------- 1 | -:6: warning: value does not fit in signed 32 bit field 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/simd64-1.hex: -------------------------------------------------------------------------------- 1 | 66 2 | 44 3 | 0f 4 | 6f 5 | d1 6 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/smx.asm: -------------------------------------------------------------------------------- 1 | [bits 32] 2 | getsec 3 | 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/smx.hex: -------------------------------------------------------------------------------- 1 | 0f 2 | 37 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/arch/x86/tests/x86label.hex: -------------------------------------------------------------------------------- 1 | eb 2 | fe 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/bin/tests/multisect/follows-notfound-err.asm: -------------------------------------------------------------------------------- 1 | section foo follows=bar 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/bin/tests/multisect/initbss.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/bin/tests/multisect/multisect3.hex: -------------------------------------------------------------------------------- 1 | 89 2 | d8 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm: -------------------------------------------------------------------------------- 1 | section foo vfollows=bar 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/elf/tests/elf-overdef.asm: -------------------------------------------------------------------------------- 1 | section .text align=64 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/win32/tests/win32-overdef.asm: -------------------------------------------------------------------------------- 1 | section .text align=64 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/win64/tests/sce2-err.asm: -------------------------------------------------------------------------------- 1 | PROC_FRAME sample4 2 | [pushreg rbp] 3 | 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/win64/tests/win64-abs.asm: -------------------------------------------------------------------------------- 1 | mov rax, [rel 0x1000] 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/objfmts/xdf/tests/xdf-overdef.asm: -------------------------------------------------------------------------------- 1 | section .text align=64 2 | 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/gas-comment.errwarn: -------------------------------------------------------------------------------- 1 | -:25: warning: end of file in comment 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/gas-str.asm: -------------------------------------------------------------------------------- 1 | .string "a\\" 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/gas-str.hex: -------------------------------------------------------------------------------- 1 | 61 2 | 5c 3 | 00 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/rept-err.errwarn: -------------------------------------------------------------------------------- 1 | -:3: error: rept without matching endr 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/reptempty.hex: -------------------------------------------------------------------------------- 1 | 01 2 | 02 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/bin/reptzero.hex: -------------------------------------------------------------------------------- 1 | 01 2 | 04 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/gas-segprefix.asm: -------------------------------------------------------------------------------- 1 | .text 2 | es pushl %ebp 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/reggroup-err.errwarn: -------------------------------------------------------------------------------- 1 | -:5: error: bad register index `8' 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/strzero.asm: -------------------------------------------------------------------------------- 1 | .ascii "abc\000def" 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/gas/tests/varinsn.asm: -------------------------------------------------------------------------------- 1 | movl %eax, movl 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/alignnop16.asm: -------------------------------------------------------------------------------- 1 | bits 16 2 | mov eax,32 3 | align 16 4 | ret 5 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/alignnop32.asm: -------------------------------------------------------------------------------- 1 | bits 32 2 | mov eax,32 3 | align 16 4 | ret 5 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/charconstmath.asm: -------------------------------------------------------------------------------- 1 | db "string", " "+80h 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/dirwarning.asm: -------------------------------------------------------------------------------- 1 | [warning -w] 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/dirwarning.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/endcomma.asm: -------------------------------------------------------------------------------- 1 | [bits 32] 2 | db 1,2,3,4, 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/equcolon.hex: -------------------------------------------------------------------------------- 1 | 05 2 | 07 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/equlocal.hex: -------------------------------------------------------------------------------- 1 | 05 2 | 74 3 | fe 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/locallabel2.hex: -------------------------------------------------------------------------------- 1 | 01 2 | 02 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/long.asm: -------------------------------------------------------------------------------- 1 | mov [eax], long 0 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/prevlocalwarn.hex: -------------------------------------------------------------------------------- 1 | 31 2 | c0 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/nasm/tests/struczero.hex: -------------------------------------------------------------------------------- 1 | 67 2 | 66 3 | 8b 4 | 01 5 | c3 6 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/array.asm: -------------------------------------------------------------------------------- 1 | t db 0,1,2 2 | mov al,t[1] 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/charstr.asm: -------------------------------------------------------------------------------- 1 | mov eax,"1234" 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/dup.asm: -------------------------------------------------------------------------------- 1 | a db 10 dup(1) 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/equal.asm: -------------------------------------------------------------------------------- 1 | a = byte 1 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/equal.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/expr.hex: -------------------------------------------------------------------------------- 1 | 54 2 | fe 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/irp.asm: -------------------------------------------------------------------------------- 1 | irp i,<1,2,3> 2 | mov ax,i 3 | endm 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/label.asm: -------------------------------------------------------------------------------- 1 | a label byte 2 | mov ax,offset a 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/les.asm: -------------------------------------------------------------------------------- 1 | a db 1 2 | les ax,a 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/parsers/tasm/tests/size.asm: -------------------------------------------------------------------------------- 1 | a db 0 2 | mov a,1 3 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/nasm/tests/macroeof-err.asm: -------------------------------------------------------------------------------- 1 | %macro foo 0 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/nasm/tests/nasmpp-bigint.hex: -------------------------------------------------------------------------------- 1 | 00 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/nasm/tests/nasmpp-nested.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/nasm/tests/noinclude-err.asm: -------------------------------------------------------------------------------- 1 | %include "doesnotexist.inc" 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/nasm/tests/orgsect.hex: -------------------------------------------------------------------------------- 1 | 05 2 | 00 3 | 01 4 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/raw/tests/longline.asm: -------------------------------------------------------------------------------- 1 | KL#Xq -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/raw/tests/longline.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/tasm/tests/tasm-assume-comment.hex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/modules/preprocs/tasm/tests/tasm-comment-instr.asm: -------------------------------------------------------------------------------- 1 | ansi_normal db 0x27,'[0;40;37m$' 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/out_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/out_test.sh -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/ChangeLog -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/Makevars -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/POTFILES.in -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/Rules-quot -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/quot.sed -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/po/yasm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/po/yasm.pot -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/splint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/splint.sh -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/test_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/test_hd.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/util.h -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/version: -------------------------------------------------------------------------------- 1 | 1.2.0 2 | -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/x86insns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/x86insns.c -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/yasm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/yasm.1 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/yasm_arch.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/yasm_arch.7 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/yasm_dbgfmts.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/yasm_dbgfmts.7 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/yasm_objfmts.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/yasm_objfmts.7 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm/yasm_parsers.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm/yasm_parsers.7 -------------------------------------------------------------------------------- /mpir-2.6.0/yasm_mac.inc.fat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm_mac.inc.fat -------------------------------------------------------------------------------- /mpir-2.6.0/yasm_mac.inc.nofat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm_mac.inc.nofat -------------------------------------------------------------------------------- /mpir-2.6.0/yasm_macwin.inc.fat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/yasm_macwin.inc.fat -------------------------------------------------------------------------------- /mpir-2.6.0/ylwrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/mpir-2.6.0/ylwrap -------------------------------------------------------------------------------- /secp256k1vb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/.gitignore -------------------------------------------------------------------------------- /secp256k1vb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/.travis.yml -------------------------------------------------------------------------------- /secp256k1vb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/COPYING -------------------------------------------------------------------------------- /secp256k1vb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/Makefile.am -------------------------------------------------------------------------------- /secp256k1vb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/README.md -------------------------------------------------------------------------------- /secp256k1vb/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/SECURITY.md -------------------------------------------------------------------------------- /secp256k1vb/autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | autoreconf -if --warnings=all 4 | -------------------------------------------------------------------------------- /secp256k1vb/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/configure.ac -------------------------------------------------------------------------------- /secp256k1vb/contrib/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/contrib/travis.sh -------------------------------------------------------------------------------- /secp256k1vb/libsecp256k1.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/libsecp256k1.pc.in -------------------------------------------------------------------------------- /secp256k1vb/obj/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secp256k1vb/src/assumptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/assumptions.h -------------------------------------------------------------------------------- /secp256k1vb/src/basic-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/basic-config.h -------------------------------------------------------------------------------- /secp256k1vb/src/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/bench.h -------------------------------------------------------------------------------- /secp256k1vb/src/bench_ecdh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/bench_ecdh.c -------------------------------------------------------------------------------- /secp256k1vb/src/bench_ecmult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/bench_ecmult.c -------------------------------------------------------------------------------- /secp256k1vb/src/bench_sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/bench_sign.c -------------------------------------------------------------------------------- /secp256k1vb/src/bench_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/bench_verify.c -------------------------------------------------------------------------------- /secp256k1vb/src/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecdsa.h -------------------------------------------------------------------------------- /secp256k1vb/src/ecdsa_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecdsa_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/eckey.h -------------------------------------------------------------------------------- /secp256k1vb/src/eckey_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/eckey_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/ecmult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecmult.h -------------------------------------------------------------------------------- /secp256k1vb/src/ecmult_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecmult_const.h -------------------------------------------------------------------------------- /secp256k1vb/src/ecmult_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecmult_gen.h -------------------------------------------------------------------------------- /secp256k1vb/src/ecmult_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/ecmult_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/field.h -------------------------------------------------------------------------------- /secp256k1vb/src/field_10x26.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/field_10x26.h -------------------------------------------------------------------------------- /secp256k1vb/src/field_5x52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/field_5x52.h -------------------------------------------------------------------------------- /secp256k1vb/src/field_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/field_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/gen_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/gen_context.c -------------------------------------------------------------------------------- /secp256k1vb/src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/group.h -------------------------------------------------------------------------------- /secp256k1vb/src/group_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/group_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/hash.h -------------------------------------------------------------------------------- /secp256k1vb/src/hash_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/hash_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/num.h -------------------------------------------------------------------------------- /secp256k1vb/src/num_gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/num_gmp.h -------------------------------------------------------------------------------- /secp256k1vb/src/num_gmp_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/num_gmp_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/num_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/num_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scalar.h -------------------------------------------------------------------------------- /secp256k1vb/src/scalar_4x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scalar_4x64.h -------------------------------------------------------------------------------- /secp256k1vb/src/scalar_8x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scalar_8x32.h -------------------------------------------------------------------------------- /secp256k1vb/src/scalar_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scalar_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/scalar_low.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scalar_low.h -------------------------------------------------------------------------------- /secp256k1vb/src/scratch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scratch.h -------------------------------------------------------------------------------- /secp256k1vb/src/scratch_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/scratch_impl.h -------------------------------------------------------------------------------- /secp256k1vb/src/secp256k1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/secp256k1.c -------------------------------------------------------------------------------- /secp256k1vb/src/selftest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/selftest.h -------------------------------------------------------------------------------- /secp256k1vb/src/testrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/testrand.h -------------------------------------------------------------------------------- /secp256k1vb/src/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/tests.c -------------------------------------------------------------------------------- /secp256k1vb/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/src/util.h -------------------------------------------------------------------------------- /secp256k1vb/vs2010/libdef.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/secp256k1vb/vs2010/libdef.def -------------------------------------------------------------------------------- /typelibs/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/typelibs/compile.bat -------------------------------------------------------------------------------- /typelibs/hashlibvb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/typelibs/hashlibvb.idl -------------------------------------------------------------------------------- /typelibs/hashlibvb.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/typelibs/hashlibvb.tlb -------------------------------------------------------------------------------- /typelibs/secp256k1vb.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/typelibs/secp256k1vb.idl -------------------------------------------------------------------------------- /typelibs/secp256k1vb.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thetrik/BitcoinVB/HEAD/typelibs/secp256k1vb.tlb --------------------------------------------------------------------------------