Lines Matching refs:FLOATFORMAT_CHAR_BIT
4523 #define FLOATFORMAT_CHAR_BIT 8 macro
4684 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT; in get_field()
4686 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1; in get_field()
4688 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT; in get_field()
4690 cur_bitshift += FLOATFORMAT_CHAR_BIT; in get_field()
4699 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT) in get_field()
4708 cur_bitshift += FLOATFORMAT_CHAR_BIT; in get_field()
4852 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT; in put_field()
4854 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) - cur_byte - 1; in put_field()
4856 ((start + len) % FLOATFORMAT_CHAR_BIT) - FLOATFORMAT_CHAR_BIT; in put_field()
4858 ~(((1 << ((start + len) % FLOATFORMAT_CHAR_BIT)) - 1) << (-cur_bitshift)); in put_field()
4860 (stuff_to_put & ((1 << FLOATFORMAT_CHAR_BIT) - 1)) << (-cur_bitshift); in put_field()
4861 cur_bitshift += FLOATFORMAT_CHAR_BIT; in put_field()
4870 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT) in put_field()
4879 & ((1 << FLOATFORMAT_CHAR_BIT) - 1)); in put_field()
4880 cur_bitshift += FLOATFORMAT_CHAR_BIT; in put_field()
4904 memset (uto, 0, fmt->totalsize / FLOATFORMAT_CHAR_BIT); in floatformat_from_double()