Home
last modified time | relevance | path

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

/hal_rpi_pico-latest/src/rp2_common/pico_malloc/
Dmalloc.c21 extern void *REAL_FUNC(calloc)(size_t count, size_t size);
83 void *WRAPPER_FUNC(calloc)(size_t count, size_t size) { in WRAPPER_FUNC() argument
85 void *rc = REAL_FUNC(calloc)(count, size); in WRAPPER_FUNC()
DCMakeLists.txt12 pico_wrap_function(pico_malloc calloc)
DBUILD.bazel12 "-Wl,--wrap=calloc",
/hal_rpi_pico-latest/src/common/pico_util/
Dpheap.c13 pheap_t *heap = calloc(1, sizeof(pheap_t)); in ph_create()
14 heap->nodes = calloc(max_nodes, sizeof(pheap_node_t)); in ph_create()
Dqueue.c13 q->data = (uint8_t *)calloc(element_count + 1, element_size); in queue_init_with_spinlock()
/hal_rpi_pico-latest/src/common/pico_time/
Dtime.c114 pool->entries = (alarm_pool_entry_t *) calloc(max_timers, sizeof(alarm_pool_entry_t)); in alarm_pool_create_on_timer()
124 pool->entries = (alarm_pool_entry_t *) calloc(max_timers, sizeof(alarm_pool_entry_t)); in alarm_pool_create_on_timer_with_unused_hardware_alarm()