Lines Matching refs:frag_ptr
772 fragS *frag_ptr; in calc_hex() local
780 frag_ptr = frag; in calc_hex()
785 while (frag_ptr != (fragS *) NULL && frag_ptr->line == first) in calc_hex()
789 while ((offsetT) octet_in_frag < frag_ptr->fr_fix in calc_hex()
793 address = frag_ptr->fr_address / OCTETS_PER_BYTE; in calc_hex()
797 (frag_ptr->fr_literal[octet_in_frag]) & 0xff); in calc_hex()
801 if (frag_ptr->fr_type == rs_fill) in calc_hex()
808 < (frag_ptr->fr_fix + frag_ptr->fr_var * frag_ptr->fr_offset)) in calc_hex()
812 address = frag_ptr->fr_address / OCTETS_PER_BYTE; in calc_hex()
816 (frag_ptr->fr_literal[var_rep_idx]) & 0xff); in calc_hex()
822 if ((offsetT) var_rep_idx >= frag_ptr->fr_fix + frag_ptr->fr_var) in calc_hex()
827 frag_ptr = frag_ptr->fr_next; in calc_hex()