Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/binutils/dist/libiberty/
Dfloatformat.c446 unsigned int cur_byte; in get_field() local
455 cur_byte = start / FLOATFORMAT_CHAR_BIT; in get_field()
457 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in get_field()
464 unsigned int shifted = *(data + cur_byte) >> lo_bit; in get_field()
470 cur_byte += nextbyte; in get_field()
588 unsigned int cur_byte; in put_field() local
597 cur_byte = start / FLOATFORMAT_CHAR_BIT; in put_field()
599 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in put_field()
606 unsigned char *byte_ptr = data + cur_byte; in put_field()
612 cur_byte += nextbyte; in put_field()
/netbsd/src/external/gpl3/gdb/dist/libiberty/
Dfloatformat.c446 unsigned int cur_byte; in get_field() local
455 cur_byte = start / FLOATFORMAT_CHAR_BIT; in get_field()
457 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in get_field()
464 unsigned int shifted = *(data + cur_byte) >> lo_bit; in get_field()
470 cur_byte += nextbyte; in get_field()
584 unsigned int cur_byte; in put_field() local
593 cur_byte = start / FLOATFORMAT_CHAR_BIT; in put_field()
595 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in put_field()
602 unsigned char *byte_ptr = data + cur_byte; in put_field()
608 cur_byte += nextbyte; in put_field()
/netbsd/src/external/gpl3/gcc/dist/libiberty/
Dfloatformat.c451 unsigned int cur_byte; in get_field() local
460 cur_byte = start / FLOATFORMAT_CHAR_BIT; in get_field()
462 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in get_field()
469 unsigned int shifted = *(data + cur_byte) >> lo_bit; in get_field()
475 cur_byte += nextbyte; in get_field()
593 unsigned int cur_byte; in put_field() local
602 cur_byte = start / FLOATFORMAT_CHAR_BIT; in put_field()
604 cur_byte = (total_len - start - 1) / FLOATFORMAT_CHAR_BIT; in put_field()
611 unsigned char *byte_ptr = data + cur_byte; in put_field()
617 cur_byte += nextbyte; in put_field()
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dtarget-float.c172 unsigned int cur_byte; in get_field() local
190 cur_byte = (total_len / FLOATFORMAT_CHAR_BIT) in get_field()
197 cur_byte = (start + len) / FLOATFORMAT_CHAR_BIT; in get_field()
202 result = *(data + cur_byte) >> (-cur_bitshift); in get_field()
207 ++cur_byte; in get_field()
209 --cur_byte; in get_field()
214 result |= (unsigned long)*(data + cur_byte) << cur_bitshift; in get_field()
219 ++cur_byte; in get_field()
222 --cur_byte; in get_field()
239 unsigned int cur_byte; in put_field() local
[all …]
/netbsd/src/external/public-domain/xz/dist/src/liblzma/lzma/
Dlzma_encoder.c49 const uint8_t cur_byte = mf->buffer[ in literal() local
58 rc_bittree(&coder->rc, subcoder, 8, cur_byte); in literal()
66 literal_matched(&coder->rc, subcoder, match_byte, cur_byte); in literal()