Lines Matching refs:n_bits
96 void PrintPCImm16(Instruction* instr, int delta_pc, int n_bits);
103 void PrintPCImm21(Instruction* instr, int delta_pc, int n_bits);
106 void PrintPCImm26(Instruction* instr, int delta_pc, int n_bits);
375 void Decoder::PrintPCImm16(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm16() argument
380 delta_pc + (offset << n_bits))); in PrintPCImm16()
436 void Decoder::PrintPCImm21(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm21() argument
444 delta_pc + (imm21 << n_bits))); in PrintPCImm21()
471 void Decoder::PrintPCImm26(Instruction* instr, int delta_pc, int n_bits) { in PrintPCImm26() argument
479 delta_pc + (imm26 << n_bits))); in PrintPCImm26()
807 int n_bits = 0; in FormatOption() local
815 n_bits = 2; in FormatOption()
816 PrintPCImm16(instr, delta_pc, n_bits); in FormatOption()
875 int n_bits = 0; in FormatOption() local
883 n_bits = 2; in FormatOption()
884 PrintPCImm21(instr, delta_pc, n_bits); in FormatOption()
906 int n_bits = 0; in FormatOption() local
914 n_bits = 2; in FormatOption()
915 PrintPCImm26(instr, delta_pc, n_bits); in FormatOption()