⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 x-cvsweb-markup(34)

📁 软件浮点数计算功能
💻
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><!-- hennerik CVSweb $Revision: 1.93 $ --><TITLE>glibc.dead/soft-fp/gedf2.c - view - 1.1.1.2</TITLE></HEAD><BODY BGCOLOR="#eeeeee"><table width="100%" border=0 cellspacing=0 cellpadding=1 bgcolor="#9999ee"><tr valign=bottom><td><a href="gedf2.c#rev1.1.1.2"><IMG SRC="/icons/back.gif" ALT="[BACK]" BORDER="0" WIDTH="20" HEIGHT="22"></a> <b>Return to <A HREF="gedf2.c#rev1.1.1.2">gedf2.c</A> CVS log</b> <IMG SRC="/icons/text.gif" ALT="[TXT]" BORDER="0" WIDTH="20" HEIGHT="22"></td><td align=right><IMG SRC="/icons/dir.gif" ALT="[DIR]" BORDER="0" WIDTH="20" HEIGHT="22"> <b>Up to  <a href="/cgi-bin/cvsweb.cgi/#dirlist">[Development]</a> / <a href="/cgi-bin/cvsweb.cgi/glibc.dead/#dirlist">glibc.dead</a> / <a href="/cgi-bin/cvsweb.cgi/glibc.dead/soft-fp/#dirlist">soft-fp</a></b></td></tr></table><HR noshade><table width="100%"><tr><td bgcolor="#ffffff">File:  <a href="/cgi-bin/cvsweb.cgi/#dirlist">[Development]</a> / <a href="/cgi-bin/cvsweb.cgi/glibc.dead/#dirlist">glibc.dead</a> / <a href="/cgi-bin/cvsweb.cgi/glibc.dead/soft-fp/#dirlist">soft-fp</a> / <a href="/cgi-bin/cvsweb.cgi/glibc.dead/soft-fp/gedf2.c">gedf2.c</a>&nbsp;(<A HREF="/cgi-bin/cvsweb.cgi/~checkout~/glibc.dead/soft-fp/gedf2.c?rev=1.1.1.2" target="cvs_checkout" onClick="window.open('/cgi-bin/cvsweb.cgi/~checkout~/glibc.dead/soft-fp/gedf2.c?rev=1.1.1.2','cvs_checkout','resizeable,scrollbars');"><b>download</b></A>)<BR>Revision <B>1.1.1.2</B> <i>(vendor branch)</i>, <i>Thu Aug  2 11:38:45 2001 UTC</i> (3 years, 4 months ago) by <i>aj</i><BR>Branch: <b>glibc-2001-09-13, MAIN</b><BR>CVS Tags: <b>glibc-pre-merge-2001-09-13, glibc-2001-08-02, HEAD, GLIBC_MAIN</b><BR>Changes since <b>1.1.1.1: +8 -8 lines</b><PRE>Import from main glibc repository at 2001-08-02.</PRE></td></tr></table><HR noshade><PRE>/* Software floating-point emulation. &nbsp; Return 0 iff a == b, 1 iff a &gt; b, -2 iff a ? b, -1 iff a &lt; b &nbsp; Copyright (C) 1997,1999 Free Software Foundation, Inc. &nbsp; This file is part of the GNU C Library. &nbsp; Contributed by Richard Henderson (<A HREF="mailto:rth@cygnus.com">rth@cygnus.com</A>) and &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Jakub Jelinek (<A HREF="mailto:jj@ultra.linux.cz">jj@ultra.linux.cz</A>). &nbsp; The GNU C Library is free software; you can redistribute it and/or &nbsp; modify it under the terms of the GNU Lesser General Public &nbsp; License as published by the Free Software Foundation; either &nbsp; version 2.1 of the License, or (at your option) any later version. &nbsp; The GNU C Library is distributed in the hope that it will be useful, &nbsp; but WITHOUT ANY WARRANTY; without even the implied warranty of &nbsp; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. &nbsp;See the GNU &nbsp; Lesser General Public License for more details. &nbsp; You should have received a copy of the GNU Lesser General Public &nbsp; License along with the GNU C Library; if not, write to the Free &nbsp; Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA &nbsp; 02111-1307 USA. &nbsp;*/#include &quot;soft-fp.h&quot;#include &quot;double.h&quot;int __gedf2(double a, double b){ &nbsp;FP_DECL_EX; &nbsp;FP_DECL_D(A); FP_DECL_D(B); &nbsp;int r; &nbsp;FP_UNPACK_RAW_D(A, a); &nbsp;FP_UNPACK_RAW_D(B, b); &nbsp;FP_CMP_D(r, A, B, -2); &nbsp;if (r == -2 &amp;&amp; (FP_ISSIGNAN_D(A) || FP_ISSIGNAN_D(B))) &nbsp; &nbsp;FP_SET_EXCEPTION(FP_EX_INVALID); &nbsp;FP_HANDLE_EXCEPTIONS; &nbsp;return r;}strong_alias(__gedf2, __gtdf2);</PRE>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -