Home
last modified time | relevance | path

Searched refs:mp_freeptr (Results 1 – 1 of 1) sorted by relevance

/mOS-networking-stack/core/src/
H A Dmemory_mgt.c30 mem_chunk_t mp_freeptr; /* pointer to the start memory chunk */ member
97 mp->mp_freeptr = (mem_chunk_t)mp->mp_startptr; in MPCreate()
98 mp->mp_freeptr->mc_free_chunks = mp->mp_free_chunks; in MPCreate()
99 mp->mp_freeptr->mc_next = NULL; in MPCreate()
113 mem_chunk_t p = mp->mp_freeptr; in MPAllocateChunk()
125 mp->mp_freeptr = (mem_chunk_t)((u_char *)p + mp->mp_chunk_size); in MPAllocateChunk()
126 mp->mp_freeptr->mc_free_chunks = p->mc_free_chunks; in MPAllocateChunk()
127 mp->mp_freeptr->mc_next = p->mc_next; in MPAllocateChunk()
130 mp->mp_freeptr = p->mc_next; in MPAllocateChunk()
152 mcp->mc_next = mp->mp_freeptr; in MPFreeChunk()
[all …]