Searched refs:LWIP_MEM_ALIGN (Results 1 – 7 of 7) sorted by relevance
| /lib/lwip/lwip/src/core/ |
| A D | mem.c | 213 LWIP_ASSERT("malloc() must return aligned memory", LWIP_MEM_ALIGN(ret) == ret); in mem_malloc() 231 LWIP_ASSERT("rmem == MEM_ALIGN(rmem)", (rmem == LWIP_MEM_ALIGN(rmem))); in mem_free() 313 LWIP_ASSERT("rmem == MEM_ALIGN(rmem)", (rmem == LWIP_MEM_ALIGN(rmem))); in mem_free() 320 LWIP_ASSERT("hmem == MEM_ALIGN(hmem)", (hmem == LWIP_MEM_ALIGN(hmem))); in mem_free() 524 ram = (u8_t *)LWIP_MEM_ALIGN(LWIP_RAM_HEAP_POINTER); in mem_init() 579 …LWIP_ASSERT("heap element next ptr aligned", LWIP_MEM_ALIGN(ptr_to_mem(mem->next) == ptr_to_mem(me… in mem_sanity() 585 LWIP_ASSERT("heap element aligned", LWIP_MEM_ALIGN(mem) == mem); in mem_sanity() 588 …LWIP_ASSERT("heap element prev ptr aligned", LWIP_MEM_ALIGN(ptr_to_mem(mem->prev) == ptr_to_mem(me… in mem_sanity() 589 …LWIP_ASSERT("heap element next ptr aligned", LWIP_MEM_ALIGN(ptr_to_mem(mem->next) == ptr_to_mem(me… in mem_sanity()
|
| A D | memp.c | 157 p = (struct memp *)LWIP_MEM_ALIGN(memp_pools[i]->base); in memp_overflow_check_all() 184 memp = (struct memp *)LWIP_MEM_ALIGN(desc->base); in memp_init_pool()
|
| A D | pbuf.c | 254 pbuf_init_alloced_pbuf(q, LWIP_MEM_ALIGN((void *)((u8_t *)q + SIZEOF_STRUCT_PBUF + offset)), in pbuf_alloc() 288 pbuf_init_alloced_pbuf(p, LWIP_MEM_ALIGN((void *)((u8_t *)p + SIZEOF_STRUCT_PBUF + offset)), in pbuf_alloc()
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | arch.h | 293 #ifndef LWIP_MEM_ALIGN 294 #define LWIP_MEM_ALIGN(addr) ((void *)(((mem_ptr_t)(addr) + MEM_ALIGNMENT - 1) & ~(mem_ptr_t)(MEM_A… macro
|
| /lib/lwip/lwip/src/api/ |
| A D | netdb.c | 200 h = (struct gethostbyname_r_helper *)LWIP_MEM_ALIGN(buf); in lwip_gethostbyname_r()
|
| /lib/lwip/lwip/src/netif/ppp/ |
| A D | vj.c | 628 if(LWIP_MEM_ALIGN(n0->payload) != n0->payload) { in vj_uncompress_tcp()
|
| /lib/lwip/lwip/ |
| A D | CHANGELOG | 3657 MEM_ALIGN in LWIP_MEM_ALIGN and MEM_ALIGN_SIZE in LWIP_MEM_ALIGN_SIZE to avoid
|
Completed in 23 milliseconds