Lines Matching refs:tree
424 struct rb_root *tree; in table_seq_start() local
453 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
456 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
457 for (node = rb_first(tree); node; node = rb_next(node)) { in table_seq_start()
485 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
488 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
489 node = rb_first(tree); in table_seq_start()
506 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()