Home
last modified time | relevance | path

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

/lib/lwip/lwip/src/include/lwip/
A Daltcp.h92 struct altcp_pcb *altcp_new(altcp_allocator_t *allocator);
93 struct altcp_pcb *altcp_new_ip6(altcp_allocator_t *allocator);
94 struct altcp_pcb *altcp_new_ip_type(altcp_allocator_t *allocator, u8_t ip_type);
164 #define altcp_new(allocator) tcp_new() argument
165 #define altcp_new_ip6(allocator) tcp_new_ip6() argument
166 #define altcp_new_ip_type(allocator, ip_type) tcp_new_ip_type(ip_type) argument
/lib/lwip/lwip/src/core/
A Daltcp.c164 altcp_new_ip6(altcp_allocator_t *allocator) in altcp_new_ip6() argument
166 return altcp_new_ip_type(allocator, IPADDR_TYPE_V6); in altcp_new_ip6()
174 altcp_new(altcp_allocator_t *allocator) in altcp_new() argument
176 return altcp_new_ip_type(allocator, IPADDR_TYPE_V4); in altcp_new()
189 altcp_new_ip_type(altcp_allocator_t *allocator, u8_t ip_type) in altcp_new_ip_type() argument
192 if (allocator == NULL) { in altcp_new_ip_type()
196 if (allocator->alloc == NULL) { in altcp_new_ip_type()
200 conn = allocator->alloc(allocator->arg, ip_type); in altcp_new_ip_type()
/lib/zstd/decompress/
A Dzstd_ddict.c164 ZSTD_customMem const allocator = { NULL, NULL, NULL }; in ZSTD_createDDict() local
165 return ZSTD_createDDict_advanced(dict, dictSize, ZSTD_dlm_byCopy, ZSTD_dct_auto, allocator); in ZSTD_createDDict()
174 ZSTD_customMem const allocator = { NULL, NULL, NULL }; in ZSTD_createDDict_byReference() local
175 … return ZSTD_createDDict_advanced(dictBuffer, dictSize, ZSTD_dlm_byRef, ZSTD_dct_auto, allocator); in ZSTD_createDDict_byReference()
/lib/lzma/
A Dlzma.txt341 You must use external allocator:
376 alloc - Memory allocator.
458 For example, you can use Large RAM Pages (2 MB) in allocBig allocator for
461 It's OK to use same allocator for alloc and allocBig.
/lib/mbedtls/external/mbedtls/
A DChangeLog4637 * NULL pointer dereference in the buffer-based allocator when the buffer is
4793 * Enforce alignment in the buffer allocator even if buffer is not aligned
5088 * Buffer-based memory allocator added (no malloc() / free() / HEAP usage)
/lib/lwip/lwip/
A DCHANGELOG2462 of the pool allocator (can save code size with MEM_LIBC_MALLOC if libc-malloc

Completed in 22 milliseconds