Lines Matching defs:bytes
27 int b, ret = 0, bit, bytes, mask;
39 bytes = (bits + 7) / 8;
43 buf = OPENSSL_malloc(bytes);
50 b = flag == NORMAL ? RAND_bytes_ex(libctx, buf, bytes, strength)
51 : RAND_priv_bytes_ex(libctx, buf, bytes, strength);
62 for (i = 0; i < bytes; i++) {
88 buf[bytes - 1] |= 1;
89 if (!BN_bin2bn(buf, bytes, rnd))
93 OPENSSL_clear_free(buf, bytes);
263 /* We generate |range|+8 bytes of random output. */