Searched refs:mtmp (Results 1 - 12 of 12) sorted by relevance

/freebsd-12-stable/lib/libpam/modules/pam_nologin/
H A Dpam_nologin.c71 char *mtmp; local
110 mtmp = malloc(st.st_size + 1);
111 if (mtmp != NULL) {
112 ss = read(fd, mtmp, st.st_size);
114 mtmp[ss] = '\0';
115 pam_error(pamh, "%s", mtmp);
117 free(mtmp);
/freebsd-12-stable/crypto/openssl/crypto/ec/
H A Decdh_kdf.c37 unsigned char mtmp[EVP_MAX_MD_SIZE]; local
58 if (!EVP_DigestFinal(mctx, mtmp, NULL))
60 memcpy(out, mtmp, outlen);
61 OPENSSL_cleanse(mtmp, mdlen);
/freebsd-12-stable/crypto/openssl/crypto/dh/
H A Ddh_kdf.c119 unsigned char mtmp[EVP_MAX_MD_SIZE]; local
137 if (!EVP_DigestFinal(mctx, mtmp, NULL))
139 memcpy(out, mtmp, outlen);
140 OPENSSL_cleanse(mtmp, mdlen);
H A Ddh_lib.c23 const DH_METHOD *mtmp; local
24 mtmp = dh->meth;
25 if (mtmp->finish)
26 mtmp->finish(dh);
/freebsd-12-stable/sys/opencrypto/
H A Dcriov.c203 struct mbuf *m, *mtmp; local
217 mtmp = m;
218 while ((mtmp = mtmp->m_next) != NULL)
/freebsd-12-stable/crypto/openssl/crypto/dsa/
H A Ddsa_lib.c30 const DSA_METHOD *mtmp; local
31 mtmp = dsa->meth;
32 if (mtmp->finish)
33 mtmp->finish(dsa);
/freebsd-12-stable/crypto/openssl/crypto/cms/
H A Dcms_lib.c321 EVP_MD_CTX *mtmp; local
328 BIO_get_md_ctx(chain, &mtmp);
329 if (EVP_MD_CTX_type(mtmp) == nid
334 || EVP_MD_pkey_type(EVP_MD_CTX_md(mtmp)) == nid)
335 return EVP_MD_CTX_copy_ex(mctx, mtmp);
/freebsd-12-stable/crypto/openssl/crypto/rsa/
H A Drsa_lib.c36 const RSA_METHOD *mtmp; local
37 mtmp = rsa->meth;
38 if (mtmp->finish)
39 mtmp->finish(rsa);
/freebsd-12-stable/sys/dev/mge/
H A Dif_mge.c1763 struct mbuf *m0, *mtmp; local
1783 mtmp = m_dup(m0, M_NOWAIT);
1785 if (mtmp == NULL)
1787 m0 = mtmp;
1792 mtmp = m_defrag(m0, M_NOWAIT);
1793 if (mtmp != NULL)
1794 m0 = mtmp;
/freebsd-12-stable/sys/dev/vnic/
H A Dnicvf_main.c655 struct mbuf *mtmp; local
677 mtmp = m_dup(mbuf, M_NOWAIT);
679 if (mtmp == NULL)
681 mbuf = mtmp;
/freebsd-12-stable/sys/dev/neta/
H A Dif_mvneta.c2651 struct mbuf *mtmp, *mbuf; local
2680 mtmp = m_dup(mbuf, M_NOWAIT);
2682 if (mtmp == NULL) {
2687 *mbufp = mbuf = mtmp;
/freebsd-12-stable/contrib/libucl/src/
H A Ducl_util.c606 struct ucl_macro *macro, *mtmp; local
627 HASH_ITER (hh, parser->macroes, macro, mtmp) {

Completed in 311 milliseconds