Lines Matching +full:smi +full:- +full:common
5 * Common Development and Distribution License (the "License").
27 /*#pragma ident "%Z%%M% %I% %E% SMI"*/
31 * 1. If we didn't, anyone modifying common/os/compress.c would
34 * common/os version needs and uses
36 * take a destination buffer size and return -1 if the data will not
42 #define MATCH_MAX ((1 << MATCH_BITS) + (MATCH_MIN - 1))
43 #define OFFSET_MASK ((1 << (16 - MATCH_BITS)) - 1)
54 int copymask = 1 << (NBBY - 1); in lzjb_decompress()
62 int mlen = (src[0] >> (NBBY - MATCH_BITS)) + MATCH_MIN; in lzjb_decompress()
65 if ((cpy = dst - offset) < (unsigned char *)d_start) in lzjb_decompress()
66 return (-1); in lzjb_decompress()
67 while (--mlen >= 0 && dst < d_end) in lzjb_decompress()