Lines Matching refs:len
1395 int len, unsigned char *buffer)
1397 BIO_printf(out, " static unsigned char %s_%d[] = {", var, len);
1415 void print_array(BIO *out, const char *title, int len, const unsigned char *d)
1419 BIO_printf(out, "unsigned char %s[%d] = {", title, len);
1420 for (i = 0; i < len; i++) {
1423 if (i < len - 1)
2070 int len, ret;
2078 len = maxlen;
2080 len = 1024;
2081 len = BIO_read(in, tbuf, len);
2082 if (len < 0) {
2086 if (len == 0)
2088 if (BIO_write(mem, tbuf, len) != len) {
2093 maxlen -= len;
2168 size_t len;
2173 len = strlen(in);
2174 if (len == 0 || len >= 65535)
2177 out = app_malloc(len + 1, "NPN buffer");
2178 for (i = 0; i <= len; ++i) {
2179 if (i == len || in[i] == ',') {
2205 if (len <= skipped) {
2210 *outlen = len + 1 - skipped;