Lines Matching defs:offs
80 unsigned int offs = (entry * bits_per_block) % BITS_PER_LONG;
86 status = pos[0] >> offs;
87 if (bits_per_block + offs > BITS_PER_LONG)
88 status |= pos[1] << (BITS_PER_LONG - offs);
113 unsigned int offs = (entry * bits_per_block) % BITS_PER_LONG;
119 pos[0] &= ~GENMASK(offs + bits_per_block - 1, offs);
120 pos[0] |= val << offs;
122 if (bits_per_block + offs > BITS_PER_LONG) {
123 unsigned int rbits = bits_per_block + offs - BITS_PER_LONG;