Lines Matching refs:mask
224 unsigned long mask) in unwind_exec_pop_subset_r4_to_r13() argument
229 load_sp = mask & (1 << (13 - 4)); in unwind_exec_pop_subset_r4_to_r13()
230 while (mask) in unwind_exec_pop_subset_r4_to_r13()
232 if (mask & 1) in unwind_exec_pop_subset_r4_to_r13()
235 mask >>= 1; in unwind_exec_pop_subset_r4_to_r13()
265 unsigned long mask) in unwind_exec_pop_subset_r0_to_r3() argument
271 while (mask) in unwind_exec_pop_subset_r0_to_r3()
273 if (mask & 1) in unwind_exec_pop_subset_r0_to_r3()
276 mask >>= 1; in unwind_exec_pop_subset_r0_to_r3()
300 unsigned long mask; in unwind_exec_insn() local
303 mask = insn & 0x0fff; in unwind_exec_insn()
304 if (mask == 0) in unwind_exec_insn()
311 ret = unwind_exec_pop_subset_r4_to_r13(ctrl, mask); in unwind_exec_insn()
333 unsigned long mask = unwind_get_byte(ctrl); in unwind_exec_insn() local
335 if (mask == 0 || mask & 0xf0) in unwind_exec_insn()
338 (insn << 8) | mask); in unwind_exec_insn()
342 ret = unwind_exec_pop_subset_r0_to_r3(ctrl, mask); in unwind_exec_insn()