Lines Matching defs:len
58 size_t len = strlen(name) + strlen(arg) + 2;
66 res = app_malloc(len, "algorithm name");
67 BIO_snprintf(res, len, "%s:%s", name, arg);
83 size_t len;
201 if (!EVP_MAC_final(ctx, NULL, &len, 0)) {
205 if (len > BUFSIZE) {
206 BIO_printf(bio_err, "output len is too large\n");
210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) {
216 BIO_write(out, buf, len);
218 for (i = 0; i < (int)len; ++i)