Home
last modified time | relevance | path

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

/NextBSD/contrib/ntp/libparse/
HDieee754io.c46 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 …]
/NextBSD/lib/libstand/
HDgzipfs.c95 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 …]
HDpkgfs.c420 get_byte(struct package *pkg, off_t *op) in get_byte() function
634 if (get_byte(pkg, &ofs) != 0x1f || get_byte(pkg, &ofs) != 0x8b) in new_package()
637 if (get_byte(pkg, &ofs) != Z_DEFLATED) in new_package()
640 flags = get_byte(pkg, &ofs); in new_package()
646 if (get_byte(pkg, &ofs) == -1) in new_package()
652 i = (get_byte(pkg, &ofs) & 0xff) | in new_package()
653 ((get_byte(pkg, &ofs) << 8) & 0xff); in new_package()
655 if (get_byte(pkg, &ofs) == -1) in new_package()
663 i = get_byte(pkg, &ofs); in new_package()
672 i = get_byte(pkg, &ofs); in new_package()
[all …]
HDbzipfs.c114 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()
/NextBSD/contrib/gdb/gdb/
HDremote-rdp.c184 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 …]
/NextBSD/contrib/groff/src/utils/hpftodit/
HDhpftodit.cpp145 byte get_byte();
441 File::get_byte() in get_byte() function in File
487 if (f.get_byte() != 'I' || f.get_byte() != 'I') in read_tags()
566 *p++ = f.get_byte(); in output_font_name()
610 unsigned char c = f.get_byte(); in read_symbol_sets()
742 unsigned char c = f.get_byte(); in read_and_output_pcltypeface()
1191 printf("%c", f.get_byte()); in dump_ascii()
1211 unsigned char c = f.get_byte(); in dump_symbol_sets()
/NextBSD/usr.bin/localedef/
HDscanner.c406 get_byte(void) in get_byte() function
478 if ((mbi == mb_cur_max) || ((c = get_byte()) == EOF)) { in get_wide()
/NextBSD/contrib/ntp/
HDCommitLog-4.1.05859 * libntp/ieee754io.c (get_byte): controlled debug output