Home | History | Annotate | Download | only in arm

Lines Matching full:imm16

2026 void Assembler::bkpt(uint32_t imm16) {  // v5 and above
2027 DCHECK(is_uint16(imm16));
2028 emit(al | B24 | B21 | (imm16 >> 4)*B8 | BKPT | (imm16 & 0xf));