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

/freebsd-10.0-release/sys/nfs/
H A Dnfs_common.c174 struct mbuf *mp, *mp2; local
195 mp2 = m_get(how, MT_DATA);
196 if (mp2 == NULL)
198 mp2->m_len = siz;
199 mp2->m_next = mp->m_next;
200 mp->m_next = mp2;
202 mp = mp2;
208 mp2 = mp->m_next;
209 npos = mtod(mp2, caddr_t);
212 if (mp2
[all...]
/freebsd-10.0-release/contrib/amd/libamu/
H A Dmtab.c78 mntlist *mp2; local
80 while ((mp2 = mp)) {
82 if (mp2->mnt)
83 mnt_free(mp2->mnt);
84 XFREE(mp2);
/freebsd-10.0-release/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-10.0-release/contrib/amd/fsinfo/
H A Dfsi_analyze.c254 fsi_mount *mp, *mp2 = 0; local
263 mp2 = mp;
284 if (mp2 && STREQ(mp2->m_name, "default")) {
285 if (ISSET(mp2->m_mask, DM_VOLNAME)) {
287 compute_automount_point(nbuf, sizeof(nbuf), dk->d_host, mp2->m_volname);
288 XFREE(mp2->m_name);
289 mp2->m_name = strdup(nbuf);
290 fsi_log("%s:%s has default mount on %s", dk->d_host->h_hostname, dk->d_dev, mp2->m_name);
300 if (!errors && mp2
514 fsi_mount *mp2 = 0; local
[all...]
/freebsd-10.0-release/tools/regression/lib/libmp/
H A Dtest-libmp.c40 testmcmp(const MINT *mp1, const MINT *mp2, const char *tname) argument
43 if (mp_mcmp(mp1, mp2) == 0)
/freebsd-10.0-release/sys/geom/
H A Dgeom_dump.c273 struct g_class *mp2; local
277 LIST_FOREACH(mp2, &g_classes, class) {
278 if (mp != NULL && mp != mp2)
280 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) {
265 struct g_class *mp, *mp2; local
[all...]
/freebsd-10.0-release/sys/fs/nfsclient/
H A Dnfs_clcomsubs.c247 struct mbuf *mp, *mp2; local
259 mp = mp2 = nd->nd_mb;
274 mbuf_setnext(mp2, mp);
275 mp2 = mp;
309 mbuf_setnext(mp2, mp);
/freebsd-10.0-release/contrib/amd/amd/
H A Dmap.c479 am_node *mp2; local
487 mp2 = find_ap_recursive(dir, mp->am_osib);
488 if (mp2)
489 return mp2;
/freebsd-10.0-release/sys/fs/nfs/
H A Dnfs_commonsubs.c276 mbuf_t mp2; local
299 MGET(mp2, MT_DATA, how);
300 if (mp2 == NULL)
302 mbuf_setnext(mp2, mbuf_next(nd->nd_md));
303 mbuf_setnext(nd->nd_md, mp2);
305 nd->nd_md = mp2;
306 retp = p = NFSMTOD(mp2, caddr_t);
310 mp2 = mbuf_next(mp2);
313 if (mp2
[all...]
/freebsd-10.0-release/sys/nfsclient/
H A Dnfs_subs.c183 struct mbuf *mp, *mp2; local
195 mp = mp2 = *mq;
209 mp2->m_next = mp;
210 mp2 = mp;
239 mp2->m_next = mp;
/freebsd-10.0-release/sys/fs/nfsserver/
H A Dnfs_nfsdport.c562 struct mbuf *mp, *mp2 = NULL, *mp3 = NULL; local
572 mp3 = mp2 = mp;
574 mp2->m_next = mp;
575 mp2 = mp;

Completed in 107 milliseconds