Home | History | Annotate | Download | only in gen

Lines Matching defs:nfound

816 	unsigned int nfound;
836 nfound = 0;
858 results[nfound] = entry_ptr(*vpp);
859 nfound++;
860 if (nfound == maxresults) {
861 return nfound;
864 return nfound;
885 return nfound;
913 return nfound;
1578 unsigned int nfound;
1583 while ((nfound = radix_tree_gang_lookup_node(t, nextidx,
1585 nextidx = results[nfound - 1]->idx + 1;
1586 total += nfound;
1600 unsigned int nfound;
1605 while ((nfound = radix_tree_gang_lookup_node_reverse(t, nextidx,
1607 nextidx = results[nfound - 1]->idx - 1;
1608 total += nfound;
1625 unsigned int nfound;
1628 while ((nfound = radix_tree_gang_lookup_tagged_node(t,
1631 nextidx = results[nfound - 1]->idx + 1;
1632 total += nfound;
1648 unsigned int nfound;
1651 while ((nfound =
1655 nextidx = results[nfound - 1]->idx - 1;
1656 total += nfound;
1679 unsigned int nfound;
1682 while ((nfound = radix_tree_gang_lookup_tagged_node(t,
1685 for (i = 0; i < nfound; i++) {
1689 nextidx = results[nfound - 1]->idx + 1;
1690 total += nfound;
1711 unsigned int nfound;
1716 while ((nfound = radix_tree_gang_lookup_node(t, nextidx,
1718 for (i = 0; i < nfound; i++) {
1722 nextidx = results[nfound - 1]->idx + 1;
1723 total += nfound;