Lines Matching refs:v
62 #define O1(v) rl78_op (v, 1, RL78REL_DATA) argument
63 #define O2(v) rl78_op (v, 2, RL78REL_DATA) argument
64 #define O3(v) rl78_op (v, 3, RL78REL_DATA) argument
65 #define O4(v) rl78_op (v, 4, RL78REL_DATA) argument
67 #define PC1(v) rl78_op (v, 1, RL78REL_PCREL) argument
68 #define PC2(v) rl78_op (v, 2, RL78REL_PCREL) argument
69 #define PC3(v) rl78_op (v, 3, RL78REL_PCREL) argument
71 #define IMM(v,pos) F (immediate (v, RL78REL_SIGNED, pos), pos, 2); \ argument
72 if (v.X_op != O_constant && v.X_op != O_big) rl78_linkrelax_imm (pos)
73 #define NIMM(v,pos) F (immediate (v, RL78REL_NEGATIVE, pos), pos, 2) argument
74 #define NBIMM(v,pos) F (immediate (v, RL78REL_NEGATIVE_BORROW, pos), pos, 2) argument
75 #define DSP(v,pos,msz) if (!v.X_md) rl78_relax (RL78_RELAX_DISP, pos); \ argument
77 F (displacement (v, msz), pos, 2)
1517 unsigned long v; in expr_is_sfr() local
1522 v = exp.X_add_number; in expr_is_sfr()
1523 if (0xFFF00 <= v && v <= 0xFFFFF) in expr_is_sfr()
1531 unsigned long v; in expr_is_saddr() local
1536 v = exp.X_add_number; in expr_is_saddr()
1537 if (0xFFE20 <= v && v <= 0xFFF1F) in expr_is_saddr()
1545 unsigned long v; in expr_is_word_aligned() local
1550 v = exp.X_add_number; in expr_is_word_aligned()
1551 if (v & 1) in expr_is_word_aligned()