Lines Matching refs:word_length
84 int word_length, in insert_1() argument
90 x = cgen_get_insn_value (cd, bufp, word_length); in insert_1()
97 shift = (word_length - (start + length)); in insert_1()
100 cgen_put_insn_value (cd, bufp, word_length, (bfd_vma) x); in insert_1()
128 unsigned int word_length, in insert_normal() argument
140 if (word_length > 8 * sizeof (CGEN_INSN_INT)) in insert_normal()
148 && word_length > total_length) in insert_normal()
149 word_length = total_length; in insert_normal()
224 insert_1 (cd, value, start, length, word_length, bufp); in insert_normal()
375 int word_length, in extract_1() argument
382 x = cgen_get_insn_value (cd, bufp, word_length); in extract_1()
387 shift = (word_length - (start + length)); in extract_1()
425 unsigned int word_length, in extract_normal() argument
444 if (word_length > 8 * sizeof (CGEN_INSN_INT)) in extract_normal()
451 if (word_offset + word_length > total_length) in extract_normal()
452 word_length = total_length - word_offset; in extract_normal()
457 if (CGEN_INT_INSN_P || (word_offset == 0 && word_length == total_length)) in extract_normal()
471 if (word_length > 8 * sizeof (CGEN_INSN_INT)) in extract_normal()
474 if (fill_cache (cd, ex_info, word_offset / 8, word_length / 8, pc) == 0) in extract_normal()
477 value = extract_1 (cd, ex_info, start, length, word_length, bufp, pc); in extract_normal()