Searched refs:bbuf (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/crypto/openssh/regress/unittests/bitmap/
H A Dtests.c34 u_char bbuf[1024], bnbuf[1024]; local
84 memset(bbuf, 0xfc, sizeof(bbuf));
85 ASSERT_INT_EQ(bitmap_to_string(b, bbuf,
86 sizeof(bbuf)), 0);
87 for (n = len; n < (int)sizeof(bbuf); n++)
88 ASSERT_U8_EQ(bbuf[n], 0xfc);
92 ASSERT_MEM_EQ(bbuf, bnbuf, len);
/freebsd-12-stable/bin/ln/
H A Dln.c232 char bbuf[PATH_MAX]; local
255 if (strlcpy(bbuf, source, sizeof(bbuf)) >= sizeof(bbuf) ||
256 (p = basename(bbuf)) == NULL ||
281 strlcpy(bbuf, target, sizeof(bbuf));
282 p = dirname(bbuf);
/freebsd-12-stable/stand/i386/libi386/
H A Dbiosdisk.c952 caddr_t bbuf = NULL; local
1029 bbuf = bio_alloc(bio_size);
1030 if (bbuf != NULL)
1034 if (bbuf == NULL) {
1040 bbuf = PTOV(V86_IO_BUFFER);
1054 if ((rc = bd_io(dev, bd, dblk, x, bbuf, BD_RD)) != 0) {
1059 bcopy(bbuf + blkoff, buf, bsize);
1066 * bbuf.
1071 rc = bd_io(dev, bd, dblk, x, bbuf, BD_RD);
1075 * sector. Read 1 sector to bbuf
[all...]
/freebsd-12-stable/usr.sbin/bhyve/
H A Dnet_backends.c182 char bbuf[1 << 16]; member in struct:tap_priv
240 memset(priv->bbuf, 0, sizeof(priv->bbuf));
284 ret = read(be->fd, priv->bbuf, sizeof(priv->bbuf));
306 ret = buf_to_iov(priv->bbuf, priv->bbuflen,
/freebsd-12-stable/contrib/sendmail/src/
H A Dmime.c123 char bbuf[128]; local
287 if (sm_strlcpy(bbuf, p, sizeof(bbuf)) >= sizeof(bbuf))
298 bbuf);
316 boundaries[i] = bbuf;
344 (void) sm_strlcpyn(buf, sizeof(buf), 2, "--", bbuf);
361 (void) sm_strlcpyn(buf, sizeof(buf), 3, "--", bbuf, "--");
/freebsd-12-stable/usr.sbin/efibootmgr/
H A Defibootmgr.c580 efi_char *bbuf = NULL; local
593 utf8_to_ucs2(description, &bbuf, &desc_len);
596 free(bbuf);
606 memcpy(pos, bbuf, desc_len); /* NB:desc_len includes strailing NUL */
608 free(bbuf);
/freebsd-12-stable/crypto/openssl/ssl/
H A Dssl_cert.c572 unsigned char *abuf = NULL, *bbuf = NULL; local
579 blen = i2d_X509_NAME((X509_NAME *)b, &bbuf);
586 ret = memcmp(abuf, bbuf, alen);
589 OPENSSL_free(bbuf);

Completed in 126 milliseconds