Home
last modified time | relevance | path

Searched refs:capacity (Results 1 – 10 of 10) sorted by relevance

/hal_espressif-latest/components/bt/common/osi/
Dfixed_pkt_queue.c17 size_t capacity; member
21 fixed_pkt_queue_t *fixed_pkt_queue_new(size_t capacity) in fixed_pkt_queue_new() argument
28 ret->capacity = capacity; in fixed_pkt_queue_new()
34 osi_sem_new(&ret->enqueue_sem, capacity, capacity); in fixed_pkt_queue_new()
39 osi_sem_new(&ret->dequeue_sem, capacity, 0); in fixed_pkt_queue_new()
92 return queue->capacity; in fixed_pkt_queue_capacity()
Dfixed_queue.c32 size_t capacity; member
38 fixed_queue_t *fixed_queue_new(size_t capacity) in fixed_queue_new() argument
46 ret->capacity = capacity; in fixed_queue_new()
54 osi_sem_new(&ret->enqueue_sem, capacity, capacity); in fixed_queue_new()
59 osi_sem_new(&ret->dequeue_sem, capacity, 0); in fixed_queue_new()
127 return queue->capacity; in fixed_queue_capacity()
Dthread.c35 size_t capacity; member
64 static struct work_queue *osi_work_queue_create(size_t capacity) in osi_work_queue_create() argument
66 if (capacity == 0) { in osi_work_queue_create()
72 wq->queue = xQueueCreate(capacity, sizeof(struct work_item)); in osi_work_queue_create()
74 wq->capacity = capacity; in osi_work_queue_create()
91 wq->capacity = 0; in osi_work_queue_delete()
134 assert (wq->capacity != 0); in osi_thead_work_queue_len()
138 if (available_spaces <= wq->capacity) { in osi_thead_work_queue_len()
139 return wq->capacity - available_spaces; in osi_thead_work_queue_len()
/hal_espressif-latest/components/heap/
Dheap_trace_standalone.c45 size_t capacity; member
140 records.capacity = num_records; in heap_trace_init_standalone()
156 if (records.buffer == NULL || records.capacity == 0) { in heap_trace_start()
166 memset(records.buffer, 0, sizeof(heap_trace_record_t) * records.capacity); in heap_trace_start()
271 summary->capacity = records.capacity; in heap_trace_summary()
300 records.count, records.capacity); in heap_trace_dump_base()
365 records.count, records.capacity, records.high_water_mark); in heap_trace_dump_base()
398 if (records.count == records.capacity) { in record_allocation()
465 for (int i = 0; i < records.capacity; i++) { in list_setup()
502 if (records.count >= records.capacity) { in list_pop_unused()
[all …]
/hal_espressif-latest/components/bt/common/osi/include/osi/
Dfixed_pkt_queue.h35 fixed_pkt_queue_t *fixed_pkt_queue_new(size_t capacity);
Dfixed_queue.h44 fixed_queue_t *fixed_queue_new(size_t capacity);
/hal_espressif-latest/components/heap/include/
Desp_heap_trace.h55 size_t capacity; ///< The capacity of the internal buffer member
/hal_espressif-latest/components/esp_wifi/include/
Desp_mesh.h385 uint16_t capacity; /**< the number of devices in current network */ member
/hal_espressif-latest/components/efuse/esp32s3/
Desp_efuse_table.csv203 FLASH_CAP, EFUSE_BLK1, 123, 3, [] Flash capacity {0: "None"…
206 PSRAM_CAP, EFUSE_BLK1, 131, 2, [] PSRAM capacity {0: "None"…
/hal_espressif-latest/components/bt/esp_ble_mesh/
DKconfig.in535 int "Maximum capacity of the replay protection list"
539 This option specifies the maximum capacity of the replay protection list.