• Home
  • Raw
  • Download

Lines Matching refs:pos

234 	compat_ulong_t pos;  in translate_usr_offset()  local
237 pos = offset * 2 + 4; in translate_usr_offset()
239 pos = (offset - 32*4) + PT_FR0; in translate_usr_offset()
241 pos = (offset - 32*4 - 32*8) * 2 + PT_SR0 + 4; in translate_usr_offset()
243 pos = sizeof(struct pt_regs); in translate_usr_offset()
245 return pos; in translate_usr_offset()
395 unsigned int pos, unsigned int count, in fpr_get() argument
403 pos /= sizeof(reg); in fpr_get()
407 for (; count > 0 && pos < ELF_NFPREG; --count) in fpr_get()
408 *k++ = regs->fr[pos++]; in fpr_get()
410 for (; count > 0 && pos < ELF_NFPREG; --count) in fpr_get()
411 if (__put_user(regs->fr[pos++], u++)) in fpr_get()
416 pos *= sizeof(reg); in fpr_get()
418 return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf, in fpr_get()
424 unsigned int pos, unsigned int count, in fpr_set() argument
432 pos /= sizeof(reg); in fpr_set()
436 for (; count > 0 && pos < ELF_NFPREG; --count) in fpr_set()
437 regs->fr[pos++] = *k++; in fpr_set()
439 for (; count > 0 && pos < ELF_NFPREG; --count) { in fpr_set()
442 regs->fr[pos++] = reg; in fpr_set()
447 pos *= sizeof(reg); in fpr_set()
449 return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf, in fpr_set()
531 unsigned int pos, unsigned int count, in gpr_get() argument
539 pos /= sizeof(reg); in gpr_get()
543 for (; count > 0 && pos < ELF_NGREG; --count) in gpr_get()
544 *k++ = get_reg(regs, pos++); in gpr_get()
546 for (; count > 0 && pos < ELF_NGREG; --count) in gpr_get()
547 if (__put_user(get_reg(regs, pos++), u++)) in gpr_get()
551 pos *= sizeof(reg); in gpr_get()
553 return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf, in gpr_get()
559 unsigned int pos, unsigned int count, in gpr_set() argument
567 pos /= sizeof(reg); in gpr_set()
571 for (; count > 0 && pos < ELF_NGREG; --count) in gpr_set()
572 set_reg(regs, pos++, *k++); in gpr_set()
574 for (; count > 0 && pos < ELF_NGREG; --count) { in gpr_set()
577 set_reg(regs, pos++, reg); in gpr_set()
582 pos *= sizeof(reg); in gpr_set()
584 return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf, in gpr_set()
611 unsigned int pos, unsigned int count, in gpr32_get() argument
619 pos /= sizeof(reg); in gpr32_get()
623 for (; count > 0 && pos < ELF_NGREG; --count) in gpr32_get()
624 *k++ = get_reg(regs, pos++); in gpr32_get()
626 for (; count > 0 && pos < ELF_NGREG; --count) in gpr32_get()
627 if (__put_user((compat_ulong_t) get_reg(regs, pos++), u++)) in gpr32_get()
632 pos *= sizeof(reg); in gpr32_get()
634 return user_regset_copyout_zero(&pos, &count, &kbuf, &ubuf, in gpr32_get()
640 unsigned int pos, unsigned int count, in gpr32_set() argument
648 pos /= sizeof(reg); in gpr32_set()
652 for (; count > 0 && pos < ELF_NGREG; --count) in gpr32_set()
653 set_reg(regs, pos++, *k++); in gpr32_set()
655 for (; count > 0 && pos < ELF_NGREG; --count) { in gpr32_set()
658 set_reg(regs, pos++, reg); in gpr32_set()
663 pos *= sizeof(reg); in gpr32_set()
665 return user_regset_copyin_ignore(&pos, &count, &kbuf, &ubuf, in gpr32_set()