Home
last modified time | relevance | path

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

/lib/liblwip/src/core/
Dmem.c132 struct memp_malloc_helper *hmem; in mem_free() local
138hmem = (struct memp_malloc_helper*)(void*)((u8_t*)rmem - LWIP_MEM_ALIGN_SIZE(sizeof(struct memp_ma… in mem_free()
140 LWIP_ASSERT("hmem != NULL", (hmem != NULL)); in mem_free()
141 LWIP_ASSERT("hmem == MEM_ALIGN(hmem)", (hmem == LWIP_MEM_ALIGN(hmem))); in mem_free()
142 LWIP_ASSERT("hmem->poolnr < MEMP_MAX", (hmem->poolnr < MEMP_MAX)); in mem_free()
145 memp_free(hmem->poolnr, hmem); in mem_free()