Home | History | Annotate | Download | only in nvmectl

Lines Matching defs:bn

43 #include "bn.h"
88 unit_string(BIGNUM *bn, const char *unit, long scale, char *out, size_t len)
110 BN_mul(bn, bn, sn, ctx);
118 humanize_bignum(out+2, 6 + ulen, bn, unit, HN_AUTOSCALE, HN_DECIMAL);
161 BIGNUM *bn = BN_bin2bn(tmp, sizeof(tmp), NULL);
162 if (bn != NULL) {
164 bn, suffix, HN_AUTOSCALE, HN_DECIMAL | HN_NOSPACE);
166 unit_string(bn, unit, scale, buf2, sizeof(buf2));
167 BN_free(bn);