Lines Matching defs:ibuf
49 static void z_incomp(void *state, unsigned char *ibuf, int icnt);
50 static int z_decompress(void *state, unsigned char *ibuf,
393 * @ibuf: pointer to input (compressed) packet data
411 static int z_decompress(void *arg, unsigned char *ibuf, int isize,
427 seq = get_unaligned_be16(ibuf + PPP_HDRLEN);
440 obuf[0] = PPP_ADDRESS(ibuf);
441 obuf[1] = PPP_CONTROL(ibuf);
449 state->strm.next_in = ibuf + PPP_HDRLEN + DEFLATE_OVHD;
514 * @ibuf: pointer to input packet data
517 static void z_incomp(void *arg, unsigned char *ibuf, int icnt)
525 proto = PPP_PROTOCOL(ibuf);
535 state->strm.next_in = ibuf + 3;