Searched refs:get_byte (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/stand/libsa/
H A Dgzipfs.c90 * Adapted from get_byte/check_header in libz
95 get_byte(struct z_file *zf, off_t *curoffp) function
125 c = get_byte(zf, &zf->zf_dataoffset);
130 method = get_byte(zf, &zf->zf_dataoffset);
131 flags = get_byte(zf, &zf->zf_dataoffset);
137 for (len = 0; len < 6; len++) (void)get_byte(zf, &zf->zf_dataoffset);
140 len = (uInt)get_byte(zf, &zf->zf_dataoffset);
141 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8;
143 while (len-- != 0 && get_byte(zf, &zf->zf_dataoffset) != -1) ;
146 while ((c = get_byte(z
[all...]
H A Dpkgfs.c449 get_byte(struct package *pkg, off_t *op) function
682 if (get_byte(pkg, &ofs) != 0x1f || get_byte(pkg, &ofs) != 0x8b)
685 if (get_byte(pkg, &ofs) != Z_DEFLATED)
688 flags = get_byte(pkg, &ofs);
694 if (get_byte(pkg, &ofs) == -1)
700 i = (get_byte(pkg, &ofs) & 0xff) |
701 ((get_byte(pkg, &ofs) << 8) & 0xff);
703 if (get_byte(pkg, &ofs) == -1)
711 i = get_byte(pk
[all...]
H A Dbzipfs.c109 * Adapted from get_byte/check_header in libz
114 get_byte(struct bz_file *bzf) function
132 c = get_byte(bzf);
138 c = get_byte(bzf);
/freebsd-13-stable/contrib/ntp/libparse/
H A Dieee754io.c46 static unsigned char get_byte (unsigned char *, offsets_t, int *);
126 get_byte( function
208 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */
213 val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa */
224 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
225 mantissa_low |= get_byte(bufp, offsets, &fieldindex);
233 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8;
234 mantissa_high |= get_byte(bufp, offsets, &fieldindex);
236 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24;
237 mantissa_low |= (u_long)get_byte(buf
[all...]
/freebsd-13-stable/contrib/processor-trace/libipt/src/
H A Dpt_ild.c60 static inline uint8_t get_byte(const struct pt_ild *ild, uint8_t i) function
286 ild->nominal_opcode = get_byte(ild, length);
403 sib = get_byte(ild, length);
435 ild->modrm_byte = get_byte(ild, length);
463 ild->nominal_opcode = get_byte(ild, length);
476 b = get_byte(ild, length);
490 m = get_byte(ild, length);
818 byte = get_byte(ild, length);
918 return prefix_next(ild, length, get_byte(ild, length));
928 ild->nominal_opcode = get_byte(il
[all...]
/freebsd-13-stable/usr.bin/localedef/
H A Dscanner.c406 get_byte(void) function
478 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) {

Completed in 78 milliseconds