Searched refs:free (Results 1 – 22 of 22) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/pico_cxx_options/ |
D | new_delete.cpp | 22 void operator delete(void *p) { std::free(p); } in operator delete() 24 void operator delete[](void *p) noexcept { std::free(p); } in operator delete[]() 28 void operator delete(void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete() 30 void operator delete[](void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete[]()
|
/hal_rpi_pico-latest/src/common/pico_util/ |
D | pheap.c | 38 free(heap->nodes); in ph_destroy() 39 free(heap); in ph_destroy() 55 static pheap_node_id_t ph_remove_any_head(pheap_t *heap, pheap_node_id_t root_id, bool free) { in ph_remove_any_head() argument 61 if (free) { in ph_remove_any_head() 76 pheap_node_id_t ph_remove_head(pheap_t *heap, bool free) { in ph_remove_head() argument 78 heap->root_id = ph_remove_any_head(heap, old_root_id, free); in ph_remove_head()
|
D | queue.c | 21 free(q->data); in queue_free()
|
/hal_rpi_pico-latest/src/rp2_common/pico_malloc/ |
D | malloc.c | 23 extern void REAL_FUNC(free)(void *mem); 113 void WRAPPER_FUNC(free)(void *mem) { in WRAPPER_FUNC() argument 115 REAL_FUNC(free)(mem); in WRAPPER_FUNC()
|
D | CMakeLists.txt | 14 pico_wrap_function(pico_malloc free)
|
D | BUILD.bazel | 14 "-Wl,--wrap=free",
|
/hal_rpi_pico-latest/docs/ |
D | examples.md | 19 …nd are released under a 3-Clause BSD licence. Briefly, this means you are free to use the example …
|
/hal_rpi_pico-latest/src/rp2_common/pico_printf/ |
D | LICENSE | 5 Permission is hereby granted, free of charge, to any person obtaining a copy
|
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/include/ |
D | cyw43_configport.h | 198 #define cyw43_free free
|
/hal_rpi_pico-latest/test/pico_sha256_test/ |
D | pico_sha256_test.c | 166 free(buffer); in run_test()
|
/hal_rpi_pico-latest/src/common/pico_util/include/pico/util/ |
D | pheap.h | 206 pheap_node_id_t ph_remove_head(pheap_t *heap, bool free);
|
/hal_rpi_pico-latest/src/common/pico_time/ |
D | time.c | 308 free(pool->entries); in alarm_pool_destroy() 309 free(pool); in alarm_pool_destroy()
|
/hal_rpi_pico-latest/test/pico_float_test/llvm/ |
D | LICENSE.TXT | 18 Permission is hereby granted, free of charge, to any person obtaining a copy of
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2040/ |
D | memmap_no_flash.ld | 213 * stack is not used then all of SCRATCH_X is free.
|
D | memmap_blocked_ram.ld | 245 * stack is not used then all of SCRATCH_X is free.
|
D | memmap_copy_to_ram.ld | 246 * stack is not used then all of SCRATCH_X is free.
|
D | memmap_default.ld | 245 * stack is not used then all of SCRATCH_X is free.
|
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2350/ |
D | memmap_no_flash.ld | 218 * stack is not used then all of SCRATCH_X is free.
|
D | memmap_copy_to_ram.ld | 266 * stack is not used then all of SCRATCH_X is free.
|
D | memmap_default.ld | 259 * stack is not used then all of SCRATCH_X is free.
|
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/ |
D | LICENSE.txt | 68 worldwide, non-exclusive, no-charge, royalty-free, irrevocable 75 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
/hal_rpi_pico-latest/tools/pioasm/gen/ |
D | lexer.cpp | 2857 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ in yyfree()
|