Lines Matching refs:POS
3761 and the least significant BITS bits taken, at position POS. */
3762 #define MODIFY_VALUE(NEWVAL, VALUE, SHIFT, POS, BITS) \
3764 (NEWVAL) &= 0xffffffffU & ~(((1U << (BITS)) - 1) << (POS)); \
3765 (NEWVAL) |= (((VALUE) >> (SHIFT)) & ((1U << (BITS)) - 1)) << (POS); \
4159 unsigned int pos = 0;
4183 && pos + fragp->fr_fix > 32
4192 if (pos & 3)
4194 want_insert = (32 - pos) >> 2;
4205 if (!(pos & ((1 << fragp->fr_offset) - 1)))
4219 - (pos & ((1 << fragp->fr_offset) - 1)));
4292 pos = pos_last8;
4298 pos = pos_last8 = pos_last16;
4304 pos = pos_last8 = pos_last16 = pos_last32;
4314 pos += fragp->fr_fix;
4315 pos &= 31;
4324 if (!(pos & 7))
4328 pos_last8 = pos;
4330 if (!(pos & 15))
4334 pos_last16 = pos;
4336 if (!(pos & 31))
4340 pos_last32 = pos;