Home
last modified time | relevance | path

Searched refs:startbuf (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/binutils/bfd/
Dihex.c853 bfd_byte startbuf[4]; in ihex_write_object_contents() local
859 startbuf[0] = (bfd_byte)((start & 0xf0000) >> 12) & 0xff; in ihex_write_object_contents()
860 startbuf[1] = 0; in ihex_write_object_contents()
861 startbuf[2] = (bfd_byte)(start >> 8) & 0xff; in ihex_write_object_contents()
862 startbuf[3] = (bfd_byte)start & 0xff; in ihex_write_object_contents()
863 if (! ihex_write_record (abfd, 4, 0, 3, startbuf)) in ihex_write_object_contents()
868 startbuf[0] = (bfd_byte)(start >> 24) & 0xff; in ihex_write_object_contents()
869 startbuf[1] = (bfd_byte)(start >> 16) & 0xff; in ihex_write_object_contents()
870 startbuf[2] = (bfd_byte)(start >> 8) & 0xff; in ihex_write_object_contents()
871 startbuf[3] = (bfd_byte)start & 0xff; in ihex_write_object_contents()
[all …]
/freebsd-12-stable/contrib/tcpdump/
Dprint-smb.c28 const u_char *startbuf = NULL; variable
814 startbuf = buf; in print_smb()
955 startbuf = data; in nbt_tcp_print()
1126 startbuf = data; in nbt_udp137_print()
1264 startbuf = data; in smb_tcp_print()
1297 startbuf = data; in nbt_udp138_print()
1400 startbuf = data; in netbeui_print()
1492 startbuf = data; in ipx_netbios_print()
Dsmbutil.c24 extern const u_char *startbuf;
354 if (((s - startbuf) % 2) != 0) { in unistr()
704 name_type = name_extract(ndo, startbuf, PTR_DIFF(buf, startbuf), in smb_fdata1()
/freebsd-12-stable/contrib/tzcode/zic/
Dzic.c1988 register char * startbuf; local
1996 startbuf = emalloc(max_abbr_len + 1);
2071 *startbuf = '\0';
2075 doabbr(startbuf, zp->z_format,
2078 startbuf, stdoff != 0, startttisstd,
2159 doabbr(startbuf, zp->z_format,
2165 if (*startbuf == '\0' &&
2168 doabbr(startbuf,
2187 if (*startbuf == '\0' &&
2191 (void) strcpy(startbuf, zp->z_format);
[all …]
/freebsd-12-stable/contrib/file/src/
Dcompress.c448 file_pipe2file(struct magic_set *ms, int fd, const void *startbuf, in file_pipe2file() argument
495 if (swrite(tfd, startbuf, nbytes) != CAST(ssize_t, nbytes)) in file_pipe2file()