Lines Matching defs:code
7 // * Redistributions of source code must retain the above copyright notice,
1934 void Assembler::hint(SystemHint code) { hint(static_cast<int>(code)); }
6026 void Assembler::hlt(int code) {
6027 VIXL_ASSERT(IsUint16(code));
6028 Emit(HLT | ImmException(code));
6032 void Assembler::brk(int code) {
6033 VIXL_ASSERT(IsUint16(code));
6034 Emit(BRK | ImmException(code));
6038 void Assembler::svc(int code) { Emit(SVC | ImmException(code)); }
6040 void Assembler::udf(int code) { Emit(UDF | ImmUdf(code)); }