Lines Matching refs:next
77 while (!h[j].next) { in ___sym_malloc()
79 h[j].next = (m_link_p) M_GET_MEM_CLUSTER(); in ___sym_malloc()
80 if (h[j].next) in ___sym_malloc()
81 h[j].next->next = NULL; in ___sym_malloc()
87 a = h[j].next; in ___sym_malloc()
89 h[j].next = h[j].next->next; in ___sym_malloc()
93 h[j].next = (m_link_p) (a+s); in ___sym_malloc()
94 h[j].next->next = NULL; in ___sym_malloc()
133 ((m_link_p) a)->next = h[i].next; in ___sym_mfree()
134 h[i].next = (m_link_p) a; in ___sym_mfree()
140 while (q->next && q->next != (m_link_p) b) { in ___sym_mfree()
141 q = q->next; in ___sym_mfree()
143 if (!q->next) { in ___sym_mfree()
144 ((m_link_p) a)->next = h[i].next; in ___sym_mfree()
145 h[i].next = (m_link_p) a; in ___sym_mfree()
148 q->next = q->next->next; in ___sym_mfree()
235 vbp->next = mp->vtob[hc]; in ___get_dma_mem_cluster()
253 vbpp = &(*vbpp)->next; in ___free_dma_mem_cluster()
256 *vbpp = (*vbpp)->next; in ___free_dma_mem_cluster()
268 for (mp = mp0.next; in ___get_dma_pool()
270 mp = mp->next); in ___get_dma_pool()
284 mp->next = mp0.next; in ___cre_dma_pool()
285 mp0.next = mp; in ___cre_dma_pool()
295 m_pool_p *pp = &mp0.next; in ___del_dma_pool()
298 pp = &(*pp)->next; in ___del_dma_pool()
300 *pp = (*pp)->next; in ___del_dma_pool()
371 vp = vp->next; in __vtobus()