Searched refs:dtmp (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/pem/
H A Dpem_all.c241 DSA *dtmp; local
244 dtmp = EVP_PKEY_get1_DSA(key);
246 if (!dtmp)
250 *dsa = dtmp;
252 return dtmp;
319 EC_KEY *dtmp; local
322 dtmp = EVP_PKEY_get1_EC_KEY(key);
324 if (!dtmp)
328 *eckey = dtmp;
330 return dtmp;
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir2.c697 struct dirent *idbp, dtmp; /* dirent pointer */ local
705 dtmp.d_namlen = namelen;
706 dtmp.d_reclen = GENERIC_DIRSIZ(&dtmp);
707 reclen = dtmp.d_reclen;
739 struct dirent *idbp, dtmp; /* dirent pointer */ local
747 dtmp.d_namlen = namelen;
748 dtmp.d_reclen = GENERIC_DIRSIZ(&dtmp);
749 reclen = dtmp
[all...]
/freebsd-9.3-release/crypto/openssl/apps/
H A Dreq.c300 EVP_PKEY *dtmp; local
319 if ((dtmp = X509_get_pubkey(xtmp)) == NULL)
321 if (dtmp->type == EVP_PKEY_DSA)
322 dsa_params = DSAparams_dup(dtmp->pkey.dsa);
323 EVP_PKEY_free(dtmp);
339 EVP_PKEY *dtmp; local
362 if ((dtmp = X509_get_pubkey(xtmp)) == NULL)
364 if (dtmp->type == EVP_PKEY_EC)
365 ec_params = EC_KEY_dup(dtmp->pkey.ec);
366 EVP_PKEY_free(dtmp);
[all...]

Completed in 167 milliseconds