Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.27/gas/
Dbignum.h38 #ifndef BITS_PER_CHAR
39 #define BITS_PER_CHAR (8) macro
Dread.c66 #if BITS_PER_CHAR != 8
4394 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); in emit_expr_with_reloc()
4399 mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes); in emit_expr_with_reloc()
4400 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); in emit_expr_with_reloc()
4600 unsigned int bits_available = BITS_PER_CHAR * nbytes; in parse_bitfield_cons()
4654 if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes)) in parse_bitfield_cons()
4657 width, nbytes, (BITS_PER_CHAR * nbytes)); in parse_bitfield_cons()
4658 width = BITS_PER_CHAR * nbytes; in parse_bitfield_cons()
4685 << ((BITS_PER_CHAR * nbytes) - bits_available)); in parse_bitfield_cons()
/toolchain/binutils/binutils-2.27/gas/config/
Dtc-pdp11.c294 return (con[1] << BITS_PER_CHAR) | con[0]; in md_chars_to_number()
297 (((con[1] << BITS_PER_CHAR) | con[0]) << (2 * BITS_PER_CHAR)) in md_chars_to_number()
298 |((con[3] << BITS_PER_CHAR) | con[2]); in md_chars_to_number()
Dtc-vax.c309 retval <<= BITS_PER_CHAR; in md_chars_to_number()