Lines Matching refs:outbuf
502 u_char *inbuf, *outbuf; in ng_mppc_compress() local
522 outbuf = malloc(outlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
523 if (outbuf == NULL) { in ng_mppc_compress()
536 dest = outbuf; in ng_mppc_compress()
555 m_copyback(m, 0, outlen, (caddr_t)outbuf); in ng_mppc_compress()
567 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
762 u_char *inbuf, *outbuf; in ng_mppc_decompress() local
784 outbuf = malloc(MPPC_DECOMP_BUFSIZE + MPPC_DECOMP_SAFETY, in ng_mppc_decompress()
786 if (outbuf == NULL) { in ng_mppc_decompress()
797 dest = outbuf; in ng_mppc_decompress()
814 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
823 m_copyback(m, 0, outlen, (caddr_t)outbuf); in ng_mppc_decompress()
829 free(outbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()