/openssl-master/test/testutil/ |
A D | format_output.c | 45 const size_t width = in test_fail_string_common() local 74 b1[n1 = l1 > width ? width : l1] = 0; in test_fail_string_common() 79 b2[n2 = l2 > width ? width : l2] = 0; in test_fail_string_common() 117 cnt += width; in test_fail_string_common() 152 size_t width) in hex_convert_memory() argument 161 if (i % width == width - 1 && i != n - 1) in hex_convert_memory()
|
/openssl-master/apps/lib/ |
A D | columns.c | 24 dc->width = maxlen + 2; in calculate_columns() 25 dc->columns = (80 - 1) / dc->width; in calculate_columns()
|
A D | opt.c | 1057 static void opt_print(const OPTIONS *o, int doingparams, int width) in opt_print() argument 1084 start[width] = '\0'; in opt_print() 1108 start[width] = '\0'; in opt_print() 1115 int i, sawparams = 0, width = 5; in opt_help() local 1129 if (i < MAX_OPT_HELP_WIDTH && i > width) in opt_help() 1130 width = i; in opt_help() 1144 opt_print(o, sawparams, width); in opt_help()
|
A D | apps.c | 3083 int width = 0; in wait_for_async() local 3101 if (width <= (int)fds[i]) in wait_for_async() 3102 width = (int)fds[i] + 1; in wait_for_async() 3105 select(width, (void *)&asyncfds, NULL, NULL, NULL); in wait_for_async()
|
/openssl-master/test/ |
A D | bioprinttest.c | 187 static int dofptest(int test, int sub, double val, const char *width, int prec) in dofptest() argument 199 BIO_snprintf(format, sizeof(format), "%%%s.%d%s", width, prec, in dofptest() 202 BIO_snprintf(format, sizeof(format), "%%%s%s", width, fspec); in dofptest()
|
A D | params_api_test.c | 70 size_t width) in test_param_type_extra() argument 102 sz = sizeof(i32) < width ? sizeof(i32) : width; in test_param_type_extra() 107 sz = sizeof(i64) < width ? sizeof(i64) : width; in test_param_type_extra() 112 sz = sizeof(s) < width ? sizeof(s) : width; in test_param_type_extra() 118 if (sizeof(size_t) > width) { in test_param_type_extra()
|
/openssl-master/crypto/bio/ |
A D | bio_dump.c | 129 int BIO_hex_string(BIO *out, int indent, int width, const void *data, in BIO_hex_string() argument 144 j = (j + 1) % width; in BIO_hex_string()
|
/openssl-master/apps/include/ |
A D | function.h | 39 int width; member
|
/openssl-master/crypto/bn/ |
A D | bn_exp.c | 500 int width = 1 << window; in MOD_EXP_CTIME_COPY_TO_PREBUF() local 506 for (i = 0, j = idx; i < top; i++, j += width) { in MOD_EXP_CTIME_COPY_TO_PREBUF() 518 int width = 1 << window; in MOD_EXP_CTIME_COPY_FROM_PREBUF() local 533 for (i = 0; i < top; i++, table += width) { in MOD_EXP_CTIME_COPY_FROM_PREBUF() 536 for (j = 0; j < width; j++) { in MOD_EXP_CTIME_COPY_FROM_PREBUF() 555 for (i = 0; i < top; i++, table += width) { in MOD_EXP_CTIME_COPY_FROM_PREBUF()
|
/openssl-master/apps/ |
A D | s_client.c | 827 int ret = 1, in_init = 1, i, nbio_test = 0, sock = -1, k, width, state = 0; in s_client_main() local 2122 width = fileno_stdin() + 1; in s_client_main() 2124 width = SSL_get_fd(con) + 1; in s_client_main() 2326 width = SSL_get_fd(con) + 1; in s_client_main() 2345 && select(width, (void *)&readfds, NULL, NULL, in s_client_main() 2770 i = select(width, (void *)&readfds, (void *)&writefds, in s_client_main() 2775 i = select(width, (void *)&readfds, (void *)&writefds, in s_client_main() 2779 i = select(width, (void *)&readfds, (void *)&writefds, in s_client_main()
|
A D | s_server.c | 2308 int ret = 1, width; in sv_body() local 2484 width = fileno_stdin() + 1; in sv_body() 2486 width = s + 1; in sv_body() 2517 i = select(width, (void *)&readfds, NULL, NULL, &timeout); in sv_body() 2528 i = select(width, (void *)&readfds, NULL, NULL, timeoutp); in sv_body() 2997 int width; in www_body() local 3002 width = s + 1; in www_body() 3121 i = select(width, (void *)&readfds, NULL, NULL, NULL); in www_body()
|
A D | openssl.c | 389 BIO_printf(bio_err, "%-*s", dc.width, fp->name); in help_main()
|
A D | list.c | 1078 BIO_printf(bio_out, "%-*s", dc.width, fp->name); in list_type()
|
/openssl-master/include/openssl/ |
A D | bio.h.in | 699 int BIO_hex_string(BIO *out, int indent, int width, const void *data,
|