Lines Matching refs:tree
421 struct rb_root *tree; in table_seq_start() local
450 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
453 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
454 for (node = rb_first(tree); node; node = rb_next(node)) { in table_seq_start()
482 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_start()
485 if (!RB_EMPTY_ROOT(tree)) { in table_seq_start()
486 node = rb_first(tree); in table_seq_start()
503 struct rb_root *tree; in table_seq_next() local
547 tree = toss ? &ls->ls_rsbtbl[bucket].toss : &ls->ls_rsbtbl[bucket].keep; in table_seq_next()
550 if (!RB_EMPTY_ROOT(tree)) { in table_seq_next()
551 next = rb_first(tree); in table_seq_next()