Searched refs:node (Results 1 – 10 of 10) sorted by relevance
/lib/utils/ |
A D | rb.c | 225 tree->root = node; in rb_insert() 227 set_color(node, BLACK); in rb_insert() 244 set_color(node, RED); in rb_insert() 246 stack[stacksz] = node; in rb_insert() 392 if ((get_child(node, 0U) != NULL) && (get_child(node, 1U) != NULL)) { in rb_remove() 430 if (loparent == node) { in rb_remove() 481 if (is_black(node)) { in rb_remove() 506 if (node != NULL) { in z_rb_walk() 508 visit_fn(node, cookie); in z_rb_walk() 521 return is_black(node); in z_rb_is_black() [all …]
|
A D | onoff.c | 163 SYS_SLIST_FOR_EACH_CONTAINER_SAFE(mlist, mon, tmp, node) { in notify_monitors() 187 sys_snode_t *node = sys_slist_get_not_empty(list); in notify_all() local 189 CONTAINER_OF(node, in notify_all() 191 node); in notify_all() 259 SYS_SLIST_FOR_EACH_CONTAINER(clients, cp, node) { in process_complete() 462 sys_slist_append(&mgr->clients, &cli->node); in onoff_request() 533 sys_slist_append(&mgr->clients, &cli->node); in onoff_reset() 556 if (sys_slist_find_and_remove(&mgr->clients, &cli->node)) { in onoff_cancel() 579 sys_slist_append(&mgr->monitors, &mon->node); in onoff_monitor_register() 598 if (sys_slist_find_and_remove(&mgr->monitors, &mon->node)) { in onoff_monitor_unregister()
|
/lib/heap/ |
A D | heap_listener.c | 17 sys_slist_append(&heap_listener_list, &listener->node); in heap_listener_register() 26 sys_slist_find_and_remove(&heap_listener_list, &listener->node); in heap_listener_unregister() 36 SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) { in heap_listener_notify_alloc() 52 SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) { in heap_listener_notify_free() 68 SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) { in heap_listener_notify_resize()
|
/lib/hash/ |
A D | hash_map_sc.c | 22 sys_dnode_t node; member 30 sys_dnode_init(&entry->node); in sys_hashmap_sc_entry_init() 38 sys_dlist_append(&buckets[hash % map->data->n_buckets], &entry->node); in sys_hashmap_sc_insert_entry() 48 entry = CONTAINER_OF(sys_dlist_get(list), struct sys_hashmap_sc_entry, node); in sys_hashmap_sc_insert_all() 65 node); in sys_hashmap_sc_to_list() 66 sys_dlist_append(list, &entry->node); in sys_hashmap_sc_to_list() 126 SYS_DLIST_FOR_EACH_CONTAINER(bucket, entry, node) { in sys_hashmap_sc_find() 153 SYS_DLIST_FOR_EACH_CONTAINER(bucket, entry, node) { in sys_hashmap_sc_iter_next() 208 entry = CONTAINER_OF(sys_dlist_get(&list), struct sys_hashmap_sc_entry, node); in sys_hashmap_sc_clear() 267 sys_dlist_remove(&entry->node); in sys_hashmap_sc_remove()
|
/lib/acpi/ |
A D | acpi.c | 121 ACPI_NAMESPACE_NODE *node; in acpi_name_lookup() local 135 node = NULL; in acpi_name_lookup() 139 return node; in acpi_name_lookup() 144 ACPI_NAMESPACE_NODE *node; in acpi_evaluate_method() local 169 return node; in acpi_evaluate_method() 197 ACPI_NAMESPACE_NODE *node; in dev_resource_enum_callback() local 286 ACPI_NAMESPACE_NODE *node; in acpi_current_resource_get() local 297 if (!node) { in acpi_current_resource_get() 319 ACPI_NAMESPACE_NODE *node; in acpi_possible_resource_get() local 330 if (!node) { in acpi_possible_resource_get() [all …]
|
/lib/posix/options/ |
A D | posix_internal.h | 99 sys_snode_t node; member 107 sys_snode_t node; member
|
A D | shm.c | 31 sys_dnode_t node; member 66 SYS_DLIST_FOR_EACH_CONTAINER(&shm_list, shm, node) { in shm_obj_find() 77 sys_dlist_init(&shm->node); in shm_obj_add() 78 sys_dlist_append(&shm_list, &shm->node); in shm_obj_add() 83 sys_dlist_remove(&shm->node); in shm_obj_remove()
|
A D | pthread.c | 59 sys_snode_t node; member 203 .node = {0}, in __z_pthread_cleanup_init() 219 sys_slist_prepend(&t->cleanup_list, &c->node); in __z_pthread_cleanup_push() 225 sys_snode_t *node; in __z_pthread_cleanup_pop() local 232 node = sys_slist_get(&t->cleanup_list); in __z_pthread_cleanup_pop() 233 __ASSERT_NO_MSG(node != NULL); in __z_pthread_cleanup_pop() 234 c = CONTAINER_OF(node, struct __pthread_cleanup, node); in __z_pthread_cleanup_pop()
|
/lib/open-amp/ |
A D | Kconfig | 54 in the device tree by the "zephyr,ipc_rsc_table" node.
|
/lib/net_buf/ |
A D | buf.c | 418 sys_slist_append(list, &buf->node); in net_buf_slist_put()
|
Completed in 33 milliseconds