Lines Matching defs:option
4149 void Assembler::dmb(Condition cond, MemoryBarrier option) {
4153 // DMB{<c>}{<q>} {<option>} ; T1
4154 EmitT32_32(0xf3bf8f50U | option.GetType());
4158 // DMB{<c>}{<q>} {<option>} ; A1
4160 EmitA32(0xf57ff050U | option.GetType());
4164 Delegate(kDmb, &Assembler::dmb, cond, option);
4167 void Assembler::dsb(Condition cond, MemoryBarrier option) {
4171 // DSB{<c>}{<q>} {<option>} ; T1
4172 EmitT32_32(0xf3bf8f40U | option.GetType());
4176 // DSB{<c>}{<q>} {<option>} ; A1
4178 EmitA32(0xf57ff040U | option.GetType());
4182 Delegate(kDsb, &Assembler::dsb, cond, option);
4545 void Assembler::isb(Condition cond, MemoryBarrier option) {
4549 // ISB{<c>}{<q>} {<option>} ; T1
4550 EmitT32_32(0xf3bf8f60U | option.GetType());
4554 // ISB{<c>}{<q>} {<option>} ; A1
4556 EmitA32(0xf57ff060U | option.GetType());
4560 Delegate(kIsb, &Assembler::isb, cond, option);