Lines Matching defs:bitoffset
49 * @param bitoffset The bit offset to read from, between 0 and 7.
56 int bitoffset,
60 ptr += bitoffset >> 3;
61 bitoffset &= 7;
63 value >>= bitoffset;
78 * @param bitoffset The bit offset to store at, between 0 and 7.
84 int bitoffset,
89 ptr += bitoffset >> 3;
90 bitoffset &= 7;
91 value <<= bitoffset;
92 mask <<= bitoffset;