Lines Matching refs:n_bits
89 void PrintPCImm16(Instruction* instr, int delta_pc, int n_bits);
96 void PrintPCImm21(Instruction* instr, int delta_pc, int n_bits);
99 void PrintPCImm26(Instruction* instr, int delta_pc, int n_bits);
297 void Decoder::PrintPCImm16(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm16() argument
302 delta_pc + (offset << n_bits))); in PrintPCImm16()
358 void Decoder::PrintPCImm21(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm21() argument
366 delta_pc + (imm21 << n_bits))); in PrintPCImm21()
392 void Decoder::PrintPCImm26(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm26() argument
400 delta_pc + (imm26 << n_bits))); in PrintPCImm26()
573 int n_bits = 0; in FormatOption() local
581 n_bits = 2; in FormatOption()
582 PrintPCImm16(instr, delta_pc, n_bits); in FormatOption()
631 int n_bits = 0; in FormatOption() local
639 n_bits = 2; in FormatOption()
640 PrintPCImm21(instr, delta_pc, n_bits); in FormatOption()
662 int n_bits = 0; in FormatOption() local
670 n_bits = 2; in FormatOption()
671 PrintPCImm26(instr, delta_pc, n_bits); in FormatOption()