HomeSort by: relevance | last modified time | path
    Searched refs:lg_base (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/jemalloc/dist/src/
sc.c 17 reg_size_compute(int lg_base, int lg_delta, int ndelta) {
18 return (ZU(1) << lg_base) + (ZU(ndelta) << lg_delta);
23 slab_size(int lg_page, int lg_base, int lg_delta, int ndelta) {
25 size_t reg_size = reg_size_compute(lg_base, lg_delta, ndelta);
60 int index, int lg_base, int lg_delta, int ndelta) {
62 sc->lg_base = lg_base;
65 size_t size = reg_size_compute(lg_base, lg_delta, ndelta);
72 sc->pgs = slab_size(lg_page, lg_base, lg_delta, ndelta);
103 int lg_base = lg_tiny_min local
    [all...]
sz.c 62 sz_pind2sz_tab[pind] = (ZU(1) << sc->lg_base)
79 sz_index2size_tab[i] = (ZU(1) << sc->lg_base)
98 size_t sz = (ZU(1) << sc->lg_base)
bin_info.c 14 bin_info->reg_size = ((size_t)1U << sc->lg_base)
arena.c 1779 (1U << sc->lg_base) + (sc->ndelta << sc->lg_delta));
  /src/external/bsd/jemalloc.old/dist/src/
sc.c 17 reg_size_compute(int lg_base, int lg_delta, int ndelta) {
18 return (ZU(1) << lg_base) + (ZU(ndelta) << lg_delta);
23 slab_size(int lg_page, int lg_base, int lg_delta, int ndelta) {
25 size_t reg_size = reg_size_compute(lg_base, lg_delta, ndelta);
60 int index, int lg_base, int lg_delta, int ndelta) {
62 sc->lg_base = lg_base;
65 size_t size = reg_size_compute(lg_base, lg_delta, ndelta);
72 sc->pgs = slab_size(lg_page, lg_base, lg_delta, ndelta);
103 int lg_base = lg_tiny_min local
    [all...]
sz.c 62 sz_pind2sz_tab[pind] = (ZU(1) << sc->lg_base)
79 sz_index2size_tab[i] = (ZU(1) << sc->lg_base)
98 size_t sz = (ZU(1) << sc->lg_base)
bin_info.c 14 bin_info->reg_size = ((size_t)1U << sc->lg_base)
arena.c 1779 (1U << sc->lg_base) + (sc->ndelta << sc->lg_delta));
  /src/external/bsd/jemalloc/dist/test/unit/
sc.c 8 size_t tiny_size = (ZU(1) << tiny->lg_base)
17 size_t reg_size = (ZU(1) << sc->lg_base)
sz.c 29 reg_size_compute(data.sc[base_ind].lg_base,
35 reg_size_compute(data.sc[base_ind].lg_base,
47 reg_size_compute(gt_sc.lg_base, gt_sc.lg_delta,
52 reg_size_compute(le_sc.lg_base, le_sc.lg_delta,
  /src/external/bsd/jemalloc.old/dist/test/unit/
sc.c 8 size_t tiny_size = (ZU(1) << tiny->lg_base)
17 size_t reg_size = (ZU(1) << sc->lg_base)
sz.c 29 reg_size_compute(data.sc[base_ind].lg_base,
35 reg_size_compute(data.sc[base_ind].lg_base,
47 reg_size_compute(gt_sc.lg_base, gt_sc.lg_delta,
52 reg_size_compute(le_sc.lg_base, le_sc.lg_delta,
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
sc.h 25 * lg_base and lg_delta. For each of these groups then, we have that
26 * lg_delta == lg_base - SC_LG_NGROUP.
27 * The size classes in a group with a given lg_base and lg_delta (which, recall,
28 * can be computed from lg_base for these groups) are therefore:
77 * lg_base of LG_QUANTUM + SC_LG_NGROUP. We can divide this base into SC_NGROUP
79 * lg_delta = lg_base - SC_LG_GROUP (== LG_QUANTUM).
104 * (relative to lg_base of LG_QUANTUM + SC_LG_NGROUP and lg_delta of
105 * lg_base - SC_LG_NGROUP)
106 * (1 << lg_base) + 1 * (1 << lg_delta)
107 * (1 << lg_base) + 2 * (1 << lg_delta
295 int lg_base; member in struct:sc_s
    [all...]
  /src/external/bsd/jemalloc/include/jemalloc/internal/
sc.h 25 * lg_base and lg_delta. For each of these groups then, we have that
26 * lg_delta == lg_base - SC_LG_NGROUP.
27 * The size classes in a group with a given lg_base and lg_delta (which, recall,
28 * can be computed from lg_base for these groups) are therefore:
77 * lg_base of LG_QUANTUM + SC_LG_NGROUP. We can divide this base into SC_NGROUP
79 * lg_delta = lg_base - SC_LG_GROUP (== LG_QUANTUM).
104 * (relative to lg_base of LG_QUANTUM + SC_LG_NGROUP and lg_delta of
105 * lg_base - SC_LG_NGROUP)
106 * (1 << lg_base) + 1 * (1 << lg_delta)
107 * (1 << lg_base) + 2 * (1 << lg_delta
295 int lg_base; member in struct:sc_s
    [all...]
  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
sc.h 25 * lg_base and lg_delta. For each of these groups then, we have that
26 * lg_delta == lg_base - SC_LG_NGROUP.
27 * The size classes in a group with a given lg_base and lg_delta (which, recall,
28 * can be computed from lg_base for these groups) are therefore:
77 * lg_base of LG_QUANTUM + SC_LG_NGROUP. We can divide this base into SC_NGROUP
79 * lg_delta = lg_base - SC_LG_GROUP (== LG_QUANTUM).
104 * (relative to lg_base of LG_QUANTUM + SC_LG_NGROUP and lg_delta of
105 * lg_base - SC_LG_NGROUP)
106 * (1 << lg_base) + 1 * (1 << lg_delta)
107 * (1 << lg_base) + 2 * (1 << lg_delta
295 int lg_base; member in struct:sc_s
    [all...]
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
sc.h 25 * lg_base and lg_delta. For each of these groups then, we have that
26 * lg_delta == lg_base - SC_LG_NGROUP.
27 * The size classes in a group with a given lg_base and lg_delta (which, recall,
28 * can be computed from lg_base for these groups) are therefore:
77 * lg_base of LG_QUANTUM + SC_LG_NGROUP. We can divide this base into SC_NGROUP
79 * lg_delta = lg_base - SC_LG_GROUP (== LG_QUANTUM).
104 * (relative to lg_base of LG_QUANTUM + SC_LG_NGROUP and lg_delta of
105 * lg_base - SC_LG_NGROUP)
106 * (1 << lg_base) + 1 * (1 << lg_delta)
107 * (1 << lg_base) + 2 * (1 << lg_delta
295 int lg_base; member in struct:sc_s
    [all...]

Completed in 25 milliseconds