Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
NexusCPP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Control System
Libraries
NexusCPP
Commits
ea89e809
Commit
ea89e809
authored
Jan 26, 2023
by
Stephane Poirier
Browse files
Options
Downloads
Patches
Plain Diff
[BitShuffle compress] Linux64 support
parent
bcae4021
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/bslz4/bitshuffle_core.h
+7
-2
7 additions, 2 deletions
src/bslz4/bitshuffle_core.h
src/bslz4/bitshuffle_internals.h
+7
-2
7 additions, 2 deletions
src/bslz4/bitshuffle_internals.h
with
14 additions
and
4 deletions
src/bslz4/bitshuffle_core.h
+
7
−
2
View file @
ea89e809
...
...
@@ -38,9 +38,14 @@
typedef
unsigned
short
uint16_t
;
typedef
unsigned
int
uint32_t
;
typedef
signed
int
int32_t
;
#ifdef __x86_64__
typedef
unsigned
long
uint64_t
;
typedef
long
int64_t
;
#else
typedef
unsigned
long
long
uint64_t
;
typedef
long
long
int64_t
;
#endif
#endif
#include
<stdlib.h>
...
...
This diff is collapsed.
Click to expand it.
src/bslz4/bitshuffle_internals.h
+
7
−
2
View file @
ea89e809
...
...
@@ -22,9 +22,14 @@
typedef
unsigned
short
uint16_t
;
typedef
unsigned
int
uint32_t
;
typedef
signed
int
int32_t
;
#ifdef __x86_64__
typedef
unsigned
long
uint64_t
;
typedef
long
int64_t
;
#else
typedef
unsigned
long
long
uint64_t
;
typedef
long
long
int64_t
;
#endif
#endif
#include
<stdlib.h>
#include
"iochain.h"
...
...
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