Home
last modified time | relevance | path

Searched refs:tmpval (Results 1 – 5 of 5) sorted by relevance

/external/openssl/crypto/asn1/
Dasn_mime.c803 char *tmpname, *tmpval, *p; in mime_hdr_new() local
816 if(!(tmpval = BUF_strdup(value))) return NULL; in mime_hdr_new()
817 for(p = tmpval ; *p; p++) { in mime_hdr_new()
824 } else tmpval = NULL; in mime_hdr_new()
828 mhdr->value = tmpval; in mime_hdr_new()
835 char *tmpname, *tmpval, *p; in mime_hdr_addparam() local
850 tmpval = BUF_strdup(value); in mime_hdr_addparam()
851 if(!tmpval) return 0; in mime_hdr_addparam()
852 } else tmpval = NULL; in mime_hdr_addparam()
857 mparam->param_value = tmpval; in mime_hdr_addparam()
/external/openssl/crypto/ocsp/
Docsp_ext.c320 unsigned char *tmpval; in ocsp_add1_nonce() local
333 tmpval = os.data; in ocsp_add1_nonce()
334 ASN1_put_object(&tmpval, 0, len, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL); in ocsp_add1_nonce()
336 memcpy(tmpval, val, len); in ocsp_add1_nonce()
338 RAND_pseudo_bytes(tmpval, len); in ocsp_add1_nonce()
/external/dropbear/
Dkeyimport.c710 mp_int dmp1, dmq1, iqmp, tmpval; /* for rsa */ in openssh_write() local
774 m_mp_init(&tmpval); in openssh_write()
780 if (mp_sub_d(key->rsakey->p, 1, &tmpval) != MP_OKAY) { in openssh_write()
784 if (mp_mod(key->rsakey->d, &tmpval, &dmp1) != MP_OKAY) { in openssh_write()
790 if (mp_sub_d(key->rsakey->q, 1, &tmpval) != MP_OKAY) { in openssh_write()
794 if (mp_mod(key->rsakey->d, &tmpval, &dmq1) != MP_OKAY) { in openssh_write()
813 mp_clear(&tmpval); in openssh_write()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp1216 SDValue tmpval = theVal; in LowerReturn() local
1218 tmpval = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, in LowerReturn()
1220 tmpval, DAG.getIntPtrConstant(j)); in LowerReturn()
1225 tmpval); in LowerReturn()
/external/libxml2/
Dxmlschemastypes.c2909 xmlChar *tmpval, *cur; in xmlSchemaValAtomicType() local
2915 tmpval = xmlStrdup(value); in xmlSchemaValAtomicType()
2916 for (cur = tmpval; *cur; ++cur) { in xmlSchemaValAtomicType()
2924 uri = xmlParseURI((const char *) tmpval); in xmlSchemaValAtomicType()
2925 xmlFree(tmpval); in xmlSchemaValAtomicType()