Lines Matching refs:tree
423 struct rb_root *tree; in table_seq_start() local
452 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
455 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
456 for (node = rb_first(tree); node; node = rb_next(node)) { in table_seq_start()
484 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
487 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
488 node = rb_first(tree); in table_seq_start()
505 struct rb_root *tree; in table_seq_next() local
550 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_next()
553 if (!RB_EMPTY_ROOT(tree)) { in table_seq_next()
554 next = rb_first(tree); in table_seq_next()