Symbol: m_type
games/phantasia/fight.c
111
&& Curmonster.m_type != SM_DARKLORD
games/phantasia/fight.c
113
&& Curmonster.m_type != SM_SHRIEKER
games/phantasia/fight.c
243
if (Curmonster.m_type == SM_MORGOTH)
games/phantasia/fight.c
294
if ((Curmonster.m_type == SM_DARKLORD ||
games/phantasia/fight.c
295
Curmonster.m_type == SM_SHRIEKER
games/phantasia/fight.c
299
(Curmonster.m_type != SM_MIMIC)) {
games/phantasia/fight.c
322
if (Curmonster.m_type == SM_DARKLORD) {
games/phantasia/fight.c
339
if (Curmonster.m_type == SM_MORGOTH) {
games/phantasia/fight.c
391
switch (Curmonster.m_type) {
games/phantasia/fight.c
436
switch (Curmonster.m_type) {
games/phantasia/fight.c
665
if (Curmonster.m_type == SM_DARKLORD || Curmonster.m_type == SM_SHRIEKER)
games/phantasia/fight.c
670
if (Curmonster.m_type == SM_MORGOTH)
games/phantasia/fight.c
676
if (Curmonster.m_type == SM_MIMIC
games/phantasia/fight.c
71
if (Curmonster.m_type == SM_MORGOTH)
games/phantasia/fight.c
730
if (Curmonster.m_type == SM_MORGOTH && ch != '3')
games/phantasia/fight.c
740
if (Curmonster.m_type == SM_DARKLORD)
games/phantasia/fight.c
75
if (Curmonster.m_type == SM_UNICORN) {
games/phantasia/fight.c
772
if (Curmonster.m_type == SM_DARKLORD)
games/phantasia/fight.c
920
if (Curmonster.m_type == SM_MODNAR) {
games/phantasia/fight.c
937
Curmonster.m_type = SM_MORGOTH;
games/phantasia/fight.c
944
} else if (Curmonster.m_type == SM_MIMIC) {
games/phantasia/fight.c
95
if (Curmonster.m_type == SM_DARKLORD
games/phantasia/fight.c
954
if (Curmonster.m_type != SM_MORGOTH) {
games/phantasia/gamesupport.c
480
Curmonster.m_treasuretype, Curmonster.m_type, Curmonster.m_flock);
games/phantasia/phantstruct.h
82
int m_type; /* special type */
games/phantasia/setup.c
137
&Curmonster.m_type, &Curmonster.m_flock);
lib/libthread_xu/thread/thr_init.c
71
.m_type = PTHREAD_MUTEX_DEFAULT,
lib/libthread_xu/thread/thr_mutex.c
156
if (attr->m_type < PTHREAD_MUTEX_ERRORCHECK ||
lib/libthread_xu/thread/thr_mutex.c
157
attr->m_type >= PTHREAD_MUTEX_TYPE_MAX)
lib/libthread_xu/thread/thr_mutex.c
170
pmutex->m_type = attr->m_type;
lib/libthread_xu/thread/thr_mutex.c
559
switch (m->m_type) {
lib/libthread_xu/thread/thr_mutex.c
589
switch (m->m_type) {
lib/libthread_xu/thread/thr_mutex.c
659
if (__predict_false(m->m_type == PTHREAD_MUTEX_RECURSIVE &&
lib/libthread_xu/thread/thr_mutexattr.c
109
if (attr == NULL || *attr == NULL || (*attr)->m_type >=
lib/libthread_xu/thread/thr_mutexattr.c
113
*type = (*attr)->m_type;
lib/libthread_xu/thread/thr_mutexattr.c
68
(*attr)->m_type = kind;
lib/libthread_xu/thread/thr_mutexattr.c
83
ret = attr->m_type;
lib/libthread_xu/thread/thr_mutexattr.c
97
(*attr)->m_type = type;
lib/libthread_xu/thread/thr_private.h
104
enum pthread_mutextype m_type;
lib/libthread_xu/thread/thr_private.h
136
.m_type = PTHREAD_MUTEX_DEFAULT, \
lib/libthread_xu/thread/thr_private.h
148
enum pthread_mutextype m_type;
sys/dev/netif/re/re.c
8071
printf(", len=%d T=%d F=%d",ptr->m_len,ptr->m_type,ptr->m_flags);
sys/dev/netif/txp/if_txp.c
575
m.m_type = MT_DATA;
sys/kern/uipc_mbuf.c
1134
m->m_type = type;
sys/kern/uipc_mbuf.c
1316
KASSERT(m->m_type != MT_FREE, ("freeing free mbuf %p", m));
sys/kern/uipc_mbuf.c
1318
--mbtypes[gd->gd_cpuid].stats[m->m_type];
sys/kern/uipc_mbuf.c
1505
mn = m_gethdr(how, m->m_type);
sys/kern/uipc_mbuf.c
1507
mn = m_get(how, m->m_type);
sys/kern/uipc_mbuf.c
1563
n = m_gethdr(wait, m->m_type);
sys/kern/uipc_mbuf.c
1565
n = m_get(wait, m->m_type);
sys/kern/uipc_mbuf.c
1618
n = m_gethdr(how, m->m_type);
sys/kern/uipc_mbuf.c
1639
o = m_get(how, m->m_type);
sys/kern/uipc_mbuf.c
1721
n = m_getl(remain, how, m->m_type, top == NULL ? M_PKTHDR : 0,
sys/kern/uipc_mbuf.c
1806
KKASSERT(m->m_type == MT_DATA);
sys/kern/uipc_mbuf.c
2032
MGETHDR(n, how, m->m_type);
sys/kern/uipc_mbuf.c
2045
n = m_getcl(how, m->m_type, m->m_flags);
sys/kern/uipc_mbuf.c
2076
n = m_getcl(how, m->m_type, m->m_flags);
sys/kern/uipc_mbuf.c
2126
m = m_gethdr(M_NOWAIT, n->m_type);
sys/kern/uipc_mbuf.c
2128
m = m_get(M_NOWAIT, n->m_type);
sys/kern/uipc_mbuf.c
2182
n = m_gethdr(wait, m0->m_type);
sys/kern/uipc_mbuf.c
2208
n = m_get(wait, m->m_type);
sys/kern/uipc_mbuf.c
2352
n = m_getl(off + len, how, m->m_type, 0, &nsize);
sys/kern/uipc_mbuf.c
2379
n = m_getl(len, how, m->m_type, 0, &nsize);
sys/kern/uipc_mbuf.c
2450
n = m_get(M_NOWAIT, m->m_type);
sys/kern/uipc_mbuf.c
967
--mbtypes[gd->gd_cpuid].stats[m->m_type];
sys/kern/uipc_mbuf.c
968
m->m_type = type;
sys/kern/uipc_mbuf.c
993
m->m_type = type;
sys/kern/uipc_mbuf2.c
203
o = m_getl(len, M_NOWAIT, m->m_type, 0, NULL);
sys/kern/uipc_mbuf2.c
243
n = m_getl(len, wait, m->m_type, m->m_flags, NULL);
sys/kern/uipc_sockbuf.c
363
o->m_type == m->m_type))) {
sys/kern/uipc_sockbuf.c
380
tailm->m_type == m->m_type) {
sys/kern/uipc_socket.c
1371
if (m->m_type == MT_OOBDATA || (m->m_flags & M_EOR)) {
sys/kern/uipc_socket.c
1408
KASSERT(m->m_type == MT_SONAME, ("receive 1a"));
sys/kern/uipc_socket.c
1421
while (m && m->m_type == MT_CONTROL && error == 0) {
sys/kern/uipc_socket.c
1456
type = m->m_type;
sys/kern/uipc_socket.c
1467
if (m->m_type == MT_OOBDATA) {
sys/kern/uipc_socket.c
1473
KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
sys/kern/uipc_socket.c
1779
KASSERT(m->m_type == MT_DATA || m->m_type == MT_HEADER,
sys/kern/uipc_usrreq.c
2346
if (m->m_type == MT_CONTROL &&
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
484
KASSERT((nam->m_type == MT_SONAME),
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
485
("%s: m_type=%d\n", __func__, nam->m_type));
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
636
KASSERT((nam->m_type == MT_SONAME),
sys/netgraph7/bluetooth/socket/ng_btsocket_hci_raw.c
637
("%s: m_type=%d\n", __func__, nam->m_type));
sys/netinet/ip_input.c
2062
mtemp->m_type = m->m_type;
sys/netinet6/icmp6.c
1326
n = m_getb(replylen, M_NOWAIT, m->m_type, M_PKTHDR);
sys/netinet6/icmp6.c
552
n = m_getb(maxlen, M_NOWAIT, n0->m_type, M_PKTHDR);
sys/netinet6/icmp6.c
667
n = m_getb(maxlen, M_NOWAIT, m->m_type, M_PKTHDR);
sys/netproto/802_11/wlan/ieee80211_output.c
1249
struct mbuf *n = m_gethdr(M_NOWAIT, m->m_type);
usr.sbin/ppp/mbuf.c
157
bp->m_type = type;
usr.sbin/ppp/mbuf.c
172
MemMap[bp->m_type].fragments--;
usr.sbin/ppp/mbuf.c
173
MemMap[bp->m_type].octets -= bp->m_size;
usr.sbin/ppp/mbuf.c
261
head = m_get(len + extra, bp ? bp->m_type : MB_UNKNOWN);
usr.sbin/ppp/mbuf.c
389
nbp = m_get(m_length(bp), bp->m_type);
usr.sbin/ppp/mbuf.c
409
if (type != bp->m_type) {
usr.sbin/ppp/mbuf.c
410
MemMap[bp->m_type].fragments--;
usr.sbin/ppp/mbuf.c
411
MemMap[bp->m_type].octets -= bp->m_size;
usr.sbin/ppp/mbuf.c
412
bp->m_type = type;
usr.sbin/ppp/mbuf.h
35
short m_type; /* MB_* below */