Lines Matching refs:skip
44 static unsigned long skip;
66 /* skip this entire block */
67 if (end <= skip) {
72 /* skip some data at the start, but keep the rest of the block */
73 if (decompressed_bytes < skip && end > skip) {
74 offset = skip - decompressed_bytes;
81 out = &output_buffer[decompressed_bytes - skip];
105 * @skip number of output bytes to ignore
113 * The skip functionality is mainly there so the program and discover
131 skip = _skip;
143 return decompressed_bytes - skip;