diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2012-11-20 23:12:51 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2012-11-20 23:12:51 +0100 |
commit | 8ef6040bf42b68a1da0a6da7d41b8eb31e4c4778 (patch) | |
tree | c519d91aebfdecd7267c93a9a2d975b19af29995 | |
parent | 5c9b80d6146c5f57a51cceaeff7a1142c7ff9c61 (diff) | |
download | gmp-8ef6040bf42b68a1da0a6da7d41b8eb31e4c4778.tar.gz |
Add copyright years.
197 files changed, 396 insertions, 378 deletions
diff --git a/cxx/Makefile.am b/cxx/Makefile.am index f60b4c98e..a5d51905d 100644 --- a/cxx/Makefile.am +++ b/cxx/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to generate Makefile.in -# Copyright 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright 2001, 2002, 2003, 2012 Free Software Foundation, Inc. # # This file is part of the GNU MP Library. # diff --git a/demos/Makefile.am b/demos/Makefile.am index 7f47fd133..d82e947c8 100644 --- a/demos/Makefile.am +++ b/demos/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to generate Makefile.in -# Copyright 2000, 2001, 2002 Free Software Foundation, Inc. +# Copyright 2000, 2001, 2002, 2012 Free Software Foundation, Inc. # # This file is part of the GNU MP Library. # diff --git a/demos/isprime.c b/demos/isprime.c index 083866b9f..782106c0a 100644 --- a/demos/isprime.c +++ b/demos/isprime.c @@ -1,7 +1,7 @@ /* Classify numbers as probable primes, primes or composites. With -q return true if the following argument is a (probable) prime. -Copyright 1999, 2000, 2002, 2005 Free Software Foundation, Inc. +Copyright 1999, 2000, 2002, 2005, 2012 Free Software Foundation, Inc. This program 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 diff --git a/demos/pexpr.c b/demos/pexpr.c index f07eaffd4..8ecb634f6 100644 --- a/demos/pexpr.c +++ b/demos/pexpr.c @@ -1,7 +1,8 @@ /* Program for computing integer expressions using the GNU Multiple Precision Arithmetic Library. -Copyright 1997, 1999, 2000, 2001, 2002, 2005 Free Software Foundation, Inc. +Copyright 1997, 1999, 2000, 2001, 2002, 2005, 2008, 2012 Free Software +Foundation, Inc. This program 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 diff --git a/demos/primes.c b/demos/primes.c index b4962ea48..61844b9af 100644 --- a/demos/primes.c +++ b/demos/primes.c @@ -2,7 +2,7 @@ Written by tege while on holiday in Rodupp, August 2001. Between 10 and 500 times faster than previous program. -Copyright 2001, 2002, 2006 Free Software Foundation, Inc. +Copyright 2001, 2002, 2006, 2012 Free Software Foundation, Inc. This program 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 @@ -1,6 +1,6 @@ /* Generate Fibonacci table data. -Copyright 2001, 2002, 2004 Free Software Foundation, Inc. +Copyright 2001, 2002, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/gen-psqr.c b/gen-psqr.c index e43da6a1a..513286c01 100644 --- a/gen-psqr.c +++ b/gen-psqr.c @@ -1,6 +1,6 @@ /* Generate perfect square testing data. -Copyright 2002, 2003, 2004 Free Software Foundation, Inc. +Copyright 2002, 2003, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/longlong.h b/longlong.h index dfac32c1d..0e0db7cdb 100644 --- a/longlong.h +++ b/longlong.h @@ -1,7 +1,7 @@ /* longlong.h -- definitions for mixed size 32/64 bit arithmetic. Copyright 1991, 1992, 1993, 1994, 1996, 1997, 1999, 2000, 2001, 2002, 2003, -2004, 2005, 2007, 2008, 2009, 2011 Free Software Foundation, Inc. +2004, 2005, 2007, 2008, 2009, 2011, 2012 Free Software Foundation, Inc. This file 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 @@ -1,6 +1,7 @@ /* Memory allocation routines. -Copyright 1991, 1993, 1994, 2000, 2001, 2002 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpf/ceilfloor.c b/mpf/ceilfloor.c index 46d642df5..3a34c1b44 100644 --- a/mpf/ceilfloor.c +++ b/mpf/ceilfloor.c @@ -1,6 +1,6 @@ /* mpf_ceil, mpf_floor -- round an mpf to an integer. -Copyright 2001, 2004 Free Software Foundation, Inc. +Copyright 2001, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/cmp_si.c b/mpf/cmp_si.c index 9b364a387..e1af23c01 100644 --- a/mpf/cmp_si.c +++ b/mpf/cmp_si.c @@ -1,6 +1,6 @@ /* mpf_cmp_si -- Compare a float with a signed integer. -Copyright 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2004 Free Software +Copyright 1993, 1994, 1995, 1999, 2000, 2001, 2002, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -1,7 +1,7 @@ /* mpf_div -- Divide two floats. -Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005, 2010 Free Software -Foundation, Inc. +Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005, 2010, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/div_ui.c b/mpf/div_ui.c index 4236291db..5ccc00ec3 100644 --- a/mpf/div_ui.c +++ b/mpf/div_ui.c @@ -1,6 +1,6 @@ /* mpf_div_ui -- Divide a float with an unsigned integer. -Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005 Free Software +Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -1,7 +1,7 @@ /* mpf_eq -- Compare two floats up to a specified bit #. -Copyright 1993, 1995, 1996, 2001, 2002, 2008, 2009 Free Software Foundation, -Inc. +Copyright 1993, 1995, 1996, 2001, 2002, 2008, 2009, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/iset_si.c b/mpf/iset_si.c index a689d0d05..7eaf08cff 100644 --- a/mpf/iset_si.c +++ b/mpf/iset_si.c @@ -1,7 +1,7 @@ /* mpf_init_set_si() -- Initialize a float and assign it from a signed int. -Copyright 1993, 1994, 1995, 2000, 2001, 2003, 2004 Free Software Foundation, -Inc. +Copyright 1993, 1994, 1995, 2000, 2001, 2003, 2004, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/set_si.c b/mpf/set_si.c index aa7b4ee84..b9dfae3ef 100644 --- a/mpf/set_si.c +++ b/mpf/set_si.c @@ -1,7 +1,7 @@ /* mpf_set_si() -- Assign a float from a signed int. -Copyright 1993, 1994, 1995, 2000, 2001, 2002, 2004 Free Software Foundation, -Inc. +Copyright 1993, 1994, 1995, 2000, 2001, 2002, 2004, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/sqrt.c b/mpf/sqrt.c index 138950ffa..bdd79358b 100644 --- a/mpf/sqrt.c +++ b/mpf/sqrt.c @@ -1,7 +1,7 @@ /* mpf_sqrt -- Compute the square root of a float. -Copyright 1993, 1994, 1996, 2000, 2001, 2004, 2005 Free Software Foundation, -Inc. +Copyright 1993, 1994, 1996, 2000, 2001, 2004, 2005, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpf/ui_div.c b/mpf/ui_div.c index 5d36dc1d3..3ca717e75 100644 --- a/mpf/ui_div.c +++ b/mpf/ui_div.c @@ -1,7 +1,7 @@ /* mpf_ui_div -- Divide an unsigned integer with a float. -Copyright 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2004, 2005 Free Software -Foundation, Inc. +Copyright 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2004, 2005, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/arm/arm-defs.m4 b/mpn/arm/arm-defs.m4 index 65d0ed22c..cb71078bd 100644 --- a/mpn/arm/arm-defs.m4 +++ b/mpn/arm/arm-defs.m4 @@ -2,7 +2,7 @@ divert(-1) dnl m4 macros for ARM assembler. -dnl Copyright 2001 Free Software Foundation, Inc. +dnl Copyright 2001, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/arm/mul_1.asm b/mpn/arm/mul_1.asm index b9102384a..f4b6bf984 100644 --- a/mpn/arm/mul_1.asm +++ b/mpn/arm/mul_1.asm @@ -2,7 +2,7 @@ dnl ARM mpn_mul_1 -- Multiply a limb vector with a limb and store the result dnl in a second limb vector. dnl Contributed by Robert Harley. -dnl Copyright 1998, 2000, 2001, 2003 Free Software Foundation, Inc. +dnl Copyright 1998, 2000, 2001, 2003, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/arm/udiv.asm b/mpn/arm/udiv.asm index 3801730e0..d6744b554 100644 --- a/mpn/arm/udiv.asm +++ b/mpn/arm/udiv.asm @@ -1,7 +1,7 @@ dnl ARM mpn_udiv_qrnnd -- divide a two limb dividend and a one limb divisor. dnl Return quotient and store remainder through a supplied pointer. -dnl Copyright 2001 Free Software Foundation, Inc. +dnl Copyright 2001, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/generic/bdiv_qr.c b/mpn/generic/bdiv_qr.c index 15abc520c..8bac03e04 100644 --- a/mpn/generic/bdiv_qr.c +++ b/mpn/generic/bdiv_qr.c @@ -7,7 +7,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE. -Copyright 2006, 2007, 2009 Free Software Foundation, Inc. +Copyright 2006, 2007, 2009, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/gcd.c b/mpn/generic/gcd.c index 31a856820..bf69e3a0c 100644 --- a/mpn/generic/gcd.c +++ b/mpn/generic/gcd.c @@ -1,7 +1,7 @@ /* mpn/gcd.c: mpn_gcd for gcd of two odd integers. Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, -2004, 2005, 2008, 2010 Free Software Foundation, Inc. +2004, 2005, 2008, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/gcdext.c b/mpn/generic/gcdext.c index eb36f1598..48f7b7799 100644 --- a/mpn/generic/gcdext.c +++ b/mpn/generic/gcdext.c @@ -1,7 +1,7 @@ /* mpn_gcdext -- Extended Greatest Common Divisor. -Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 Free Software -Foundation, Inc. +Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/gcdext_lehmer.c b/mpn/generic/gcdext_lehmer.c index d9cd3616b..101dd498e 100644 --- a/mpn/generic/gcdext_lehmer.c +++ b/mpn/generic/gcdext_lehmer.c @@ -1,7 +1,7 @@ /* mpn_gcdext -- Extended Greatest Common Divisor. -Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 Free Software -Foundation, Inc. +Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/get_str.c b/mpn/generic/get_str.c index fa2dd2555..e17497cb0 100644 --- a/mpn/generic/get_str.c +++ b/mpn/generic/get_str.c @@ -8,7 +8,7 @@ GNU MP RELEASE. Copyright 1991, 1992, 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2006, 2007, -2008, 2011 Free Software Foundation, Inc. +2008, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd.c b/mpn/generic/hgcd.c index a02d63974..f51bbde81 100644 --- a/mpn/generic/hgcd.c +++ b/mpn/generic/hgcd.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2003, 2004, 2005, 2008, 2011 Free Software Foundation, Inc. +Copyright 2003, 2004, 2005, 2008, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd2.c b/mpn/generic/hgcd2.c index a9894dab6..08641cc52 100644 --- a/mpn/generic/hgcd2.c +++ b/mpn/generic/hgcd2.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2008 Free Software +Copyright 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd_appr.c b/mpn/generic/hgcd_appr.c index fb17dd147..bb8536ae6 100644 --- a/mpn/generic/hgcd_appr.c +++ b/mpn/generic/hgcd_appr.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2011 Free Software Foundation, Inc. +Copyright 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd_jacobi.c b/mpn/generic/hgcd_jacobi.c index 8888bbad3..728755a62 100644 --- a/mpn/generic/hgcd_jacobi.c +++ b/mpn/generic/hgcd_jacobi.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2003, 2004, 2005, 2008, 2011 Free Software Foundation, Inc. +Copyright 2003, 2004, 2005, 2008, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd_matrix.c b/mpn/generic/hgcd_matrix.c index 0dedd448a..9eee8ffe8 100644 --- a/mpn/generic/hgcd_matrix.c +++ b/mpn/generic/hgcd_matrix.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2003, 2004, 2005, 2008 Free Software Foundation, Inc. +Copyright 2003, 2004, 2005, 2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd_reduce.c b/mpn/generic/hgcd_reduce.c index 7345b9cf0..ec201f5df 100644 --- a/mpn/generic/hgcd_reduce.c +++ b/mpn/generic/hgcd_reduce.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2011 Free Software Foundation, Inc. +Copyright 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/hgcd_step.c b/mpn/generic/hgcd_step.c index b6e887c24..740c56b28 100644 --- a/mpn/generic/hgcd_step.c +++ b/mpn/generic/hgcd_step.c @@ -4,7 +4,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2003, 2004, 2005, 2008, 2011 Free Software Foundation, Inc. +Copyright 2003, 2004, 2005, 2008, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mod_1.c b/mpn/generic/mod_1.c index e8c340123..66c332ea3 100644 --- a/mpn/generic/mod_1.c +++ b/mpn/generic/mod_1.c @@ -3,7 +3,7 @@ Return the single-limb remainder. There are no constraints on the value of the divisor. -Copyright 1991, 1993, 1994, 1999, 2000, 2002, 2007, 2008, 2009 Free +Copyright 1991, 1993, 1994, 1999, 2000, 2002, 2007, 2008, 2009, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mu_bdiv_qr.c b/mpn/generic/mu_bdiv_qr.c index 1c2bcaf8f..fabdc4690 100644 --- a/mpn/generic/mu_bdiv_qr.c +++ b/mpn/generic/mu_bdiv_qr.c @@ -8,7 +8,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE. -Copyright 2005, 2006, 2007, 2009, 2010 Free Software Foundation, Inc. +Copyright 2005, 2006, 2007, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mul.c b/mpn/generic/mul.c index a19e7e3a1..1f3d5a6e6 100644 --- a/mpn/generic/mul.c +++ b/mpn/generic/mul.c @@ -3,7 +3,7 @@ Contributed to the GNU project by Torbjorn Granlund. Copyright 1991, 1993, 1994, 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005, -2006, 2007, 2009, 2010 Free Software Foundation, Inc. +2006, 2007, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mul_fft.c b/mpn/generic/mul_fft.c index a30647eaf..e2555c7d1 100644 --- a/mpn/generic/mul_fft.c +++ b/mpn/generic/mul_fft.c @@ -7,7 +7,7 @@ GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, -2009, 2010 Free Software Foundation, Inc. +2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mullo_n.c b/mpn/generic/mullo_n.c index ee2551e7b..8c39b2bff 100644 --- a/mpn/generic/mullo_n.c +++ b/mpn/generic/mullo_n.c @@ -7,7 +7,7 @@ FUNCTION THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT'LL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2004, 2005, 2009, 2010 Free Software Foundation, Inc. +Copyright 2004, 2005, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/mulmod_bnm1.c b/mpn/generic/mulmod_bnm1.c index df0eca815..44bfe90a9 100644 --- a/mpn/generic/mulmod_bnm1.c +++ b/mpn/generic/mulmod_bnm1.c @@ -7,7 +7,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009, 2010 Free Software Foundation, Inc. +Copyright 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/perfsqr.c b/mpn/generic/perfsqr.c index fb587d15c..892da1ae7 100644 --- a/mpn/generic/perfsqr.c +++ b/mpn/generic/perfsqr.c @@ -1,8 +1,8 @@ /* mpn_perfect_square_p(u,usize) -- Return non-zero if U is a perfect square, zero otherwise. -Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005 Free Software -Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/popham.c b/mpn/generic/popham.c index d81ad9dd9..4aa0674d5 100644 --- a/mpn/generic/popham.c +++ b/mpn/generic/popham.c @@ -1,6 +1,7 @@ /* mpn_popcount, mpn_hamdist -- mpn bit population count/hamming distance. -Copyright 1994, 1996, 2000, 2001, 2002, 2005, 2011 Free Software Foundation, Inc. +Copyright 1994, 1996, 2000, 2001, 2002, 2005, 2011, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/random2.c b/mpn/generic/random2.c index ea514ca5b..a778d4901 100644 --- a/mpn/generic/random2.c +++ b/mpn/generic/random2.c @@ -1,7 +1,7 @@ /* mpn_random2 -- Generate random numbers with relatively long strings of ones and zeroes. Suitable for border testing. -Copyright 1992, 1993, 1994, 1996, 2000, 2001, 2002, 2004 Free Software +Copyright 1992, 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/sbpi1_bdiv_q.c b/mpn/generic/sbpi1_bdiv_q.c index e5e450cf1..013eb81b5 100644 --- a/mpn/generic/sbpi1_bdiv_q.c +++ b/mpn/generic/sbpi1_bdiv_q.c @@ -7,7 +7,7 @@ IT IS ONLY SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE. -Copyright 2005, 2006, 2009, 2011 Free Software Foundation, Inc. +Copyright 2005, 2006, 2009, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/sbpi1_bdiv_qr.c b/mpn/generic/sbpi1_bdiv_qr.c index d33d59e9a..666f801d9 100644 --- a/mpn/generic/sbpi1_bdiv_qr.c +++ b/mpn/generic/sbpi1_bdiv_qr.c @@ -7,7 +7,7 @@ IT IS ONLY SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE. -Copyright 2006, 2009, 2011 Free Software Foundation, Inc. +Copyright 2006, 2009, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/set_str.c b/mpn/generic/set_str.c index 81591b413..0cb69fb93 100644 --- a/mpn/generic/set_str.c +++ b/mpn/generic/set_str.c @@ -10,7 +10,7 @@ GNU MP RELEASE. Copyright 1991, 1992, 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2006, 2007, -2008 Free Software Foundation, Inc. +2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/sqrmod_bnm1.c b/mpn/generic/sqrmod_bnm1.c index 698bd6833..824cb1108 100644 --- a/mpn/generic/sqrmod_bnm1.c +++ b/mpn/generic/sqrmod_bnm1.c @@ -7,7 +7,7 @@ SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009, 2010 Free Software Foundation, Inc. +Copyright 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/sqrtrem.c b/mpn/generic/sqrtrem.c index f6abaf54d..57041c905 100644 --- a/mpn/generic/sqrtrem.c +++ b/mpn/generic/sqrtrem.c @@ -8,7 +8,7 @@ INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE. -Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2008, 2010 Free Software +Copyright 1999, 2000, 2001, 2002, 2004, 2005, 2008, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom22_mul.c b/mpn/generic/toom22_mul.c index cf04dcbf3..36328d7d0 100644 --- a/mpn/generic/toom22_mul.c +++ b/mpn/generic/toom22_mul.c @@ -7,7 +7,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom2_sqr.c b/mpn/generic/toom2_sqr.c index 3d891dafb..60ec5e4fb 100644 --- a/mpn/generic/toom2_sqr.c +++ b/mpn/generic/toom2_sqr.c @@ -6,7 +6,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom33_mul.c b/mpn/generic/toom33_mul.c index 55f636234..8efa57d8e 100644 --- a/mpn/generic/toom33_mul.c +++ b/mpn/generic/toom33_mul.c @@ -8,7 +8,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008, 2010 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom3_sqr.c b/mpn/generic/toom3_sqr.c index fafc8adb2..3d2185172 100644 --- a/mpn/generic/toom3_sqr.c +++ b/mpn/generic/toom3_sqr.c @@ -7,7 +7,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom42_mul.c b/mpn/generic/toom42_mul.c index 4cdaf62ad..138984ee9 100644 --- a/mpn/generic/toom42_mul.c +++ b/mpn/generic/toom42_mul.c @@ -11,7 +11,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom53_mul.c b/mpn/generic/toom53_mul.c index badef9605..d0a9ab439 100644 --- a/mpn/generic/toom53_mul.c +++ b/mpn/generic/toom53_mul.c @@ -10,7 +10,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom62_mul.c b/mpn/generic/toom62_mul.c index a1a6806f8..bf55c9211 100644 --- a/mpn/generic/toom62_mul.c +++ b/mpn/generic/toom62_mul.c @@ -10,7 +10,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2006, 2007, 2008 Free Software Foundation, Inc. +Copyright 2006, 2007, 2008, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom8_sqr.c b/mpn/generic/toom8_sqr.c index 15bff2eed..d2208aa2c 100644 --- a/mpn/generic/toom8_sqr.c +++ b/mpn/generic/toom8_sqr.c @@ -6,7 +6,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009 Free Software Foundation, Inc. +Copyright 2009, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom_interpolate_12pts.c b/mpn/generic/toom_interpolate_12pts.c index e9a605780..e4a765bed 100644 --- a/mpn/generic/toom_interpolate_12pts.c +++ b/mpn/generic/toom_interpolate_12pts.c @@ -6,7 +6,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009, 2010 Free Software Foundation, Inc. +Copyright 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/toom_interpolate_6pts.c b/mpn/generic/toom_interpolate_6pts.c index 1ff97ef32..542fb2a61 100644 --- a/mpn/generic/toom_interpolate_6pts.c +++ b/mpn/generic/toom_interpolate_6pts.c @@ -6,7 +6,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009, 2010 Free Software Foundation, Inc. +Copyright 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/generic/trialdiv.c b/mpn/generic/trialdiv.c index 6aa698d61..e61bc69fd 100644 --- a/mpn/generic/trialdiv.c +++ b/mpn/generic/trialdiv.c @@ -6,7 +6,7 @@ SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES. IN FACT, IT IS ALMOST GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE. -Copyright 2009, 2010 Free Software Foundation, Inc. +Copyright 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/powerpc64/mode64/aorscnd_n.asm b/mpn/powerpc64/mode64/aorscnd_n.asm index 5c2fb5336..ad143b6d9 100644 --- a/mpn/powerpc64/mode64/aorscnd_n.asm +++ b/mpn/powerpc64/mode64/aorscnd_n.asm @@ -1,7 +1,7 @@ dnl PowerPC-64 mpn_addcnd_n/mpn_subcnd_n. -dnl Copyright 1999, 2000, 2001, 2003, 2004, 2005, 2007, 2011 Free Software -dnl Foundation, Inc. +dnl Copyright 1999, 2000, 2001, 2003, 2004, 2005, 2007, 2011, 2012 Free +dnl Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/powerpc64/mode64/aorsmul_1.asm b/mpn/powerpc64/mode64/aorsmul_1.asm index 3935139aa..2b5432dae 100644 --- a/mpn/powerpc64/mode64/aorsmul_1.asm +++ b/mpn/powerpc64/mode64/aorsmul_1.asm @@ -1,7 +1,7 @@ dnl PowerPC-64 mpn_addmul_1 and mpn_submul_1. -dnl Copyright 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2010, 2011 Free -dnl Software Foundation, Inc. +dnl Copyright 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2010, 2011, 2012 +dnl Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/s390_64/lshift.asm b/mpn/s390_64/lshift.asm index dee8aa6d3..210a964f2 100644 --- a/mpn/s390_64/lshift.asm +++ b/mpn/s390_64/lshift.asm @@ -1,6 +1,6 @@ dnl S/390-64 mpn_lshift. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86/darwin.m4 b/mpn/x86/darwin.m4 index 0ffa4ffda..a6cd923cc 100644 --- a/mpn/x86/darwin.m4 +++ b/mpn/x86/darwin.m4 @@ -1,5 +1,5 @@ divert(-1) -dnl Copyright 2007, 2011 Free Software Foundation, Inc. +dnl Copyright 2007, 2011, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86/fat/fat_entry.asm b/mpn/x86/fat/fat_entry.asm index 2a5c9de26..f9b88cf79 100644 --- a/mpn/x86/fat/fat_entry.asm +++ b/mpn/x86/fat/fat_entry.asm @@ -1,6 +1,6 @@ dnl x86 fat binary entrypoints. -dnl Copyright 2003 Free Software Foundation, Inc. +dnl Copyright 2003, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86/p6/gmp-mparam.h b/mpn/x86/p6/gmp-mparam.h index 05918960f..eabe5a2d1 100644 --- a/mpn/x86/p6/gmp-mparam.h +++ b/mpn/x86/p6/gmp-mparam.h @@ -1,7 +1,7 @@ /* Intel P6 gmp-mparam.h -- Compiler/machine parameter header file. -Copyright 1991, 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2008, 2009, 2010 Free -Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1999, 2000, 2001, 2002, 2003, 2008, 2009, 2010, 2012 +Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86/x86-defs.m4 b/mpn/x86/x86-defs.m4 index 62479424a..9f5649503 100644 --- a/mpn/x86/x86-defs.m4 +++ b/mpn/x86/x86-defs.m4 @@ -4,8 +4,8 @@ divert(-1) dnl m4 macros for x86 assembler. -dnl Copyright 1999, 2000, 2001, 2002, 2003, 2007 Free Software Foundation, -dnl Inc. +dnl Copyright 1999, 2000, 2001, 2002, 2003, 2007, 2010, 2012 Free Software +dnl Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86_64/addmul_2.asm b/mpn/x86_64/addmul_2.asm index f85760e08..991817dbf 100644 --- a/mpn/x86_64/addmul_2.asm +++ b/mpn/x86_64/addmul_2.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_addmul_2 -- Multiply an n-limb vector with a 2-limb vector and dnl add the result to a third limb vector. -dnl Copyright 2008, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aorrlsh1_n.asm b/mpn/x86_64/aorrlsh1_n.asm index 62efd7f15..ede2a5fb7 100644 --- a/mpn/x86_64/aorrlsh1_n.asm +++ b/mpn/x86_64/aorrlsh1_n.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_addlsh1_n -- rp[] = up[] + (vp[] << 1) dnl AMD64 mpn_rsblsh1_n -- rp[] = (vp[] << 1) - up[] -dnl Copyright 2003, 2005, 2006, 2007, 2008, 2009, 2011 Free Software +dnl Copyright 2003, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aorrlshC_n.asm b/mpn/x86_64/aorrlshC_n.asm index d2f9bf701..7e37166b9 100644 --- a/mpn/x86_64/aorrlshC_n.asm +++ b/mpn/x86_64/aorrlshC_n.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_addlshC_n -- rp[] = up[] + (vp[] << C) dnl AMD64 mpn_rsblshC_n -- rp[] = (vp[] << C) - up[] -dnl Copyright 2009, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aorrlsh_n.asm b/mpn/x86_64/aorrlsh_n.asm index 8b8699f83..6e81245d6 100644 --- a/mpn/x86_64/aorrlsh_n.asm +++ b/mpn/x86_64/aorrlsh_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_addlsh_n and mpn_rsblsh_n. R = V2^k +- U. -dnl Copyright 2006, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2006, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aors_n.asm b/mpn/x86_64/aors_n.asm index 34d68b6d4..95e18c8ed 100644 --- a/mpn/x86_64/aors_n.asm +++ b/mpn/x86_64/aors_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_add_n, mpn_sub_n -dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011 Free Software +dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aorscnd_n.asm b/mpn/x86_64/aorscnd_n.asm index 6e49d1646..43c0171cd 100644 --- a/mpn/x86_64/aorscnd_n.asm +++ b/mpn/x86_64/aorscnd_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_addcnd_n, mpn_subcnd_n -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/aorsmul_1.asm b/mpn/x86_64/aorsmul_1.asm index d99fc29bc..08ae46c7f 100644 --- a/mpn/x86_64/aorsmul_1.asm +++ b/mpn/x86_64/aorsmul_1.asm @@ -1,6 +1,7 @@ dnl AMD64 mpn_addmul_1 and mpn_submul_1. -dnl Copyright 2003, 2004, 2005, 2007, 2008, 2011 Free Software Foundation, Inc. +dnl Copyright 2003, 2004, 2005, 2007, 2008, 2011, 2012 Free Software +dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/aorrlsh1_n.asm b/mpn/x86_64/atom/aorrlsh1_n.asm index ea436fc59..5eee990a2 100644 --- a/mpn/x86_64/atom/aorrlsh1_n.asm +++ b/mpn/x86_64/atom/aorrlsh1_n.asm @@ -4,7 +4,7 @@ dnl Optimised for Intel Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/aorrlsh2_n.asm b/mpn/x86_64/atom/aorrlsh2_n.asm index 85b5b195c..091ffb817 100644 --- a/mpn/x86_64/atom/aorrlsh2_n.asm +++ b/mpn/x86_64/atom/aorrlsh2_n.asm @@ -4,7 +4,7 @@ dnl Optimised for Intel Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/aors_n.asm b/mpn/x86_64/atom/aors_n.asm index a6588136a..f13f97632 100644 --- a/mpn/x86_64/atom/aors_n.asm +++ b/mpn/x86_64/atom/aors_n.asm @@ -1,6 +1,6 @@ dnl X86-64 mpn_add_n, mpn_sub_n, optimized for Intel Atom. -dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011 Free Software +dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/dive_1.asm b/mpn/x86_64/atom/dive_1.asm index 6c80cebd0..543d1a28f 100644 --- a/mpn/x86_64/atom/dive_1.asm +++ b/mpn/x86_64/atom/dive_1.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_divexact_1 -- mpn by limb exact division. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/gmp-mparam.h b/mpn/x86_64/atom/gmp-mparam.h index c51a043ae..63233721b 100644 --- a/mpn/x86_64/atom/gmp-mparam.h +++ b/mpn/x86_64/atom/gmp-mparam.h @@ -1,7 +1,7 @@ /* Intel Atom/64 gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010 Free Software Foundation, Inc. +2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/lshift.asm b/mpn/x86_64/atom/lshift.asm index 8406ed3fd..f62d6ce41 100644 --- a/mpn/x86_64/atom/lshift.asm +++ b/mpn/x86_64/atom/lshift.asm @@ -2,20 +2,20 @@ dnl AMD64 mpn_lshift -- mpn left shift, optimised for Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/atom/lshiftc.asm b/mpn/x86_64/atom/lshiftc.asm index 53e2f607a..f566835b2 100644 --- a/mpn/x86_64/atom/lshiftc.asm +++ b/mpn/x86_64/atom/lshiftc.asm @@ -2,20 +2,20 @@ dnl AMD64 mpn_lshiftc -- mpn left shift with complement, optimised for Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/atom/rsh1aors_n.asm b/mpn/x86_64/atom/rsh1aors_n.asm index f1dbce546..b1db9a639 100644 --- a/mpn/x86_64/atom/rsh1aors_n.asm +++ b/mpn/x86_64/atom/rsh1aors_n.asm @@ -2,7 +2,7 @@ dnl x86-64 mpn_rsh1add_n/mpn_rsh1sub_n. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/atom/rshift.asm b/mpn/x86_64/atom/rshift.asm index c049df6de..a986b8316 100644 --- a/mpn/x86_64/atom/rshift.asm +++ b/mpn/x86_64/atom/rshift.asm @@ -2,20 +2,20 @@ dnl AMD64 mpn_rshift -- mpn right shift, optimised for Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/atom/sublsh1_n.asm b/mpn/x86_64/atom/sublsh1_n.asm index 67ca7488c..3e1944883 100644 --- a/mpn/x86_64/atom/sublsh1_n.asm +++ b/mpn/x86_64/atom/sublsh1_n.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_sublsh1_n -- rp[] = up[] - (vp[] << 1) optimised for Intel Atom. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/bd1/hamdist.asm b/mpn/x86_64/bd1/hamdist.asm index c70396b3f..9e35f2d6c 100644 --- a/mpn/x86_64/bd1/hamdist.asm +++ b/mpn/x86_64/bd1/hamdist.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_hamdist -- hamming distance. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/bd1/popcount.asm b/mpn/x86_64/bd1/popcount.asm index 26c6d2ccd..c93c93ba5 100644 --- a/mpn/x86_64/bd1/popcount.asm +++ b/mpn/x86_64/bd1/popcount.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_popcount -- population count. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/bdiv_dbm1c.asm b/mpn/x86_64/bdiv_dbm1c.asm index ddcc340fd..f3d7084d1 100644 --- a/mpn/x86_64/bdiv_dbm1c.asm +++ b/mpn/x86_64/bdiv_dbm1c.asm @@ -1,6 +1,6 @@ dnl x86_64 mpn_bdiv_dbm1. -dnl Copyright 2008, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/bdiv_q_1.asm b/mpn/x86_64/bdiv_q_1.asm index b3d10f418..077feef9e 100644 --- a/mpn/x86_64/bdiv_q_1.asm +++ b/mpn/x86_64/bdiv_q_1.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_bdiv_q_1, mpn_pi1_bdiv_q_1 -- schoolbook Hensel division by dnl 1-limb divisor, returning quotient only. -dnl Copyright 2001, 2002, 2004, 2005, 2006, 2009, 2011 Free Software +dnl Copyright 2001, 2002, 2004, 2005, 2006, 2009, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/bobcat/gmp-mparam.h b/mpn/x86_64/bobcat/gmp-mparam.h index 66fd98c40..bf2e82596 100644 --- a/mpn/x86_64/bobcat/gmp-mparam.h +++ b/mpn/x86_64/bobcat/gmp-mparam.h @@ -1,7 +1,7 @@ /* AMD Bobcat gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011 Free Software Foundation, Inc. +2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/com.asm b/mpn/x86_64/com.asm index cfffb695e..9c018cd08 100644 --- a/mpn/x86_64/com.asm +++ b/mpn/x86_64/com.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_com. -dnl Copyright 2004, 2005, 2006, 2011 Free Software Foundation, Inc. +dnl Copyright 2004, 2005, 2006, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/aorrlsh1_n.asm b/mpn/x86_64/core2/aorrlsh1_n.asm index 547858121..a272eadaf 100644 --- a/mpn/x86_64/core2/aorrlsh1_n.asm +++ b/mpn/x86_64/core2/aorrlsh1_n.asm @@ -3,7 +3,7 @@ dnl AMD64 mpn_rsblsh1_n -- rp[] = (vp[] << 1) - up[] dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/aorrlsh2_n.asm b/mpn/x86_64/core2/aorrlsh2_n.asm index e0b0c7d22..d4e92ba9b 100644 --- a/mpn/x86_64/core2/aorrlsh2_n.asm +++ b/mpn/x86_64/core2/aorrlsh2_n.asm @@ -3,7 +3,7 @@ dnl AMD64 mpn_rsblsh2_n -- rp[] = (vp[] << 2) - up[] dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/aorrlsh_n.asm b/mpn/x86_64/core2/aorrlsh_n.asm index c53806e86..4fc177fa0 100644 --- a/mpn/x86_64/core2/aorrlsh_n.asm +++ b/mpn/x86_64/core2/aorrlsh_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_addlsh_n and mpn_rsblsh_n. R = V2^k +- U. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/aors_n.asm b/mpn/x86_64/core2/aors_n.asm index 450999818..020b880b4 100644 --- a/mpn/x86_64/core2/aors_n.asm +++ b/mpn/x86_64/core2/aors_n.asm @@ -1,6 +1,6 @@ dnl Intel P6-15 mpn_add_n/mpn_sub_n -- mpn add or subtract. -dnl Copyright 2006, 2007, 2011 Free Software Foundation, Inc. +dnl Copyright 2006, 2007, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/divrem_1.asm b/mpn/x86_64/core2/divrem_1.asm index 500509c57..d5d2ad8c2 100644 --- a/mpn/x86_64/core2/divrem_1.asm +++ b/mpn/x86_64/core2/divrem_1.asm @@ -1,7 +1,7 @@ dnl x86-64 mpn_divrem_1 -- mpn by limb division. -dnl Copyright 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, -dnl Inc. +dnl Copyright 2004, 2005, 2007, 2008, 2009, 2010, 2012 Free Software +dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/gmp-mparam.h b/mpn/x86_64/core2/gmp-mparam.h index d91b246a7..56a20799b 100644 --- a/mpn/x86_64/core2/gmp-mparam.h +++ b/mpn/x86_64/core2/gmp-mparam.h @@ -1,7 +1,7 @@ /* Core 2 gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010 Free Software Foundation, Inc. +2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/lshift.asm b/mpn/x86_64/core2/lshift.asm index f11f48e6c..f076eb831 100644 --- a/mpn/x86_64/core2/lshift.asm +++ b/mpn/x86_64/core2/lshift.asm @@ -1,19 +1,19 @@ dnl x86-64 mpn_lshift optimized for "Core 2". -dnl Copyright 2007, 2009, 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2007, 2009, 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/core2/lshiftc.asm b/mpn/x86_64/core2/lshiftc.asm index f8ffaf7f2..fb46f966c 100644 --- a/mpn/x86_64/core2/lshiftc.asm +++ b/mpn/x86_64/core2/lshiftc.asm @@ -1,19 +1,19 @@ dnl x86-64 mpn_lshiftc optimized for "Core 2". -dnl Copyright 2007, 2009, 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2007, 2009, 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/core2/rshift.asm b/mpn/x86_64/core2/rshift.asm index c40754db0..e93e8a4b2 100644 --- a/mpn/x86_64/core2/rshift.asm +++ b/mpn/x86_64/core2/rshift.asm @@ -1,19 +1,19 @@ dnl x86-64 mpn_rshift optimized for "Core 2". -dnl Copyright 2007, 2009, 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2007, 2009, 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/core2/sublsh1_n.asm b/mpn/x86_64/core2/sublsh1_n.asm index aa9d81553..c37ac2f03 100644 --- a/mpn/x86_64/core2/sublsh1_n.asm +++ b/mpn/x86_64/core2/sublsh1_n.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_sublsh1_n optimised for Core 2 and Core iN. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/sublsh2_n.asm b/mpn/x86_64/core2/sublsh2_n.asm index 72c7a27f4..9ad9ad481 100644 --- a/mpn/x86_64/core2/sublsh2_n.asm +++ b/mpn/x86_64/core2/sublsh2_n.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_sublsh2_n optimised for Core 2 and Core iN. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/core2/sublshC_n.asm b/mpn/x86_64/core2/sublshC_n.asm index 5bb3e466a..3430a0644 100644 --- a/mpn/x86_64/core2/sublshC_n.asm +++ b/mpn/x86_64/core2/sublshC_n.asm @@ -3,7 +3,7 @@ dnl Core iN. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreinhm/aorrlsh_n.asm b/mpn/x86_64/coreinhm/aorrlsh_n.asm index 4351a842f..8854a24de 100644 --- a/mpn/x86_64/coreinhm/aorrlsh_n.asm +++ b/mpn/x86_64/coreinhm/aorrlsh_n.asm @@ -4,7 +4,7 @@ dnl Optimised for Nehalem. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreinhm/gmp-mparam.h b/mpn/x86_64/coreinhm/gmp-mparam.h index b7b5d5985..5004c0203 100644 --- a/mpn/x86_64/coreinhm/gmp-mparam.h +++ b/mpn/x86_64/coreinhm/gmp-mparam.h @@ -1,7 +1,7 @@ /* Nehalem gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011 Free Software Foundation, Inc. +2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreinhm/hamdist.asm b/mpn/x86_64/coreinhm/hamdist.asm index c70396b3f..9e35f2d6c 100644 --- a/mpn/x86_64/coreinhm/hamdist.asm +++ b/mpn/x86_64/coreinhm/hamdist.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_hamdist -- hamming distance. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreinhm/popcount.asm b/mpn/x86_64/coreinhm/popcount.asm index 26c6d2ccd..c93c93ba5 100644 --- a/mpn/x86_64/coreinhm/popcount.asm +++ b/mpn/x86_64/coreinhm/popcount.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_popcount -- population count. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreisbr/aorrlsh1_n.asm b/mpn/x86_64/coreisbr/aorrlsh1_n.asm index 003ef3af3..00a0c3388 100644 --- a/mpn/x86_64/coreisbr/aorrlsh1_n.asm +++ b/mpn/x86_64/coreisbr/aorrlsh1_n.asm @@ -3,7 +3,7 @@ dnl AMD64 mpn_rsblsh1_n -- rp[] = (vp[] << 1) - up[] dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreisbr/aorrlsh2_n.asm b/mpn/x86_64/coreisbr/aorrlsh2_n.asm index 50fd36e8a..cf907eccf 100644 --- a/mpn/x86_64/coreisbr/aorrlsh2_n.asm +++ b/mpn/x86_64/coreisbr/aorrlsh2_n.asm @@ -3,7 +3,7 @@ dnl AMD64 mpn_rsblsh2_n -- rp[] = (vp[] << 1) - up[] dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreisbr/aorrlshC_n.asm b/mpn/x86_64/coreisbr/aorrlshC_n.asm index f0f0db441..e3c8bb575 100644 --- a/mpn/x86_64/coreisbr/aorrlshC_n.asm +++ b/mpn/x86_64/coreisbr/aorrlshC_n.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_addlshC_n -- rp[] = up[] + (vp[] << C) dnl AMD64 mpn_rsblshC_n -- rp[] = (vp[] << C) - up[] -dnl Copyright 2009, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreisbr/aors_n.asm b/mpn/x86_64/coreisbr/aors_n.asm index 1262606e5..1b227636c 100644 --- a/mpn/x86_64/coreisbr/aors_n.asm +++ b/mpn/x86_64/coreisbr/aors_n.asm @@ -1,6 +1,6 @@ dnl X86-64 mpn_add_n, mpn_sub_n, optimized for Intel Sandy Bridge. -dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011 Free Software +dnl Copyright 2003, 2004, 2005, 2007, 2008, 2010, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/coreisbr/gmp-mparam.h b/mpn/x86_64/coreisbr/gmp-mparam.h index d8bf8b166..ccc5282e8 100644 --- a/mpn/x86_64/coreisbr/gmp-mparam.h +++ b/mpn/x86_64/coreisbr/gmp-mparam.h @@ -1,7 +1,7 @@ /* Sandy Bridge gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010, 2011 Free Software Foundation, Inc. +2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/darwin.m4 b/mpn/x86_64/darwin.m4 index ca5e40ceb..c327631e7 100644 --- a/mpn/x86_64/darwin.m4 +++ b/mpn/x86_64/darwin.m4 @@ -1,18 +1,18 @@ divert(-1) -dnl Copyright 2008, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2011, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/div_qr_2n_pi1.asm b/mpn/x86_64/div_qr_2n_pi1.asm index d4b2a373c..aef6938a3 100644 --- a/mpn/x86_64/div_qr_2n_pi1.asm +++ b/mpn/x86_64/div_qr_2n_pi1.asm @@ -2,7 +2,7 @@ dnl x86-64 mpn_div_qr_2n_pi1 dnl -- Divide an mpn number by a normalized 2-limb number, dnl using a single-limb inverse. -dnl Copyright 2007, 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2007, 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/dive_1.asm b/mpn/x86_64/dive_1.asm index e9eed6119..45cf63b81 100644 --- a/mpn/x86_64/dive_1.asm +++ b/mpn/x86_64/dive_1.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_divexact_1 -- mpn by limb exact division. -dnl Copyright 2001, 2002, 2004, 2005, 2006, 2011 Free Software Foundation, -dnl Inc. +dnl Copyright 2001, 2002, 2004, 2005, 2006, 2011, 2012 Free Software +dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/divrem_1.asm b/mpn/x86_64/divrem_1.asm index ce2fcb3a2..64602d165 100644 --- a/mpn/x86_64/divrem_1.asm +++ b/mpn/x86_64/divrem_1.asm @@ -1,6 +1,6 @@ dnl x86-64 mpn_divrem_1 -- mpn by limb division. -dnl Copyright 2004, 2005, 2007, 2008, 2009, 2010, 2011 Free Software +dnl Copyright 2004, 2005, 2007, 2008, 2009, 2010, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/dos64.m4 b/mpn/x86_64/dos64.m4 index a2d94d870..74ca5489f 100644 --- a/mpn/x86_64/dos64.m4 +++ b/mpn/x86_64/dos64.m4 @@ -1,5 +1,5 @@ divert(-1) -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86_64/fat/fat_entry.asm b/mpn/x86_64/fat/fat_entry.asm index fc4fd5daa..82849de53 100644 --- a/mpn/x86_64/fat/fat_entry.asm +++ b/mpn/x86_64/fat/fat_entry.asm @@ -3,20 +3,20 @@ dnl x86 fat binary entrypoints. dnl Contributed to the GNU project by Kevin Ryde (original x86_32 code) and dnl Torbjorn Granlund (port to x86_64) -dnl Copyright 2003, 2009, 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2003, 2009, 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl + dnl The GNU MP Library is free software; you can redistribute it and/or dnl modify it under the terms of the GNU Lesser General Public License as dnl published by the Free Software Foundation; either version 3 of the dnl License, or (at your option) any later version. -dnl + dnl The GNU MP Library is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl Lesser General Public License for more details. -dnl + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/gmp-mparam.h b/mpn/x86_64/gmp-mparam.h index aa70b6193..8171c04d3 100644 --- a/mpn/x86_64/gmp-mparam.h +++ b/mpn/x86_64/gmp-mparam.h @@ -1,7 +1,7 @@ /* AMD K8-K10 gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010 Free Software Foundation, Inc. +2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/invert_limb.asm b/mpn/x86_64/invert_limb.asm index 1bea6f292..60b861a93 100644 --- a/mpn/x86_64/invert_limb.asm +++ b/mpn/x86_64/invert_limb.asm @@ -2,7 +2,8 @@ dnl AMD64 mpn_invert_limb -- Invert a normalized limb. dnl Contributed to the GNU project by Torbjorn Granlund and Niels Möller. -dnl Copyright 2004, 2007, 2008, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2004, 2007, 2008, 2009, 2011, 2012 Free Software Foundation, +dnl Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/invert_limb_table.asm b/mpn/x86_64/invert_limb_table.asm index c6a094590..f3f8573f8 100644 --- a/mpn/x86_64/invert_limb_table.asm +++ b/mpn/x86_64/invert_limb_table.asm @@ -2,7 +2,8 @@ dnl Table used for mpn_invert_limb dnl Contributed to the GNU project by Torbjorn Granlund and Niels Möller. -dnl Copyright 2004, 2007, 2008, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2004, 2007, 2008, 2009, 2011, 2012 Free Software Foundation, +dnl Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/k10/hamdist.asm b/mpn/x86_64/k10/hamdist.asm index 4032fb59c..ebfa70a56 100644 --- a/mpn/x86_64/k10/hamdist.asm +++ b/mpn/x86_64/k10/hamdist.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_hamdist -- hamming distance. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/k10/popcount.asm b/mpn/x86_64/k10/popcount.asm index ef05319ff..d266bd7bb 100644 --- a/mpn/x86_64/k10/popcount.asm +++ b/mpn/x86_64/k10/popcount.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_popcount -- population count. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/k8/aorrlsh_n.asm b/mpn/x86_64/k8/aorrlsh_n.asm index dc02bbaf1..395f699e8 100644 --- a/mpn/x86_64/k8/aorrlsh_n.asm +++ b/mpn/x86_64/k8/aorrlsh_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_addlsh_n and mpn_rsblsh_n. R = V2^k +- U. -dnl Copyright 2006, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2006, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/logops_n.asm b/mpn/x86_64/logops_n.asm index 5d8a0ec76..c6a7b1cba 100644 --- a/mpn/x86_64/logops_n.asm +++ b/mpn/x86_64/logops_n.asm @@ -1,6 +1,6 @@ dnl AMD64 logops. -dnl Copyright 2004, 2005, 2006, 2011 Free Software Foundation, Inc. +dnl Copyright 2004, 2005, 2006, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/lshift.asm b/mpn/x86_64/lshift.asm index 2c4daf47d..e34bdc3e4 100644 --- a/mpn/x86_64/lshift.asm +++ b/mpn/x86_64/lshift.asm @@ -1,19 +1,20 @@ dnl AMD64 mpn_lshift -- mpn left shift. -dnl Copyright 2003, 2005, 2007, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2003, 2005, 2007, 2009, 2011, 2012 Free Software Foundation, +dnl Inc. dnl dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/lshiftc.asm b/mpn/x86_64/lshiftc.asm index c3eeee60e..03ae40a27 100644 --- a/mpn/x86_64/lshiftc.asm +++ b/mpn/x86_64/lshiftc.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_lshiftc -- mpn left shift with complement. -dnl Copyright 2003, 2005, 2006, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2003, 2005, 2006, 2009, 2011, 2012 Free Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86_64/lshsub_n.asm b/mpn/x86_64/lshsub_n.asm index ab97dcb1c..2938b913a 100644 --- a/mpn/x86_64/lshsub_n.asm +++ b/mpn/x86_64/lshsub_n.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_lshsub_n. R = 2^k(U - V). -dnl Copyright 2006, 2011 Free Software Foundation, Inc. +dnl Copyright 2006, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mod_1_1.asm b/mpn/x86_64/mod_1_1.asm index 0167c35ee..42a8c4c4b 100644 --- a/mpn/x86_64/mod_1_1.asm +++ b/mpn/x86_64/mod_1_1.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_mod_1_1p dnl Contributed to the GNU project by Torbjörn Granlund and Niels Möller. -dnl Copyright 2009, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mod_1_2.asm b/mpn/x86_64/mod_1_2.asm index f753b87e9..6310e4549 100644 --- a/mpn/x86_64/mod_1_2.asm +++ b/mpn/x86_64/mod_1_2.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_mod_1s_2p dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2009, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mod_1_4.asm b/mpn/x86_64/mod_1_4.asm index 165be8307..91a372c89 100644 --- a/mpn/x86_64/mod_1_4.asm +++ b/mpn/x86_64/mod_1_4.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_mod_1s_4p dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2009, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2009, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mode1o.asm b/mpn/x86_64/mode1o.asm index f0f07a4d7..6a26bcabc 100644 --- a/mpn/x86_64/mode1o.asm +++ b/mpn/x86_64/mode1o.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_modexact_1_odd -- exact division style remainder. -dnl Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2011 Free Software -dnl Foundation, Inc. +dnl Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2011, 2012 Free +dnl Software Foundation, Inc. dnl dnl This file is part of the GNU MP Library. dnl diff --git a/mpn/x86_64/mul_1.asm b/mpn/x86_64/mul_1.asm index 6c0b74ccb..ee435db9c 100644 --- a/mpn/x86_64/mul_1.asm +++ b/mpn/x86_64/mul_1.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_mul_1. -dnl Copyright 2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +dnl Copyright 2003, 2004, 2005, 2007, 2008, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mul_2.asm b/mpn/x86_64/mul_2.asm index da4bcd9e2..73b346fa9 100644 --- a/mpn/x86_64/mul_2.asm +++ b/mpn/x86_64/mul_2.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_mul_2 -- Multiply an n-limb vector with a 2-limb vector and dnl store the result in a third limb vector. -dnl Copyright 2008, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mul_basecase.asm b/mpn/x86_64/mul_basecase.asm index 6b94d78a8..be9e2760a 100644 --- a/mpn/x86_64/mul_basecase.asm +++ b/mpn/x86_64/mul_basecase.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_mul_basecase. dnl Contributed to the GNU project by Torbjorn Granlund and David Harvey. -dnl Copyright 2008 Free Software Foundation, Inc. +dnl Copyright 2008, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/mulmid_basecase.asm b/mpn/x86_64/mulmid_basecase.asm index 08a7bc7de..a4802bf82 100644 --- a/mpn/x86_64/mulmid_basecase.asm +++ b/mpn/x86_64/mulmid_basecase.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_mulmid_basecase dnl Contributed by David Harvey. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/nano/dive_1.asm b/mpn/x86_64/nano/dive_1.asm index 3593f762e..2edbcd94c 100644 --- a/mpn/x86_64/nano/dive_1.asm +++ b/mpn/x86_64/nano/dive_1.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_divexact_1 -- mpn by limb exact division. -dnl Copyright 2001, 2002, 2004, 2005, 2006, 2010, 2011 Free Software +dnl Copyright 2001, 2002, 2004, 2005, 2006, 2010, 2011, 2012 Free Software dnl Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/nano/gmp-mparam.h b/mpn/x86_64/nano/gmp-mparam.h index 7412ef687..52788acfb 100644 --- a/mpn/x86_64/nano/gmp-mparam.h +++ b/mpn/x86_64/nano/gmp-mparam.h @@ -1,7 +1,7 @@ /* VIA Nano gmp-mparam.h -- Compiler/machine parameter header file. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, -2008, 2009, 2010 Free Software Foundation, Inc. +2008, 2009, 2010, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/aors_n.asm b/mpn/x86_64/pentium4/aors_n.asm index 32a61581d..f238d03b0 100644 --- a/mpn/x86_64/pentium4/aors_n.asm +++ b/mpn/x86_64/pentium4/aors_n.asm @@ -2,7 +2,7 @@ dnl x86-64 mpn_add_n/mpn_sub_n optimized for Pentium 4. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2007, 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2007, 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/aorslsh1_n.asm b/mpn/x86_64/pentium4/aorslsh1_n.asm index 3045f5f46..24aecff61 100644 --- a/mpn/x86_64/pentium4/aorslsh1_n.asm +++ b/mpn/x86_64/pentium4/aorslsh1_n.asm @@ -3,7 +3,7 @@ dnl optimised for Pentium 4. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/aorslsh2_n.asm b/mpn/x86_64/pentium4/aorslsh2_n.asm index 4fa257392..4f2d52b30 100644 --- a/mpn/x86_64/pentium4/aorslsh2_n.asm +++ b/mpn/x86_64/pentium4/aorslsh2_n.asm @@ -3,7 +3,7 @@ dnl optimised for Pentium 4. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/aorslshC_n.asm b/mpn/x86_64/pentium4/aorslshC_n.asm index f24eb0b7a..c61f6f998 100644 --- a/mpn/x86_64/pentium4/aorslshC_n.asm +++ b/mpn/x86_64/pentium4/aorslshC_n.asm @@ -3,7 +3,7 @@ dnl C is 1, 2, 3. Optimized for Pentium 4. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/lshift.asm b/mpn/x86_64/pentium4/lshift.asm index 1eeb70e4e..19c641bd9 100644 --- a/mpn/x86_64/pentium4/lshift.asm +++ b/mpn/x86_64/pentium4/lshift.asm @@ -1,19 +1,19 @@ dnl x86-64 mpn_lshift optimized for Pentium 4. -dnl Copyright 2003, 2005, 2007, 2008 Free Software Foundation, Inc. -dnl +dnl Copyright 2003, 2005, 2007, 2008, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/pentium4/lshiftc.asm b/mpn/x86_64/pentium4/lshiftc.asm index 94d2cd372..398949038 100644 --- a/mpn/x86_64/pentium4/lshiftc.asm +++ b/mpn/x86_64/pentium4/lshiftc.asm @@ -1,19 +1,20 @@ dnl x86-64 mpn_lshiftc optimized for Pentium 4. -dnl Copyright 2003, 2005, 2007, 2008, 2010 Free Software Foundation, Inc. -dnl +dnl Copyright 2003, 2005, 2007, 2008, 2010, 2012 Free Software Foundation, +dnl Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/pentium4/mod_34lsub1.asm b/mpn/x86_64/pentium4/mod_34lsub1.asm index 441433565..2974fcc7b 100644 --- a/mpn/x86_64/pentium4/mod_34lsub1.asm +++ b/mpn/x86_64/pentium4/mod_34lsub1.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_mod_34lsub1 -- remainder modulo 2^48-1. -dnl Copyright 2000, 2001, 2002, 2004, 2005, 2007, 2010, 2011 Free Software -dnl Foundation, Inc. +dnl Copyright 2000, 2001, 2002, 2004, 2005, 2007, 2010, 2011, 2012 Free +dnl Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/rsh1aors_n.asm b/mpn/x86_64/pentium4/rsh1aors_n.asm index 489e36ea2..ca09a735f 100644 --- a/mpn/x86_64/pentium4/rsh1aors_n.asm +++ b/mpn/x86_64/pentium4/rsh1aors_n.asm @@ -2,7 +2,7 @@ dnl x86-64 mpn_rsh1add_n/mpn_rsh1sub_n optimized for Pentium 4. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2007, 2008, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2007, 2008, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/pentium4/rshift.asm b/mpn/x86_64/pentium4/rshift.asm index 0228e8db3..c491b4f77 100644 --- a/mpn/x86_64/pentium4/rshift.asm +++ b/mpn/x86_64/pentium4/rshift.asm @@ -1,19 +1,19 @@ dnl x86-64 mpn_rshift optimized for Pentium 4. -dnl Copyright 2003, 2005, 2007, 2008 Free Software Foundation, Inc. -dnl +dnl Copyright 2003, 2005, 2007, 2008, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/popham.asm b/mpn/x86_64/popham.asm index 4b69ddbb2..a1f53da12 100644 --- a/mpn/x86_64/popham.asm +++ b/mpn/x86_64/popham.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_popcount, mpn_hamdist -- population count and hamming distance. -dnl Copyright 2004, 2005, 2007, 2010, 2011 Free Software Foundation, Inc. +dnl Copyright 2004, 2005, 2007, 2010, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/rsh1aors_n.asm b/mpn/x86_64/rsh1aors_n.asm index 9b56ed81a..4deb939dc 100644 --- a/mpn/x86_64/rsh1aors_n.asm +++ b/mpn/x86_64/rsh1aors_n.asm @@ -1,7 +1,7 @@ dnl AMD64 mpn_rsh1add_n -- rp[] = (up[] + vp[]) >> 1 dnl AMD64 mpn_rsh1sub_n -- rp[] = (up[] - vp[]) >> 1 -dnl Copyright 2003, 2005, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2003, 2005, 2009, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/rshift.asm b/mpn/x86_64/rshift.asm index 0941b460e..8879f8012 100644 --- a/mpn/x86_64/rshift.asm +++ b/mpn/x86_64/rshift.asm @@ -1,19 +1,19 @@ dnl AMD64 mpn_rshift -- mpn right shift. -dnl Copyright 2003, 2005, 2009, 2011 Free Software Foundation, Inc. -dnl +dnl Copyright 2003, 2005, 2009, 2011, 2012 Free Software Foundation, Inc. + dnl This file is part of the GNU MP Library. -dnl -dnl The GNU MP Library is free software; you can redistribute it and/or -dnl modify it under the terms of the GNU Lesser General Public License as -dnl published by the Free Software Foundation; either version 3 of the -dnl License, or (at your option) any later version. -dnl -dnl The GNU MP Library is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY; without even the implied warranty of -dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -dnl Lesser General Public License for more details. -dnl + +dnl The GNU MP Library is free software; you can redistribute it and/or modify +dnl it under the terms of the GNU Lesser General Public License as published +dnl by the Free Software Foundation; either version 3 of the License, or (at +dnl your option) any later version. + +dnl The GNU MP Library is distributed in the hope that it will be useful, but +dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public +dnl License for more details. + dnl You should have received a copy of the GNU Lesser General Public License dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. diff --git a/mpn/x86_64/sqr_basecase.asm b/mpn/x86_64/sqr_basecase.asm index 4130cba16..412288131 100644 --- a/mpn/x86_64/sqr_basecase.asm +++ b/mpn/x86_64/sqr_basecase.asm @@ -2,7 +2,7 @@ dnl AMD64 mpn_sqr_basecase. dnl Contributed to the GNU project by Torbjorn Granlund. -dnl Copyright 2008, 2009, 2011 Free Software Foundation, Inc. +dnl Copyright 2008, 2009, 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/sublsh1_n.asm b/mpn/x86_64/sublsh1_n.asm index 9ef62ba43..678a60b97 100644 --- a/mpn/x86_64/sublsh1_n.asm +++ b/mpn/x86_64/sublsh1_n.asm @@ -1,6 +1,7 @@ dnl AMD64 mpn_sublsh1_n -- rp[] = up[] - (vp[] << 1) -dnl Copyright 2003, 2005, 2006, 2007, 2011 Free Software Foundation, Inc. +dnl Copyright 2003, 2005, 2006, 2007, 2011, 2012 Free Software Foundation, +dnl Inc. dnl This file is part of the GNU MP Library. diff --git a/mpn/x86_64/tabselect.asm b/mpn/x86_64/tabselect.asm index 0b4c0d6e5..e578b6ec1 100644 --- a/mpn/x86_64/tabselect.asm +++ b/mpn/x86_64/tabselect.asm @@ -1,6 +1,6 @@ dnl AMD64 mpn_tabselect. -dnl Copyright 2011 Free Software Foundation, Inc. +dnl Copyright 2011, 2012 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. @@ -1,6 +1,6 @@ /* mpz_abs(dst, src) -- Assign the absolute value of SRC to DST. -Copyright 1991, 1993, 1994, 1995, 2001 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2001, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/aors_ui.h b/mpz/aors_ui.h index cbdbdce4b..e46726747 100644 --- a/mpz/aors_ui.h +++ b/mpz/aors_ui.h @@ -1,8 +1,8 @@ /* mpz_add_ui, mpz_sub_ui -- Add or subtract an mpz_t and an unsigned one-word integer. -Copyright 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2004 Free Software -Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2004, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/array_init.c b/mpz/array_init.c index d26db65ec..cdec4fd0d 100644 --- a/mpz/array_init.c +++ b/mpz/array_init.c @@ -1,7 +1,7 @@ /* mpz_array_init (array, array_size, size_per_elem) -- -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/bin_ui.c b/mpz/bin_ui.c index 5f63dda42..1370a6c21 100644 --- a/mpz/bin_ui.c +++ b/mpz/bin_ui.c @@ -1,6 +1,6 @@ /* mpz_bin_ui - compute n over k. -Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +Copyright 1998, 1999, 2000, 2001, 2002, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/cdiv_q.c b/mpz/cdiv_q.c index 314be2ccd..4f00227de 100644 --- a/mpz/cdiv_q.c +++ b/mpz/cdiv_q.c @@ -1,7 +1,8 @@ /* mpz_cdiv_q -- Division rounding the quotient towards +infinity. The remainder gets the opposite sign as the denominator. -Copyright 1994, 1995, 1996, 2000, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2000, 2001, 2005, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/cdiv_qr.c b/mpz/cdiv_qr.c index 236936cf1..e2319272c 100644 --- a/mpz/cdiv_qr.c +++ b/mpz/cdiv_qr.c @@ -1,7 +1,8 @@ /* mpz_cdiv_qr -- Division rounding the quotient towards +infinity. The remainder gets the opposite sign as the denominator. -Copyright 1994, 1995, 1996, 2000, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2000, 2001, 2005, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/cdiv_r.c b/mpz/cdiv_r.c index a20fd2a62..67e1ee134 100644 --- a/mpz/cdiv_r.c +++ b/mpz/cdiv_r.c @@ -1,7 +1,7 @@ /* mpz_cdiv_r -- Division rounding the quotient towards +infinity. The remainder gets the opposite sign as the denominator. -Copyright 1994, 1995, 1996, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2001, 2005, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/cdiv_ui.c b/mpz/cdiv_ui.c index bf21aee30..bfbb25b8d 100644 --- a/mpz/cdiv_ui.c +++ b/mpz/cdiv_ui.c @@ -3,8 +3,8 @@ always fit into the return type, the negative of the true remainder is returned. -Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005 Free Software Foundation, -Inc. +Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/cfdiv_q_2exp.c b/mpz/cfdiv_q_2exp.c index 1592bd05d..c71d41413 100644 --- a/mpz/cfdiv_q_2exp.c +++ b/mpz/cfdiv_q_2exp.c @@ -1,7 +1,7 @@ /* mpz_cdiv_q_2exp, mpz_fdiv_q_2exp -- quotient from mpz divided by 2^n. -Copyright 1991, 1993, 1994, 1996, 1998, 1999, 2001, 2002, 2004 Free Software -Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1998, 1999, 2001, 2002, 2004, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/clear.c b/mpz/clear.c index eaf6c587c..7dfc8f412 100644 --- a/mpz/clear.c +++ b/mpz/clear.c @@ -1,7 +1,8 @@ /* mpz_clear -- de-allocate the space occupied by the dynamic digit space of an integer. -Copyright 1991, 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/cmp_si.c b/mpz/cmp_si.c index 99f451c77..699a77e37 100644 --- a/mpz/cmp_si.c +++ b/mpz/cmp_si.c @@ -1,7 +1,7 @@ /* mpz_cmp_si(u,v) -- Compare an integer U with a single-word int V. Return positive, zero, or negative based on if U > V, U == V, or U < V. -Copyright 1991, 1993, 1994, 1995, 1996, 2000, 2001, 2002 Free Software +Copyright 1991, 1993, 1994, 1995, 1996, 2000, 2001, 2002, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/cmpabs_d.c b/mpz/cmpabs_d.c index 57a74ba35..a5f208560 100644 --- a/mpz/cmpabs_d.c +++ b/mpz/cmpabs_d.c @@ -1,6 +1,6 @@ /* mpz_cmpabs_d -- compare absolute values of mpz and double. -Copyright 2001, 2002, 2003 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -1,7 +1,8 @@ /* mpz_com(mpz_ptr dst, mpz_ptr src) -- Assign the bit-complemented value of SRC to DST. -Copyright 1991, 1993, 1994, 1996, 2001, 2003 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 2001, 2003, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/cong_ui.c b/mpz/cong_ui.c index a23be9c4e..539e95fe1 100644 --- a/mpz/cong_ui.c +++ b/mpz/cong_ui.c @@ -1,6 +1,6 @@ /* mpz_congruent_ui_p -- test congruence of mpz and ulong. -Copyright 2000, 2001, 2002 Free Software Foundation, Inc. +Copyright 2000, 2001, 2002, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/export.c b/mpz/export.c index d7903e385..1b769fed2 100644 --- a/mpz/export.c +++ b/mpz/export.c @@ -1,6 +1,6 @@ /* mpz_export -- create word data from mpz. -Copyright 2002, 2003 Free Software Foundation, Inc. +Copyright 2002, 2003, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/fdiv_q.c b/mpz/fdiv_q.c index 5d18930bb..6281b1ee6 100644 --- a/mpz/fdiv_q.c +++ b/mpz/fdiv_q.c @@ -1,7 +1,8 @@ /* mpz_fdiv_q -- Division rounding the quotient towards -infinity. The remainder gets the same sign as the denominator. -Copyright 1994, 1995, 1996, 2000, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2000, 2001, 2005, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/fdiv_qr.c b/mpz/fdiv_qr.c index 4ad14de58..d48654776 100644 --- a/mpz/fdiv_qr.c +++ b/mpz/fdiv_qr.c @@ -1,7 +1,8 @@ /* mpz_fdiv_qr -- Division rounding the quotient towards -infinity. The remainder gets the same sign as the denominator. -Copyright 1994, 1995, 1996, 2000, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2000, 2001, 2005, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/fdiv_r.c b/mpz/fdiv_r.c index 2fa860032..706e49ec1 100644 --- a/mpz/fdiv_r.c +++ b/mpz/fdiv_r.c @@ -1,7 +1,7 @@ /* mpz_fdiv_r -- Division rounding the quotient towards -infinity. The remainder gets the same sign as the denominator. -Copyright 1994, 1995, 1996, 2001, 2005 Free Software Foundation, Inc. +Copyright 1994, 1995, 1996, 2001, 2005, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/fdiv_ui.c b/mpz/fdiv_ui.c index 57ba8076d..c4f4ec962 100644 --- a/mpz/fdiv_ui.c +++ b/mpz/fdiv_ui.c @@ -1,8 +1,8 @@ /* mpz_fdiv_ui -- Division rounding the quotient towards -infinity. The remainder gets the same sign as the denominator. -Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005 Free Software Foundation, -Inc. +Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/get_si.c b/mpz/get_si.c index 4f0c63cd9..f609d4833 100644 --- a/mpz/get_si.c +++ b/mpz/get_si.c @@ -1,6 +1,6 @@ /* mpz_get_si(integer) -- Return the least significant digit from INTEGER. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2006 Free Software +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2006, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/init.c b/mpz/init.c index 413f578b1..1ad55b4c6 100644 --- a/mpz/init.c +++ b/mpz/init.c @@ -1,7 +1,7 @@ /* mpz_init() -- Make a new multiple precision number with value 0. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/inp_str.c b/mpz/inp_str.c index f65bdec58..4f5e46eda 100644 --- a/mpz/inp_str.c +++ b/mpz/inp_str.c @@ -5,8 +5,8 @@ REST ARE INTERNALS AND ARE ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN FUTURE GNU MP RELEASES. -Copyright 1991, 1993, 1994, 1996, 1998, 2000, 2001, 2002, 2003, 2011 Free -Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1998, 2000, 2001, 2002, 2003, 2011, 2012 +Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/iset.c b/mpz/iset.c index f664e87a4..9c8c93462 100644 --- a/mpz/iset.c +++ b/mpz/iset.c @@ -1,8 +1,8 @@ /* mpz_init_set (src_integer) -- Make a new multiple precision number with a value copied from SRC_INTEGER. -Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/iset_d.c b/mpz/iset_d.c index a128230a5..19c245e36 100644 --- a/mpz/iset_d.c +++ b/mpz/iset_d.c @@ -1,7 +1,7 @@ /* mpz_init_set_d(integer, val) -- Initialize and assign INTEGER with a double value VAL. -Copyright 1996, 2000, 2001 Free Software Foundation, Inc. +Copyright 1996, 2000, 2001, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/iset_si.c b/mpz/iset_si.c index 76201cd55..ab53e349d 100644 --- a/mpz/iset_si.c +++ b/mpz/iset_si.c @@ -1,8 +1,8 @@ /* mpz_init_set_si(dest,val) -- Make a new multiple precision in DEST and assign VAL to the new number. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/iset_str.c b/mpz/iset_str.c index 7f0776712..5a0ec7de0 100644 --- a/mpz/iset_str.c +++ b/mpz/iset_str.c @@ -5,8 +5,8 @@ i.e. 0xhh...h means base 16, 0oo...o means base 8, otherwise assume base 10. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/iset_ui.c b/mpz/iset_ui.c index 7eed1c165..3090f0825 100644 --- a/mpz/iset_ui.c +++ b/mpz/iset_ui.c @@ -1,7 +1,7 @@ /* mpz_init_set_ui(dest,val) -- Make a new multiple precision in DEST and assign VAL to the new number. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2004 Free Software +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/jacobi.c b/mpz/jacobi.c index ff3fd50fd..0ed41f8a1 100644 --- a/mpz/jacobi.c +++ b/mpz/jacobi.c @@ -1,6 +1,7 @@ /* mpz_jacobi, mpz_legendre, mpz_kronecker -- mpz/mpz Jacobi symbols. -Copyright 2000, 2001, 2002, 2005, 2010 Free Software Foundation, Inc. +Copyright 2000, 2001, 2002, 2005, 2010, 2011, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. @@ -1,7 +1,7 @@ /* mpz_mod -- The mathematical mod function. -Copyright 1991, 1993, 1994, 1995, 1996, 2001, 2002, 2005, 2010 Free Software -Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 1996, 2001, 2002, 2005, 2010, 2012 +Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -1,6 +1,6 @@ /* mpz_neg(mpz_ptr dst, mpz_ptr src) -- Assign the negated value of SRC to DST. -Copyright 1991, 1993, 1994, 1995, 2001 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2001, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/powm.c b/mpz/powm.c index 134f1fac0..0ef894a9a 100644 --- a/mpz/powm.c +++ b/mpz/powm.c @@ -3,7 +3,7 @@ Contributed to the GNU project by Torbjorn Granlund. Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005, 2008, -2009, 2011 Free Software Foundation, Inc. +2009, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/powm_sec.c b/mpz/powm_sec.c index 7bbec3074..895ca8913 100644 --- a/mpz/powm_sec.c +++ b/mpz/powm_sec.c @@ -2,8 +2,8 @@ Contributed to the GNU project by Torbjorn Granlund. -Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005, 2008, 2009 -Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2005, 2008, 2009, +2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/root.c b/mpz/root.c index 3751a170a..90c228f88 100644 --- a/mpz/root.c +++ b/mpz/root.c @@ -1,7 +1,7 @@ /* mpz_root(root, u, nth) -- Set ROOT to floor(U^(1/nth)). Return an indication if the result is exact. -Copyright 1999, 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/set_si.c b/mpz/set_si.c index 347dd6e97..7dcc5b93d 100644 --- a/mpz/set_si.c +++ b/mpz/set_si.c @@ -1,7 +1,7 @@ /* mpz_set_si(dest,val) -- Assign DEST with a small value VAL. -Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001, 2002, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/set_str.c b/mpz/set_str.c index b80b5fdab..f7ccd775f 100644 --- a/mpz/set_str.c +++ b/mpz/set_str.c @@ -5,7 +5,7 @@ 0oo...o means base 8, otherwise assume base 10. Copyright 1991, 1993, 1994, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2005, -2011 Free Software Foundation, Inc. +2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/set_ui.c b/mpz/set_ui.c index 59568914e..3c1931176 100644 --- a/mpz/set_ui.c +++ b/mpz/set_ui.c @@ -1,7 +1,7 @@ /* mpz_set_ui(integer, val) -- Assign INTEGER with a small value VAL. -Copyright 1991, 1993, 1994, 1995, 2001, 2002, 2004 Free Software Foundation, -Inc. +Copyright 1991, 1993, 1994, 1995, 2001, 2002, 2004, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/setbit.c b/mpz/setbit.c index 993222a84..63c86da6f 100644 --- a/mpz/setbit.c +++ b/mpz/setbit.c @@ -1,6 +1,6 @@ /* mpz_setbit -- set a specified bit. -Copyright 1991, 1993, 1994, 1995, 1997, 1999, 2001, 2002 Free Software +Copyright 1991, 1993, 1994, 1995, 1997, 1999, 2001, 2002, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/swap.c b/mpz/swap.c index 7883ce6d2..73348fe16 100644 --- a/mpz/swap.c +++ b/mpz/swap.c @@ -1,6 +1,6 @@ /* mpz_swap (dest_integer, src_integer) -- Swap U and V. -Copyright 1997, 1998, 2001 Free Software Foundation, Inc. +Copyright 1997, 1998, 2001, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/tdiv_r_2exp.c b/mpz/tdiv_r_2exp.c index 8728c809d..bf6d3a7f7 100644 --- a/mpz/tdiv_r_2exp.c +++ b/mpz/tdiv_r_2exp.c @@ -1,6 +1,7 @@ /* mpz_tdiv_r_2exp -- Divide a integer by 2**CNT and produce a remainder. -Copyright 1991, 1993, 1994, 1995, 2001, 2002 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2001, 2002, 2012 Free Software Foundation, +Inc. This file is part of the GNU MP Library. diff --git a/mpz/tdiv_ui.c b/mpz/tdiv_ui.c index 7a824a6ae..6d834fc4e 100644 --- a/mpz/tdiv_ui.c +++ b/mpz/tdiv_ui.c @@ -1,7 +1,7 @@ /* mpz_tdiv_ui(dividend, divisor_limb) -- Return DIVDEND mod DIVISOR_LIMB. -Copyright 1991, 1993, 1994, 1996, 1997, 1998, 2001, 2002, 2004, 2005 Free -Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1996, 1997, 1998, 2001, 2002, 2004, 2005, 2012 +Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/mpz/urandomm.c b/mpz/urandomm.c index 36c625a89..6bf74603e 100644 --- a/mpz/urandomm.c +++ b/mpz/urandomm.c @@ -2,7 +2,7 @@ integer in the range 0 to N-1, using STATE as the random state previously initialized by a call to gmp_randinit(). -Copyright 2000, 2002 Free Software Foundation, Inc. +Copyright 2000, 2002, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tests/devel/try.c b/tests/devel/try.c index c4aa9ed8c..7deba3745 100644 --- a/tests/devel/try.c +++ b/tests/devel/try.c @@ -3,7 +3,7 @@ THIS IS A TEST PROGRAM USED ONLY FOR DEVELOPMENT. IT'S ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES IN FUTURE VERSIONS OF GMP. -Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2011 +Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tests/tests.h b/tests/tests.h index 21d73a385..043dfcdee 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -1,7 +1,7 @@ /* Tests support prototypes etc. -Copyright 2000, 2001, 2002, 2003, 2004, 2008, 2009 Free Software Foundation, -Inc. +Copyright 2000, 2001, 2002, 2003, 2004, 2008, 2009, 2010, 2011, 2012 Free +Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/common.c b/tune/common.c index 4ae3c4c60..daac5f109 100644 --- a/tune/common.c +++ b/tune/common.c @@ -1,7 +1,7 @@ /* Shared speed subroutines. -Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010 -Free Software Foundation, Inc. +Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010, +2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/speed.c b/tune/speed.c index 3cbde8cbf..fe8254d04 100644 --- a/tune/speed.c +++ b/tune/speed.c @@ -1,7 +1,7 @@ /* Speed measuring program. Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2008, 2009, 2010, -2011 Free Software Foundation, Inc. +2011, 2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/speed.h b/tune/speed.h index a19ba7bc8..5dd91f2cc 100644 --- a/tune/speed.h +++ b/tune/speed.h @@ -1,7 +1,7 @@ /* Header for speed and threshold things. -Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2008, 2009, 2010, 2011 -Free Software Foundation, Inc. +Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2008, 2009, 2010, 2011, +2012 Free Software Foundation, Inc. This file is part of the GNU MP Library. diff --git a/tune/time.c b/tune/time.c index 28755cb56..1670f6ecd 100644 --- a/tune/time.c +++ b/tune/time.c @@ -1,6 +1,7 @@ /* Time routines for speed measurments. -Copyright 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. +Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2010, 2011, 2012 Free Software +Foundation, Inc. This file is part of the GNU MP Library. |