gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 6 of 6 for funcall:SLIST_INIT (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/search/hcreate.c - 5.7KB - 186 lines
122:         for (idx = 0; idx < htab->size; idx++)
123:                 SLIST_INIT(&htab->table[idx]);
124: 
bsd_source/t2ex/network/net/src_bsd/kern/subr_hash.c - 4.7KB - 132 lines
93:                 for (i = 0; i < hashsize; i++)
94:                         SLIST_INIT(&hashtbl_slist[i]);
95:                 break;
bsd_source/t2ex/network/net/src_bsd/kern/sys_select.c - 30.3KB - 961 lines
327:         l->l_selcpu = sc;
328:         SLIST_INIT(&l->l_selwait);
329:         for (;;) {
More results from sys_select.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
642:         m->m_pkthdr.csum_data = 0;
643:         SLIST_INIT(&m->m_pkthdr.tags);
644: 
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
399: 
400:         SLIST_INIT(&m->m_pkthdr.tags);
401: }
bsd_source/t2ex/network/net/src_bsd/sys/mbuf.h - 42.4KB - 986 lines
613:         (to)->m_flags = (from)->m_flags & M_COPYFLAGS;                 \
614:         SLIST_INIT(&(to)->m_pkthdr.tags);                              \
615:         m_tag_copy_chain((to), (from));                                        \