Lines Matching refs:nbytes
3203 parse_mri_cons (expressionS *exp, unsigned int nbytes);
3210 parse_bitfield_cons (expressionS *exp, unsigned int nbytes);
3215 parse_repeat_cons (expressionS *exp, unsigned int nbytes);
3226 int nbytes ATTRIBUTE_UNUSED) in do_parse_cons_expression()
3228 TC_PARSE_CONS_EXPRESSION (exp, nbytes); in do_parse_cons_expression()
3236 cons_worker (register int nbytes, /* 1=.byte, 2=.word, 4=.long. */ in cons_worker() argument
3260 md_cons_align (nbytes); in cons_worker()
3268 parse_mri_cons (&exp, (unsigned int) nbytes); in cons_worker()
3271 TC_PARSE_CONS_EXPRESSION (&exp, (unsigned int) nbytes); in cons_worker()
3280 emit_expr (&exp, (unsigned int) nbytes); in cons_worker()
3288 if (flag_mri && nbytes == 1 && (c & 1) != 0) in cons_worker()
3315 emit_expr (expressionS *exp, unsigned int nbytes) in emit_expr() argument
3338 && nbytes == 2 in emit_expr()
3342 else if (nbytes == 4 in emit_expr()
3361 && nbytes == 2 in emit_expr()
3366 && nbytes == 2 in emit_expr()
3371 && nbytes == 4) in emit_expr()
3374 && nbytes == 2 in emit_expr()
3391 if (check_eh_frame (exp, &nbytes)) in emit_expr()
3401 abs_section_offset += nbytes; in emit_expr()
3454 p = frag_more ((int) nbytes); in emit_expr()
3459 if (op == O_subtract && nbytes == 2) in emit_expr()
3483 if (op == O_constant && nbytes > sizeof (valueT)) in emit_expr()
3513 if (nbytes >= sizeof (valueT)) in emit_expr()
3516 if (nbytes > sizeof (valueT)) in emit_expr()
3519 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); in emit_expr()
3524 mask = ~(valueT) 0 << (BITS_PER_CHAR * nbytes); in emit_expr()
3525 hibit = (valueT) 1 << (nbytes * BITS_PER_CHAR - 1); in emit_expr()
3545 md_number_to_chars (p, use, (int) nbytes); in emit_expr()
3553 if (nbytes < size) in emit_expr()
3555 int i = nbytes / CHARS_PER_LITTLENUM; in emit_expr()
3567 as_warn (_("bignum truncated to %d bytes"), nbytes); in emit_expr()
3568 size = nbytes; in emit_expr()
3571 if (nbytes == 1) in emit_expr()
3576 know (nbytes % CHARS_PER_LITTLENUM == 0); in emit_expr()
3580 while (nbytes > size) in emit_expr()
3583 nbytes -= CHARS_PER_LITTLENUM; in emit_expr()
3605 nbytes -= CHARS_PER_LITTLENUM; in emit_expr()
3608 while (nbytes >= CHARS_PER_LITTLENUM) in emit_expr()
3611 nbytes -= CHARS_PER_LITTLENUM; in emit_expr()
3618 memset (p, 0, nbytes); in emit_expr()
3631 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp); in emit_expr()
3636 switch (nbytes) in emit_expr()
3651 as_bad (_("unsupported BFD relocation size %u"), nbytes); in emit_expr()
3655 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, in emit_expr()
3661 TC_CONS_FIX_NEW (frag_now, p - frag_now->fr_literal, nbytes, exp); in emit_expr()
3673 fix_new_exp (frag_now, p - frag_now->fr_literal, (int) nbytes, exp, 0, in emit_expr()
3697 parse_bitfield_cons (exp, nbytes) in parse_bitfield_cons() argument
3699 unsigned int nbytes;
3701 unsigned int bits_available = BITS_PER_CHAR * nbytes;
3755 if ((width = exp->X_add_number) > (BITS_PER_CHAR * nbytes))
3758 width, nbytes, (BITS_PER_CHAR * nbytes));
3759 width = BITS_PER_CHAR * nbytes;
3786 << ((BITS_PER_CHAR * nbytes) - bits_available));
3811 parse_mri_cons (exp, nbytes) in parse_mri_cons() argument
3813 unsigned int nbytes;
3819 TC_PARSE_CONS_EXPRESSION (exp, nbytes);
3837 for (scan = 0; scan < nbytes; scan++)
3852 while (scan < nbytes)
3885 parse_repeat_cons (exp, nbytes) in parse_repeat_cons() argument
3887 unsigned int nbytes;
3912 emit_expr (exp, nbytes);
4326 int nbytes; in emit_leb128_expr() local
4348 nbytes = -1; in emit_leb128_expr()
4349 if (check_eh_frame (exp, &nbytes)) in emit_leb128_expr()