/hal_espressif-latest/components/bt/porting/include/os/ |
D | queue.h | 118 #define CIRCLEQ_HEAD_INITIALIZER(head) \ argument 119 { (void *)&(head), (void *)&(head) } 130 #define CIRCLEQ_EMPTY(head) ((head)->cqh_first == (void *)(head)) argument 132 #define CIRCLEQ_FIRST(head) ((head)->cqh_first) argument 134 #define CIRCLEQ_FOREACH(var, head, field) \ argument 135 for ((var) = CIRCLEQ_FIRST((head)); \ 136 (var) != (void *)(head) || ((var) = NULL); \ 139 #define CIRCLEQ_FOREACH_REVERSE(var, head, field) \ argument 140 for ((var) = CIRCLEQ_LAST((head)); \ 141 (var) != (void *)(head) || ((var) = NULL); \ [all …]
|
/hal_espressif-latest/components/heap/ |
D | multi_heap_poisoning.c | 69 __attribute__((noinline)) static uint8_t *poison_allocated_region(poison_head_t *head, size_t allo… in poison_allocated_region() argument 71 uint8_t *data = (uint8_t *)(&head[1]); /* start of data ie 'real' allocated buffer */ in poison_allocated_region() 73 head->alloc_size = alloc_size; in poison_allocated_region() 74 head->head_canary = HEAD_CANARY_PATTERN; in poison_allocated_region() 75 MULTI_HEAP_SET_BLOCK_OWNER(head); in poison_allocated_region() 95 poison_head_t *head = (poison_head_t *)((intptr_t)data - sizeof(poison_head_t)); in verify_allocated_region() local 96 poison_tail_t *tail = (poison_tail_t *)((intptr_t)data + head->alloc_size); in verify_allocated_region() 99 if (head->head_canary != HEAD_CANARY_PATTERN) { in verify_allocated_region() 101 …EAP_STDERR_PRINTF("CORRUPT HEAP: Bad head at %p. Expected 0x%08x got 0x%08x\n", &head->head_canary, in verify_allocated_region() 102 HEAD_CANARY_PATTERN, head->head_canary); in verify_allocated_region() [all …]
|
/hal_espressif-latest/components/esp_hw_support/port/ |
D | regdma_link.c | 34 return (void *)((char *)link + offsetof(regdma_link_continuous_t, head)); in regdma_link_new_continuous() 50 return (void *)((char *)link + offsetof(regdma_link_addr_map_t, head)); in regdma_link_new_addr_map() 62 return (void *)((char *)link + offsetof(regdma_link_write_wait_t, head)); in regdma_link_new_write() 74 return (void *)((char *)link + offsetof(regdma_link_write_wait_t, head)); in regdma_link_new_wait() 90 return (void *)((char *)link + offsetof(regdma_link_branch_continuous_t, head)); in regdma_link_new_branch_continuous() 106 return (void *)((char *)link + offsetof(regdma_link_branch_addr_map_t, head)); in regdma_link_new_branch_addr_map() 118 return (void *)((char *)link + offsetof(regdma_link_branch_write_wait_t, head)); in regdma_link_new_branch_write() 130 return (void *)((char *)link + offsetof(regdma_link_branch_write_wait_t, head)); in regdma_link_new_branch_wait() 184 …return regdma_link_new_continuous_default((void *)(config->continuous.backup), config->head.length, in regdma_link_init_continuous_wrapper() 185 (void *)(config->continuous.restore), next[0], config->head.skip_b, in regdma_link_init_continuous_wrapper() [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/include/ |
D | mesh_slist.h | 35 sys_snode_t *head; member 194 list->head = NULL; in sys_slist_init() 209 return (!list->head); in sys_slist_is_empty() 221 return list->head; in sys_slist_peek_head() 273 node->next = list->head; in sys_slist_prepend() 274 list->head = node; in sys_slist_prepend() 277 list->tail = list->head; in sys_slist_prepend() 296 list->head = node; in sys_slist_append() 315 void *head, void *tail) in sys_slist_append_list() argument 318 list->head = (sys_snode_t *)head; in sys_slist_append_list() [all …]
|
D | mesh_dlist.h | 33 struct _dnode *head; /* ptr to head of list (sys_dlist_t) */ member 192 list->head = (sys_dnode_t *)list; in sys_dlist_init() 209 return list->head == node; in sys_dlist_is_head() 236 return list->head == list; in sys_dlist_is_empty() 251 return list->head != list->tail; in sys_dlist_has_multiple_nodes() 264 return sys_dlist_is_empty(list) ? NULL : list->head; in sys_dlist_peek_head() 279 return list->head; in sys_dlist_peek_head_not_empty() 361 node->next = list->head; in sys_dlist_prepend() 364 list->head->prev = node; in sys_dlist_prepend() 365 list->head = node; in sys_dlist_prepend() [all …]
|
D | mesh_buf.h | 1622 struct net_buf *net_buf_frag_add(struct net_buf *head, struct net_buf *frag);
|
/hal_espressif-latest/components/bt/common/osi/ |
D | list.c | 13 list_node_t *head; member 30 list->head = list->tail = NULL; in list_new_internal() 97 return list->head->data; in list_front() 142 node->next = list->head; in list_prepend() 144 list->head = node; in list_prepend() 146 list->tail = list->head; in list_prepend() 164 list->head = node; in list_append() 183 if (list->head->data == data) { in list_remove() 184 list_node_t *next = list_free_node(list, list->head); in list_remove() 185 if (list->tail == list->head) { in list_remove() [all …]
|
/hal_espressif-latest/components/esp_rom/include/esp32s2/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 95 lldesc_t **head, 101 lldesc_t *lldesc_num2link(lldesc_t * head, uint16_t nblks); 103 lldesc_t *lldesc_set_owner(lldesc_t * head, uint16_t nblks, uint8_t owner); 105 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 107 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_rom/include/esp32/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 95 lldesc_t **head, 101 lldesc_t *lldesc_num2link(lldesc_t * head, uint16_t nblks); 103 lldesc_t *lldesc_set_owner(lldesc_t * head, uint16_t nblks, uint8_t owner); 105 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 107 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_hw_support/include/esp_private/ |
D | esp_regdma.h | 152 regdma_link_head_t head; member 159 regdma_link_head_t head; member 166 regdma_link_head_t head; member 172 regdma_link_head_t head; member 179 regdma_link_head_t head; member 186 regdma_link_head_t head; member 191 regdma_link_head_t head; member 200 #define REGDMA_LINK_HEAD(plink) (((regdma_link_config_t *)plink)->head) 214 .head = REGDMA_LINK_HEAD_INIT( \ 232 .head = REGDMA_LINK_HEAD_INIT( \ [all …]
|
D | regdma_link.h | 18 _pl->head.length = _len; \ 19 _pl->head.mode = _mode; \ 20 _pl->head.branch = _branch; \ 21 _pl->head.skip_r = _sr; \ 22 _pl->head.skip_b = _sb; \ 23 _pl->head.eof = _eof; \
|
/hal_espressif-latest/components/esp_rom/include/esp32c6/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 95 lldesc_t **head, 101 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 103 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_rom/include/esp32c2/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 94 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 96 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_rom/include/esp32c3/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 94 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 96 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_rom/include/esp32h2/rom/ |
D | lldesc.h | 59 lldesc_t *head; member 94 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 96 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/esp_rom/include/esp32s3/rom/ |
D | lldesc.h | 56 lldesc_t *head; member 91 static inline uint32_t lldesc_get_chain_length(lldesc_t *head) in lldesc_get_chain_length() argument 93 lldesc_t *ds = head; in lldesc_get_chain_length()
|
/hal_espressif-latest/components/soc/ |
D | lldesc.c | 33 int lldesc_get_received_len(lldesc_t* head, lldesc_t** out_next) in lldesc_get_received_len() argument 35 lldesc_t* desc = head; in lldesc_get_received_len()
|
/hal_espressif-latest/components/wpa_supplicant/src/wps/ |
D | wps_attr_process.c | 58 const u8 *head; in wps_process_key_wrap_auth() local 66 head = wpabuf_head(msg); in wps_process_key_wrap_auth() 68 if (head + len != key_wrap_auth - 4) { in wps_process_key_wrap_auth() 74 if (hmac_sha256(wps->authkey, WPS_AUTHKEY_LEN, head, len, hash) < 0 || in wps_process_key_wrap_auth()
|
/hal_espressif-latest/zephyr/scripts/blobs/ |
D | esp_genblobs.py | 65 head, tail = ntpath.split(path) 66 return tail or ntpath.basename(head)
|
/hal_espressif-latest/components/soc/include/soc/ |
D | lldesc.h | 57 int lldesc_get_received_len(lldesc_t* head, lldesc_t** out_next);
|
/hal_espressif-latest/components/hal/ |
D | sdio_slave_hal.c | 425 sdio_slave_hal_send_desc_t *head = NULL; in send_get_unsent_desc() local 427 ret = sdio_ringbuf_recv(&(hal->send_desc_queue), &head, &tail, RINGBUF_GET_ONE); in send_get_unsent_desc() 431 HAL_ASSERT(head == tail); in send_get_unsent_desc() 432 (*out_arg) = head->arg; in send_get_unsent_desc() 433 (*out_return_cnt) = sdio_ringbuf_return(&(hal->send_desc_queue), (uint8_t*) head); in send_get_unsent_desc()
|
/hal_espressif-latest/components/mbedtls/port/aes/dma/ |
D | esp_aes.c | 121 static inline void lldesc_append(lldesc_t **head, lldesc_t *item) in lldesc_append() argument 124 if (*head == NULL) { in lldesc_append() 125 *head = item; in lldesc_append() 129 it = *head; in lldesc_append()
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_common/ |
D | mesh_buf.c | 646 struct net_buf *net_buf_frag_add(struct net_buf *head, struct net_buf *frag) in net_buf_frag_add() argument 650 if (!head) { in net_buf_frag_add() 654 net_buf_frag_insert(net_buf_frag_last(head), frag); in net_buf_frag_add() 656 return head; in net_buf_frag_add()
|
/hal_espressif-latest/components/esp_timer/src/ |
D | esp_timer.c | 386 esp_timer_handle_t head = LIST_FIRST(&s_inactive_timers[dispatch_method]); in timer_insert_inactive() local 387 if (head == NULL) { in timer_insert_inactive() 393 LIST_INSERT_BEFORE(head, timer, list_entry); in timer_insert_inactive()
|
/hal_espressif-latest/components/esp_hw_support/ |
D | sleep_retention.c | 503 bool skip_b = retent[i].config.head.skip_b; in sleep_retention_entries_create_impl() 504 bool skip_r = retent[i].config.head.skip_r; in sleep_retention_entries_create_impl()
|