ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/liblzf/lzfP.h
(Generate patch)

Comparing liblzf/lzfP.h (file contents):
Revision 1.29 by root, Mon Dec 10 20:21:28 2012 UTC vs.
Revision 1.30 by root, Mon Feb 23 23:46:10 2015 UTC

143 * Whether to store pointers or offsets inside the hash table. On 143 * Whether to store pointers or offsets inside the hash table. On
144 * 64 bit architetcures, pointers take up twice as much space, 144 * 64 bit architetcures, pointers take up twice as much space,
145 * and might also be slower. Default is to autodetect. 145 * and might also be slower. Default is to autodetect.
146 */ 146 */
147/*#define LZF_USE_OFFSETS autodetect */ 147/*#define LZF_USE_OFFSETS autodetect */
148
149/*
150 * Whether to optimise code for size, at the expense of speed. Use
151 * this when you are extremely tight on memory, perhaps in combination
152 * with AVOID_ERRNO 1 and CHECK_INPUT 0.
153 */
154#ifndef OPTIMISE_SIZE
155# ifdef __OPTIMIZE_SIZE__
156# define OPTIMISE_SIZE 1
157# else
158# define OPTIMISE_SIZE 0
159# endif
160#endif
148 161
149/*****************************************************************************/ 162/*****************************************************************************/
150/* nothing should be changed below */ 163/* nothing should be changed below */
151 164
152#ifdef __cplusplus 165#ifdef __cplusplus

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines