Lines Matching refs:i
135 int i; in OSSL_COMP_CERT_free() local
140 CRYPTO_DOWN_REF(&cc->references, &i); in OSSL_COMP_CERT_free()
141 REF_PRINT_COUNT("OSSL_COMP_CERT", i, cc); in OSSL_COMP_CERT_free()
142 if (i > 0) in OSSL_COMP_CERT_free()
144 REF_ASSERT_ISNT(i < 0); in OSSL_COMP_CERT_free()
152 int i; in OSSL_COMP_CERT_up_ref() local
154 if (CRYPTO_UP_REF(&cc->references, &i) <= 0) in OSSL_COMP_CERT_up_ref()
157 REF_PRINT_COUNT("OSSL_COMP_CERT", i, cc); in OSSL_COMP_CERT_up_ref()
158 REF_ASSERT_ISNT(i < 2); in OSSL_COMP_CERT_up_ref()
159 return ((i > 1) ? 1 : 0); in OSSL_COMP_CERT_up_ref()
165 size_t i; in ssl_set_cert_comp_pref() local
181 for (i = 0; i < len; i++) { in ssl_set_cert_comp_pref()
182 if (algs[i] != 0 && ossl_comp_has_alg(algs[i])) { in ssl_set_cert_comp_pref()
184 if (already_set[algs[i]]) in ssl_set_cert_comp_pref()
186 tmp_prefs[j++] = algs[i]; in ssl_set_cert_comp_pref()
187 already_set[algs[i]] = 1; in ssl_set_cert_comp_pref()
261 int i; in ssl_compress_certs() local
272 for (i = 0; i < TLSEXT_comp_cert_limit; i++) { in ssl_compress_certs()
277 alg = sc->cert_comp_prefs[i]; in ssl_compress_certs()