Home
last modified time | relevance | path

Searched refs:get_byte (Results 1 – 7 of 7) sorted by relevance

/freebsd-14.2/contrib/ntp/libparse/
H A Dieee754io.c46 static unsigned char get_byte (unsigned char *, offsets_t, int *);
124 get_byte( in get_byte() function
206 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */ in fetch_ieee754()
222 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754()
223 mantissa_low |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754()
231 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754()
232 mantissa_high |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754()
234 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24; in fetch_ieee754()
235 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 16; in fetch_ieee754()
236 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754()
[all …]
/freebsd-14.2/stand/libsa/
H A Dgzipfs.c92 get_byte(struct z_file *zf, off_t *curoffp) in get_byte() function
122 c = get_byte(zf, &zf->zf_dataoffset); in check_header()
127 method = get_byte(zf, &zf->zf_dataoffset); in check_header()
128 flags = get_byte(zf, &zf->zf_dataoffset); in check_header()
134 for (len = 0; len < 6; len++) (void)get_byte(zf, &zf->zf_dataoffset); in check_header()
137 len = (uInt)get_byte(zf, &zf->zf_dataoffset); in check_header()
138 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8; in check_header()
140 while (len-- != 0 && get_byte(zf, &zf->zf_dataoffset) != -1) ; in check_header()
143 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header()
146 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header()
[all …]
H A Dpkgfs.c446 get_byte(struct package *pkg, off_t *op) in get_byte() function
679 if (get_byte(pkg, &ofs) != 0x1f || get_byte(pkg, &ofs) != 0x8b) in new_package()
682 if (get_byte(pkg, &ofs) != Z_DEFLATED) in new_package()
685 flags = get_byte(pkg, &ofs); in new_package()
691 if (get_byte(pkg, &ofs) == -1) in new_package()
697 i = (get_byte(pkg, &ofs) & 0xff) | in new_package()
700 if (get_byte(pkg, &ofs) == -1) in new_package()
708 i = get_byte(pkg, &ofs); in new_package()
717 i = get_byte(pkg, &ofs); in new_package()
728 if (get_byte(pkg, &ofs) == -1) in new_package()
[all …]
H A Dbzipfs.c111 get_byte(struct bz_file *bzf) in get_byte() function
129 c = get_byte(bzf); in check_header()
135 c = get_byte(bzf); in check_header()
/freebsd-14.2/contrib/processor-trace/libipt/src/
H A Dpt_ild.c403 sib = get_byte(ild, length); in sib_dec()
435 ild->modrm_byte = get_byte(ild, length); in modrm_dec()
463 ild->nominal_opcode = get_byte(ild, length); in get_next_as_opcode()
476 b = get_byte(ild, length); in opcode_dec()
490 m = get_byte(ild, length); in opcode_dec()
818 byte = get_byte(ild, length); in prefix_decode()
949 p1 = get_byte(ild, length + 1); in prefix_vex_c5()
989 p1 = get_byte(ild, length + 1); in prefix_vex_c4()
1002 p2 = get_byte(ild, length + 2); in prefix_vex_c4()
1039 p1 = get_byte(ild, length + 1); in prefix_evex()
[all …]
/freebsd-14.2/usr.bin/localedef/
H A Dscanner.c404 get_byte(void) in get_byte() function
476 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) { in get_wide()
/freebsd-14.2/contrib/ntp/
H A DCommitLog-4.1.05859 * libntp/ieee754io.c (get_byte): controlled debug output