Searched refs:mem_ptr_t (Results 1 – 11 of 11) sorted by relevance
70 typedef uintptr_t mem_ptr_t; typedef147 #define LWIP_MEM_ALIGN(addr) ((void *)(((mem_ptr_t)(addr) + MEM_ALIGNMENT - 1) & ~(mem_ptr_t)(MEM_A…
56 #ifndef mem_ptr_t59 typedef uintptr_t mem_ptr_t; typedef
424 LWIP_ASSERT("mem_free: sanity check alignment", (((mem_ptr_t)rmem) & (MEM_ALIGNMENT-1)) == 0); in mem_free()720 (mem_ptr_t)mem + SIZEOF_STRUCT_MEM + size <= (mem_ptr_t)ram_end); in mem_malloc()722 ((mem_ptr_t)mem + SIZEOF_STRUCT_MEM) % MEM_ALIGNMENT == 0); in mem_malloc()724 (((mem_ptr_t)mem) & (MEM_ALIGNMENT-1)) == 0); in mem_malloc()
140 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum()198 int odd = ((mem_ptr_t)pb & 1); in lwip_standard_chksum()207 if (((mem_ptr_t)ps & 3) && len > 1) { in lwip_standard_chksum()
326 ((mem_ptr_t)memp % MEM_ALIGNMENT) == 0); in do_memp_malloc_pool()410 ((mem_ptr_t)mem % MEM_ALIGNMENT) == 0); in do_memp_free_pool()
336 ((mem_ptr_t)p->payload % MEM_ALIGNMENT) == 0); in pbuf_alloc_ext()404 ((mem_ptr_t)q->payload % MEM_ALIGNMENT) == 0); in pbuf_alloc_ext()435 ((mem_ptr_t)p->payload % MEM_ALIGNMENT) == 0); in pbuf_alloc_ext()
812 …LWIP_ASSERT("seg->tcphdr not aligned", ((mem_ptr_t)seg->tcphdr % LWIP_MIN(MEM_ALIGNMENT, 4)) == 0); in tcp_enqueue_flags()
15 typedef u32_t mem_ptr_t; typedef
116 typedef u32_t mem_ptr_t;
151 #define IS_SOCK_ADDR_ALIGNED(name) ((((mem_ptr_t)(name)) % 4) == 0)
Completed in 32 milliseconds