Home | History | Annotate | Download | only in mips

Lines Matching refs:imm26

157 void MipsAssembler::EmitI26(int opcode, uint32_t imm26) {
158 CHECK(IsUint<26>(imm26)) << imm26;
159 uint32_t encoding = static_cast<uint32_t>(opcode) << kOpcodeShift | imm26;
617 void MipsAssembler::Bc(uint32_t imm26) {
619 EmitI26(0x32, imm26);