summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
diff options
context:
space:
mode:
authorTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2015-02-12 10:58:49 (GMT)
committerTakayuki MATSUOKA <takayuki.matsuoka@gmail.com>2015-03-02 04:38:25 (GMT)
commit01a24afdcf867a901076eaa87434b3dcb39d526f (patch)
treee80e4f8e930f38b7e6f6e6fe5341f37f64f020e5 /programs/lz4io.c
parent4a5d92b1d9207b5d1309e1b21ecc1164cc14a149 (diff)
downloadlz4-01a24afdcf867a901076eaa87434b3dcb39d526f.zip
lz4-01a24afdcf867a901076eaa87434b3dcb39d526f.tar.gz
lz4-01a24afdcf867a901076eaa87434b3dcb39d526f.tar.bz2
Improve isSparse()
Diffstat (limited to 'programs/lz4io.c')
-rw-r--r--programs/lz4io.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/programs/lz4io.c b/programs/lz4io.c
index 9f80531..b1067ac 100644
--- a/programs/lz4io.c
+++ b/programs/lz4io.c
@@ -62,6 +62,27 @@
#include "lz4frame.h"
+/**************************************
+ Basic Types
+**************************************/
+#if defined(LZ4IO_ENABLE_SPARSE_FILE)
+#if defined (__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* C99 */
+# include <stdint.h>
+ typedef uint8_t BYTE;
+ typedef uint16_t U16;
+ typedef uint32_t U32;
+ typedef int32_t S32;
+ typedef uint64_t U64;
+#else
+ typedef unsigned char BYTE;
+ typedef unsigned short U16;
+ typedef unsigned int U32;
+ typedef signed int S32;
+ typedef unsigned long long U64;
+#endif
+#endif /* LZ4IO_ENABLE_SPARSE_FILE */
+
+
/****************************
* OS-specific Includes
*****************************/
@@ -198,6 +219,7 @@ int LZ4IO_setSparseFile(int yes)
static int isSparse(const void* p, size_t size)
{
+#if 0
const char* p8 = p;
for(; size; --size)
{
@@ -208,6 +230,30 @@ static int isSparse(const void* p, size_t size)
++p8;
}
return 1;
+#else
+ const U64* p64 = (const U64*) p;
+ const char* p8 = (const char*) p;
+ const size_t n = size / sizeof(*p64);
+ size_t i;
+
+ for (i = 0; i < n; ++i)
+ {
+ if (p64[i] != 0)
+ {
+ return 0;
+ }
+ }
+
+ for(i = n * sizeof(*p64); i < size; ++i)
+ {
+ if (p8[i] != 0)
+ {
+ return 0;
+ }
+ }
+
+ return 1;
+#endif
}
#endif /* LZ4IO_ENABLE_SPARSE_FILE */