Searched refs:dump_width (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Db_dump.c83 int dump_width; local
94 dump_width = DUMP_WIDTH_LESS_INDENT(indent);
95 rows = (len / dump_width);
96 if ((rows * dump_width) < len)
100 BIO_snprintf(tmp, sizeof(tmp), "%04x - ", i * dump_width);
102 for (j = 0; j < dump_width; j++) {
103 if (((i * dump_width) + j) >= len) {
106 ch = ((unsigned char)*(s + i * dump_width + j)) & 0xff;
113 for (j = 0; j < dump_width; j++) {
114 if (((i * dump_width)
[all...]

Completed in 63 milliseconds