Home
last modified time | relevance | path

Searched refs:bufpp (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/ntp/libparse/
H A Dbinio.c41 unsigned char **bufpp in get_lsb_short() argument
46 retval = *((*bufpp)++); in get_lsb_short()
47 retval |= *((*bufpp)++) << 8; in get_lsb_short()
54 unsigned char **bufpp, in put_lsb_short() argument
58 *((*bufpp)++) = (unsigned char) (val & 0xFF); in put_lsb_short()
59 *((*bufpp)++) = (unsigned char) ((val >> 8) & 0xFF); in put_lsb_short()
64 unsigned char **bufpp in get_lsb_long() argument
69 retval = *((*bufpp)++); in get_lsb_long()
70 retval |= *((*bufpp)++) << 8; in get_lsb_long()
71 retval |= *((*bufpp)++) << 16; in get_lsb_long()
[all …]
H A Ddata_mbg.c63 unsigned char **bufpp, in put_mbg_header() argument
67 put_lsb_short(bufpp, headerp->cmd); in put_mbg_header()
68 put_lsb_short(bufpp, headerp->len); in put_mbg_header()
69 put_lsb_short(bufpp, headerp->data_csum); in put_mbg_header()
70 put_lsb_short(bufpp, headerp->hdr_csum); in put_mbg_header()
75 unsigned char **bufpp, in get_mbg_sw_rev() argument
79 sw_revp->code = get_lsb_uint16(bufpp); in get_mbg_sw_rev()
80 memcpy(sw_revp->name, *bufpp, sizeof(sw_revp->name)); in get_mbg_sw_rev()
81 *bufpp += sizeof(sw_revp->name); in get_mbg_sw_rev()
86 unsigned char **bufpp, in get_mbg_ascii_msg() argument
[all …]
H A Dclk_meinberg.c175 unsigned char **bufpp, in get_mbg_header() argument
179 headerp->cmd = (GPS_CMD) get_lsb_short(bufpp); in get_mbg_header()
180 headerp->len = get_lsb_uint16(bufpp); in get_mbg_header()
181 headerp->data_csum = (CSUM) get_lsb_short(bufpp); in get_mbg_header()
182 headerp->hdr_csum = (CSUM) get_lsb_short(bufpp); in get_mbg_header()
H A Dieee754io.c400 * using it, be sure it does what you intend. I notice the bufpp arg
403 * be composed into an ieee754-format float and stored at *bufpp or in put_ieee754()
404 * possibly **bufpp. Brought to my attention by this: in put_ieee754()
415 unsigned char **bufpp, in put_ieee754()
402 put_ieee754(unsigned char ** bufpp,int size,l_fp * lfpp,offsets_t offsets) put_ieee754() argument
/freebsd/contrib/ntp/include/
H A Dieee754io.h56 int put_ieee754 (unsigned char **bufpp, int size, l_fp *lfpp, offsets_t offsets);
/freebsd/sys/fs/nfsserver/
H A Dnfs_nfsdport.c839 nfsvno_setpathbuf(struct nameidata *ndp, char **bufpp, u_long **hashpp) in nfsvno_setpathbuf() argument
847 *bufpp = cnp->cn_pnbuf; in nfsvno_setpathbuf()