Lines Matching full:255
620 for (; len > 254; len -= 255) in LZ4_compressCtx()
621 *op++ = 255; in LZ4_compressCtx()
670 *op++ = 255; in LZ4_compressCtx()
671 *op++ = 255; in LZ4_compressCtx()
674 len -= 255; in LZ4_compressCtx()
675 *op++ = 255; in LZ4_compressCtx()
706 if (op + lastRun + 1 + ((lastRun + 255 - RUN_MASK) / 255) > in LZ4_compressCtx()
712 for (; lastRun > 254; lastRun -= 255) { in LZ4_compressCtx()
713 *op++ = 255; in LZ4_compressCtx()
813 for (; len > 254; len -= 255) in LZ4_compress64kCtx()
814 *op++ = 255; in LZ4_compress64kCtx()
863 *op++ = 255; in LZ4_compress64kCtx()
864 *op++ = 255; in LZ4_compress64kCtx()
867 len -= 255; in LZ4_compress64kCtx()
868 *op++ = 255; in LZ4_compress64kCtx()
899 if (op + lastRun + 1 + ((lastRun + 255 - RUN_MASK) / 255) > in LZ4_compress64kCtx()
905 for (; lastRun > 254; lastRun -= 255) in LZ4_compress64kCtx()
906 *op++ = 255; in LZ4_compress64kCtx()
992 int s = 255; in LZ4_uncompress_unknownOutputSize()
993 while ((ip < iend) && (s == 255)) { in LZ4_uncompress_unknownOutputSize()
1038 if (s == 255) in LZ4_uncompress_unknownOutputSize()