Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lizhongxiao
OpenXG-RAN
Commits
380de176
Commit
380de176
authored
Dec 23, 2020
by
Michael Cook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taus.c: Make globals static
parent
a0ddf3b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
openair1/SIMULATION/TOOLS/taus.c
openair1/SIMULATION/TOOLS/taus.c
+2
-2
No files found.
openair1/SIMULATION/TOOLS/taus.c
View file @
380de176
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include "SIMULATION/TOOLS/sim.h"
#include "SIMULATION/TOOLS/sim.h"
unsigned
int
s0
,
s1
,
s2
,
b
;
static
unsigned
int
s0
,
s1
,
s2
;
//----------------------------------------------
//----------------------------------------------
//
//
...
@@ -33,7 +33,7 @@ unsigned int s0, s1, s2, b;
...
@@ -33,7 +33,7 @@ unsigned int s0, s1, s2, b;
unsigned
int
taus
(
void
)
unsigned
int
taus
(
void
)
{
{
b
=
(((
s0
<<
13
)
^
s0
)
>>
19
);
unsigned
int
b
=
(((
s0
<<
13
)
^
s0
)
>>
19
);
s0
=
(((
s0
&
0xFFFFFFFE
)
<<
12
)
^
b
);
s0
=
(((
s0
&
0xFFFFFFFE
)
<<
12
)
^
b
);
b
=
(((
s1
<<
2
)
^
s1
)
>>
25
);
b
=
(((
s1
<<
2
)
^
s1
)
>>
25
);
s1
=
(((
s1
&
0xFFFFFFF8
)
<<
4
)
^
b
);
s1
=
(((
s1
&
0xFFFFFFF8
)
<<
4
)
^
b
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment