| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_memory_buffer_alloc.data | 1 Memory buffer alloc self test 4 Memory buffer alloc - free in middle, alloc at end 7 Memory buffer alloc - free in middle, realloc 10 Memory buffer alloc - free in middle, merge, realloc 13 Memory buffer alloc - free at end, merge, realloc 16 Memory buffer alloc - Out of Memory test
|
| A D | test_suite_psa_crypto_memory.data | 31 PSA crypto local input alloc 34 PSA crypto local input alloc, NULL buffer 46 PSA crypto local output alloc 49 PSA crypto local output alloc, NULL buffer
|
| A D | test_suite_psa_crypto_se_driver_hal_mocks.data | 22 SE key importing mock test: alloc failed 43 SE key generating mock test: alloc failed
|
| A D | test_suite_psa_crypto_util.function | 70 /* We alloc a copy of input buffer with limited length so that sanitizers
|
| /lib/efi_loader/ |
| A D | efi_memory.c | 78 u64 addr = (uintptr_t)alloc; in checksum() 625 struct efi_pool_allocation *alloc; in efi_allocate_pool() local 641 alloc->num_pages = num_pages; in efi_allocate_pool() 642 alloc->checksum = checksum(alloc); in efi_allocate_pool() 643 *buffer = alloc->data; in efi_allocate_pool() 684 struct efi_pool_allocation *alloc; in efi_realloc() local 704 alloc->checksum != checksum(alloc)) { in efi_realloc() 710 if (alloc->num_pages == num_pages) in efi_realloc() 753 alloc->checksum != checksum(alloc)) { in efi_free_pool() 758 alloc->checksum = 0; in efi_free_pool() [all …]
|
| /lib/ |
| A D | alist.c | 29 lst->alloc = start_size; in alist_init() 70 memcpy(new_data, lst->data, lst->obj_size * lst->alloc); in alist_expand_to() 73 memset(new_data + lst->obj_size * lst->alloc, '\0', in alist_expand_to() 74 lst->obj_size * (new_alloc - lst->alloc)); in alist_expand_to() 75 lst->alloc = new_alloc; in alist_expand_to() 83 return alist_expand_to(lst, lst->alloc + inc_by); in alist_expand_by() 99 for (new_alloc = lst->alloc ?: ALIST_INITIAL_SIZE; in alist_expand_min() 155 if (index >= lst->alloc && !alist_expand_min(lst, minsize)) in alist_ensure_ptr()
|
| A D | lmb.c | 244 !alist_expand_by(lmb_rgn_lst, lmb_rgn_lst->alloc)) in lmb_add_region_flags() 346 phys_size_t size, u32 flags, bool alloc) in lmb_overlap_checks() argument 357 if (alloc || flags != LMB_NONE || flags != rgnflags) in lmb_overlap_checks()
|
| /lib/lzma/ |
| A D | LzmaDec.h | 126 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc); 127 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc); 129 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc); 130 void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc); 215 ELzmaStatus *status, ISzAlloc *alloc);
|
| A D | LzmaDec.c | 894 alloc->Free(alloc, p->probs); in LzmaDec_FreeProbs() 900 alloc->Free(alloc, p->dic); in LzmaDec_FreeDict() 906 LzmaDec_FreeProbs(p, alloc); in LzmaDec_Free() 907 LzmaDec_FreeDict(p, alloc); in LzmaDec_Free() 941 LzmaDec_FreeProbs(p, alloc); in LzmaDec_AllocateProbs2() 942 p->probs = (CLzmaProb *)alloc->Alloc(alloc, numProbs * sizeof(CLzmaProb)); in LzmaDec_AllocateProbs2() 968 LzmaDec_FreeDict(p, alloc); in LzmaDec_Allocate() 969 p->dic = (Byte *)alloc->Alloc(alloc, dicBufSize); in LzmaDec_Allocate() 972 LzmaDec_FreeProbs(p, alloc); in LzmaDec_Allocate() 983 ELzmaStatus *status, ISzAlloc *alloc) in LzmaDecode() argument [all …]
|
| A D | lzma.txt | 345 ISzAlloc alloc = { SzAlloc, SzFree }; 363 ELzmaStatus *status, ISzAlloc *alloc); 376 alloc - Memory allocator. 455 1) alloc - for small arrays. 461 It's OK to use same allocator for alloc and allocBig. 542 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig);
|
| /lib/mbedtls/external/mbedtls/library/ |
| A D | memory_buffer_alloc.c | 36 size_t alloc; member 80 hdr->alloc, hdr->size); in debug_header() 129 if (hdr->alloc > 1) { in verify_header() 241 if (cur->alloc != 0) { in buffer_alloc_calloc() 257 cur->alloc = 1; in buffer_alloc_calloc() 300 new->alloc = 0; in buffer_alloc_calloc() 328 cur->alloc = 1; in buffer_alloc_calloc() 384 if (hdr->alloc != 1) { in buffer_alloc_free() 392 hdr->alloc = 0; in buffer_alloc_free() 407 if (hdr->prev != NULL && hdr->prev->alloc == 0) { in buffer_alloc_free() [all …]
|
| /lib/lwip/lwip/src/core/ |
| A D | altcp.c | 196 if (allocator->alloc == NULL) { in altcp_new_ip_type() 200 conn = allocator->alloc(allocator->arg, ip_type); in altcp_new_ip_type()
|
| A D | tcp_out.c | 233 u16_t alloc = length; in tcp_pbuf_prealloc() local 243 alloc = max_length; in tcp_pbuf_prealloc() 262 alloc = LWIP_MIN(max_length, LWIP_MEM_ALIGN_SIZE(TCP_OVERSIZE_CALC_LENGTH(length))); in tcp_pbuf_prealloc() 266 p = pbuf_alloc(layer, alloc, PBUF_RAM); in tcp_pbuf_prealloc()
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | altcp.h | 87 altcp_new_fn alloc; member
|
| /lib/lwip/lwip/ |
| A D | UPGRADING | 121 * Added LWIP_MEMPOOL_* (declare/init/alloc/free) to declare private memp pools
|
| A D | CHANGELOG | 3293 string, point on one of your's ethernetif field, or alloc a string you will free yourself).
|