Searched refs:bn (Results 176 - 200 of 293) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/binutils/binutils/
H A Dobjdump.c499 const char *bn;
518 bn = bfd_asymbol_name (b);
520 bnl = strlen (bn);
526 bf = (strstr (bn, "gnu_compiled") != NULL
527 || strstr (bn, "gcc2_compiled") != NULL);
546 bf = file_symbol (b, bn, bnl);
590 if (an[0] == '.' && bn[0] != '.')
592 if (an[0] != '.' && bn[0] == '.')
597 return strcmp (an, bn);
495 const char *bn; local
H A Ddlltool.c2934 const char *bn = bp->name; local
2939 bn = (bn[0] == '@') ? bn + 1 : bn;
2942 return (strcmp (an, bn));
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dpkinit.c104 BN_to_integer(krb5_context context, BIGNUM *bn, heim_integer *integer) argument
106 integer->length = BN_num_bytes(bn);
112 BN_bn2bin(bn, integer->data);
113 integer->negative = BN_is_negative(bn);
120 BIGNUM *bn; local
122 bn = BN_bin2bn((const unsigned char *)f->data, f->length, NULL);
123 if (bn == NULL) {
128 BN_set_negative(bn, f->negative);
129 return bn;
/freebsd-11-stable/sbin/fsck_ffs/
H A Dsuj.c1518 ufs2_daddr_t bn; local
1591 bn = DIP(ip, di_db[visitlbn]);
1592 if (bn == 0)
1598 bn += numfrags(fs, newspace);
1600 blk_free(bn, 0, frags);
1616 bn = ino_blkatoff(ip, ino, visitlbn, &frags);
1617 if (bn == 0)
1621 buf = dblk_read(bn, clrsize);
1625 dblk_dirty(bn);
/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clbio.c73 static struct buf *nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size,
1282 nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size, struct thread *td) argument
1295 bp = getblk(vp, bn, size, PCATCH, 0, 0);
1300 bp = getblk(vp, bn, size, 0, 2 * hz, 0);
1303 bp = getblk(vp, bn, size, 0, 0, 0);
1307 bp->b_blkno = bn * (vp->v_bufobj.bo_bsize / DEV_BSIZE);
/freebsd-11-stable/crypto/openssl/crypto/dh/
H A Ddh_rfc5114.c62 #include <openssl/bn.h>
H A Ddh.h73 # include <openssl/bn.h>
/freebsd-11-stable/crypto/openssl/crypto/ecdh/
H A DMakefile117 ech_ossl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
/freebsd-11-stable/crypto/openssl/crypto/objects/
H A DMakefile101 obj_dat.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
/freebsd-11-stable/crypto/openssl/crypto/
H A Dsparcv9cap.c8 #include <openssl/bn.h>
/freebsd-11-stable/usr.sbin/pc-sysinstall/backend/
H A Dfunctions-localize.sh264 bn)
265 COUNTRY="bn"
266 SETLANG="bn"
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Deck_prn.c68 #include <openssl/bn.h>
/freebsd-11-stable/crypto/openssl/apps/
H A Drsa.c72 # include <openssl/bn.h>
H A Ddhparam.c121 # include <openssl/bn.h>
H A Ddsaparam.c77 # include <openssl/bn.h>
H A Dca.c69 #include <openssl/bn.h>
2359 BIGNUM *bn = NULL; local
2365 bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(x509), NULL);
2366 if (!bn)
2368 if (BN_is_zero(bn))
2371 row[DB_serial] = BN_bn2hex(bn);
2372 BN_free(bn);
H A Ds_server.c179 #include <openssl/bn.h>
3372 BIGNUM *bn = NULL; local
3375 if (!rsa_tmp && ((bn = BN_new()) == NULL))
3377 if (!rsa_tmp && bn) {
3383 if (!BN_set_word(bn, RSA_F4) || ((rsa_tmp = RSA_new()) == NULL) ||
3384 !RSA_generate_key_ex(rsa_tmp, keylength, bn, NULL)) {
3393 BN_free(bn);
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_object.c65 #include <openssl/bn.h>
H A DMakefile165 a_enum.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
189 a_int.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
205 a_object.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
238 a_sign.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
306 a_verify.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
422 d2i_pr.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
435 d2i_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
488 i2d_pu.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
580 t_crl.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
594 t_pkey.o: ../../include/openssl/bn
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dp_lib.c61 #include <openssl/bn.h>
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_div.c1 /* crypto/bn/bn_div.c */
60 #include <openssl/bn.h>
/freebsd-11-stable/contrib/unbound/sldns/
H A Dkeyraw.c27 #include <openssl/bn.h>
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dks_p11.c573 BIGNUM *bn; local
593 bn = BN_bin2bn(query.pValue, query.ulValueLen, NULL);
596 return bn;
/freebsd-11-stable/crypto/openssl/crypto/ts/
H A DMakefile139 ts_lib.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h
154 ts_req_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
188 ts_rsp_print.o: ../../include/openssl/bio.h ../../include/openssl/bn.h
/freebsd-11-stable/sys/dev/malo/
H A Dif_malo.c744 struct malo_txbuf *bf, *bn; local
755 bn = STAILQ_NEXT(bf, bf_list);
756 if (bn == NULL)
757 bn = STAILQ_FIRST(&txq->free);
758 ds->physnext = htole32(bn->bf_daddr);

Completed in 318 milliseconds

1234567891011>>