| /src/external/bsd/jemalloc/dist/src/ |
| hpa.c | 62 hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks) { 66 err = malloc_mutex_init(¢ral->grow_mtx, "hpa_central_grow", 71 err = malloc_mutex_init(¢ral->mtx, "hpa_central", 76 central->base = base; 77 central->eden = NULL; 78 central->eden_len = 0; 79 central->age_counter = 0; 80 central->hooks = *hooks; 85 hpa_alloc_ps(tsdn_t *tsdn, hpa_central_t *central) { 86 return (hpdata_t *)base_alloc(tsdn, central->base, sizeof(hpdata_t) [all...] |
| pa.c | 19 pa_central_init(pa_central_t *central, base_t *base, bool hpa, 23 err = hpa_central_init(¢ral->hpa, base, hpa_hooks); 32 pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central, 60 shard->central = central; 70 if (hpa_shard_init(&shard->hpa_shard, &shard->central->hpa, shard->emap,
|
| /src/external/bsd/jemalloc.old/dist/src/ |
| hpa.c | 62 hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks) { 66 err = malloc_mutex_init(¢ral->grow_mtx, "hpa_central_grow", 71 err = malloc_mutex_init(¢ral->mtx, "hpa_central", 76 central->base = base; 77 central->eden = NULL; 78 central->eden_len = 0; 79 central->age_counter = 0; 80 central->hooks = *hooks; 85 hpa_alloc_ps(tsdn_t *tsdn, hpa_central_t *central) { 86 return (hpdata_t *)base_alloc(tsdn, central->base, sizeof(hpdata_t) [all...] |
| pa.c | 19 pa_central_init(pa_central_t *central, base_t *base, bool hpa, 23 err = hpa_central_init(¢ral->hpa, base, hpa_hooks); 32 pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central, 60 shard->central = central; 70 if (hpa_shard_init(&shard->hpa_shard, &shard->central->hpa, shard->emap,
|
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| hpa.h | 13 * The mutex guarding most of the operations on the central data 87 /* The central allocator we get our hugepages from. */ 88 hpa_central_t *central; member in struct:hpa_shard_s 92 * Guards the shard's access to the central allocator (preventing 93 * multiple threads operating on this shard from accessing the central 152 bool hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks); 153 bool hpa_shard_init(hpa_shard_t *shard, hpa_central_t *central, emap_t *emap,
|
| pa.h | 69 /* The central PA this shard is associated with. */ 70 pa_central_t *central; member in struct:pa_shard_s 133 bool pa_central_init(pa_central_t *central, base_t *base, bool hpa, 137 bool pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central,
|
| /src/external/bsd/jemalloc/include/jemalloc/internal/ |
| hpa.h | 13 * The mutex guarding most of the operations on the central data 87 /* The central allocator we get our hugepages from. */ 88 hpa_central_t *central; member in struct:hpa_shard_s 92 * Guards the shard's access to the central allocator (preventing 93 * multiple threads operating on this shard from accessing the central 152 bool hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks); 153 bool hpa_shard_init(hpa_shard_t *shard, hpa_central_t *central, emap_t *emap,
|
| pa.h | 69 /* The central PA this shard is associated with. */ 70 pa_central_t *central; member in struct:pa_shard_s 133 bool pa_central_init(pa_central_t *central, base_t *base, bool hpa, 137 bool pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central,
|
| /src/external/bsd/jemalloc.old/dist/include/jemalloc/internal/ |
| hpa.h | 13 * The mutex guarding most of the operations on the central data 87 /* The central allocator we get our hugepages from. */ 88 hpa_central_t *central; member in struct:hpa_shard_s 92 * Guards the shard's access to the central allocator (preventing 93 * multiple threads operating on this shard from accessing the central 152 bool hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks); 153 bool hpa_shard_init(hpa_shard_t *shard, hpa_central_t *central, emap_t *emap,
|
| pa.h | 69 /* The central PA this shard is associated with. */ 70 pa_central_t *central; member in struct:pa_shard_s 133 bool pa_central_init(pa_central_t *central, base_t *base, bool hpa, 137 bool pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central,
|
| /src/external/bsd/jemalloc.old/include/jemalloc/internal/ |
| hpa.h | 13 * The mutex guarding most of the operations on the central data 87 /* The central allocator we get our hugepages from. */ 88 hpa_central_t *central; member in struct:hpa_shard_s 92 * Guards the shard's access to the central allocator (preventing 93 * multiple threads operating on this shard from accessing the central 152 bool hpa_central_init(hpa_central_t *central, base_t *base, const hpa_hooks_t *hooks); 153 bool hpa_shard_init(hpa_shard_t *shard, hpa_central_t *central, emap_t *emap,
|
| pa.h | 69 /* The central PA this shard is associated with. */ 70 pa_central_t *central; member in struct:pa_shard_s 133 bool pa_central_init(pa_central_t *central, base_t *base, bool hpa, 137 bool pa_shard_init(tsdn_t *tsdn, pa_shard_t *shard, pa_central_t *central,
|
| /src/external/bsd/jemalloc/dist/test/unit/ |
| pa.c | 43 pa_central_t central; member in struct:test_data_s 68 err = pa_central_init(&test_data->central, base, opt_hpa, 73 err = pa_shard_init(TSDN_NULL, &test_data->shard, &test_data->central,
|
| hpa.c | 17 hpa_central_t central; member in struct:test_data_s 55 err = hpa_central_init(&test_data->central, test_data->base, hooks); 58 err = hpa_shard_init(&test_data->shard, &test_data->central,
|
| /src/external/bsd/jemalloc.old/dist/test/unit/ |
| pa.c | 43 pa_central_t central; member in struct:test_data_s 68 err = pa_central_init(&test_data->central, base, opt_hpa, 73 err = pa_shard_init(TSDN_NULL, &test_data->shard, &test_data->central,
|
| hpa.c | 17 hpa_central_t central; member in struct:test_data_s 55 err = hpa_central_init(&test_data->central, test_data->base, hooks); 58 err = hpa_shard_init(&test_data->shard, &test_data->central,
|
| /src/sys/arch/sparc64/dev/ |
| central.c | 1 /* $NetBSD: central.c,v 1.9 2022/01/22 11:49:17 thorpej Exp $ */ 2 /* $OpenBSD: central.c,v 1.7 2010/11/11 17:58:23 miod Exp $ */ 31 __KERNEL_RCSID(0, "$NetBSD: central.c,v 1.9 2022/01/22 11:49:17 thorpej Exp $"); 59 CFATTACH_DECL_NEW(central, sizeof(struct central_softc), 79 if (strcmp(ma->ma_name, "central") == 0)
|
| /src/external/gpl2/gettext/dist/gettext-tools/misc/ |
| po-mode.el | 3190 "Return the ideal file name for this PO file in the central archives."
|