Searched refs:victim (Results 1 – 6 of 6) sorted by relevance
/u-boot/common/ |
A D | dlmalloc.c | 1318 victim = last(q); 1321 if (victim == q) 1324 victim = last(q); 1326 if (victim != q) 1343 for (victim = last(bin); victim != bin; victim = victim->bk) 1356 unlink(victim, bck, fwd); 1359 return chunk2mem(victim); 1432 for (victim = last(bin); victim != bin; victim = victim->bk) 1501 (victim = mmap_chunk(nb))) 1511 victim = top; [all …]
|
A D | dlmalloc.src | 2135 victim = last(q); 2138 if (victim == q) 2141 victim = last(q); 2143 if (victim != q) 2160 for (victim = last(bin); victim != bin; victim = victim->bk) 2173 unlink(victim, bck, fwd); 2176 return chunk2mem(victim); 2249 for (victim = last(bin); victim != bin; victim = victim->bk) 2258 unlink(victim, bck, fwd); 2328 victim = top; [all …]
|
/u-boot/lib/ |
A D | rbtree.c | 495 void rb_replace_node(struct rb_node *victim, struct rb_node *new, in rb_replace_node() argument 498 struct rb_node *parent = rb_parent(victim); in rb_replace_node() 501 __rb_change_child(victim, new, parent, root); in rb_replace_node() 502 if (victim->rb_left) in rb_replace_node() 503 rb_set_parent(victim->rb_left, new); in rb_replace_node() 504 if (victim->rb_right) in rb_replace_node() 505 rb_set_parent(victim->rb_right, new); in rb_replace_node() 508 *new = *victim; in rb_replace_node()
|
/u-boot/drivers/mtd/ubi/ |
A D | fastmap-wl.c | 36 struct ubi_wl_entry *e, *victim = NULL; in find_anchor_wl_entry() local 41 victim = e; in find_anchor_wl_entry() 46 return victim; in find_anchor_wl_entry()
|
A D | fastmap.c | 282 struct ubi_ainf_peb *aeb, *victim; in update_vol() local 315 victim = kmem_cache_alloc(ai->aeb_slab_cache, in update_vol() 317 if (!victim) in update_vol() 320 victim->ec = aeb->ec; in update_vol() 321 victim->pnum = aeb->pnum; in update_vol() 322 list_add_tail(&victim->u.list, &ai->erase); in update_vol()
|
/u-boot/include/linux/ |
A D | rbtree.h | 65 extern void rb_replace_node(struct rb_node *victim, struct rb_node *new,
|
Completed in 15 milliseconds