Lines Matching refs:mask
223 unsigned long mask) in unwind_exec_pop_subset_r4_to_r13() argument
228 load_sp = mask & (1 << (13 - 4)); in unwind_exec_pop_subset_r4_to_r13()
229 while (mask) in unwind_exec_pop_subset_r4_to_r13()
231 if (mask & 1) in unwind_exec_pop_subset_r4_to_r13()
234 mask >>= 1; in unwind_exec_pop_subset_r4_to_r13()
264 unsigned long mask) in unwind_exec_pop_subset_r0_to_r3() argument
270 while (mask) in unwind_exec_pop_subset_r0_to_r3()
272 if (mask & 1) in unwind_exec_pop_subset_r0_to_r3()
275 mask >>= 1; in unwind_exec_pop_subset_r0_to_r3()
299 unsigned long mask; in unwind_exec_insn() local
302 mask = insn & 0x0fff; in unwind_exec_insn()
303 if (mask == 0) in unwind_exec_insn()
310 ret = unwind_exec_pop_subset_r4_to_r13(ctrl, mask); in unwind_exec_insn()
332 unsigned long mask = unwind_get_byte(ctrl); in unwind_exec_insn() local
334 if (mask == 0 || mask & 0xf0) in unwind_exec_insn()
337 (insn << 8) | mask); in unwind_exec_insn()
341 ret = unwind_exec_pop_subset_r0_to_r3(ctrl, mask); in unwind_exec_insn()