From 712eba3c7c8acd71df8f0c7832aa40ace294efd4 Mon Sep 17 00:00:00 2001 From: x Date: Sat, 21 Jan 2017 17:32:58 +0100 Subject: [PATCH] TurboPFor: Bit Pack/UnPack c/c++ header --- bitpack.h | 1 - 1 file changed, 1 deletion(-) diff --git a/bitpack.h b/bitpack.h index cf8246b..e83cb6c 100644 --- a/bitpack.h +++ b/bitpack.h @@ -63,7 +63,6 @@ size_t bitnd1unpack32(unsigned char *__restrict in, size_t n, uint32_t *__restri size_t bitnd1unpack64(unsigned char *__restrict in, size_t n, uint64_t *__restrict out); //******** Bit Packing Low level API **************************************************************** - // bipackNN: Pack array with n unsigned (NN bits in[n]) values to the buffer out using nbits per value. Return value = end of compressed buffer out unsigned char *bitpack8( uint8_t *__restrict in, unsigned n, const unsigned char *__restrict out , unsigned b); unsigned char *bitpack16( uint16_t *__restrict in, unsigned n, const unsigned char *__restrict out , unsigned b);