From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 127685 invoked by alias); 5 Feb 2020 06:49:10 -0000 Mailing-List: contact newlib-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-owner@sourceware.org Received: (qmail 127289 invoked by uid 89); 5 Feb 2020 06:49:07 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=acknowledge, 1994, 1280, endorse X-HELO: elaine.keithp.com Received: from home.keithp.com (HELO elaine.keithp.com) (63.227.221.253) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Feb 2020 06:48:52 +0000 Received: from localhost (localhost [127.0.0.1]) by elaine.keithp.com (Postfix) with ESMTP id AED383F2ABFB for ; Tue, 4 Feb 2020 22:48:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=keithp.com; s=mail; t=1580885330; bh=z8E63U0fl2HRA6Q/TLAyAtc9+D9hXhNlEuiARISoj0s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oxBX+BUw+E7aW5hVfy0y0s+BD9dPLGetp2LHMpUH9L+xx4L3s0ZlyCvuBKbz0t/lm F8ypvQzTwJLOZ5pZQUuK3I4ZZ+j2NgaQuZ/IMMy+q4mbSYyU84vo27dDIEDlI3osr7 ObpxDvFeVAmDgyUB8x1cbNSONDZQaJY3PZKmF1dZoMCPIL3Csia0JFabApMIz50Qle K0x8WBmPafm/Z4pFGTvgwDNFIvknsMmEe3dKdUC4EvV91x6LFmGjKr+t3yD3+suBjs 6tVS5EK8tXx3n69MrJJOzakFKyUvBHqo9lS1cv0wU2+8hAc4b+sKtL7maOX6WAxjpC c4uBqOZwwrLUg== Received: from elaine.keithp.com ([127.0.0.1]) by localhost (elaine.keithp.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UQnYtYlzcZZq; Tue, 4 Feb 2020 22:48:47 -0800 (PST) Received: from keithp.com (koto.keithp.com [10.0.0.2]) by elaine.keithp.com (Postfix) with ESMTPSA id A3E893F2ABFD; Tue, 4 Feb 2020 22:48:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=keithp.com; s=mail; t=1580885326; bh=z8E63U0fl2HRA6Q/TLAyAtc9+D9hXhNlEuiARISoj0s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kCKZhJfmAAnSW9ifqChOUqKA2JCRYppzh+vJ63rsOHzQkiYBMR17IKhis1xWrdH7T q412q+QRA2E6q+q8B07DQ0RsdsUlZuZC74FvZEoe/1+1C0ueeu4cjh+eGNADGPkYgY sp0BLe27Jr6G4sIznZ12y4SZdUmZioMmlqmsNBQvFZFH6yG2CMQHdk41GqY+3r944J tDxkojopBBVDNsKFow/5uiX9B/6fHWUd9qHGdW9xCjjAWBYvgjbKH8GjgsQNThHnCG pgyBoh5vciUtjb303kdKk7/A5NcIgF96ULbgFFehMljM5ws6PsnOmvdYc7jnCHHLWZ GJYzbmfOjhSog== Received: by keithp.com (Postfix, from userid 1000) id 6E69B15821A7; Tue, 4 Feb 2020 22:48:46 -0800 (PST) From: Keith Packard To: newlib@sourceware.org Cc: Keith Packard Subject: [PATCH 03/27] Add copyright and license to newlib/libm/test/*.c Date: Wed, 05 Feb 2020 06:49:00 -0000 Message-Id: <20200205064844.929131-4-keithp@keithp.com> In-Reply-To: <20200205064844.929131-1-keithp@keithp.com> References: <20200205064844.929131-1-keithp@keithp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2020/txt/msg00055.txt The Makefile.in in this directory has a Copyright 1994 Cygnus and an old-style BSD license. I've copied that into all of the .c files. Signed-off-by: Keith Packard --- newlib/libm/test/acos_vec.c | 16 ++++++++++++++++ newlib/libm/test/acosf_vec.c | 16 ++++++++++++++++ newlib/libm/test/acosh_vec.c | 16 ++++++++++++++++ newlib/libm/test/acoshf_vec.c | 16 ++++++++++++++++ newlib/libm/test/asin_vec.c | 16 ++++++++++++++++ newlib/libm/test/asinf_vec.c | 16 ++++++++++++++++ newlib/libm/test/asinh_vec.c | 16 ++++++++++++++++ newlib/libm/test/asinhf_vec.c | 16 ++++++++++++++++ newlib/libm/test/atan2_vec.c | 16 ++++++++++++++++ newlib/libm/test/atan2f_vec.c | 16 ++++++++++++++++ newlib/libm/test/atan_vec.c | 16 ++++++++++++++++ newlib/libm/test/atanf_vec.c | 16 ++++++++++++++++ newlib/libm/test/atanh_vec.c | 16 ++++++++++++++++ newlib/libm/test/atanhf_vec.c | 16 ++++++++++++++++ newlib/libm/test/ceil_vec.c | 16 ++++++++++++++++ newlib/libm/test/ceilf_vec.c | 16 ++++++++++++++++ newlib/libm/test/conv_vec.c | 16 ++++++++++++++++ newlib/libm/test/convert.c | 16 ++++++++++++++++ newlib/libm/test/cos_vec.c | 16 ++++++++++++++++ newlib/libm/test/cosf_vec.c | 16 ++++++++++++++++ newlib/libm/test/cosh_vec.c | 16 ++++++++++++++++ newlib/libm/test/coshf_vec.c | 16 ++++++++++++++++ newlib/libm/test/dcvt.c | 16 ++++++++++++++++ newlib/libm/test/dvec.c | 16 ++++++++++++++++ newlib/libm/test/erf_vec.c | 16 ++++++++++++++++ newlib/libm/test/erfc_vec.c | 16 ++++++++++++++++ newlib/libm/test/erfcf_vec.c | 16 ++++++++++++++++ newlib/libm/test/erff_vec.c | 16 ++++++++++++++++ newlib/libm/test/exp_vec.c | 16 ++++++++++++++++ newlib/libm/test/expf_vec.c | 16 ++++++++++++++++ newlib/libm/test/fabs_vec.c | 16 ++++++++++++++++ newlib/libm/test/fabsf_vec.c | 16 ++++++++++++++++ newlib/libm/test/floor_vec.c | 16 ++++++++++++++++ newlib/libm/test/floorf_vec.c | 16 ++++++++++++++++ newlib/libm/test/fmod_vec.c | 16 ++++++++++++++++ newlib/libm/test/fmodf_vec.c | 16 ++++++++++++++++ newlib/libm/test/gamma_vec.c | 16 ++++++++++++++++ newlib/libm/test/gammaf_vec.c | 16 ++++++++++++++++ newlib/libm/test/hypot_vec.c | 16 ++++++++++++++++ newlib/libm/test/hypotf_vec.c | 16 ++++++++++++++++ newlib/libm/test/iconv_vec.c | 16 ++++++++++++++++ newlib/libm/test/j0_vec.c | 16 ++++++++++++++++ newlib/libm/test/j0f_vec.c | 16 ++++++++++++++++ newlib/libm/test/j1_vec.c | 16 ++++++++++++++++ newlib/libm/test/j1f_vec.c | 16 ++++++++++++++++ newlib/libm/test/jn_vec.c | 16 ++++++++++++++++ newlib/libm/test/jnf_vec.c | 16 ++++++++++++++++ newlib/libm/test/log10_vec.c | 16 ++++++++++++++++ newlib/libm/test/log10f_vec.c | 16 ++++++++++++++++ newlib/libm/test/log1p_vec.c | 16 ++++++++++++++++ newlib/libm/test/log1pf_vec.c | 16 ++++++++++++++++ newlib/libm/test/log2_vec.c | 16 ++++++++++++++++ newlib/libm/test/log2f_vec.c | 16 ++++++++++++++++ newlib/libm/test/log_vec.c | 16 ++++++++++++++++ newlib/libm/test/logf_vec.c | 16 ++++++++++++++++ newlib/libm/test/math.c | 16 ++++++++++++++++ newlib/libm/test/math2.c | 16 ++++++++++++++++ newlib/libm/test/sin_vec.c | 16 ++++++++++++++++ newlib/libm/test/sinf_vec.c | 16 ++++++++++++++++ newlib/libm/test/sinh_vec.c | 16 ++++++++++++++++ newlib/libm/test/sinhf_vec.c | 16 ++++++++++++++++ newlib/libm/test/sprint_ivec.c | 16 ++++++++++++++++ newlib/libm/test/sprint_vec.c | 16 ++++++++++++++++ newlib/libm/test/sqrt_vec.c | 16 ++++++++++++++++ newlib/libm/test/sqrtf_vec.c | 16 ++++++++++++++++ newlib/libm/test/string.c | 16 ++++++++++++++++ newlib/libm/test/tan_vec.c | 16 ++++++++++++++++ newlib/libm/test/tanf_vec.c | 16 ++++++++++++++++ newlib/libm/test/tanh_vec.c | 16 ++++++++++++++++ newlib/libm/test/tanhf_vec.c | 16 ++++++++++++++++ newlib/libm/test/test.c | 16 ++++++++++++++++ newlib/libm/test/test.h | 16 ++++++++++++++++ newlib/libm/test/test_ieee.c | 16 ++++++++++++++++ newlib/libm/test/test_is.c | 16 ++++++++++++++++ newlib/libm/test/y0_vec.c | 16 ++++++++++++++++ newlib/libm/test/y0f_vec.c | 16 ++++++++++++++++ newlib/libm/test/y1_vec.c | 16 ++++++++++++++++ newlib/libm/test/y1f_vec.c | 16 ++++++++++++++++ newlib/libm/test/yn_vec.c | 16 ++++++++++++++++ newlib/libm/test/ynf_vec.c | 16 ++++++++++++++++ 80 files changed, 1280 insertions(+) diff --git a/newlib/libm/test/acos_vec.c b/newlib/libm/test/acos_vec.c index 4288b7b82..6f1f6fa2a 100644 --- a/newlib/libm/test/acos_vec.c +++ b/newlib/libm/test/acos_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type acos_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/acosf_vec.c b/newlib/libm/test/acosf_vec.c index f7ed3dbe7..e6e47ba13 100644 --- a/newlib/libm/test/acosf_vec.c +++ b/newlib/libm/test/acosf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type acosf_vec[] = { { 1,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/acosh_vec.c b/newlib/libm/test/acosh_vec.c index 48f169c8b..5b8cf3a3c 100644 --- a/newlib/libm/test/acosh_vec.c +++ b/newlib/libm/test/acosh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type acosh_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/acoshf_vec.c b/newlib/libm/test/acoshf_vec.c index ba40d2987..56c53407e 100644 --- a/newlib/libm/test/acoshf_vec.c +++ b/newlib/libm/test/acoshf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type acoshf_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/asin_vec.c b/newlib/libm/test/asin_vec.c index 4215cc70d..33a5b7a2c 100644 --- a/newlib/libm/test/asin_vec.c +++ b/newlib/libm/test/asin_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type asin_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/asinf_vec.c b/newlib/libm/test/asinf_vec.c index 7e1b271f2..adddf38c8 100644 --- a/newlib/libm/test/asinf_vec.c +++ b/newlib/libm/test/asinf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type asinf_vec[] = { { 0,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/asinh_vec.c b/newlib/libm/test/asinh_vec.c index 67926d95b..2b63c79c8 100644 --- a/newlib/libm/test/asinh_vec.c +++ b/newlib/libm/test/asinh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type asinh_vec[] = { {64, 0,123,__LINE__, 0xbff0416d, 0x0b8ea990, 0xbff33333, 0x33333333}, /* -1.01597=f(-1.20000)*/ diff --git a/newlib/libm/test/asinhf_vec.c b/newlib/libm/test/asinhf_vec.c index d4b85eb92..51dbc067f 100644 --- a/newlib/libm/test/asinhf_vec.c +++ b/newlib/libm/test/asinhf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type asinhf_vec[] = { {14, 0,123,__LINE__, 0xbff0416d, 0x20000000, 0xbff33333, 0x33333333}, /* -1.01597=f(-1.20000)*/ diff --git a/newlib/libm/test/atan2_vec.c b/newlib/libm/test/atan2_vec.c index 802108453..9705e7160 100644 --- a/newlib/libm/test/atan2_vec.c +++ b/newlib/libm/test/atan2_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atan2_vec[] = { {62,0,123,__LINE__, 0xc002d97c, 0x7f3321d2, 0xbff00000, 0x00000000, 0xbff00000, 0x00000000}, diff --git a/newlib/libm/test/atan2f_vec.c b/newlib/libm/test/atan2f_vec.c index f07ac8d0e..150c6c9fd 100644 --- a/newlib/libm/test/atan2f_vec.c +++ b/newlib/libm/test/atan2f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atan2f_vec[] = { {32,0,123,__LINE__, 0xc002d97c, 0x7f3321d2, 0xbff00000, 0x00000000, 0xbff00000, 0x00000000}, diff --git a/newlib/libm/test/atan_vec.c b/newlib/libm/test/atan_vec.c index 12b44be74..756186fb5 100644 --- a/newlib/libm/test/atan_vec.c +++ b/newlib/libm/test/atan_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atan_vec[] = { {64, 0,123,__LINE__, 0xbfec08aa, 0xe496efa6, 0xbff33333, 0x33333333}, /* -0.87605=f(-1.20000)*/ diff --git a/newlib/libm/test/atanf_vec.c b/newlib/libm/test/atanf_vec.c index c907fe5ac..f592cedf9 100644 --- a/newlib/libm/test/atanf_vec.c +++ b/newlib/libm/test/atanf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atanf_vec[] = { {11, 0,123,__LINE__, 0xbfec08aa, 0xed5c7cec, 0xbff33333, 0x33333333}, /* -0.87605=f(-1.20000)*/ diff --git a/newlib/libm/test/atanh_vec.c b/newlib/libm/test/atanh_vec.c index 3b5384957..15f809af8 100644 --- a/newlib/libm/test/atanh_vec.c +++ b/newlib/libm/test/atanh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atanh_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/atanhf_vec.c b/newlib/libm/test/atanhf_vec.c index 16a114419..0543c3dbf 100644 --- a/newlib/libm/test/atanhf_vec.c +++ b/newlib/libm/test/atanhf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type atanhf_vec[] = { { 0,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/ceil_vec.c b/newlib/libm/test/ceil_vec.c index 94222997c..636283e79 100644 --- a/newlib/libm/test/ceil_vec.c +++ b/newlib/libm/test/ceil_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type ceil_vec[] = { {64, 0,123,__LINE__, 0xbff00000, 0x00000000, 0xbff33333, 0x33333333}, /* -1.00000=f(-1.20000)*/ diff --git a/newlib/libm/test/ceilf_vec.c b/newlib/libm/test/ceilf_vec.c index 2c86955cd..2a9138400 100644 --- a/newlib/libm/test/ceilf_vec.c +++ b/newlib/libm/test/ceilf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type ceilf_vec[] = { { 0, 0,123,__LINE__, 0xbff00000, 0x00000000, 0xbff33333, 0x33333333}, /* -1.00000=f(-1.20000)*/ diff --git a/newlib/libm/test/conv_vec.c b/newlib/libm/test/conv_vec.c index 1190e1b00..2504cb771 100644 --- a/newlib/libm/test/conv_vec.c +++ b/newlib/libm/test/conv_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" double_type doubles[] = diff --git a/newlib/libm/test/convert.c b/newlib/libm/test/convert.c index 026bd277b..d5d7efe74 100644 --- a/newlib/libm/test/convert.c +++ b/newlib/libm/test/convert.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ /* Test conversions */ #include "test.h" diff --git a/newlib/libm/test/cos_vec.c b/newlib/libm/test/cos_vec.c index 37d669eef..8ff64ecde 100644 --- a/newlib/libm/test/cos_vec.c +++ b/newlib/libm/test/cos_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type cos_vec[] = { {64, 0,123,__LINE__, 0x3fd730de, 0x943b79d3, 0xbff33333, 0x33333333}, /* 0.36235=f(-1.20000)*/ diff --git a/newlib/libm/test/cosf_vec.c b/newlib/libm/test/cosf_vec.c index 7e7d72011..245ac8a06 100644 --- a/newlib/libm/test/cosf_vec.c +++ b/newlib/libm/test/cosf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type cosf_vec[] = { {10, 0,123,__LINE__, 0x3fd730de, 0x6472104d, 0xbff33333, 0x33333333}, /* 0.36235=f(-1.20000)*/ diff --git a/newlib/libm/test/cosh_vec.c b/newlib/libm/test/cosh_vec.c index c8d47e398..472da1aff 100644 --- a/newlib/libm/test/cosh_vec.c +++ b/newlib/libm/test/cosh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type cosh_vec[] = { {63, 0,123,__LINE__, 0x3ffcf871, 0xf8dfa802, 0xbff33333, 0x33333333}, /* 1.81065=f(-1.20000)*/ diff --git a/newlib/libm/test/coshf_vec.c b/newlib/libm/test/coshf_vec.c index d8f96bb53..9a1a755f8 100644 --- a/newlib/libm/test/coshf_vec.c +++ b/newlib/libm/test/coshf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type coshf_vec[] = { {14, 0,123,__LINE__, 0x3ffcf872, 0x20000000, 0xbff33333, 0x33333333}, /* 1.81065=f(-1.20000)*/ diff --git a/newlib/libm/test/dcvt.c b/newlib/libm/test/dcvt.c index 56d5c2b6b..f00359446 100644 --- a/newlib/libm/test/dcvt.c +++ b/newlib/libm/test/dcvt.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include diff --git a/newlib/libm/test/dvec.c b/newlib/libm/test/dvec.c index 198faa183..c56bb6911 100644 --- a/newlib/libm/test/dvec.c +++ b/newlib/libm/test/dvec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" ddouble_type ddoubles[] = { diff --git a/newlib/libm/test/erf_vec.c b/newlib/libm/test/erf_vec.c index 893f9cc15..12f11462d 100644 --- a/newlib/libm/test/erf_vec.c +++ b/newlib/libm/test/erf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type erf_vec[] = { {64, 0,123,__LINE__, 0xbfed214a, 0xc7b2d068, 0xbff33333, 0x33333333}, /* -0.91031=f(-1.20000)*/ diff --git a/newlib/libm/test/erfc_vec.c b/newlib/libm/test/erfc_vec.c index 4579d31fd..3b778ce03 100644 --- a/newlib/libm/test/erfc_vec.c +++ b/newlib/libm/test/erfc_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type erfc_vec[] = { {64, 0,123,__LINE__, 0x3ffe90a5, 0x63d96834, 0xbff33333, 0x33333333}, /* 1.91031=f(-1.20000)*/ diff --git a/newlib/libm/test/erfcf_vec.c b/newlib/libm/test/erfcf_vec.c index 338321af9..7425e9fe6 100644 --- a/newlib/libm/test/erfcf_vec.c +++ b/newlib/libm/test/erfcf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type erfcf_vec[] = { {16, 0,123,__LINE__, 0x3ffe90a5, 0x60000000, 0xbff33333, 0x33333333}, /* 1.91031=f(-1.20000)*/ diff --git a/newlib/libm/test/erff_vec.c b/newlib/libm/test/erff_vec.c index f5223339a..8d7a6344c 100644 --- a/newlib/libm/test/erff_vec.c +++ b/newlib/libm/test/erff_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type erff_vec[] = { {11, 0,123,__LINE__, 0xbfed214a, 0xc0000000, 0xbff33333, 0x33333333}, /* -0.91031=f(-1.20000)*/ diff --git a/newlib/libm/test/exp_vec.c b/newlib/libm/test/exp_vec.c index 75adb9195..1ef38f7bb 100644 --- a/newlib/libm/test/exp_vec.c +++ b/newlib/libm/test/exp_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type exp_vec[] = { {63, 0,123,__LINE__, 0x3fd346c4, 0x167a12df, 0xbff33333, 0x33333333}, /* 0.30119=f(-1.20000)*/ diff --git a/newlib/libm/test/expf_vec.c b/newlib/libm/test/expf_vec.c index 256310b8a..dd2120ed6 100644 --- a/newlib/libm/test/expf_vec.c +++ b/newlib/libm/test/expf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type expf_vec[] = { {32, 0,123,__LINE__, 0x3fd346c4, 0x20000000, 0xbff33333, 0x33333333}, /* 0.30119=f(-1.20000)*/ diff --git a/newlib/libm/test/fabs_vec.c b/newlib/libm/test/fabs_vec.c index 3c7fce71a..1bce9f144 100644 --- a/newlib/libm/test/fabs_vec.c +++ b/newlib/libm/test/fabs_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type fabs_vec[] = { {64, 0,123,__LINE__, 0x3ff33333, 0x33333333, 0xbff33333, 0x33333333}, /* 1.20000=f(-1.20000)*/ diff --git a/newlib/libm/test/fabsf_vec.c b/newlib/libm/test/fabsf_vec.c index 9c8e122ff..97c397f11 100644 --- a/newlib/libm/test/fabsf_vec.c +++ b/newlib/libm/test/fabsf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type fabsf_vec[] = { {64, 0,123,__LINE__, 0x3ff33333, 0x40000000, 0xbff33333, 0x33333333}, /* 1.20000=f(-1.20000)*/ diff --git a/newlib/libm/test/floor_vec.c b/newlib/libm/test/floor_vec.c index 2272a7dfa..9cd5f79be 100644 --- a/newlib/libm/test/floor_vec.c +++ b/newlib/libm/test/floor_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type floor_vec[] = { {64, 0,123,__LINE__, 0xc0000000, 0x00000000, 0xbff33333, 0x33333333}, /* -2.00000=f(-1.20000)*/ diff --git a/newlib/libm/test/floorf_vec.c b/newlib/libm/test/floorf_vec.c index f01e1e6b8..99551d557 100644 --- a/newlib/libm/test/floorf_vec.c +++ b/newlib/libm/test/floorf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type floorf_vec[] = { { 1, 0,123,__LINE__, 0xc0000000, 0x00000000, 0xbff33333, 0x33333333}, /* -2.00000=f(-1.20000)*/ diff --git a/newlib/libm/test/fmod_vec.c b/newlib/libm/test/fmod_vec.c index 4357c845b..74ac7c593 100644 --- a/newlib/libm/test/fmod_vec.c +++ b/newlib/libm/test/fmod_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type fmod_vec[] = { {64, 0,123,__LINE__, 0xbff33333, 0x33333333, 0xbff33333, 0x33333333, 0x40066666, 0x66666666}, /* -1.20000=f(-1.20000, v2.80000)*/ diff --git a/newlib/libm/test/fmodf_vec.c b/newlib/libm/test/fmodf_vec.c index f50eeda76..754edc9d9 100644 --- a/newlib/libm/test/fmodf_vec.c +++ b/newlib/libm/test/fmodf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type fmodf_vec[] = { { 0, 0,123,__LINE__, 0xbff33333, 0x40000000, 0xbff33333, 0x33333333, 0x40066666, 0x66666666}, /* -1.20000=f(-1.20000, v2.80000)*/ diff --git a/newlib/libm/test/gamma_vec.c b/newlib/libm/test/gamma_vec.c index 119efe6f6..a3469897b 100644 --- a/newlib/libm/test/gamma_vec.c +++ b/newlib/libm/test/gamma_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type gamma_vec[] = { {60, 0,123,__LINE__, 0xbfb5db13, 0x8c7d70c7, 0xbff33333, 0x33333333}, /* -0.08537=f(-1.20000)*/ diff --git a/newlib/libm/test/gammaf_vec.c b/newlib/libm/test/gammaf_vec.c index 3210f14c4..50c036dfa 100644 --- a/newlib/libm/test/gammaf_vec.c +++ b/newlib/libm/test/gammaf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type gammaf_vec[] = { { 0, 0,123,__LINE__, 0xbfb5db13, 0xc0000000, 0xbff33333, 0x33333333}, /* -0.08537=f(-1.20000)*/ diff --git a/newlib/libm/test/hypot_vec.c b/newlib/libm/test/hypot_vec.c index ca8e7ff3f..e65d7afbd 100644 --- a/newlib/libm/test/hypot_vec.c +++ b/newlib/libm/test/hypot_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type hypot_vec[] = { {64, 0,123,__LINE__, 0x40085ed7, 0x614b038c, 0xbff33333, 0x33333333, 0x40066666, 0x66666666}, /* 3.04630=f(-1.20000, v2.80000)*/ diff --git a/newlib/libm/test/hypotf_vec.c b/newlib/libm/test/hypotf_vec.c index 833f05efe..d02a5a5a4 100644 --- a/newlib/libm/test/hypotf_vec.c +++ b/newlib/libm/test/hypotf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type hypotf_vec[] = { { 1, 0,123,__LINE__, 0x40085ed7, 0x6c3cac80, 0xbff33333, 0x33333333, 0x40066666, 0x66666666}, /* 3.04630=f(-1.20000, v2.80000)*/ diff --git a/newlib/libm/test/iconv_vec.c b/newlib/libm/test/iconv_vec.c index 15bf38860..05917eb24 100644 --- a/newlib/libm/test/iconv_vec.c +++ b/newlib/libm/test/iconv_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" diff --git a/newlib/libm/test/j0_vec.c b/newlib/libm/test/j0_vec.c index 834f88370..f163e22e9 100644 --- a/newlib/libm/test/j0_vec.c +++ b/newlib/libm/test/j0_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type j0_vec[] = { {63, 0,123,__LINE__, 0x3fe579eb, 0x607c7c44, 0xbff33333, 0x33333333}, /* 0.67113=f(-1.20000)*/ diff --git a/newlib/libm/test/j0f_vec.c b/newlib/libm/test/j0f_vec.c index 2f7a531e6..1036b20b5 100644 --- a/newlib/libm/test/j0f_vec.c +++ b/newlib/libm/test/j0f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type j0f_vec[] = { {11, 0,123,__LINE__, 0x3fe579eb, 0x54c385c0, 0xbff33333, 0x33333333}, /* 0.67113=f(-1.20000)*/ diff --git a/newlib/libm/test/j1_vec.c b/newlib/libm/test/j1_vec.c index 27bbce6c3..55e5019c4 100644 --- a/newlib/libm/test/j1_vec.c +++ b/newlib/libm/test/j1_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type j1_vec[] = { {64, 0,123,__LINE__, 0xbfdfe3f7, 0xc98d2cad, 0xbff33333, 0x33333333}, /* -0.49828=f(-1.20000)*/ diff --git a/newlib/libm/test/j1f_vec.c b/newlib/libm/test/j1f_vec.c index b09c892ef..f6cf0051f 100644 --- a/newlib/libm/test/j1f_vec.c +++ b/newlib/libm/test/j1f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type j1f_vec[] = { {10, 0,123,__LINE__, 0xbfdfe3f7, 0xe296ed50, 0xbff33333, 0x33333333}, /* -0.49828=f(-1.20000)*/ diff --git a/newlib/libm/test/jn_vec.c b/newlib/libm/test/jn_vec.c index a2929bf77..7eb485420 100644 --- a/newlib/libm/test/jn_vec.c +++ b/newlib/libm/test/jn_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type jn_vec[] = { {61,0,123,__LINE__, 0x3ff00000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, diff --git a/newlib/libm/test/jnf_vec.c b/newlib/libm/test/jnf_vec.c index 1c9a4dba7..b6738c703 100644 --- a/newlib/libm/test/jnf_vec.c +++ b/newlib/libm/test/jnf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type jnf_vec[] = { {32,0,123,__LINE__, 0x3ff00000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, diff --git a/newlib/libm/test/log10_vec.c b/newlib/libm/test/log10_vec.c index 48975a7f2..d91a744bf 100644 --- a/newlib/libm/test/log10_vec.c +++ b/newlib/libm/test/log10_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log10_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/log10f_vec.c b/newlib/libm/test/log10f_vec.c index 034117c05..d136b0f79 100644 --- a/newlib/libm/test/log10f_vec.c +++ b/newlib/libm/test/log10f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log10f_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/log1p_vec.c b/newlib/libm/test/log1p_vec.c index 9966b8637..1cd2b403e 100644 --- a/newlib/libm/test/log1p_vec.c +++ b/newlib/libm/test/log1p_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log1p_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/log1pf_vec.c b/newlib/libm/test/log1pf_vec.c index 7169e0ac5..ddbde247c 100644 --- a/newlib/libm/test/log1pf_vec.c +++ b/newlib/libm/test/log1pf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log1pf_vec[] = { { 0,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/log2_vec.c b/newlib/libm/test/log2_vec.c index 6a76e262f..82141dc74 100644 --- a/newlib/libm/test/log2_vec.c +++ b/newlib/libm/test/log2_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log2_vec[] = { {62,0,123,__LINE__, 0xc01149a7, 0x84bcd1b9, 0x3fa99999, 0x9999999a}, diff --git a/newlib/libm/test/log2f_vec.c b/newlib/libm/test/log2f_vec.c index a31ca2ff2..2ee6030d2 100644 --- a/newlib/libm/test/log2f_vec.c +++ b/newlib/libm/test/log2f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log2f_vec[] = { {31,0,123,__LINE__, 0xc01149a7, 0x84bcd1b9, 0x3fa99999, 0x9999999a}, diff --git a/newlib/libm/test/log_vec.c b/newlib/libm/test/log_vec.c index 894b75434..0e9fb626f 100644 --- a/newlib/libm/test/log_vec.c +++ b/newlib/libm/test/log_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type log_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/logf_vec.c b/newlib/libm/test/logf_vec.c index f7b541f87..7d5a57578 100644 --- a/newlib/libm/test/logf_vec.c +++ b/newlib/libm/test/logf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type logf_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/math.c b/newlib/libm/test/math.c index cd8441cc5..a539570cc 100644 --- a/newlib/libm/test/math.c +++ b/newlib/libm/test/math.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ /* Test the library maths functions using trusted precomputed test vectors. diff --git a/newlib/libm/test/math2.c b/newlib/libm/test/math2.c index b7108de4a..13aabae76 100644 --- a/newlib/libm/test/math2.c +++ b/newlib/libm/test/math2.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" #include diff --git a/newlib/libm/test/sin_vec.c b/newlib/libm/test/sin_vec.c index 5e95f283d..6c6429073 100644 --- a/newlib/libm/test/sin_vec.c +++ b/newlib/libm/test/sin_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sin_vec[] = { {62, 0,123,__LINE__, 0xbfedd343, 0xa21a55c6, 0xbff33333, 0x33333333}, /* -0.93203=f(-1.20000)*/ diff --git a/newlib/libm/test/sinf_vec.c b/newlib/libm/test/sinf_vec.c index 32eb8b101..a3063ac39 100644 --- a/newlib/libm/test/sinf_vec.c +++ b/newlib/libm/test/sinf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sinf_vec[] = { {31, 0,123,__LINE__, 0xbfedd343, 0xb0aef9e0, 0xbff33333, 0x33333333}, /* -0.93203=f(-1.20000)*/ diff --git a/newlib/libm/test/sinh_vec.c b/newlib/libm/test/sinh_vec.c index cdcea79b8..5570642a0 100644 --- a/newlib/libm/test/sinh_vec.c +++ b/newlib/libm/test/sinh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sinh_vec[] = { {61, 0,123,__LINE__, 0xbff826c0, 0xf3412349, 0xbff33333, 0x33333333}, /* -1.50946=f(-1.20000)*/ diff --git a/newlib/libm/test/sinhf_vec.c b/newlib/libm/test/sinhf_vec.c index f15709c8b..d4f9d4473 100644 --- a/newlib/libm/test/sinhf_vec.c +++ b/newlib/libm/test/sinhf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sinhf_vec[] = { {12, 0,123,__LINE__, 0xbff826c1, 0x00000000, 0xbff33333, 0x33333333}, /* -1.50946=f(-1.20000)*/ diff --git a/newlib/libm/test/sprint_ivec.c b/newlib/libm/test/sprint_ivec.c index 24762c6b3..bd21d3184 100644 --- a/newlib/libm/test/sprint_ivec.c +++ b/newlib/libm/test/sprint_ivec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" sprint_int_type sprint_ints[] = diff --git a/newlib/libm/test/sprint_vec.c b/newlib/libm/test/sprint_vec.c index 5ac72518e..bb8d97de2 100644 --- a/newlib/libm/test/sprint_vec.c +++ b/newlib/libm/test/sprint_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" sprint_double_type sprint_doubles[] = diff --git a/newlib/libm/test/sqrt_vec.c b/newlib/libm/test/sqrt_vec.c index 49bef146d..6661d4250 100644 --- a/newlib/libm/test/sqrt_vec.c +++ b/newlib/libm/test/sqrt_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sqrt_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/sqrtf_vec.c b/newlib/libm/test/sqrtf_vec.c index 0e52fac0f..894247cd9 100644 --- a/newlib/libm/test/sqrtf_vec.c +++ b/newlib/libm/test/sqrtf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type sqrtf_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/string.c b/newlib/libm/test/string.c index a8cc1a16f..930602b73 100644 --- a/newlib/libm/test/string.c +++ b/newlib/libm/test/string.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" #include #include diff --git a/newlib/libm/test/tan_vec.c b/newlib/libm/test/tan_vec.c index eb76cb562..36b3ae71c 100644 --- a/newlib/libm/test/tan_vec.c +++ b/newlib/libm/test/tan_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type tan_vec[] = { {64, 0,123,__LINE__, 0xc00493c4, 0x3acb164c, 0xbff33333, 0x33333333}, /* -2.57215=f(-1.20000)*/ diff --git a/newlib/libm/test/tanf_vec.c b/newlib/libm/test/tanf_vec.c index e6106e78a..a7d59013b 100644 --- a/newlib/libm/test/tanf_vec.c +++ b/newlib/libm/test/tanf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type tanf_vec[] = { { 1, 0,123,__LINE__, 0xc00493c4, 0x60a46c17, 0xbff33333, 0x33333333}, /* -2.57215=f(-1.20000)*/ diff --git a/newlib/libm/test/tanh_vec.c b/newlib/libm/test/tanh_vec.c index 01ad1c220..e78c70e9b 100644 --- a/newlib/libm/test/tanh_vec.c +++ b/newlib/libm/test/tanh_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type tanh_vec[] = { {64, 0,123,__LINE__, 0xbfeaad4c, 0x6d28dcaf, 0xbff33333, 0x33333333}, /* -0.83365=f(-1.20000)*/ diff --git a/newlib/libm/test/tanhf_vec.c b/newlib/libm/test/tanhf_vec.c index c8612c096..d8018aa39 100644 --- a/newlib/libm/test/tanhf_vec.c +++ b/newlib/libm/test/tanhf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type tanhf_vec[] = { {11, 0,123,__LINE__, 0xbfeaad4c, 0x80000000, 0xbff33333, 0x33333333}, /* -0.83365=f(-1.20000)*/ diff --git a/newlib/libm/test/test.c b/newlib/libm/test/test.c index 7769e2b36..ccd335f27 100644 --- a/newlib/libm/test/test.c +++ b/newlib/libm/test/test.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include #include "test.h" #include diff --git a/newlib/libm/test/test.h b/newlib/libm/test/test.h index e95c6b4c4..92d1c0a1e 100644 --- a/newlib/libm/test/test.h +++ b/newlib/libm/test/test.h @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #define HAVE_FLOAT 1 #define X(x) (char *)x diff --git a/newlib/libm/test/test_ieee.c b/newlib/libm/test/test_ieee.c index f23ceba6d..3af7c570a 100644 --- a/newlib/libm/test/test_ieee.c +++ b/newlib/libm/test/test_ieee.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" #include diff --git a/newlib/libm/test/test_is.c b/newlib/libm/test/test_is.c index ac8f79c49..a045ca14b 100644 --- a/newlib/libm/test/test_is.c +++ b/newlib/libm/test/test_is.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" #include diff --git a/newlib/libm/test/y0_vec.c b/newlib/libm/test/y0_vec.c index 9fae15418..ead200978 100644 --- a/newlib/libm/test/y0_vec.c +++ b/newlib/libm/test/y0_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type y0_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/y0f_vec.c b/newlib/libm/test/y0f_vec.c index 5567a9f30..ff77858cd 100644 --- a/newlib/libm/test/y0f_vec.c +++ b/newlib/libm/test/y0f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type y0f_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/y1_vec.c b/newlib/libm/test/y1_vec.c index 3cb549749..fcaf77602 100644 --- a/newlib/libm/test/y1_vec.c +++ b/newlib/libm/test/y1_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type y1_vec[] = { {64,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/y1f_vec.c b/newlib/libm/test/y1f_vec.c index 419afb12b..be8f30e76 100644 --- a/newlib/libm/test/y1f_vec.c +++ b/newlib/libm/test/y1f_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type y1f_vec[] = { { 9,13, 37,__LINE__, 0x40500000, 0x00000000, 0xbff33333, 0x33333333}, /* 64.0000=f(-1.20000)*/ diff --git a/newlib/libm/test/yn_vec.c b/newlib/libm/test/yn_vec.c index 69028531e..68a920c10 100644 --- a/newlib/libm/test/yn_vec.c +++ b/newlib/libm/test/yn_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type yn_vec[] = { {64,0,123,__LINE__, 0x3ff00000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000}, diff --git a/newlib/libm/test/ynf_vec.c b/newlib/libm/test/ynf_vec.c index edd0d1718..698e4f523 100644 --- a/newlib/libm/test/ynf_vec.c +++ b/newlib/libm/test/ynf_vec.c @@ -1,3 +1,19 @@ +/* + * Copyright (c) 1994 Cygnus Support. + * All rights reserved. + * + * Redistribution and use in source and binary forms are permitted + * provided that the above copyright notice and this paragraph are + * duplicated in all such forms and that any documentation, + * and/or other materials related to such + * distribution and use acknowledge that the software was developed + * at Cygnus Support, Inc. Cygnus Support, Inc. may not be used to + * endorse or promote products derived from this software without + * specific prior written permission. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED + * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. + */ #include "test.h" one_line_type ynf_vec[] = { -- 2.25.0