Lines Matching refs:n_bits
93 void PrintPCImm16(Instruction* instr, int delta_pc, int n_bits);
100 void PrintPCImm21(Instruction* instr, int delta_pc, int n_bits);
103 void PrintPCImm26(Instruction* instr, int delta_pc, int n_bits);
347 void Decoder::PrintPCImm16(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm16() argument
352 delta_pc + (offset << n_bits))); in PrintPCImm16()
408 void Decoder::PrintPCImm21(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm21() argument
416 delta_pc + (imm21 << n_bits))); in PrintPCImm21()
442 void Decoder::PrintPCImm26(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm26() argument
450 delta_pc + (imm26 << n_bits))); in PrintPCImm26()
766 int n_bits = 0; in FormatOption() local
774 n_bits = 2; in FormatOption()
775 PrintPCImm16(instr, delta_pc, n_bits); in FormatOption()
834 int n_bits = 0; in FormatOption() local
842 n_bits = 2; in FormatOption()
843 PrintPCImm21(instr, delta_pc, n_bits); in FormatOption()
865 int n_bits = 0; in FormatOption() local
873 n_bits = 2; in FormatOption()
874 PrintPCImm26(instr, delta_pc, n_bits); in FormatOption()