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

📄 f_rint.c

📁 Newlib 嵌入式 C库 标准实现代码
💻 C
字号:
/* * ==================================================== * x87 FP implementation contributed to Newlib by * Dave Korn, November 2007.  This file is placed in the * public domain.  Permission to use, copy, modify, and  * distribute this software is freely granted. * ==================================================== */#if defined(__GNUC__) && !defined(_SOFT_FLOAT)#include <math.h>/*FUNCTION<<rint>>, <<rintf>>, <<rintl>>---round to integerINDEX	rintINDEX	rintfINDEX	rintlANSI_SYNOPSIS	#include <math.h>	double rint(double x);        float rintf(float x);        long double rintl(long double x);TRAD_SYNOPSIS	ANSI-only.DESCRIPTIONThe <<rint>>, <<rintf>> and <<rintl>> functions round <[x]> to an integer valuein floating-point format, using the current rounding direction.  They mayraise the inexact exception if the result differs in value from the argument.RETURNSThese functions return the rounded integer value of <[x]>.PORTABILITY<<rint>>, <<rintf>> and <<rintl>> are ANSI.<<rint>> and <<rintf>> are available on all platforms.<<rintl>> is only available on i386 platforms when hardware floating point support is available and when compiling with GCC.*//* * Fast math version of rint(x) * Return x rounded to integral value according to the prevailing * rounding mode. * Method: *	Using inline x87 asms. * Exception: *	Governed by x87 FPCR. */double _f_rint (double x){  double _result;  asm ("frndint" : "=t" (_result) : "0" (x));  return _result;}#endif  /* !__GNUC__ || _SOFT_FLOAT */

⌨️ 快捷键说明

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