Lines Matching refs:h
66 m_link_p h = mp->h; in ___sym_malloc() local
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()
112 m_link_p h = mp->h; in ___sym_mfree() local
133 ((m_link_p) a)->next = h[i].next; in ___sym_mfree()
134 h[i].next = (m_link_p) a; in ___sym_mfree()
139 q = &h[i]; 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()