Searched refs:get_byte (Results 1 – 7 of 7) sorted by relevance
| /src/contrib/ntp/libparse/ |
| H A D | ieee754io.c | 46 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() 211 …val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa … 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() [all …]
|
| /src/stand/libsa/ |
| H A D | gzipfs.c | 93 get_byte(struct z_file *zf, off_t *curoffp) in get_byte() function 123 c = get_byte(zf, &zf->zf_dataoffset); in check_header() 128 method = get_byte(zf, &zf->zf_dataoffset); in check_header() 129 flags = get_byte(zf, &zf->zf_dataoffset); in check_header() 135 for (len = 0; len < 6; len++) (void)get_byte(zf, &zf->zf_dataoffset); in check_header() 138 len = (uInt)get_byte(zf, &zf->zf_dataoffset); in check_header() 139 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8; in check_header() 141 while (len-- != 0 && get_byte(zf, &zf->zf_dataoffset) != -1) ; in check_header() 144 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header() 147 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header() [all …]
|
| H A D | pkgfs.c | 449 get_byte(struct package *pkg, off_t *op) in get_byte() function 685 if (get_byte(pkg, &ofs) != 0x1f || get_byte(pkg, &ofs) != 0x8b) in new_package() 688 if (get_byte(pkg, &ofs) != Z_DEFLATED) in new_package() 691 flags = get_byte(pkg, &ofs); in new_package() 697 if (get_byte(pkg, &ofs) == -1) in new_package() 703 i = (get_byte(pkg, &ofs) & 0xff) | in new_package() 704 ((get_byte(pkg, &ofs) << 8) & 0xff); in new_package() 706 if (get_byte(pkg, &ofs) == -1) in new_package() 714 i = get_byte(pkg, &ofs); in new_package() 723 i = get_byte(pkg, &ofs); in new_package() [all …]
|
| H A D | bzipfs.c | 112 get_byte(struct bz_file *bzf) in get_byte() function 130 c = get_byte(bzf); in check_header() 136 c = get_byte(bzf); in check_header()
|
| /src/contrib/processor-trace/libipt/src/ |
| H A D | pt_ild.c | 60 static inline uint8_t get_byte(const struct pt_ild *ild, uint8_t i) in get_byte() function 286 ild->nominal_opcode = get_byte(ild, length); in imm_dec() 403 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() 918 return prefix_next(ild, length, get_byte(ild, length)); in prefix_rex() 928 ild->nominal_opcode = get_byte(ild, length); in prefix_vex_done() [all …]
|
| /src/usr.bin/localedef/ |
| H A D | scanner.c | 404 get_byte(void) in get_byte() function 476 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) { in get_wide()
|
| /src/contrib/ntp/ |
| H A D | CommitLog-4.1.0 | 5859 * libntp/ieee754io.c (get_byte): controlled debug output
|