HomeSort by: relevance | last modified time | path
    Searched defs:regno (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/ia64/ia64/
db_interface.c 190 int nats, regno, sof; local in function:db_getrse
199 regno = (int)(intptr_t)valuep;
203 if (regno >= sof)
206 nats = (sof - regno + 63 - ((int)(bsp >> 3) & 0x3f)) / 63;
207 reg = (void*)(bsp - ((sof - regno + nats) << 3));
  /src/sys/arch/arm/arm/
undefined.c 140 const u_int regno = (insn >> 12) & 15; local in function:cp15_trapper
141 if (regno == 13 || regno == 15)
147 register_t * const regp = &tf->tf_r0 + regno;
  /src/sys/arch/arm/vfp/
vfp_init.c 182 const u_int regno = (insn >> 12) & 0xf; local in function:vfp_fpscr_handler
187 if ((insn & 0xffef0fff) != 0xeee10a10 || regno > 12)
209 register_t * const regp = &frame->tf_r0 + regno;
  /src/sys/arch/hppa/hppa/
trap.c 550 tf_getregno(struct trapframe *tf, u_int regno)
553 if (regno == 0)
556 return tf_reg[hppa_regmap[regno]];
560 tf_setregno(struct trapframe *tf, u_int regno, register_t val)
563 if (regno == 0)
566 tf_reg[hppa_regmap[regno]] = val;
929 const u_int regno = local in function:trap
931 tf_setregno(frame, regno, 0);
964 const u_int regno = local in function:trap
966 tf_setregno(frame, regno, 0)
    [all...]
  /src/sys/dev/ic/
sti.c 408 u_int regno, regcnt; local in function:sti_region_setup
420 for (regno = 0; regno < STI_REGION_MAX; regno++)
421 *(u_int *)(regions + regno) =
422 parseword(dd->dd_reglst + regno * 0x10);
443 for (regno = 0, r = regions; regno < regcnt; regno++, r++) {
450 addr = bases[regno] + (r->offset << STI_PGSHIFT)
    [all...]

Completed in 14 milliseconds