Lines Matching full:word
237 int word, bit;
240 for (word = 0; word < pBits->storageSize; word++) {
241 if (pBits->storage[word] != 0xffffffff) {
243 * There are unallocated bits in this word. Return the first.
245 bit = ffs(~(pBits->storage[word])) -1;
247 pBits->storage[word] |= 1 << bit;
248 return (word << 5) | bit;
326 int word, bit;
329 for (word = 0; word < pBits->storageSize; word++) {
330 u4 val = pBits->storage[word];