Home
last modified time | relevance | path

Searched refs:cur_bitshift (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/disas/
H A Dm68k.c4681 int cur_bitshift; in get_field() local
4687 cur_bitshift = in get_field()
4689 result = *(data + cur_byte) >> (-cur_bitshift); in get_field()
4690 cur_bitshift += FLOATFORMAT_CHAR_BIT; in get_field()
4697 while ((unsigned int) cur_bitshift < len) in get_field()
4699 if (len - cur_bitshift < FLOATFORMAT_CHAR_BIT) in get_field()
4704 & ((1 << (len - cur_bitshift)) - 1)) in get_field()
4705 << cur_bitshift; in get_field()
4707 result |= (unsigned long)*(data + cur_byte) << cur_bitshift; in get_field()
4708 cur_bitshift += FLOATFORMAT_CHAR_BIT; in get_field()
[all …]