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

/freebsd-9.3-release/sys/nfs/
H A Dnfs_common.c174 struct mbuf *mp, *mp2; local
195 MGET(mp2, 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-9.3-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-9.3-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-9.3-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-9.3-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-9.3-release/sys/geom/
H A Dgeom_dump.c281 struct g_class *mp2; local
285 LIST_FOREACH(mp2, &g_classes, class) {
286 if (mp != NULL && mp != mp2)
288 g_conf_class(sb, mp2, gp, pp, cp);
H A Dgeom_subr.c83 struct g_class *mp2, *mp; local
103 LIST_FOREACH(mp2, &g_classes, class) {
104 if (mp2 == mp) {
106 mp2->name);
110 } else if (strcmp(mp2->name, mp->name) == 0) {
112 mp2->name);
125 LIST_FOREACH(mp2, &g_classes, class) {
126 if (mp == mp2)
128 LIST_FOREACH(gp, &mp2->geom, geom) {
263 struct g_class *mp, *mp2; local
[all...]
/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clcomsubs.c201 struct mbuf *mp, *mp2; local
213 mp = mp2 = nd->nd_mb;
228 mbuf_setnext(mp2, mp);
229 mp2 = mp;
263 mbuf_setnext(mp2, mp);
/freebsd-9.3-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-9.3-release/sys/fs/nfs/
H A Dnfs_commonsubs.c258 mbuf_t mp2; local
281 MGET(mp2, MT_DATA, how);
282 if (mp2 == NULL)
284 mbuf_setnext(mp2, mbuf_next(nd->nd_md));
285 mbuf_setnext(nd->nd_md, mp2);
287 nd->nd_md = mp2;
288 retp = p = NFSMTOD(mp2, caddr_t);
292 mp2 = mbuf_next(mp2);
295 if (mp2
[all...]
/freebsd-9.3-release/sys/nfsclient/
H A Dnfs_subs.c199 struct mbuf *mp, *mp2; local
211 mp = mp2 = *mq;
225 mp2->m_next = mp;
226 mp2 = mp;
256 mp2->m_next = mp;
/freebsd-9.3-release/sys/fs/nfsserver/
H A Dnfs_nfsdport.c567 struct mbuf *mp, *mp2 = NULL, *mp3 = NULL; local
577 mp3 = mp2 = mp;
579 mp2->m_next = mp;
580 mp2 = mp;

Completed in 195 milliseconds