Lines Matching defs:value
29 * @param p The value to reverse.
45 * The stored value is at most 8 bits, but can be stored at an offset of between 0 and 7 bits so may
52 * @return The read value.
62 int value = ptr[0] | (ptr[1] << 8);
63 value >>= bitoffset;
64 value &= mask;
65 return value;
73 * The stored value is at most 8 bits, but can be stored at an offset of between 0 and 7 bits so
76 * @param value The value to write.
82 int value,
88 value &= mask;
91 value <<= bitoffset;
96 ptr[0] |= value;
98 ptr[1] |= value >> 8;