Home
last modified time | relevance | path

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

/dragonfly/bin/ln/
H A Dln.c219 char bbuf[PATH_MAX]; in linkit() local
242 if (strlcpy(bbuf, source, sizeof(bbuf)) >= sizeof(bbuf) || in linkit()
243 (p = basename(bbuf)) == NULL || in linkit()
268 strlcpy(bbuf, target, sizeof(bbuf)); in linkit()
269 p = dirname(bbuf); in linkit()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_nist.c501 unsigned int bbuf[BN_NIST_192_TOP * in BN_nist_mod_192() local
505 const unsigned int *bp = bbuf; in BN_nist_mod_192()
518 memcpy(bbuf, bnbuf, sizeof(bbuf)); in BN_nist_mod_192()
662 unsigned int bbuf[BN_NIST_224_TOP * in BN_nist_mod_224() local
666 const unsigned int *bp = bbuf; in BN_nist_mod_224()
679 memcpy(bbuf, bnbuf, sizeof(bbuf)); in BN_nist_mod_224()
834 unsigned int bbuf[BN_NIST_256_TOP * in BN_nist_mod_256() local
838 const unsigned int *bp = bbuf; in BN_nist_mod_256()
851 memcpy(bbuf, bnbuf, sizeof(bbuf)); in BN_nist_mod_256()
1070 const unsigned int *bp = bbuf; in BN_nist_mod_384()
[all …]
/dragonfly/stand/boot/pc32/libi386/
H A Dbiosdisk.c1019 caddr_t p, xp, bbuf, breg; in bd_read() local
1039 bbuf = bounce_base; in bd_read()
1044 breg = bbuf; in bd_read()
1050 breg = bbuf = NULL; in bd_read()
1067 xp = (bbuf == NULL ? p : breg); in bd_read()
1143 if (bbuf != NULL) in bd_read()
1159 caddr_t p, xp, bbuf, breg; in bd_write() local
1179 bbuf = bounce_base; in bd_write()
1184 breg = bbuf; in bd_write()
1190 breg = bbuf = NULL; in bd_write()
[all …]
/dragonfly/contrib/cvs-1.12/src/
H A Dadd.c520 char *bbuf; in add() local
523 bbuf = Xasprintf (" on branch `%s'", in add()
527 bbuf = ""; in add()
530 finfo.fullname, bbuf, vers->vn_rcs); in add()
532 free (bbuf); in add()
/dragonfly/usr.sbin/efibootmgr/
H A Defibootmgr.c609 efi_char *bbuf = NULL; in create_loadopt() local
622 utf8_to_ucs2(description, &bbuf, &desc_len); in create_loadopt()
625 free(bbuf); in create_loadopt()
635 memcpy(pos, bbuf, desc_len); /* NB:desc_len includes strailing NUL */ in create_loadopt()
637 free(bbuf); in create_loadopt()