ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
132 lines
3.4 KiB
C
132 lines
3.4 KiB
C
/* mpfr-mini-gmp.h -- Interface header for mini-gmp.
|
|
|
|
Copyright 2014-2025 Free Software Foundation, Inc.
|
|
Contributed by the Pascaline and Caramba projects, INRIA.
|
|
|
|
This file is part of the GNU MPFR Library.
|
|
|
|
The GNU MPFR Library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The GNU MPFR Library is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with the GNU MPFR Library; see the file COPYING.LESSER.
|
|
If not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef mp_limb_signed_t
|
|
typedef long mp_limb_signed_t;
|
|
#endif
|
|
|
|
#ifndef __gmp_allocate_func
|
|
#define __gmp_allocate_func gmp_default_alloc
|
|
#define __gmp_reallocate_func gmp_default_realloc
|
|
#define __gmp_free_func gmp_default_free
|
|
#endif
|
|
|
|
#ifndef gmp_randstate_t
|
|
typedef long int __gmp_randstate_struct;
|
|
typedef __gmp_randstate_struct gmp_randstate_t[1];
|
|
#endif
|
|
|
|
#ifndef gmp_randinit_default
|
|
#define WANT_gmp_randinit_default
|
|
void gmp_randinit_default (gmp_randstate_t);
|
|
#endif
|
|
|
|
#ifndef gmp_randseed_ui
|
|
#define WANT_gmp_randseed_ui
|
|
void gmp_randseed_ui (gmp_randstate_t, unsigned long int);
|
|
#endif
|
|
|
|
#ifndef gmp_randclear
|
|
#define WANT_gmp_randclear
|
|
void gmp_randclear (gmp_randstate_t);
|
|
#endif
|
|
|
|
#ifndef gmp_randinit_set
|
|
#define WANT_gmp_randinit_set
|
|
void gmp_randinit_set (gmp_randstate_t, gmp_randstate_t);
|
|
#endif
|
|
|
|
#ifndef mpn_scan1
|
|
#define WANT_mpn_scan1
|
|
mp_bitcnt_t mpn_scan1 (const mp_limb_t *, mp_bitcnt_t);
|
|
#endif
|
|
|
|
#ifndef mpz_perfect_square_p
|
|
#define WANT_mpz_perfect_square_p
|
|
int mpz_perfect_square_p (const mpz_t);
|
|
#endif
|
|
|
|
#ifndef mpz_addmul_ui
|
|
#define WANT_mpz_addmul_ui
|
|
void mpz_addmul_ui (mpz_t, const mpz_t, unsigned long);
|
|
#endif
|
|
|
|
#ifndef mpn_divrem_1
|
|
#define WANT_mpn_divrem_1
|
|
mp_limb_t mpn_divrem_1 (mp_limb_t*, mp_size_t, mp_limb_t*, mp_size_t,
|
|
mp_limb_t);
|
|
#endif
|
|
|
|
#ifndef mpz_urandomb
|
|
#define WANT_mpz_urandomb
|
|
void mpz_urandomb (mpz_t, gmp_randstate_t, mp_bitcnt_t);
|
|
#endif
|
|
|
|
#ifndef mpn_zero
|
|
#define WANT_mpn_zero
|
|
void mpn_zero (mp_limb_t *, mp_size_t);
|
|
#endif
|
|
|
|
#ifndef mpn_popcount
|
|
#define WANT_mpn_popcount
|
|
mp_bitcnt_t mpn_popcount (const mp_limb_t *, mp_size_t);
|
|
#endif
|
|
|
|
#ifndef gmp_urandomm_ui
|
|
#define WANT_gmp_urandomm_ui
|
|
unsigned long gmp_urandomm_ui (gmp_randstate_t state, unsigned long n);
|
|
#endif
|
|
|
|
#ifndef gmp_urandomb_ui
|
|
#define WANT_gmp_urandomb_ui
|
|
unsigned long gmp_urandomb_ui (gmp_randstate_t state, unsigned long n);
|
|
#endif
|
|
|
|
#ifndef mpn_divrem
|
|
#define WANT_mpn_divrem
|
|
mp_limb_t mpn_divrem (mp_limb_t *, mp_size_t, mp_limb_t *,
|
|
mp_size_t, const mp_limb_t *, mp_size_t);
|
|
#endif
|
|
|
|
#ifndef mpz_submul
|
|
#define WANT_mpz_submul
|
|
void mpz_submul (mpz_t, const mpz_t, const mpz_t);
|
|
#endif
|
|
|
|
#ifndef mpz_addmul
|
|
#define WANT_mpz_addmul
|
|
void mpz_addmul (mpz_t, const mpz_t, const mpz_t);
|
|
#endif
|
|
|
|
#ifndef mpn_tdiv_qr
|
|
#define WANT_mpn_tdiv_qr
|
|
void mpn_tdiv_qr (mp_limb_t *, mp_limb_t *, mp_size_t,
|
|
const mp_limb_t *, mp_size_t, const mp_limb_t *, mp_size_t);
|
|
#endif
|
|
|
|
#ifndef mpz_rrandomb
|
|
#define mpz_rrandomb mpz_urandomb
|
|
#endif
|
|
|
|
#ifndef mpz_dump
|
|
void mpz_dump (mpz_t);
|
|
#endif
|