HomeSort by: relevance | last modified time | path
    Searched defs:emap (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/
pa.h 9 #include "jemalloc/internal/emap.h"
109 /* The emap this shard is tied to. */
110 emap_t *emap; member in struct:pa_shard_s
133 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
pa.h 9 #include "jemalloc/internal/emap.h"
109 /* The emap this shard is tied to. */
110 emap_t *emap; member in struct:pa_shard_s
133 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
hpa.h 7 #include "jemalloc/internal/emap.h"
111 * Our emap. This is just a cache of the emap pointer in the associated
114 emap_t *emap; member in struct:hpa_shard_s
154 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
hpa.h 7 #include "jemalloc/internal/emap.h"
111 * Our emap. This is just a cache of the emap pointer in the associated
114 emap_t *emap; member in struct:hpa_shard_s
154 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
pac.h 99 emap_t *emap; member in struct:pac_s
153 bool pac_init(tsdn_t *tsdn, pac_t *pac, base_t *base, emap_t *emap,
  /src/external/bsd/jemalloc.old/include/jemalloc/internal/
pa.h 9 #include "jemalloc/internal/emap.h"
109 /* The emap this shard is tied to. */
110 emap_t *emap; member in struct:pa_shard_s
133 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
pa.h 9 #include "jemalloc/internal/emap.h"
109 /* The emap this shard is tied to. */
110 emap_t *emap; member in struct:pa_shard_s
133 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
hpa.h 7 #include "jemalloc/internal/emap.h"
111 * Our emap. This is just a cache of the emap pointer in the associated
114 emap_t *emap; member in struct:hpa_shard_s
154 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
hpa.h 7 #include "jemalloc/internal/emap.h"
111 * Our emap. This is just a cache of the emap pointer in the associated
114 emap_t *emap; member in struct:hpa_shard_s
154 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
  /src/external/bsd/jemalloc/dist/include/jemalloc/internal/
pa.h 9 #include "jemalloc/internal/emap.h"
104 /* The emap this shard is tied to. */
105 emap_t *emap; member in struct:pa_shard_s
125 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
pa.h 9 #include "jemalloc/internal/emap.h"
104 /* The emap this shard is tied to. */
105 emap_t *emap; member in struct:pa_shard_s
125 emap_t *emap, base_t *base, unsigned ind, pa_shard_stats_t *stats,
hpa.h 7 #include "jemalloc/internal/emap.h"
158 * Our emap. This is just a cache of the emap pointer in the associated
161 emap_t *emap; member in struct:hpa_shard_s
200 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
hpa.h 7 #include "jemalloc/internal/emap.h"
158 * Our emap. This is just a cache of the emap pointer in the associated
161 emap_t *emap; member in struct:hpa_shard_s
200 emap_t *emap, base_t *base, edata_cache_t *edata_cache, unsigned ind,
  /src/external/bsd/jemalloc/dist/test/unit/
emap.c 3 #include "jemalloc/internal/emap.h"
11 emap_t emap; member in struct:emap_test_data_s
36 assert_false(emap_init(&data->emap, data->base, /* zeroed */ true),
51 expect_full_lookup(emap_t *emap, void *ptr, edata_t *edata, szind_t szind,
54 emap_full_alloc_ctx_lookup(TSDN_NULL, emap, ptr, &ctx);
55 expect_ptr_eq(edata, ctx.edata, "Unexpected emap edata");
56 expect_u_eq(szind, ctx.szind, "Unexpected emap szind");
57 expect_b_eq(slab, ctx.slab, "Unexpected emap slab bit");
67 expect_false(emap_register_boundary(TSDN_NULL, &data->emap, slab,
70 emap_register_interior(TSDN_NULL, &data->emap, slab, szind)
    [all...]
emap.c 3 #include "jemalloc/internal/emap.h"
11 emap_t emap; member in struct:emap_test_data_s
36 assert_false(emap_init(&data->emap, data->base, /* zeroed */ true),
51 expect_full_lookup(emap_t *emap, void *ptr, edata_t *edata, szind_t szind,
54 emap_full_alloc_ctx_lookup(TSDN_NULL, emap, ptr, &ctx);
55 expect_ptr_eq(edata, ctx.edata, "Unexpected emap edata");
56 expect_u_eq(szind, ctx.szind, "Unexpected emap szind");
57 expect_b_eq(slab, ctx.slab, "Unexpected emap slab bit");
67 expect_false(emap_register_boundary(TSDN_NULL, &data->emap, slab,
70 emap_register_interior(TSDN_NULL, &data->emap, slab, szind)
    [all...]
pa.c 29 * merge touch the global emap to find head state. The first of these
45 emap_t emap; member in struct:test_data_s
62 bool err = emap_init(&test_data->emap, test_data->base,
75 &test_data->emap, test_data->base, /* ind */ 1, &test_data->stats,
146 TSDN_NULL, &test_data->emap, tail_addr);
158 tail = emap_edata_lookup(TSDN_NULL, &test_data->emap, tail_addr);
hpa_vectorized_madvise_large_batch.c 22 emap_t emap; member in struct:test_data_s
62 err = emap_init(&test_data->emap, test_data->base, /* zeroed */ false);
71 &test_data->emap, test_data->base, &test_data->shard_edata_cache,
pa.c 29 * merge touch the global emap to find head state. The first of these
45 emap_t emap; member in struct:test_data_s
62 bool err = emap_init(&test_data->emap, test_data->base,
75 &test_data->emap, test_data->base, /* ind */ 1, &test_data->stats,
146 TSDN_NULL, &test_data->emap, tail_addr);
158 tail = emap_edata_lookup(TSDN_NULL, &test_data->emap, tail_addr);
hpa_vectorized_madvise_large_batch.c 22 emap_t emap; member in struct:test_data_s
62 err = emap_init(&test_data->emap, test_data->base, /* zeroed */ false);
71 &test_data->emap, test_data->base, &test_data->shard_edata_cache,
  /src/external/bsd/jemalloc.old/dist/test/unit/
hpa_vectorized_madvise_large_batch.c 22 emap_t emap; member in struct:test_data_s
64 err = emap_init(&test_data->emap, test_data->base, /* zeroed */ false);
73 &test_data->emap, test_data->base, &test_data->shard_edata_cache,
pa.c 29 * merge touch the global emap to find head state. The first of these
45 emap_t emap; member in struct:test_data_s
62 bool err = emap_init(&test_data->emap, test_data->base,
75 &test_data->emap, test_data->base, /* ind */ 1, &test_data->stats,
146 TSDN_NULL, &test_data->emap, tail_addr);
158 tail = emap_edata_lookup(TSDN_NULL, &test_data->emap, tail_addr);
hpa_vectorized_madvise_large_batch.c 22 emap_t emap; member in struct:test_data_s
64 err = emap_init(&test_data->emap, test_data->base, /* zeroed */ false);
73 &test_data->emap, test_data->base, &test_data->shard_edata_cache,
pa.c 29 * merge touch the global emap to find head state. The first of these
45 emap_t emap; member in struct:test_data_s
62 bool err = emap_init(&test_data->emap, test_data->base,
75 &test_data->emap, test_data->base, /* ind */ 1, &test_data->stats,
146 TSDN_NULL, &test_data->emap, tail_addr);
158 tail = emap_edata_lookup(TSDN_NULL, &test_data->emap, tail_addr);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/instmem/
nouveau_nvkm_subdev_instmem_nv50.c 152 void *emap; local
179 emap = eobj->map;
191 __USE(emap);
194 iounmap(emap);
  /src/usr.sbin/puffs/mount_psshfs/
psbuf.c 420 static int emap[] = { variable
435 #define NERRORS ((int)(sizeof(emap) / sizeof(emap[0])))
447 return emap[error];

Completed in 104 milliseconds

1 2 3