Home
last modified time | relevance | path

Searched refs:free (Results 1 – 22 of 22) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_cxx_options/
Dnew_delete.cpp22 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/
Dpheap.c38 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()
Dqueue.c21 free(q->data); in queue_free()
/hal_rpi_pico-latest/src/rp2_common/pico_malloc/
Dmalloc.c23 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()
DCMakeLists.txt14 pico_wrap_function(pico_malloc free)
DBUILD.bazel14 "-Wl,--wrap=free",
/hal_rpi_pico-latest/docs/
Dexamples.md19 …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/
DLICENSE5 Permission is hereby granted, free of charge, to any person obtaining a copy
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/include/
Dcyw43_configport.h198 #define cyw43_free free
/hal_rpi_pico-latest/test/pico_sha256_test/
Dpico_sha256_test.c166 free(buffer); in run_test()
/hal_rpi_pico-latest/src/common/pico_util/include/pico/util/
Dpheap.h206 pheap_node_id_t ph_remove_head(pheap_t *heap, bool free);
/hal_rpi_pico-latest/src/common/pico_time/
Dtime.c308 free(pool->entries); in alarm_pool_destroy()
309 free(pool); in alarm_pool_destroy()
/hal_rpi_pico-latest/test/pico_float_test/llvm/
DLICENSE.TXT18 Permission is hereby granted, free of charge, to any person obtaining a copy of
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2040/
Dmemmap_no_flash.ld213 * stack is not used then all of SCRATCH_X is free.
Dmemmap_blocked_ram.ld245 * stack is not used then all of SCRATCH_X is free.
Dmemmap_copy_to_ram.ld246 * stack is not used then all of SCRATCH_X is free.
Dmemmap_default.ld245 * stack is not used then all of SCRATCH_X is free.
/hal_rpi_pico-latest/src/rp2_common/pico_crt0/rp2350/
Dmemmap_no_flash.ld218 * stack is not used then all of SCRATCH_X is free.
Dmemmap_copy_to_ram.ld266 * stack is not used then all of SCRATCH_X is free.
Dmemmap_default.ld259 * stack is not used then all of SCRATCH_X is free.
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/
DLICENSE.txt68 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
75 worldwide, non-exclusive, no-charge, royalty-free, irrevocable
/hal_rpi_pico-latest/tools/pioasm/gen/
Dlexer.cpp2857 free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ in yyfree()