Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
7eabe8e6
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
大约 1 年 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7eabe8e6
编写于
3月 29, 2012
作者:
N
nsz
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
math: minor cleanups in ceil and floor
上级
d79ac8c3
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
7 addition
and
10 deletion
+7
-10
src/math/ceil.c
src/math/ceil.c
+1
-2
src/math/ceilf.c
src/math/ceilf.c
+0
-1
src/math/ceill.c
src/math/ceill.c
+1
-2
src/math/floor.c
src/math/floor.c
+4
-4
src/math/floorl.c
src/math/floorl.c
+1
-1
未找到文件。
src/math/ceil.c
浏览文件 @
7eabe8e6
...
@@ -34,7 +34,6 @@ double ceil(double x)
...
@@ -34,7 +34,6 @@ double ceil(double x)
if
(
j0
<
0
)
{
if
(
j0
<
0
)
{
/* raise inexact if x != 0 */
/* raise inexact if x != 0 */
if
(
huge
+
x
>
0
.
0
)
{
if
(
huge
+
x
>
0
.
0
)
{
/* return 0*sign(x) if |x|<1 */
if
(
i0
<
0
)
{
if
(
i0
<
0
)
{
i0
=
0x80000000
;
i0
=
0x80000000
;
i1
=
0
;
i1
=
0
;
...
@@ -44,7 +43,7 @@ double ceil(double x)
...
@@ -44,7 +43,7 @@ double ceil(double x)
}
}
}
}
}
else
{
}
else
{
i
=
(
0x000fffff
)
>>
j0
;
i
=
0x000fffff
>>
j0
;
if
(((
i0
&
i
)
|
i1
)
==
0
)
/* x is integral */
if
(((
i0
&
i
)
|
i1
)
==
0
)
/* x is integral */
return
x
;
return
x
;
/* raise inexact flag */
/* raise inexact flag */
...
...
src/math/ceilf.c
浏览文件 @
7eabe8e6
...
@@ -28,7 +28,6 @@ float ceilf(float x)
...
@@ -28,7 +28,6 @@ float ceilf(float x)
if
(
j0
<
0
)
{
if
(
j0
<
0
)
{
/* raise inexact if x != 0 */
/* raise inexact if x != 0 */
if
(
huge
+
x
>
0
.
0
f
)
{
if
(
huge
+
x
>
0
.
0
f
)
{
/* return 0*sign(x) if |x|<1 */
if
(
i0
<
0
)
if
(
i0
<
0
)
i0
=
0x80000000
;
i0
=
0x80000000
;
else
if
(
i0
!=
0
)
else
if
(
i0
!=
0
)
...
...
src/math/ceill.c
浏览文件 @
7eabe8e6
...
@@ -49,8 +49,7 @@ long double ceill(long double x)
...
@@ -49,8 +49,7 @@ long double ceill(long double x)
static
const
long
double
huge
=
1.0e300
;
static
const
long
double
huge
=
1.0e300
;
long
double
long
double
ceill
(
long
double
x
)
ceill
(
long
double
x
)
{
{
union
IEEEl2bits
u
=
{
.
e
=
x
};
union
IEEEl2bits
u
=
{
.
e
=
x
};
int
e
=
u
.
bits
.
exp
-
LDBL_MAX_EXP
+
1
;
int
e
=
u
.
bits
.
exp
-
LDBL_MAX_EXP
+
1
;
...
...
src/math/floor.c
浏览文件 @
7eabe8e6
...
@@ -50,7 +50,7 @@ double floor(double x)
...
@@ -50,7 +50,7 @@ double floor(double x)
if
(
i0
<
0
)
if
(
i0
<
0
)
i0
+=
0x00100000
>>
j0
;
i0
+=
0x00100000
>>
j0
;
i0
&=
~
i
;
i0
&=
~
i
;
i1
=
0
;
i1
=
0
;
}
}
}
}
}
else
if
(
j0
>
51
)
{
}
else
if
(
j0
>
51
)
{
...
@@ -59,18 +59,18 @@ double floor(double x)
...
@@ -59,18 +59,18 @@ double floor(double x)
else
else
return
x
;
/* x is integral */
return
x
;
/* x is integral */
}
else
{
}
else
{
i
=
(
(
uint32_t
)(
0xffffffff
))
>>
(
j0
-
20
);
i
=
(
uint32_t
)
0xffffffff
>>
(
j0
-
20
);
if
((
i1
&
i
)
==
0
)
if
((
i1
&
i
)
==
0
)
return
x
;
/* x is integral */
return
x
;
/* x is integral */
/* raise inexact flag */
/* raise inexact flag */
if
(
huge
+
x
>
0
.
0
)
{
if
(
huge
+
x
>
0
.
0
)
{
if
(
i0
<
0
)
{
if
(
i0
<
0
)
{
if
(
j0
==
20
)
if
(
j0
==
20
)
i0
+
=
1
;
i0
+
+
;
else
{
else
{
j
=
i1
+
(
1
<<
(
52
-
j0
));
j
=
i1
+
(
1
<<
(
52
-
j0
));
if
(
j
<
i1
)
if
(
j
<
i1
)
i0
+=
1
;
/* got a carry */
i0
++
;
/* got a carry */
i1
=
j
;
i1
=
j
;
}
}
}
}
...
...
src/math/floorl.c
浏览文件 @
7eabe8e6
...
@@ -97,6 +97,6 @@ long double floorl(long double x)
...
@@ -97,6 +97,6 @@ long double floorl(long double x)
if
(
huge
+
x
>
0
.
0
)
if
(
huge
+
x
>
0
.
0
)
u
.
bits
.
manl
&=
~
m
;
u
.
bits
.
manl
&=
~
m
;
}
}
return
(
u
.
e
)
;
return
u
.
e
;
}
}
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录