HomeSort by relevance Sort by last modified time
    Searched refs:nregs (Results 1 - 25 of 37) sorted by null

1 2

  /external/libunwind/src/ia64/
Grbs.c 128 unw_word_t nregs, bsp = c->bsp, curr = c->rbs_curr, n; local
149 nregs = rse_num_regs (bsp, c->rbs_area[curr].end);
151 if (regs_to_skip < nregs)
170 regs_to_skip -= nregs;
199 rbs_cover_and_flush (struct cursor *c, unw_word_t nregs,
209 c->bsp = rse_skip_regs (bsp, nregs);
215 if (likely (n >= nregs))
232 nregs -= n; /* account for registers already on the rbs */
234 assert (rse_skip_regs (c->bsp, -nregs) == rse_skip_regs (rbs->end, 0));
239 nregs += rse_num_regs (rbs->end, bsp)
    [all...]
  /external/elfutils/src/libdwfl/
dwfl_frame_regs.c 33 unsigned nregs, const Dwarf_Word *regs)
38 for (unsigned regno = firstreg; regno < firstreg + nregs; regno++)
dwfl_module_register_names.c 53 int nregs = ebl_register_info (mod->ebl, -1, NULL, 0, local
56 for (int regno = 0; regno < nregs && likely (result == 0); ++regno)
frame_unwind.c 504 size_t nregs = ebl_frame_nregs (ebl); local
505 assert (nregs > 0);
507 unwound = malloc (sizeof (*unwound) + sizeof (*unwound->regs) * nregs);
537 size_t nregs = ebl_frame_nregs (ebl); local
538 assert (nregs > 0);
545 for (unsigned regno = 0; regno < nregs; regno++)
629 setfunc (int firstreg, unsigned nregs, const Dwarf_Word *regs, void *arg)
636 assert (nregs == 1);
642 while (nregs--)
649 getfunc (int firstreg, unsigned nregs, Dwarf_Word *regs, void *arg
    [all...]
linux-core-attach.c 177 size_t nregs = ebl_frame_nregs (core_arg->ebl); local
178 assert (nregs > 0);
242 // Iterate even regs out of NREGS range so that we can find pc_register.
255 if (regno < nregs
281 if (regno < nregs)
323 size_t nregs = ebl_frame_nregs (ebl); local
324 if (nregs == 0)
linux-pid-attach.c 215 pid_thread_state_registers_cb (int firstreg, unsigned nregs,
222 assert (nregs == 1);
226 assert (nregs > 0);
227 return INTUSE(dwfl_thread_state_registers) (thread, firstreg, nregs, regs);
dwfl_frame.c 91 size_t nregs = ebl_frame_nregs (ebl); local
92 if (nregs == 0)
94 assert (nregs < sizeof (((Dwfl_Frame *) NULL)->regs_set) * 8);
95 Dwfl_Frame *state = malloc (sizeof (*state) + sizeof (*state->regs) * nregs);
libdwfl.h     [all...]
  /external/elfutils/src/tests/
allregs.c 69 int nregs; member in struct:state
108 if (regno >= state->nregs)
111 memset (&state->info[state->nregs], 0,
113 - (void *) &state->info[state->nregs]));
114 state->nregs = regno + 1;
166 if (result != 0 || state.nregs == 0)
170 qsort (state.info, state.nregs, sizeof state.info[0], &compare);
173 for (int i = 0; i < state.nregs; ++i)
  /external/mesa3d/src/gallium/drivers/r600/
r600.h 116 unsigned nregs; member in struct:r600_pipe_state
234 state->regs[state->nregs].value = value;
235 state->nregs++;
r600_state_common.c 465 for (int i = 0; i < rstate->nregs; i++) {
    [all...]
  /external/elfutils/src/libdw/
cfi.c 49 size_t size = offsetof (Dwarf_Frame, regs[original->nregs]);
82 if (fs->nregs <= reg)
94 memset (bigger->regs + bigger->nregs, 0,
95 (reg + 1 - bigger->nregs) * sizeof bigger->regs[0]);
96 bigger->nregs = reg + 1;
306 if (cie->initial_state->nregs > operand)
dwarf_frame_register.c 57 if (unlikely ((size_t) regno >= fs->nregs))
cfi.h 185 size_t nregs; member in struct:Dwarf_Frame_s
  /external/elfutils/src/backends/
ia64_retval.c 103 inline int hfa (const Dwarf_Op *loc, int nregs)
109 return fpregs_used + nregs;
  /external/elfutils/src/libebl/
libebl.h 393 If FIRSTREG is -1 then NREGS has to be 1. */
394 typedef bool (ebl_tid_registers_t) (int firstreg, unsigned nregs,
433 typedef bool (ebl_tid_registers_get_t) (int firstreg, unsigned nregs,
  /external/jemalloc/src/
stats.c 83 uint32_t nregs; local
94 CTL_M2_GET("arenas.bin.0.nregs", j, &nregs, uint32_t);
116 availregs = nregs * curruns;
139 ndalloc, nrequests, curregs, curruns, nregs,
148 ndalloc, nrequests, curregs, curruns, nregs,
tcache.c 518 if ((arena_bin_info[i].nregs << 1) <= TCACHE_NSLOTS_SMALL_MIN) {
521 } else if ((arena_bin_info[i].nregs << 1) <=
524 (arena_bin_info[i].nregs << 1);
  /art/compiler/utils/arm/
assembler_arm32.h 195 void vpushs(SRegister reg, int nregs, Condition cond = AL) OVERRIDE;
196 void vpushd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE;
197 void vpops(SRegister reg, int nregs, Condition cond = AL) OVERRIDE;
198 void vpopd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE;
362 void EmitVPushPop(uint32_t reg, int nregs, bool push, bool dbl, Condition cond);
assembler_thumb2.h 232 void vpushs(SRegister reg, int nregs, Condition cond = AL) OVERRIDE;
233 void vpushd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE;
234 void vpops(SRegister reg, int nregs, Condition cond = AL) OVERRIDE;
235 void vpopd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE;
429 void EmitVPushPop(uint32_t reg, int nregs, bool push, bool dbl, Condition cond);
assembler_arm32.cc 1042 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, false, cond); local
1047 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, true, cond); local
1052 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, false, cond); local
1057 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, true, cond); local
    [all...]
assembler_arm.h 513 virtual void vpushs(SRegister reg, int nregs, Condition cond = AL) = 0;
514 virtual void vpushd(DRegister reg, int nregs, Condition cond = AL) = 0;
515 virtual void vpops(SRegister reg, int nregs, Condition cond = AL) = 0;
516 virtual void vpopd(DRegister reg, int nregs, Condition cond = AL) = 0;
assembler_thumb2.cc 1974 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, false, cond); local
1979 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, true, cond); local
1984 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, false, cond); local
1989 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, true, cond); local
    [all...]
  /external/jemalloc/test/unit/
mallctl.c 109 assert_d_eq(mallctlnametomib("arenas.bin.0.nregs", mib, &miblen), 0,
527 TEST_ARENAS_BIN_CONSTANT(uint32_t, nregs, arena_bin_info[0].nregs);
  /external/valgrind/VEX/priv/
host_amd64_defs.h 573 /* Do 'ffree' on %st(7) .. %st(7-nregs) */
575 Int nregs; /* 1 <= nregs <= 7 */ member in struct:__anon19370::__anon19371::__anon19398
743 extern AMD64Instr* AMD64Instr_A87Free ( Int nregs );

Completed in 878 milliseconds

1 2