-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
564 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/sh | ||
# Get modification time of a file or directory and pretty-print it. | ||
|
||
scriptversion=2010-08-21.06; # UTC | ||
scriptversion=2015-04-09.19; # UTC | ||
|
||
# Copyright (C) 1995-2013 Free Software Foundation, Inc. | ||
# Copyright (C) 1995-2014 Free Software Foundation, Inc. | ||
# written by Ulrich Drepper <[email protected]>, June 1995 | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
|
@@ -74,6 +74,10 @@ export LC_ALL | |
LC_TIME=C | ||
export LC_TIME | ||
|
||
# Use UTC to get reproducible result | ||
TZ=UTC | ||
export TZ | ||
|
||
# GNU ls changes its time format in response to the TIME_STYLE | ||
# variable. Since we cannot assume 'unset' works, revert this | ||
# variable to its documented default. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* mpf_cmp_z -- Compare a float with an integer. | ||
Copyright 2015 Free Software Foundation, Inc. | ||
This file is part of the GNU MP Library. | ||
The GNU MP Library is free software; you can redistribute it and/or modify | ||
it under the terms of either: | ||
* 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. | ||
or | ||
* the GNU General Public License as published by the Free Software | ||
Foundation; either version 2 of the License, or (at your option) any | ||
later version. | ||
or both in parallel, as here. | ||
The GNU MP 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 General Public License | ||
for more details. | ||
You should have received copies of the GNU General Public License and the | ||
GNU Lesser General Public License along with the GNU MP Library. If not, | ||
see https://www.gnu.org/licenses/. */ | ||
|
||
#include "mpir.h" | ||
#include "gmp-impl.h" | ||
|
||
int | ||
mpf_cmp_z (mpf_srcptr u, mpz_srcptr v) __GMP_NOTHROW | ||
{ | ||
mpf_t vf; | ||
mp_size_t size; | ||
|
||
SIZ (vf) = size = SIZ (v); | ||
EXP (vf) = size = ABS (size); | ||
/* PREC (vf) = size; */ | ||
PTR (vf) = PTR (v); | ||
|
||
return mpf_cmp (u, vf); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* mpn_zero_p (x,xsize) -- Return 1 if X is zero, 0 if it is non-zero. | ||
Copyright 2015 Free Software Foundation, Inc. | ||
This file is part of the GNU MP Library. | ||
The GNU MP Library is free software; you can redistribute it and/or modify | ||
it under the terms of either: | ||
* 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. | ||
or | ||
* the GNU General Public License as published by the Free Software | ||
Foundation; either version 2 of the License, or (at your option) any | ||
later version. | ||
or both in parallel, as here. | ||
The GNU MP 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 General Public License | ||
for more details. | ||
You should have received copies of the GNU General Public License and the | ||
GNU Lesser General Public License along with the GNU MP Library. If not, | ||
see https://www.gnu.org/licenses/. */ | ||
|
||
#define __GMP_FORCE_mpn_zero_p 1 | ||
|
||
#include "mpir.h" | ||
#include "gmp-impl.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
/* Test mpn_and, mpn_ior, mpn_xor, mpn_andn, mpn_iorn, mpn_xnor, mpn_nand, and | ||
mpn_nior. | ||
Copyright 2011-2013 Free Software Foundation, Inc. | ||
This file is part of the GNU MP Library test suite. | ||
The GNU MP Library test suite is free software; you can redistribute it | ||
and/or modify it under the terms of the GNU 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 MP Library test suite 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 General | ||
Public License for more details. | ||
You should have received a copy of the GNU General Public License along with | ||
the GNU MP Library test suite. If not, see https://www.gnu.org/licenses/. */ | ||
|
||
|
||
#include <stdlib.h> | ||
#include <stdio.h> | ||
|
||
/* Fake native prevalence of the tested operations, so that we actually test | ||
the compiled functions, i.e., the ones which users will reach. The inlined | ||
variants will be tested through tests/mpz/logic.c. */ | ||
#define HAVE_NATIVE_mpn_com_n 1 | ||
#define HAVE_NATIVE_mpn_and_n 1 | ||
#define HAVE_NATIVE_mpn_andn_n 1 | ||
#define HAVE_NATIVE_mpn_nand_n 1 | ||
#define HAVE_NATIVE_mpn_ior_n 1 | ||
#define HAVE_NATIVE_mpn_iorn_n 1 | ||
#define HAVE_NATIVE_mpn_nior_n 1 | ||
#define HAVE_NATIVE_mpn_xor_n 1 | ||
#define HAVE_NATIVE_mpn_xnor_n 1 | ||
|
||
#include "mpir.h" | ||
#include "gmp-impl.h" | ||
#include "tests.h" | ||
|
||
|
||
void | ||
check_one (mp_srcptr refp, mp_srcptr rp, mp_srcptr ap, mp_srcptr bp, mp_size_t n, const char *funcname) | ||
{ | ||
if (mpn_cmp (refp, rp, n)) | ||
{ | ||
printf ("ERROR in mpn_%s\n", funcname); | ||
printf ("a: "); mpn_dump (ap, n); | ||
printf ("b: "); mpn_dump (bp, n); | ||
printf ("r: "); mpn_dump (rp, n); | ||
printf ("ref: "); mpn_dump (refp, n); | ||
abort(); | ||
} | ||
} | ||
|
||
int | ||
main (int argc, char **argv) | ||
{ | ||
mpz_t a, b; | ||
mp_ptr ap, bp, rp, refp; | ||
mp_size_t max_n, n, i; | ||
gmp_randstate_ptr rands; | ||
long test, reps = 1000; | ||
TMP_DECL; | ||
TMP_MARK; | ||
|
||
tests_start (); | ||
/* TESTS_REPS (reps, argv, argc); */ | ||
|
||
mpz_inits (a, b, NULL); | ||
|
||
rands = RANDS; /* FIXME: not used */ | ||
|
||
max_n = 100; | ||
|
||
rp = TMP_ALLOC_LIMBS (1 + max_n * 8 / GMP_LIMB_BITS); | ||
refp = TMP_ALLOC_LIMBS (1 + max_n * 8 / GMP_LIMB_BITS); | ||
|
||
for (test = 0; test < reps; test++) | ||
{ | ||
for (i = 1; i <= max_n; i++) | ||
{ | ||
mpz_rrandomb (a, rands, i * 8); | ||
mpz_rrandomb (b, rands, i * 8); | ||
mpz_setbit (a, i * 8 - 1); | ||
mpz_setbit (b, i * 8 - 1); | ||
ap = PTR(a); | ||
bp = PTR(b); | ||
n = SIZ(a); | ||
|
||
refmpn_and_n (refp, ap, bp, n); | ||
mpn_and_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "and_n"); | ||
|
||
refmpn_ior_n (refp, ap, bp, n); | ||
mpn_ior_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "ior_n"); | ||
|
||
refmpn_xor_n (refp, ap, bp, n); | ||
mpn_xor_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "xor_n"); | ||
|
||
refmpn_andn_n (refp, ap, bp, n); | ||
mpn_andn_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "andn_n"); | ||
|
||
refmpn_iorn_n (refp, ap, bp, n); | ||
mpn_iorn_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "iorn_n"); | ||
|
||
refmpn_nand_n (refp, ap, bp, n); | ||
mpn_nand_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "nand_n"); | ||
|
||
refmpn_nior_n (refp, ap, bp, n); | ||
mpn_nior_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "nior_n"); | ||
|
||
refmpn_xnor_n (refp, ap, bp, n); | ||
mpn_xnor_n (rp, ap, bp, n); | ||
check_one (refp, rp, ap, bp, n, "xnor_n"); | ||
|
||
refmpn_com_n (refp, ap, n); | ||
mpn_com_n (rp, ap, n); | ||
check_one (refp, rp, ap, bp, n, "com"); | ||
} | ||
} | ||
|
||
TMP_FREE; | ||
mpz_clears (a, b, NULL); | ||
tests_end (); | ||
return 0; | ||
} |