| /freebsd-12-stable/contrib/ntp/libparse/ |
| D | ieee754io.c | 46 static unsigned char get_byte (unsigned char *, offsets_t, int *); 126 get_byte( in get_byte() function 208 val = get_byte(bufp, offsets, &fieldindex); /* fetch sign byte & first part of characteristic */ in fetch_ieee754() 213 …val = get_byte(bufp, offsets, &fieldindex); /* fetch rest of characteristic and start of mantissa … in fetch_ieee754() 224 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754() 225 mantissa_low |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754() 233 mantissa_high |= (u_long)get_byte(bufp, offsets, &fieldindex) << 8; in fetch_ieee754() 234 mantissa_high |= get_byte(bufp, offsets, &fieldindex); in fetch_ieee754() 236 mantissa_low = (u_long)get_byte(bufp, offsets, &fieldindex) << 24; in fetch_ieee754() 237 mantissa_low |= (u_long)get_byte(bufp, offsets, &fieldindex) << 16; in fetch_ieee754() [all …]
|
| /freebsd-12-stable/stand/libsa/ |
| D | gzipfs.c | 95 get_byte(struct z_file *zf, off_t *curoffp) in get_byte() function 125 c = get_byte(zf, &zf->zf_dataoffset); in check_header() 130 method = get_byte(zf, &zf->zf_dataoffset); in check_header() 131 flags = get_byte(zf, &zf->zf_dataoffset); in check_header() 137 for (len = 0; len < 6; len++) (void)get_byte(zf, &zf->zf_dataoffset); in check_header() 140 len = (uInt)get_byte(zf, &zf->zf_dataoffset); in check_header() 141 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8; in check_header() 143 while (len-- != 0 && get_byte(zf, &zf->zf_dataoffset) != -1) ; in check_header() 146 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header() 149 while ((c = get_byte(zf, &zf->zf_dataoffset)) != 0 && c != -1) ; in check_header() [all …]
|
| D | pkgfs.c | 449 get_byte(struct package *pkg, off_t *op) in get_byte() function 682 if (get_byte(pkg, &ofs) != 0x1f || get_byte(pkg, &ofs) != 0x8b) in new_package() 685 if (get_byte(pkg, &ofs) != Z_DEFLATED) in new_package() 688 flags = get_byte(pkg, &ofs); in new_package() 694 if (get_byte(pkg, &ofs) == -1) in new_package() 700 i = (get_byte(pkg, &ofs) & 0xff) | in new_package() 701 ((get_byte(pkg, &ofs) << 8) & 0xff); in new_package() 703 if (get_byte(pkg, &ofs) == -1) in new_package() 711 i = get_byte(pkg, &ofs); in new_package() 720 i = get_byte(pkg, &ofs); in new_package() [all …]
|
| D | bzipfs.c | 114 get_byte(struct bz_file *bzf) in get_byte() function 132 c = get_byte(bzf); in check_header() 138 c = get_byte(bzf); in check_header()
|
| /freebsd-12-stable/contrib/processor-trace/libipt/src/ |
| D | pt_ild.c | 99 static inline uint8_t get_byte(const struct pt_ild *ild, uint8_t i) in get_byte() function 325 ild->nominal_opcode = get_byte(ild, length); in imm_dec() 442 sib = get_byte(ild, length); in sib_dec() 474 ild->modrm_byte = get_byte(ild, length); in modrm_dec() 502 ild->nominal_opcode = get_byte(ild, length); in get_next_as_opcode() 515 b = get_byte(ild, length); in opcode_dec() 529 m = get_byte(ild, length); in opcode_dec() 572 byte = get_byte(ild, length); in prefix_decode() 672 return prefix_next(ild, length, get_byte(ild, length)); in prefix_rex() 682 ild->nominal_opcode = get_byte(ild, length); in prefix_vex_done() [all …]
|
| /freebsd-12-stable/contrib/gdb/gdb/ |
| D | remote-rdp.c | 184 get_byte (void) in get_byte() function 212 c = get_byte (); in get_word() 424 val = get_byte (); in send_rdp() 434 *pstat = get_byte (); in send_rdp() 443 switch (get_byte ()) in send_rdp() 475 pc[i] = get_byte (); in send_rdp() 495 *pi = get_byte (); in send_rdp() 946 int type = get_byte (); in handle_swi() 952 args[count].n = get_byte (); in handle_swi() 963 len = get_byte (); in handle_swi() [all …]
|
| /freebsd-12-stable/usr.bin/localedef/ |
| D | scanner.c | 406 get_byte(void) in get_byte() function 478 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) { in get_wide()
|
| /freebsd-12-stable/contrib/ntp/ |
| D | CommitLog-4.1.0 | 5859 * libntp/ieee754io.c (get_byte): controlled debug output
|