HomeSort by: relevance | last modified time | path
    Searched refs:reg_size (Results 1 - 25 of 138) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/gdb.old/dist/gdb/arch/
arc.h 32 arc_arch_features (int reg_size, arc_isa isa)
33 : reg_size (reg_size), isa (isa)
38 const int reg_size; member in struct:arc_arch_features
46 return (reg_size == rhs.reg_size && isa == rhs.isa);
57 REG_SIZE | ISA
62 std::size_t val = ((reg_size & 0x1f) << 8 | (isa & 0xf) << 0);
arc.c 47 if (features.isa == ARC_ISA_ARCV1 && features.reg_size == 4)
49 else if (features.isa == ARC_ISA_ARCV2 && features.reg_size == 4)
55 features.isa, 8 * features.reg_size);
  /src/external/gpl3/gdb/dist/gdb/arch/
arc.h 32 arc_arch_features (int reg_size, arc_isa isa)
33 : reg_size (reg_size), isa (isa)
38 const int reg_size; member in struct:arc_arch_features
46 return (reg_size == rhs.reg_size && isa == rhs.isa);
57 REG_SIZE | ISA
62 std::size_t val = ((reg_size & 0x1f) << 8 | (isa & 0xf) << 0);
arc.c 46 if (features.isa == ARC_ISA_ARCV1 && features.reg_size == 4)
48 else if (features.isa == ARC_ISA_ARCV2 && features.reg_size == 4)
54 features.isa, 8 * features.reg_size);
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
bin_info.h 28 size_t reg_size; member in struct:bin_info_s
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
bin_info.h 28 size_t reg_size; member in struct:bin_info_s
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
bin_info.h 29 size_t reg_size; member in struct:bin_info_s
  /src/external/bsd/jemalloc/include/jemalloc/internal/
bin_info.h 29 size_t reg_size; member in struct:bin_info_s
  /src/external/gpl3/gdb.old/dist/gdb/
riscv-ravenscar-thread.c 40 int reg_size = riscv_isa_xlen (arch); local
63 offset *= reg_size;
rs6000-lynx178-tdep.c 93 int reg_size = register_size (gdbarch, ii + 3); local
120 if (len > reg_size)
127 memset (word, 0, reg_size);
130 (len - argbytes) > reg_size
131 ? reg_size : len - argbytes);
133 ++ii, argbytes += reg_size;
146 memset (word, 0, reg_size);
regcache.c 942 int reg_size = register_size (arch (), regnum); local
945 gdb_assert (offset + dst.size () <= reg_size);
953 if (dst.size () == reg_size)
964 gdb_byte *reg_buf = (gdb_byte *) alloca (reg_size);
965 auto reg = gdb::make_array_view (reg_buf, reg_size);
986 int reg_size = register_size (arch (), regnum); local
989 gdb_assert (offset + dst.size () <= reg_size);
997 if (dst.size () == reg_size)
1004 gdb_byte *reg_buf = (gdb_byte *) alloca (reg_size);
1005 auto reg = gdb::make_array_view (reg_buf, reg_size);
1016 int reg_size = register_size (arch (), regnum); local
1068 int reg_size = register_size (arch (), regnum); local
1240 int reg_size = std::min (register_size (gdbarch, regnum), slot_size); local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
riscv-ravenscar-thread.c 40 int reg_size = riscv_isa_xlen (arch); local
63 offset *= reg_size;
rs6000-lynx178-tdep.c 93 int reg_size = register_size (gdbarch, ii + 3); local
120 if (len > reg_size)
127 memset (word, 0, reg_size);
130 (len - argbytes) > reg_size
131 ? reg_size : len - argbytes);
133 ++ii, argbytes += reg_size;
146 memset (word, 0, reg_size);
regcache.c 942 int reg_size = register_size (regnum); local
945 gdb_assert (offset + dst.size () <= reg_size);
953 if (dst.size () == reg_size)
964 gdb_byte *reg_buf = (gdb_byte *) alloca (reg_size);
965 auto reg = gdb::make_array_view (reg_buf, reg_size);
986 int reg_size = register_size (regnum); local
989 gdb_assert (offset + dst.size () <= reg_size);
997 if (dst.size () == reg_size)
1004 gdb_byte *reg_buf = (gdb_byte *) alloca (reg_size);
1005 auto reg = gdb::make_array_view (reg_buf, reg_size);
1016 int reg_size = register_size (regnum); local
1068 int reg_size = register_size (regnum); local
1239 int reg_size = std::min (register_size (regnum), slot_size); local
    [all...]
  /src/external/bsd/jemalloc.old/dist/src/
bin_info.c 14 bin_info->reg_size = ((size_t)1U << sc->lg_base)
18 (uint32_t)(bin_info->slab_size / bin_info->reg_size);
sc.c 25 size_t reg_size = reg_size_compute(lg_base, lg_delta, ndelta); local
28 size_t try_nregs = try_slab_size / reg_size;
45 try_nregs = try_slab_size / reg_size;
46 if (perfect_slab_size == perfect_nregs * reg_size) {
264 sc_data_update_sc_slab_size(sc_t *sc, size_t reg_size, size_t pgs_guess) {
265 size_t min_pgs = reg_size / PAGE;
266 if (reg_size % PAGE != 0) {
273 size_t max_pgs = BITMAP_MAXBITS * reg_size / PAGE;
295 size_t reg_size = reg_size_compute(sc->lg_base, sc->lg_delta, local
297 if (begin <= reg_size && reg_size <= end)
    [all...]
  /src/external/bsd/jemalloc.old/dist/test/unit/
sc.c 17 size_t reg_size = (ZU(1) << sc->lg_base) local
19 if (reg_size <= PAGE) {
slab.c 23 (bin_info->reg_size * regind));
28 bin_info->reg_size);
  /src/external/bsd/jemalloc/dist/src/
bin_info.c 14 bin_info->reg_size = ((size_t)1U << sc->lg_base)
18 / bin_info->reg_size);
sc.c 25 size_t reg_size = reg_size_compute(lg_base, lg_delta, ndelta); local
28 size_t try_nregs = try_slab_size / reg_size;
45 try_nregs = try_slab_size / reg_size;
46 if (perfect_slab_size == perfect_nregs * reg_size) {
264 sc_data_update_sc_slab_size(sc_t *sc, size_t reg_size, size_t pgs_guess) {
265 size_t min_pgs = reg_size / PAGE;
266 if (reg_size % PAGE != 0) {
273 size_t max_pgs = BITMAP_MAXBITS * reg_size / PAGE;
295 size_t reg_size = reg_size_compute( local
297 if (begin <= reg_size && reg_size <= end)
    [all...]
  /src/external/bsd/jemalloc/dist/test/unit/
sc.c 17 size_t reg_size = (ZU(1) << sc->lg_base) local
19 if (reg_size <= PAGE) {
slab.c 22 + (bin_info->reg_size * regind));
27 bin_info->reg_size);
  /src/external/gpl3/gdb.old/dist/sim/bfin/
dv-bfin_ebiu_amc.c 366 unsigned reg_size)
387 if (attach_size != reg_size)
388 hw_abort (me, "\"reg\" size must be %#x", reg_size);
401 unsigned reg_size; local
418 reg_size = sizeof (amc->bf50x) + 4;
433 reg_size = sizeof (amc->bf54x) + 4;
454 reg_size = sizeof (amc->bf53x) + 4;
471 attach_bfin_ebiu_amc_regs (me, amc, reg_size);
  /src/external/gpl3/gdb/dist/sim/bfin/
dv-bfin_ebiu_amc.c 366 unsigned reg_size)
387 if (attach_size != reg_size)
388 hw_abort (me, "\"reg\" size must be %#x", reg_size);
401 unsigned reg_size; local
418 reg_size = sizeof (amc->bf50x) + 4;
433 reg_size = sizeof (amc->bf54x) + 4;
454 reg_size = sizeof (amc->bf53x) + 4;
471 attach_bfin_ebiu_amc_regs (me, amc, reg_size);
  /src/external/gpl3/gcc/dist/gcc/config/fr30/
fr30.cc 72 +-----------------------+ | reg_size
101 unsigned int reg_size; /* # Bytes needed to store regs. */ member in struct:fr30_frame_info
226 unsigned int reg_size;
233 reg_size = 0;
241 reg_size += UNITS_PER_WORD;
249 reg_size += (current_frame_info.save_fp + current_frame_info.save_rp)
256 current_frame_info.reg_size = reg_size;
258 current_frame_info.total_size = args_size + var_size + reg_size + pretend_size;
269 return_value += reg_size;
224 unsigned int reg_size; local
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6