Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmp_tool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominik Loidolt
cmp_tool
Merge requests
!14
fix bug in round_fwd macro
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
fix bug in round_fwd macro
optimise
into
master
Overview
0
Commits
1
Changes
1
Merged
fix bug in round_fwd macro
Dominik Loidolt
requested to merge
optimise
into
master
Nov 21, 2022
Overview
0
Commits
1
Changes
1
Function macro optimisation
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
7c41855c
1 commit,
Nov 21, 2022
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
include/cmp_support.h
+
1
−
1
View file @ 7c41855c
Edit in single-file editor
Open in Web IDE
Show full file
@@ -272,7 +272,7 @@ struct fx_cob_par {
@@ -272,7 +272,7 @@ struct fx_cob_par {
* @return rounded value
* @return rounded value
*/
*/
#define round_fwd(value, round) ((uint32_t)(value)
<<
(round))
#define round_fwd(value, round) ((uint32_t)(value)
>>
(round))
/**
/**
Loading