Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
purr-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Prateek Mishra
purr-data
Commits
01f12161
Commit
01f12161
authored
6 years ago
by
Jonathan Wilkes
Browse files
Options
Downloads
Plain Diff
Merge branch 'ensure-word-alignment'
parents
5b6630d5
66d65d21
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pd/src/m_pd.h
+20
-6
20 additions, 6 deletions
pd/src/m_pd.h
with
20 additions
and
6 deletions
pd/src/m_pd.h
+
20
−
6
View file @
01f12161
...
...
@@ -772,10 +772,11 @@ defined, there is a "te_xpix" field in objects, not a "te_xpos" as before: */
typedef
union
{
t_float
f
;
u
nsigned
in
t
ui
;
u
int32_
t
ui
;
}
t_bigorsmall32
;
static
inline
int
PD_BADFLOAT
(
t_float
f
)
// test for NANs, infs and denormals
/* Test strictly for NANs and infs */
static
inline
int
PD_BADFLOAT
(
t_float
f
)
{
t_bigorsmall32
pun
;
pun
.
f
=
f
;
...
...
@@ -783,7 +784,13 @@ static inline int PD_BADFLOAT(t_float f) // test for NANs, infs and denormals
return
((
pun
.
ui
==
0
)
|
(
pun
.
ui
==
0x7f800000
));
}
static
inline
int
PD_BIGORSMALL
(
t_float
f
)
// > abs(2^64) or < abs(2^-64)
/* Test to find unusually large or small normal values, in
addition to denormals, NANs and infs:
abs(f) >= 2^65 or < 2^-63
This is useful for catching extreme values in, say, a filter,
then bashing to zero before ever calculating a denormal. */
static
inline
int
PD_BIGORSMALL
(
t_float
f
)
{
t_bigorsmall32
pun
;
pun
.
f
=
f
;
...
...
@@ -795,10 +802,11 @@ static inline int PD_BIGORSMALL(t_float f) // > abs(2^64) or < abs(2^-64)
typedef
union
{
t_float
f
;
u
nsigned
in
t
ui
[
2
];
u
int32_
t
ui
[
2
];
}
t_bigorsmall64
;
static
inline
int
PD_BADFLOAT
(
t_float
f
)
// test for NANs, infs and denormals
/* Test for NANs and infs */
static
inline
int
PD_BADFLOAT
(
t_float
f
)
{
t_bigorsmall64
pun
;
pun
.
f
=
f
;
...
...
@@ -806,7 +814,13 @@ static inline int PD_BADFLOAT(t_float f) // test for NANs, infs and denormals
return
((
pun
.
ui
[
1
]
==
0
)
|
(
pun
.
ui
[
1
]
==
0x7ff00000
));
}
static
inline
int
PD_BIGORSMALL
(
t_float
f
)
// > abs(2^512) or < abs(2^-512)
/* Test to find unusually large or small normal values, in
addition to denormals, NANs and infs:
abs(f) >= 2^513 or < 2^-511
This is useful for catching extreme values in, say, a filter,
then bashing to zero before ever calculating a denormal. */
static
inline
int
PD_BIGORSMALL
(
t_float
f
)
{
t_bigorsmall64
pun
;
pun
.
f
=
f
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment