Lines Matching defs:bitoffset
443 * @param bitoffset The bit offset to store at, between 0 and 7.
449 unsigned int bitoffset,
454 ptr += bitoffset >> 3;
455 bitoffset &= 7;
456 value <<= bitoffset;
457 mask <<= bitoffset;
473 * @param bitoffset The bit offset to read from, between 0 and 7.
480 unsigned int bitoffset,
484 ptr += bitoffset >> 3;
485 bitoffset &= 7;
487 value >>= bitoffset;