Lines Matching refs:inbuf
501 u_char *inbuf, *outbuf; in ng_mppc_compress() local
510 inbuf = mtod(m, u_char *); in ng_mppc_compress()
513 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_compress()
514 if (inbuf == NULL) in ng_mppc_compress()
516 m_copydata(m, 0, inlen, (caddr_t)inbuf); in ng_mppc_compress()
524 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
533 source = inbuf; in ng_mppc_compress()
565 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_compress()
761 u_char *inbuf, *outbuf; in ng_mppc_decompress() local
770 inbuf = mtod(m, u_char *); in ng_mppc_decompress()
773 inbuf = malloc(inlen, M_NETGRAPH_MPPC, M_NOWAIT); in ng_mppc_decompress()
774 if (inbuf == NULL) { in ng_mppc_decompress()
778 m_copydata(m, 0, inlen, (caddr_t)inbuf); in ng_mppc_decompress()
788 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
794 source = inbuf; in ng_mppc_decompress()
812 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()
819 free(inbuf, M_NETGRAPH_MPPC); in ng_mppc_decompress()