Searched defs:skip (Results 1 - 3 of 3) sorted by relevance

/lib/
H A Ddecompress_unlzo.c54 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len) argument
75 /* get version (2bytes), skip library version (2),
96 /* skip mode and mtime_low */
99 parse += 4; /* skip mtime_high */
102 /* don't care about the file name, and skip checksum */
107 *skip = parse - input;
118 long skip = 0; local
168 if (!parse_header(in_buf, &skip, in_len)) {
172 in_buf += skip;
173 in_len -= skip;
[all...]
H A Dscatterlist.c614 * @skip: Number of bytes to skip before copying
622 void *buf, size_t buflen, off_t skip,
637 if (!sg_miter_skip(&miter, skip))
700 * @skip: Number of bytes to skip before copying
707 void *buf, size_t buflen, off_t skip)
709 return sg_copy_buffer(sgl, nents, buf, buflen, skip, false);
718 * @skip: Number of bytes to skip befor
621 sg_copy_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, size_t buflen, off_t skip, bool to_buffer) argument
706 sg_pcopy_from_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, size_t buflen, off_t skip) argument
724 sg_pcopy_to_buffer(struct scatterlist *sgl, unsigned int nents, void *buf, size_t buflen, off_t skip) argument
[all...]
H A Ddynamic_debug.c71 int skip = strlen(__FILE__) - strlen("lib/dynamic_debug.c"); local
73 if (strncmp(path, __FILE__, skip))
74 skip = 0; /* prefix mismatch, don't skip */
76 return path + skip;
225 break; /* token starts comment, skip rest of line */

Completed in 124 milliseconds