Home
last modified time | relevance | path

Searched refs:otmp (Results 1 – 8 of 8) sorted by relevance

/external/openssl/crypto/aes/
Daes_wrap.c148 unsigned char *otmp = NULL, *ptmp = NULL; in AES_wrap_unwrap_test() local
151 otmp = OPENSSL_malloc(keylen + 8); in AES_wrap_unwrap_test()
153 if (!otmp || !ptmp) in AES_wrap_unwrap_test()
157 r = AES_wrap_key(&wctx, iv, otmp, key, keylen); in AES_wrap_unwrap_test()
161 if (eout && memcmp(eout, otmp, keylen)) in AES_wrap_unwrap_test()
166 r = AES_unwrap_key(&wctx, iv, ptmp, otmp, r); in AES_wrap_unwrap_test()
174 if (otmp) in AES_wrap_unwrap_test()
175 OPENSSL_free(otmp); in AES_wrap_unwrap_test()
/external/openssl/crypto/evp/
Devp_lib.c126 ASN1_OBJECT *otmp; in EVP_CIPHER_type() local
174 otmp = OBJ_nid2obj(nid); in EVP_CIPHER_type()
175 if(!otmp || !otmp->data) nid = NID_undef; in EVP_CIPHER_type()
176 ASN1_OBJECT_free(otmp); in EVP_CIPHER_type()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
Dvp9_resize.c456 uint8_t *otmp, *otmp2; in resize_multistep() local
460 otmp = tmpbuf; in resize_multistep()
462 otmp = buf; in resize_multistep()
464 otmp2 = otmp + get_down2_length(length, 1); in resize_multistep()
471 out = (s & 1 ? otmp2 : otmp); in resize_multistep()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_resize.c456 uint8_t *otmp, *otmp2; in resize_multistep() local
460 otmp = tmpbuf; in resize_multistep()
462 otmp = buf; in resize_multistep()
464 otmp2 = otmp + get_down2_length(length, 1); in resize_multistep()
471 out = (s & 1 ? otmp2 : otmp); in resize_multistep()
/external/openssl/crypto/asn1/
Dtasn_enc.c575 ASN1_OBJECT *otmp; in asn1_ex_i2c() local
613 otmp = (ASN1_OBJECT *)*pval; in asn1_ex_i2c()
614 cont = otmp->data; in asn1_ex_i2c()
615 len = otmp->length; in asn1_ex_i2c()
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
Dtasn_enc.c572 ASN1_OBJECT *otmp; in asn1_ex_i2c() local
610 otmp = (ASN1_OBJECT *)*pval; in asn1_ex_i2c()
611 cont = otmp->data; in asn1_ex_i2c()
612 len = otmp->length; in asn1_ex_i2c()
/external/openssl/apps/
Dapps.c2262 ASN1_OBJECT *otmp = NULL; in args_verify() local
2275 otmp = OBJ_txt2obj(argn, 0); in args_verify()
2276 if (!otmp) in args_verify()
2385 if (otmp) in args_verify()
2386 X509_VERIFY_PARAM_add0_policy(*pm, otmp); in args_verify()
Dca.c2721 ASN1_OBJECT *otmp; in make_revocation_str() local
2748 otmp = OBJ_txt2obj(rev_arg, 0); in make_revocation_str()
2749 ASN1_OBJECT_free(otmp); in make_revocation_str()
2751 if (otmp == NULL) in make_revocation_str()