Lines Matching refs:next
64 while (!h[j].next) { in ___sym_malloc()
66 h[j].next = (m_link_p) M_GET_MEM_CLUSTER(); in ___sym_malloc()
67 if (h[j].next) in ___sym_malloc()
68 h[j].next->next = NULL; in ___sym_malloc()
74 a = h[j].next; in ___sym_malloc()
76 h[j].next = h[j].next->next; in ___sym_malloc()
80 h[j].next = (m_link_p) (a+s); in ___sym_malloc()
81 h[j].next->next = NULL; in ___sym_malloc()
120 ((m_link_p) a)->next = h[i].next; in ___sym_mfree()
121 h[i].next = (m_link_p) a; in ___sym_mfree()
127 while (q->next && q->next != (m_link_p) b) { in ___sym_mfree()
128 q = q->next; in ___sym_mfree()
130 if (!q->next) { in ___sym_mfree()
131 ((m_link_p) a)->next = h[i].next; in ___sym_mfree()
132 h[i].next = (m_link_p) a; in ___sym_mfree()
135 q->next = q->next->next; in ___sym_mfree()
222 vbp->next = mp->vtob[hc]; in ___get_dma_mem_cluster()
240 vbpp = &(*vbpp)->next; in ___free_dma_mem_cluster()
243 *vbpp = (*vbpp)->next; in ___free_dma_mem_cluster()
255 for (mp = mp0.next; in ___get_dma_pool()
257 mp = mp->next); in ___get_dma_pool()
271 mp->next = mp0.next; in ___cre_dma_pool()
272 mp0.next = mp; in ___cre_dma_pool()
282 m_pool_p *pp = &mp0.next; in ___del_dma_pool()
285 pp = &(*pp)->next; in ___del_dma_pool()
287 *pp = (*pp)->next; in ___del_dma_pool()
358 vp = vp->next; in __vtobus()