Lines Matching refs:MP_STATE_MEM
45 …_PEAK() { if (MP_STATE_MEM(current_bytes_allocated) > MP_STATE_MEM(peak_bytes_allocated)) MP_STATE…
91 MP_STATE_MEM(total_bytes_allocated) += num_bytes; in m_malloc()
92 MP_STATE_MEM(current_bytes_allocated) += num_bytes; in m_malloc()
102 MP_STATE_MEM(total_bytes_allocated) += num_bytes; in m_malloc_maybe()
103 MP_STATE_MEM(current_bytes_allocated) += num_bytes; in m_malloc_maybe()
117 MP_STATE_MEM(total_bytes_allocated) += num_bytes; in m_malloc_with_finaliser()
118 MP_STATE_MEM(current_bytes_allocated) += num_bytes; in m_malloc_with_finaliser()
152 MP_STATE_MEM(total_bytes_allocated) += diff; in m_realloc()
153 MP_STATE_MEM(current_bytes_allocated) += diff; in m_realloc()
180 MP_STATE_MEM(total_bytes_allocated) += diff; in m_realloc_maybe()
181 MP_STATE_MEM(current_bytes_allocated) += diff; in m_realloc_maybe()
201 MP_STATE_MEM(current_bytes_allocated) -= num_bytes; in m_free()
212 return MP_STATE_MEM(total_bytes_allocated); in m_get_total_bytes_allocated()
216 return MP_STATE_MEM(current_bytes_allocated); in m_get_current_bytes_allocated()
220 return MP_STATE_MEM(peak_bytes_allocated); in m_get_peak_bytes_allocated()