Lines Matching refs:CHARS_PER_LITTLENUM
1320 for (i = 0; i < sizeof (exp->X_add_number) / CHARS_PER_LITTLENUM; i++) in convert_to_bignum()
4346 size = exp->X_add_number * CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4349 int i = nbytes / CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4370 know (nbytes % CHARS_PER_LITTLENUM == 0); in emit_expr_with_reloc()
4376 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM); in emit_expr_with_reloc()
4377 nbytes -= CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4378 p += CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4381 nums = generic_bignum + size / CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4382 while (size >= CHARS_PER_LITTLENUM) in emit_expr_with_reloc()
4385 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); in emit_expr_with_reloc()
4386 size -= CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4387 p += CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4393 while (size >= CHARS_PER_LITTLENUM) in emit_expr_with_reloc()
4395 md_number_to_chars (p, (valueT) *nums, CHARS_PER_LITTLENUM); in emit_expr_with_reloc()
4397 size -= CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4398 p += CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4399 nbytes -= CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4402 while (nbytes >= CHARS_PER_LITTLENUM) in emit_expr_with_reloc()
4404 md_number_to_chars (p, extra_digit, CHARS_PER_LITTLENUM); in emit_expr_with_reloc()
4405 nbytes -= CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
4406 p += CHARS_PER_LITTLENUM; in emit_expr_with_reloc()
5093 loaded += 8 * CHARS_PER_LITTLENUM; in output_big_uleb128()