Home | History | Annotate | Download | only in gen

Lines Matching defs:nextidx

1577 		uint64_t nextidx;
1581 nextidx = 0;
1583 while ((nfound = radix_tree_gang_lookup_node(t, nextidx,
1585 nextidx = results[nfound - 1]->idx + 1;
1587 if (nextidx == 0) {
1599 uint64_t nextidx;
1603 nextidx = UINT64_MAX;
1605 while ((nfound = radix_tree_gang_lookup_node_reverse(t, nextidx,
1607 nextidx = results[nfound - 1]->idx - 1;
1609 if (nextidx == UINT64_MAX) {
1624 uint64_t nextidx;
1627 nextidx = 0;
1629 nextidx, (void *)results, __arraycount(results),
1631 nextidx = results[nfound - 1]->idx + 1;
1647 uint64_t nextidx;
1650 nextidx = UINT64_MAX;
1653 nextidx, (void *)results, __arraycount(results),
1655 nextidx = results[nfound - 1]->idx - 1;
1657 if (nextidx == UINT64_MAX) {
1678 uint64_t nextidx;
1681 nextidx = 0;
1683 nextidx, (void *)results, __arraycount(results),
1689 nextidx = results[nfound - 1]->idx + 1;
1691 if (nextidx == 0) {
1710 uint64_t nextidx;
1714 nextidx = 0;
1716 while ((nfound = radix_tree_gang_lookup_node(t, nextidx,
1722 nextidx = results[nfound - 1]->idx + 1;
1724 if (nextidx == 0) {