Searched refs:mp2 (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/amd/libamu/
H A Dmtab.c74 mntlist *mp2; local
76 while ((mp2 = mp)) {
78 if (mp2->mnt)
79 mnt_free(mp2->mnt);
80 XFREE(mp2);
/freebsd-11-stable/lib/libmp/
H A Dmpasbn.c140 * Compute the greatest common divisor of mp1 and mp2; result goes in rmp.
143 mp_gcd(const MINT *mp1, const MINT *mp2, MINT *rmp) argument
152 BN_ERRCHECK("gcd", BN_gcd(&b, mp1->bn, mp2->bn, c));
183 * Compute rmp=mp1+mp2.
186 _madd(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp) argument
191 BN_ERRCHECK(msg, BN_add(&b, mp1->bn, mp2->bn));
197 mp_madd(const MINT *mp1, const MINT *mp2, MINT *rmp) argument
200 _madd("madd", mp1, mp2, rmp);
204 * Return -1, 0, or 1 if mp1<mp2, mp1==mp2, o
207 mp_mcmp(const MINT *mp1, const MINT *mp2) argument
217 _mcmpa(const char *msg __unused, const MINT *mp1, const MINT *mp2) argument
401 _msub(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp) argument
412 mp_msub(const MINT *mp1, const MINT *mp2, MINT *rmp) argument
480 _mult(const char *msg, const MINT *mp1, const MINT *mp2, MINT *rmp, BN_CTX *c) argument
491 mp_mult(const MINT *mp1, const MINT *mp2, MINT *rmp) argument
[all...]
/freebsd-11-stable/contrib/amd/fsinfo/
H A Dfsi_analyze.c250 fsi_mount *mp, *mp2 = NULL; local
259 mp2 = mp;
280 if (mp2 && STREQ(mp2->m_name, "default")) {
281 if (ISSET(mp2->m_mask, DM_VOLNAME)) {
283 compute_automount_point(nbuf, sizeof(nbuf), dk->d_host, mp2->m_volname);
284 XFREE(mp2->m_name);
285 mp2->m_name = xstrdup(nbuf);
286 fsi_log("%s:%s has default mount on %s", dk->d_host->h_hostname, dk->d_dev, mp2->m_name);
296 if (!errors && mp2
510 fsi_mount *mp2 = NULL; local
[all...]
/freebsd-11-stable/lib/libmp/tests/
H A Dlegacy_test.c40 testmcmp(const MINT *mp1, const MINT *mp2, const char *tname) argument
43 if (mp_mcmp(mp1, mp2) == 0)
/freebsd-11-stable/sys/geom/
H A Dgeom_dump.c285 struct g_class *mp2; local
289 LIST_FOREACH(mp2, &g_classes, class) {
290 if (mp != NULL && mp != mp2)
292 g_conf_class(sb, mp2, gp, pp, cp);
H A Dgeom_subr.c85 struct g_class *mp2, *mp; local
105 LIST_FOREACH(mp2, &g_classes, class) {
106 if (mp2 == mp) {
108 mp2->name);
112 } else if (strcmp(mp2->name, mp->name) == 0) {
114 mp2->name);
127 LIST_FOREACH(mp2, &g_classes, class) {
128 if (mp == mp2)
130 LIST_FOREACH(gp, &mp2->geom, geom) {
263 struct g_class *mp, *mp2; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dmansearch.c398 const struct manpage *mp1, *mp2; local
404 mp2 = vp2;
405 if ((diff = mp2->bits - mp1->bits) ||
406 (diff = mp1->sec - mp2->sec))
411 sz2 = strcspn(mp2->names, "(");
414 if ((diff = strncasecmp(mp1->names, mp2->names, sz1)))
419 cp2 = strchr(mp2->names + sz2, '/');
/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clcomsubs.c260 struct mbuf *mp, *mp2; local
272 mp = mp2 = nd->nd_mb;
287 mbuf_setnext(mp2, mp);
288 mp2 = mp;
322 mbuf_setnext(mp2, mp);
/freebsd-11-stable/contrib/amd/amd/
H A Dmap.c499 am_node *mp2; local
507 mp2 = find_ap_recursive(dir, mp->am_osib);
508 if (mp2)
509 return mp2;
/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_commonsubs.c292 mbuf_t mp2; local
315 MGET(mp2, MT_DATA, how);
316 if (mp2 == NULL)
318 mbuf_setnext(mp2, mbuf_next(nd->nd_md));
319 mbuf_setnext(nd->nd_md, mp2);
321 nd->nd_md = mp2;
322 retp = p = NFSMTOD(mp2, caddr_t);
326 mp2 = mbuf_next(mp2);
329 if (mp2
[all...]
/freebsd-11-stable/sys/fs/nfsserver/
H A Dnfs_nfsdport.c574 struct mbuf *mp, *mp2 = NULL, *mp3 = NULL; local
584 mp3 = mp2 = mp;
586 mp2->m_next = mp;
587 mp2 = mp;

Completed in 208 milliseconds