Searched defs:M_MIN (Results 1 - 2 of 2) sorted by relevance

/ast/src/lib/libvdelta/vd01/
H A Dvdelhdr01.h61 #define M_MIN 4 /* min number of bytes to match */ macro
151 #define C_SIZE ((1<<S_BITS)+M_MIN-2) /* max local COPY size */
153 #define C_LPUT(s) ((s) - (M_MIN-1) ) /* coded local value */
157 #define C_LGET(i) (((i) & ((1<<S_BITS)-1)) + (M_MIN-1) )
171 #define C_TINYSIZE ((1<<C_TINY) + M_MIN-1) /* max tiny COPY size */
173 #define C_TPUT(s) (((s) - M_MIN) << A_TINY)
174 #define C_TGET(i) ((((i) >> A_TINY) & ((1<<C_TINY)-1)) + M_MIN )
/ast/src/lib/libvdelta/
H A Dvdelhdr.h61 #define M_MIN 4 /* min number of bytes to match */ macro
151 #define C_SIZE ((1<<S_BITS)+M_MIN-2) /* max local COPY size */
153 #define C_LPUT(s) ((s) - (M_MIN-1) ) /* coded local value */
157 #define C_LGET(i) (((i) & ((1<<S_BITS)-1)) + (M_MIN-1) )
171 #define C_TINYSIZE ((1<<C_TINY) + M_MIN-1) /* max tiny COPY size */
173 #define C_TPUT(s) (((s) - M_MIN) << A_TINY)
174 #define C_TGET(i) ((((i) >> A_TINY) & ((1<<C_TINY)-1)) + M_MIN )

Completed in 266 milliseconds