Home | History | Annotate | Download | only in lib

Lines Matching defs:woffset

576   bitset_windex woffset;
597 woffset = windex - eindex * EBITSET_ELT_WORDS;
620 word = srcp[woffset] << (BITSET_WORD_BITS - 1 - bcount);
638 while (woffset--);
641 woffset = EBITSET_ELT_WORDS - 1;
684 bitset_windex woffset;
688 woffset = eindex * EBITSET_ELT_WORDS;
690 for (; (windex - woffset) < EBITSET_ELT_WORDS; windex++)
692 word = srcp[windex - woffset] >> (bitno % BITSET_WORD_BITS);
858 bitset_windex woffset;
862 woffset = eindex * EBITSET_ELT_WORDS;
864 srcp[windex - woffset] &= ((bitset_word) 1 << last_bit) - 1;
866 for (; (windex - woffset) < EBITSET_ELT_WORDS; windex++)
867 srcp[windex - woffset] = 0;