Searched refs:calloc (Results 1 – 6 of 6) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/pico_malloc/ |
D | malloc.c | 21 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()
|
D | CMakeLists.txt | 12 pico_wrap_function(pico_malloc calloc)
|
D | BUILD.bazel | 12 "-Wl,--wrap=calloc",
|
/hal_rpi_pico-latest/src/common/pico_util/ |
D | pheap.c | 13 pheap_t *heap = calloc(1, sizeof(pheap_t)); in ph_create() 14 heap->nodes = calloc(max_nodes, sizeof(pheap_node_t)); in ph_create()
|
D | queue.c | 13 q->data = (uint8_t *)calloc(element_count + 1, element_size); in queue_init_with_spinlock()
|
/hal_rpi_pico-latest/src/common/pico_time/ |
D | time.c | 114 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()
|