Home
last modified time | relevance | path

Searched refs:realloc (Results 1 – 21 of 21) sorted by relevance

/Zephyr-latest/modules/hal_silabs/simplicity_sdk/src/
Dsl_memory_manager_shim.c30 return realloc(ptr, size); in sl_realloc()
/Zephyr-latest/tests/lib/hash_map/src/
D_main.c15 SYS_HASHMAP_DEFAULT_DEFINE_ADVANCED(custom_load_factor_map, sys_hash32, realloc,
/Zephyr-latest/scripts/native_simulator/native/src/
Dnsi_cmdline.c62 struct args_struct_t *new_args_struct = realloc(args_struct, in nsi_add_command_line_opts()
152 extra_argv = realloc(extra_argv, new_size*sizeof(char *)); in nsi_register_extra_args()
/Zephyr-latest/modules/lvgl/include/
Dlv_conf.h20 #define lv_realloc_core realloc
/Zephyr-latest/lib/libc/common/source/stdlib/
Dmalloc.c241 void *realloc(void *ptr, size_t requested_size) in realloc() function
282 void *realloc(void *ptr, size_t size) in realloc() function
318 return realloc(ptr, size); in reallocarray()
/Zephyr-latest/lib/posix/options/
Denv.c156 envp = realloc(environ, sizeof(char **) * in setenv()
178 env = realloc(environ[ret], tsize); in setenv()
244 envp = realloc(environ, (esize + 1 /* NULL */) * sizeof(char **)); in unsetenv()
/Zephyr-latest/scripts/native_simulator/common/src/
Dnsi_host_trampolines.c61 return realloc(ptr, size); in nsi_host_realloc()
/Zephyr-latest/samples/modules/compression/lz4/src/
Dmain.c39 compressed_data = (char *)realloc(compressed_data, in main()
/Zephyr-latest/scripts/
Dvalgrind.supp6 fun:realloc
/Zephyr-latest/tests/lib/mem_alloc/src/
Dmain.c81 reloc_ptr = realloc(ptr, BUF_LEN); in _test_no_mem_realloc()
228 reloc_ptr = realloc(ptr, new_size); in ZTEST()
343 reloc_ptr = realloc(mlc_ptr, new_size); in ZTEST()
/Zephyr-latest/samples/basic/hash_map/
DKconfig15 Of course, using realloc(), we are limited by the amount of available
/Zephyr-latest/kernel/
Dkheap.c145 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_heap, realloc, heap, ptr, bytes, timeout); in k_heap_realloc()
162 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_heap, realloc, heap, ptr, bytes, timeout, ret); in k_heap_realloc()
/Zephyr-latest/tests/lib/hash_map/
DKconfig15 Of course, using realloc(), we are limited by the amount of available
/Zephyr-latest/boards/native/native_posix/
Dcmdline.c57 struct args_struct_t *new_args_struct = realloc(args_struct, in native_add_command_line_opts()
/Zephyr-latest/lib/libc/minimal/include/
Dstdlib.h32 void *realloc(void *ptr, size_t size);
/Zephyr-latest/scripts/coccinelle/
Dsymbols.txt164 realloc
/Zephyr-latest/include/zephyr/sys/
Dhash_map.h115 return realloc(ptr, size); in sys_hashmap_default_allocator()
/Zephyr-latest/boards/native/nrf_bsim/common/
Dbsim_args_runner.c219 extra_argv = realloc(extra_argv, new_size*sizeof(char *)); in nsi_register_extra_args()
/Zephyr-latest/lib/libc/common/
DKconfig100 reallocarray, which forwards to realloc.
/Zephyr-latest/doc/contribute/coding_guidelines/
Dindex.rst1366 realloc(),ISO/IEC 9899:2011
/Zephyr-latest/doc/releases/
Drelease-notes-3.7.rst275 * Added :c:func:`k_realloc`, that uses kernel heap to implement traditional :c:func:`realloc`