Lines Matching defs:input
41 STATIC inline long INIT parse_header(u8 *input, long *skip, long in_len)
44 u8 *parse = input;
45 u8 *end = input + in_len;
50 * Check that there's enough input to possibly have a valid header.
77 * because the next input buffer check is after reading the
94 *skip = parse - input;
98 STATIC int INIT unlzo(u8 *input, long in_len,
124 if (input && fill) {
125 error("Both input pointer and fill function provided, don't know what to do");
127 } else if (input) {
128 in_buf = input;
130 error("NULL input pointer and missing fill function");
135 error("Could not allocate input buffer");
229 /* When the input data is not compressed at all,
268 if (!input)