Lines Matching refs:buff
535 do_encode(u_char *buff, size_t vec_max, size_t *used, in do_encode() argument
589 buff[ind++] = val; in do_encode()
597 buff[ind++] = val; in do_encode()
605 buff[ind++] = value; in do_encode()
610 buff[ind++] = value >> 8; in do_encode()
611 buff[ind++] = value; in do_encode()
617 buff[ind++] = value >> 16; in do_encode()
618 buff[ind++] = value >> 8; in do_encode()
619 buff[ind++] = value; in do_encode()
625 buff[ind++] = value >> 24; in do_encode()
626 buff[ind++] = value >> 16; in do_encode()
627 buff[ind++] = value >> 8; in do_encode()
628 buff[ind++] = value; in do_encode()
642 buff[ind++] = val; in do_encode()
685 buff_decode(u_int8_t *buff, size_t len, const char *fmt, ...) in buff_decode() argument
691 return(do_buff_decode(buff, len, 0, 0, fmt, ap)); in buff_decode()
695 buff_decode_visit(u_int8_t *buff, size_t len, const char *fmt, in buff_decode_visit() argument
710 return(do_buff_decode(buff, len, arg_put, puthook, fmt, ap)); in buff_decode_visit()
807 buff_encode_visit(u_int8_t *buff, size_t len, const char *fmt, in buff_encode_visit() argument
821 return(do_encode(buff, len, 0, arg_get, gethook, fmt, ap)); in buff_encode_visit()