Home
last modified time | relevance | path

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

/lib/libc/
Dmalloc.c34 static HeapPool pool[HEAP_POOLS] = { variable
71 char *addr = (char *)pool[idx].top; in grow_small()
81 pool[idx].top += bucketSz * HEAP_INCREMENT; in grow_small()
89 obj->next = pool[idx].free; in grow_small()
90 pool[idx].free = obj; in grow_small()
101 if (pool[idx].free == 0) in malloc_small()
105 if (pool[idx].free == 0) in malloc_small()
108 hdr = pool[idx].free; in malloc_small()
109 pool[idx].free = hdr->next; in malloc_small()
119 mem->next = pool[idx].free; in free_small()
[all …]
/lib/liblwip/
DUPGRADING85 * Netdb uses a memp pool for allocating memory when getaddrinfo() is called,
88 * DNS_LOCAL_HOSTLIST_IS_DYNAMIC uses a memp pool instead of the heap, so
94 * PPPoE uses a MEMP pool instead of the heap, so MEMP_NUM_PPPOE_INTERFACES
DCHANGELOG286 * pbuf.c/.h, timers.c: freeing ooseq pbufs when the pbuf pool is empty implemented
345 * opt.h, memp_std.h, memp.c, ppp_oe.h/.c: PPPoE now uses its own MEMP pool
350 MEMP pool instead of the heap
482 * opt.h, memp_std.h, dns.h, netdb.c, memp.c: Let netdb use a memp pool
1012 queueing a call into tcpip_thread to free ooseq-bufs if the pool is empty
1148 bigger malloc pool if one is empty (only usable with MEM_USE_POOLS).
1176 of the pool allocator (can save code size with MEM_LIBC_MALLOC if libc-malloc
1406 RECV_BUFSIZE_DEFAULT (fixes bug #23726: pbuf pool exhaustion on slow recv())
1415 out of pool pbufs.
1939 each pool element (increasing their size, of course), filling them with a
[all …]
/lib/liblwip/doc/
Drawapi.txt395 Initializes the pbuf memory pool defined by PBUF_POOL_SIZE.