Lines Matching refs:word_offset
125 unsigned int word_offset, in insert_normal() argument
147 if (word_offset == 0 in insert_normal()
213 shift = (word_offset + start + 1) - length; in insert_normal()
215 shift = total_length - (word_offset + start + length); in insert_normal()
222 unsigned char *bufp = (unsigned char *) buffer + word_offset / 8; in insert_normal()
422 unsigned int word_offset, in extract_normal() argument
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()
460 value = insn_value >> ((word_offset + start + 1) - length); in extract_normal()
462 value = insn_value >> (total_length - ( word_offset + start + length)); in extract_normal()
469 unsigned char *bufp = ex_info->insn_bytes + word_offset / 8; in extract_normal()
474 if (fill_cache (cd, ex_info, word_offset / 8, word_length / 8, pc) == 0) in extract_normal()