Searched refs:vp (Results 1 – 7 of 7) sorted by relevance
/openssl-master/test/testutil/ |
A D | apps_shims.c | 18 void *vp; in app_malloc() local 25 if (!TEST_ptr(vp = OPENSSL_malloc(sz))) { in app_malloc() 29 return vp; in app_malloc()
|
/openssl-master/apps/lib/ |
A D | apps_ui.c | 154 void *vp = OPENSSL_malloc(sz); in ui_malloc() local 156 if (vp == NULL) { in ui_malloc() 161 return vp; in ui_malloc()
|
A D | apps.c | 623 void *vp = OPENSSL_malloc(sz); in app_malloc() local 625 if (vp == NULL) in app_malloc() 628 return vp; in app_malloc()
|
/openssl-master/crypto/ocsp/ |
A D | ocsp_vfy.c | 35 X509_VERIFY_PARAM *vp; in ocsp_verify_signer() local 46 if ((vp = X509_STORE_CTX_get0_param(ctx)) == NULL) in ocsp_verify_signer() 49 X509_VERIFY_PARAM_set_flags(vp, X509_V_FLAG_PARTIAL_CHAIN); in ocsp_verify_signer() 56 X509_VERIFY_PARAM_clear_flags(vp, X509_V_FLAG_CRL_CHECK); in ocsp_verify_signer()
|
/openssl-master/test/ |
A D | params_api_test.c | 477 void *vp, *vpn = NULL, *vp2; in test_param_construct() local 505 params[n++] = OSSL_PARAM_construct_octet_ptr("octptr", &vp, 0); in test_param_construct() 596 vp = buf2; in test_param_construct() 597 if (!TEST_true(OSSL_PARAM_get_octet_string(cp, &vp, sizeof(buf2), &s)) in test_param_construct() 599 || !TEST_mem_eq(vp, sizeof("abcdefghi"), in test_param_construct() 603 vp = &l; in test_param_construct() 607 || (tstid <= 1 && !TEST_ptr_eq(vp, &ul))) in test_param_construct() 613 || (tstid <= 1 && !TEST_ptr_eq(vp2, vp))) in test_param_construct()
|
/openssl-master/crypto/bn/ |
A D | bn_asm.c | 854 volatile BN_ULONG *vp; in bn_mul_mont() local 862 vp = tp = alloca((num + 2) * sizeof(BN_ULONG)); in bn_mul_mont() 926 vp[i] = 0; in bn_mul_mont() 931 rp[i] = tp[i], vp[i] = 0; in bn_mul_mont() 932 vp[num] = 0; in bn_mul_mont() 933 vp[num + 1] = 0; in bn_mul_mont() 994 volatile BN_ULONG *vp; in bn_mul_mont() local 1020 vp[i] = 0; in bn_mul_mont() 1025 rp[i] = tp[i], vp[i] = 0; in bn_mul_mont() 1026 vp[num] = 0; in bn_mul_mont() [all …]
|
/openssl-master/providers/implementations/ciphers/ |
A D | ciphercommon_gcm.c | 227 void *vp; in ossl_gcm_set_ctx_params() local 234 vp = ctx->buf; in ossl_gcm_set_ctx_params() 235 if (!OSSL_PARAM_get_octet_string(p, &vp, EVP_GCM_TLS_TAG_LEN, &sz)) { in ossl_gcm_set_ctx_params()
|
Completed in 17 milliseconds