Lines Matching refs:wi
531 for (uint wi = _next_word; wi < (unsigned)IndexSet::words_per_block; wi++) {
532 if (_words[wi] != 0) {
534 _value = ((_next_block - 1) * IndexSet::bits_per_block) + (wi * IndexSet::bits_per_word);
535 _current = _words[wi];
537 _next_word = wi+1;
549 for (uint wi = 0; wi < (unsigned)IndexSet::words_per_block; wi++) {
550 if (_words[wi] != 0) {
552 _value = (bi * IndexSet::bits_per_block) + (wi * IndexSet::bits_per_word);
553 _current = _words[wi];
556 _next_word = wi+1;