Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.25/opcodes/
Dcgen-dis.c106 int big_p = CGEN_CPU_INSN_ENDIAN (cd) == CGEN_ENDIAN_BIG; in hash_insn_array() local
126 big_p); in hash_insn_array()
144 int big_p = CGEN_CPU_INSN_ENDIAN (cd) == CGEN_ENDIAN_BIG; in hash_insn_list() local
163 big_p); in hash_insn_list()
Dcgen-opc.c362 int big_p = (cd->insn_endian == CGEN_ENDIAN_BIG); in cgen_get_insn_value() local
382 this_value = bfd_get_bits (& buf[bit_index / 8], insn_chunk_bitsize, big_p); in cgen_get_insn_value()
402 int big_p = (cd->insn_endian == CGEN_ENDIAN_BIG); in cgen_put_insn_value() local
420 bfd_put_bits ((bfd_vma) value, & buf[bit_index / 8], insn_chunk_bitsize, big_p); in cgen_put_insn_value()
426 bfd_put_bits ((bfd_vma) value, buf, length, big_p); in cgen_put_insn_value()
Dm32r-dis.c121 int big_p = CGEN_CPU_INSN_ENDIAN (cd) == CGEN_ENDIAN_BIG; in my_print_insn() local
126 status = (*info->read_memory_func) (pc - ((!big_p && (pc & 3) != 0) ? 2 : 0), in my_print_insn()
135 x = (big_p ? &buf[0] : &buf[3]); in my_print_insn()
142 buf += (big_p ? 0 : 2); in my_print_insn()
145 buf += (big_p ? 2 : -2); in my_print_insn()
148 x = (big_p ? &buf[0] : &buf[1]); in my_print_insn()
Darc-opc.c1572 arc_get_opcode_mach (int bfd_mach, int big_p) in arc_get_opcode_mach() argument
1581 return mach_type_map[bfd_mach - bfd_mach_arc_5] | (big_p ? ARC_MACH_BIG : 0); in arc_get_opcode_mach()
/toolchain/binutils/binutils-2.25/cpu/
Dm32r.opc301 int big_p = CGEN_CPU_INSN_ENDIAN (cd) == CGEN_ENDIAN_BIG;
306 status = (*info->read_memory_func) (pc - ((!big_p && (pc & 3) != 0) ? 2 : 0),
315 x = (big_p ? &buf[0] : &buf[3]);
322 buf += (big_p ? 0 : 2);
325 buf += (big_p ? 2 : -2);
328 x = (big_p ? &buf[0] : &buf[1]);
/toolchain/binutils/binutils-2.25/bfd/
Dlibbfd.c802 bfd_put_bits (bfd_uint64_t data, void *p, int bits, bfd_boolean big_p) in bfd_put_bits() argument
814 int addr_index = big_p ? bytes - i - 1 : i; in bfd_put_bits()
822 bfd_get_bits (const void *p, int bits, bfd_boolean big_p) in bfd_get_bits() argument
836 int addr_index = big_p ? i : bytes - i - 1; in bfd_get_bits()