Lines Matching refs:bytes
168 * Constants to define the number of bytes to display per line and the number
207 static int convert_bn_memory(const unsigned char *in, size_t bytes,
210 int n = bytes * 2, i;
215 hex_convert_memory(in, bytes, out, BN_OUTPUT_SIZE);
225 * in[bytes] is defined because we're converting a non-zero
228 if ((in[bytes] & 0xf0) != 0 && BN_is_negative(bn)) {
272 const size_t bytes = bn_bytes;
301 len = ((l1 > l2 ? l1 : l2) + bytes - 1) / bytes * bytes;
319 cnt = 8 * (len - bytes);
320 n1 = convert_bn_memory(m1, bytes, b1, &lz1, bn1);
321 n2 = convert_bn_memory(m2, bytes, b2, &lz2, bn2);
351 m1 += bytes;
353 m2 += bytes;
354 len -= bytes;
431 const size_t bytes = (MAX_STRING_WIDTH - 9) / 17 * 8;
459 n1 = l1 > bytes ? bytes : l1;
463 n2 = l2 > bytes ? bytes : l2;
508 cnt += bytes;