Home
last modified time | relevance | path

Searched refs:NUMB_BITS (Results 1 – 14 of 14) sorted by relevance

/dports/math/kalker/kalker-1.1.0/cargo-crates/rug-1.11.0/src/
H A Dlib.rs478 use gmp_mpfr_sys::gmp::{limb_t, LIMB_BITS, NAIL_BITS, NUMB_BITS};
481 static_assert!(NUMB_BITS == LIMB_BITS);
485 static_assert!(NUMB_BITS == 64);
487 static_assert!(NUMB_BITS == 32);
488 static_assert!(NUMB_BITS % 8 == 0);
489 static_assert!(mem::size_of::<limb_t>() == NUMB_BITS as usize / 8);
/dports/security/nettle/nettle-3.7.3/
H A Dconfig.make.in49 NUMB_BITS = @NUMB_BITS@
H A DMakefile.in355 ./eccdata$(EXEEXT_FOR_BUILD) secp192r1 8 6 $(NUMB_BITS) > $@T && mv $@T $@
363 ./eccdata$(EXEEXT_FOR_BUILD) secp224r1 16 7 $(NUMB_BITS) > $@T && mv $@T $@
371 ./eccdata$(EXEEXT_FOR_BUILD) secp256r1 11 6 $(NUMB_BITS) > $@T && mv $@T $@
382 ./eccdata$(EXEEXT_FOR_BUILD) secp384r1 32 6 $(NUMB_BITS) > $@T && mv $@T $@
390 ./eccdata$(EXEEXT_FOR_BUILD) secp521r1 44 6 $(NUMB_BITS) > $@T && mv $@T $@
394 ./eccdata$(EXEEXT_FOR_BUILD) curve25519 11 6 $(NUMB_BITS) > $@T && mv $@T $@
397 ./eccdata$(EXEEXT_FOR_BUILD) curve448 38 6 $(NUMB_BITS) > $@T && mv $@T $@
405 ./eccdata$(EXEEXT_FOR_BUILD) gost_gc256b 11 6 $(NUMB_BITS) > $@T && mv $@T $@
414 ./eccdata$(EXEEXT_FOR_BUILD) gost_gc512a 43 6 $(NUMB_BITS) > $@T && mv $@T $@
H A Dconfigure.ac288 NUMB_BITS="$nettle_cv_gmp_numb_bits"
289 AC_SUBST([NUMB_BITS]) subst
293 GMP_NUMB_BITS="$NUMB_BITS"
560 if test "$tmp_bits" && test "$tmp_bits" != "${NUMB_BITS}" ; then
H A Dconfigure6339 NUMB_BITS="$nettle_cv_gmp_numb_bits"
6344 GMP_NUMB_BITS="$NUMB_BITS"
6772 if test "$tmp_bits" && test "$tmp_bits" != "${NUMB_BITS}" ; then
H A DChangeLog2146 GMP_NUMB_BITS --> NUMB_BITS.
2329 (NUMB_BITS): New substituted variable which always holds the
2332 (NUMB_BITS): ...new name
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/nettle-src-3.5.1-2/nettle/
H A Dconfig.make.in49 NUMB_BITS = @NUMB_BITS@
H A DMakefile.in345 ./eccdata$(EXEEXT_FOR_BUILD) 192 8 6 $(NUMB_BITS) > $@T && mv $@T $@
353 ./eccdata$(EXEEXT_FOR_BUILD) 224 16 7 $(NUMB_BITS) > $@T && mv $@T $@
361 ./eccdata$(EXEEXT_FOR_BUILD) 256 11 6 $(NUMB_BITS) > $@T && mv $@T $@
372 ./eccdata$(EXEEXT_FOR_BUILD) 384 32 6 $(NUMB_BITS) > $@T && mv $@T $@
380 ./eccdata$(EXEEXT_FOR_BUILD) 521 44 6 $(NUMB_BITS) > $@T && mv $@T $@
384 ./eccdata$(EXEEXT_FOR_BUILD) 255 11 6 $(NUMB_BITS) > $@T && mv $@T $@
H A Dconfigure.ac292 NUMB_BITS="$nettle_cv_gmp_numb_bits"
293 AC_SUBST([NUMB_BITS]) subst
297 GMP_NUMB_BITS="$NUMB_BITS"
527 if test "$tmp_bits" && test "$tmp_bits" != "${NUMB_BITS}" ; then
H A Dconfigure6327 NUMB_BITS="$nettle_cv_gmp_numb_bits"
6332 GMP_NUMB_BITS="$NUMB_BITS"
6659 if test "$tmp_bits" && test "$tmp_bits" != "${NUMB_BITS}" ; then
H A DChangeLog728 GMP_NUMB_BITS --> NUMB_BITS.
911 (NUMB_BITS): New substituted variable which always holds the
914 (NUMB_BITS): ...new name
/dports/math/kalker/gmp-mpfr-sys-21966f4bfb56c87d407eb14c72e92ef4e55856aa/src/
H A Dmpfr.rs107 use crate::gmp::{limb_t, mpf_t, mpq_t, mpz_t, randstate_t, NUMB_BITS};
282 ($prec as usize - 1) / $crate::gmp::NUMB_BITS as usize + 1] =
1474 let bits = prec_t::from(NUMB_BITS); in custom_get_size()
H A Dgmp.rs75 pub const NUMB_BITS: c_int = LIMB_BITS - NAIL_BITS; const
368 unsafe { *p + ((*(p.offset(1))) << NUMB_BITS) } in mpz_get_ui()
867 && (*(p.offset(1))) <= limb_t::from($max) >> NUMB_BITS);
/dports/math/kalker/kalker-1.1.0/cargo-crates/rug-1.11.0/src/float/
H A Dmod.rs612 assert!(unsafe { mpfr::custom_get_size(32) } <= gmp::NUMB_BITS.az::<usize>()); in check_assumptions()