Home
last modified time | relevance | path

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

/xnu-12377.1.9/tests/unit/mocks/fibers/
H A Dchecker.c72 struct watchpoint_node { struct
74 struct watchpoint_node *next; argument
79 struct watchpoint_node **buckets;
95 map->buckets = calloc(map->capacity, sizeof(struct watchpoint_node*)); in watchpoint_map_init()
127 struct watchpoint_node** new_buckets = calloc(new_capacity, sizeof(struct watchpoint_node*)); in watchpoint_map_resize()
134 struct watchpoint_node* current = map->buckets[i]; in watchpoint_map_resize()
136 struct watchpoint_node* node_to_move = current; in watchpoint_map_resize()
158 struct watchpoint_node* new_node = malloc(sizeof(struct watchpoint_node)); in watchpoint_map_add()
173 struct watchpoint_node* current = map->buckets[index]; in watchpoint_map_find_remove()
174 struct watchpoint_node* prev = NULL; in watchpoint_map_find_remove()
[all …]