Searched refs:head (Results 1 – 9 of 9) sorted by relevance
/trusted-firmware-m-3.4.0/secure_fw/spm/include/ |
D | lists.h | 46 #define BI_LIST_IS_EMPTY(head) ((head)->bnext == (head)) argument 52 #define BI_LIST_FOR_EACH(node, head) \ argument 53 for (node = (head)->bnext; node != head; node = (node)->bnext) 57 #define UNI_LISI_INIT_NODE(head, link) do { \ argument 58 if ((head) != NULL) { \ 59 (head)->link = NULL; \ 96 #define UNI_LIST_FOREACH(node, head, link) \ argument 97 for (node = (head)->link; node != NULL; node = (node)->link) 100 #define UNI_LIST_FOREACH_NODE_PREV(prev, node, head, link) \ argument 101 for (prev = NULL, node = (head)->link; \ [all …]
|
/trusted-firmware-m-3.4.0/platform/ext/target/arm/rss/common/rss_comms/ |
D | rss_comms_queue.c | 17 size_t head; member 34 return queue.head == queue.tail; in is_empty() 39 return advance(queue.head) == queue.tail; in is_full() 48 queue.buf[queue.head] = entry; in queue_enqueue() 49 queue.head = advance(queue.head); in queue_enqueue()
|
/trusted-firmware-m-3.4.0/platform/ext/target/nxp/common/Native_Driver/components/lists/ |
D | fsl_component_generic_list.c | 36 list_element_handle_t element = list->head; in LIST_Error_Check() 82 list->head = NULL; in LIST_Init() 134 list->head = element; in LIST_AddTail() 187 list->head->prev = element; in LIST_AddHead() 192 element->next = list->head; in LIST_AddHead() 193 list->head = element; in LIST_AddHead() 228 element = list->head; in LIST_RemoveHead() 242 list->head = element->next; /*Is NULL if element is head*/ in LIST_RemoveHead() 266 return list->head; in LIST_GetHead() 340 list_element_handle_t element_list = element->list->head; in LIST_RemoveElement() [all …]
|
D | fsl_component_generic_list.h | 52 struct list_element_tag *head; /*!< list head */ member
|
/trusted-firmware-m-3.4.0/secure_fw/spm/cmsis_psa/ |
D | thread.c | 38 static void insert_by_prior(struct thread_t **head, struct thread_t *node) in insert_by_prior() argument 40 if (*head == NULL || (node->priority <= (*head)->priority)) { in insert_by_prior() 41 node->next = *head; in insert_by_prior() 42 *head = node; in insert_by_prior() 44 struct thread_t *iter = *head; in insert_by_prior()
|
D | static_loader.c | 73 struct partition_t *load_a_partition_assuredly(struct partition_head_t *head) in load_a_partition_assuredly() argument 78 if (!head) { in load_a_partition_assuredly() 115 UNI_LIST_INSERT_AFTER(head, partition, next); in load_a_partition_assuredly()
|
/trusted-firmware-m-3.4.0/secure_fw/spm/include/load/ |
D | spm_load_api.h | 67 struct partition_t *load_a_partition_assuredly(struct partition_head_t *head);
|
/trusted-firmware-m-3.4.0/lib/ext/t_cose/test/ |
D | t_cose_test.c | 281 struct q_useful_buf_c head = q_useful_buf_head(signed_cose, sizeof(cwt_first_part_bytes)); in short_circuit_make_cwt_test() local 282 if(q_useful_buf_compare(head, fp)) { in short_circuit_make_cwt_test()
|
/trusted-firmware-m-3.4.0/platform/ext/target/cypress/psoc64/libs/core-lib/docs/html/ |
D | navtree.js | 99 var head = document.getElementsByTagName("head")[0]; 113 head.appendChild(script);
|