Lines Matching defs:value
26 /** @brief Unpacked quint triplets <low,middle,high> for each packed value */
63 /** @brief Packed quint values for each unpacked value, indexed [hi][mid][lo]. */
102 /** @brief Unpacked trit quintuplets <low,...,high> for each packed value */
171 /** @brief Packed trit values for each unpacked value, indexed [hi][][][][lo]. */
438 * The stored value is at most 8 bits, but can be stored at an offset of between 0 and 7 bits so may
441 * @param value The value to write.
447 unsigned int value,
453 value &= mask;
456 value <<= bitoffset;
461 ptr[0] |= value;
463 ptr[1] |= value >> 8;
469 * The stored value is at most 8 bits, but can be stored at an offset of between 0 and 7 bits so may
476 * @return The read value.
486 unsigned int value = ptr[0] | (ptr[1] << 8);
487 value >>= bitoffset;
488 value &= mask;
489 return value;
524 // pack a single MX value with the following 1 or 2 T bits.
595 // pack a single M value with the following 2 or 3 T bits.