HomeSort by: relevance | last modified time | path
    Searched defs:pools (Results 1 - 17 of 17) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgomp/config/rtems/
pool.h 37 to limit the number of thread pools used by the OpenMP master threads of this
45 struct gomp_thread_pool *pools[]; member in struct:gomp_thread_pool_reservoir
100 pool = res->pools[--res->index];
119 res->pools[res->index++] = pool;
proc.c 55 struct gomp_thread_pool *pools; local
62 size = sizeof (*res) + count * (sizeof(pools) + sizeof(*pools));
63 pools = gomp_malloc (size);
64 memset (pools, 0, size);
65 res = (struct gomp_thread_pool_reservoir *) (pools + count);
71 res->pools[i] = &pools[i];
  /src/external/gpl3/gcc.old/dist/libgomp/config/rtems/
pool.h 37 to limit the number of thread pools used by the OpenMP master threads of this
45 struct gomp_thread_pool *pools[]; member in struct:gomp_thread_pool_reservoir
100 pool = res->pools[--res->index];
119 res->pools[res->index++] = pool;
proc.c 55 struct gomp_thread_pool *pools; local
62 size = sizeof (*res) + count * (sizeof(pools) + sizeof(*pools));
63 pools = gomp_malloc (size);
64 memset (pools, 0, size);
65 res = (struct gomp_thread_pool_reservoir *) (pools + count);
71 res->pools[i] = &pools[i];
  /src/usr.bin/xlint/lint1/
mem1.c 161 struct memory_pool *pools; member in struct:memory_pools
165 /* Array of memory pools, indexed by mem_block_level. */
254 mpools.pools = xrealloc(mpools.pools,
255 sizeof(*mpools.pools) * mpools.cap);
257 mpools.pools[i] = (memory_pool){ NULL, 0, 0 };
259 return mpools.pools + level;
  /src/external/bsd/ipf/dist/tools/
ippool.c 474 printf("%lu\taddress pools\n", plstat.ipls_pools);
741 ip_pool_t *pools[IPL_LOGSIZE]; local
747 bzero(&pools, sizeof(pools));
748 if (kmemcpy((char *)&pools, names[0].n_value, sizeof(pools)))
752 ptr = pools[role];
759 ptr = pools[role];
  /src/external/cddl/osnet/dist/cmd/zhack/
zhack.c 29 * for testing purposes. Altering pools with zhack is unsupported and may
30 * result in corrupted pools.
127 nvlist_t *pools; local
159 pools = zpool_search_import(g_zfs, &g_importargs);
161 if (nvlist_empty(pools)) {
176 elem = nvlist_next_nvpair(pools, NULL);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
spa_config.c 49 * default, all pools are stored in /etc/zfs/zpool.cache and loaded on boot
50 * (when the ZFS module is loaded). Pools can also have the 'cachefile'
59 * walks through all the active pools and writes the configuration to disk.
66 * userland pools when doing testing.
72 * file into the SPA namespace. It does not actually open or load the pools; it
250 * Iterate over all pools, adding any matching pools to 'nvl'.
332 * and we don't want to allow the local zone to see all the pools anyway.
339 nvlist_t *pools; local
345 pools = fnvlist_alloc()
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/ttm/
ttm_page_alloc.c 101 * struct ttm_pool_manager - Holds memory pools for fst allocation
111 * @pools: All pool objects in use.
119 struct ttm_page_pool pools[NUM_POOLS]; member in union:ttm_pool_manager::__anon5550
248 return &_manager->pools[pool_index];
404 pool = &_manager->pools[(i + pool_offset)%NUM_POOLS];
427 pool = &_manager->pools[i];
1027 ttm_page_pool_free(&_manager->pools[i], FREE_ALL_PAGES, true);
1186 p = &_manager->pools[i];
ttm_page_alloc_dma.c 30 * over the DMA pools:
75 * The pool structure. There are up to nine pools:
84 * @pools: The 'struct device->dma_pools' link.
90 * @dev: The device that is associated with these pools.
102 struct list_head pools; /* The 'struct device->dma_pools link */ member in struct:dma_pool
147 * DMA pools. Guarded by _mutex->lock.
148 * @pools: The link to 'struct ttm_pool_manager->pools'
153 struct list_head pools; member in struct:device_pools
159 * struct ttm_pool_manager - Holds memory pools for fast allocatio
169 struct list_head pools; member in struct:ttm_pool_manager
    [all...]
  /src/sys/dev/raidframe/
rf_raid.h 308 struct RF_Pools_s pools; member in struct:RF_Raid_s
  /src/external/mpl/dhcp/dist/server/
mdb6.c 79 *| Subnets | | pools |
104 * Those are stored in the ponds and pools.
111 * If it finds an acceptable pond it will then walk through the pools for that
196 struct ipv6_pool **pools; variable in typeref:struct:ipv6_pool
1005 * to avoid getting stuck in a loop (this is important on small pools
1013 * pools.
1848 * to avoid getting stuck in a loop (this is important on small pools
1856 * pools.
2001 memcpy(new_pools, pools,
2003 dfree(pools, MDL)
    [all...]
  /src/external/cddl/osnet/dist/lib/libzfs/common/
libzfs_import.c 99 pool_entry_t *pools; member in struct:pool_list
277 * list of known pools.
279 for (pe = pl->pools; pe != NULL; pe = pe->pe_next) {
290 pe->pe_next = pl->pools;
291 pl->pools = pe;
438 * Convert our list of pools into the definitive set of configurations. We
471 for (pe = pl->pools; pe != NULL; pe = pe->pe_next) {
755 * zdb uses this path to report on active pools that were
1158 * Given a list of directories to search, find all pools stored on disk. This
1159 * includes partial pools which are not available to import. If no args ar
1174 pool_list_t pools = { 0 }; local
1436 nvlist_t *pools; local
    [all...]
  /src/external/mpl/dhcp/dist/keama/
confparse.c 71 /* To map pools to subnets inside a shared-network */
1134 * or subnet and there may be multiple pools withing a shared network or subnet.
1153 struct element *pools; local
1164 parse_error(cfile, "Dynamic pools are only valid inside "
1225 pools = mapGet(cfile->stack[cfile->stack_top], "pools");
1226 if (pools == NULL) {
1227 pools = createList();
1228 pools->kind = POOL_DECL;
1229 mapSet(cfile->stack[cfile->stack_top], pools, "pools")
2181 struct element *pools; local
2243 struct element *pools; local
2253 struct element *pools; local
2606 struct handle *pools = NULL; local
3141 struct element *pools; local
3297 struct element *pools; local
3382 struct element *pools; local
3483 struct element *pools; local
    [all...]
  /src/external/cddl/osnet/dist/cmd/zdb/
zdb.c 3512 nvlist_t *pools; local
3529 pools = zpool_search_import(g_zfs, &args);
3531 if (pools != NULL) {
3533 while ((elem = nvlist_next_nvpair(pools, elem)) != NULL) {
3555 (void) fatal("\tMatched %d pools - use pool GUID "
  /src/external/cddl/osnet/dist/cmd/zpool/
zpool_main.c 632 * the exported or foreign pools.
1165 * Export the given pools. By default, the command will attempt to cleanly
1745 * No other status can be seen when importing pools.
1942 * -D Scan for previously destroyed pools or import all or only
1943 * specified destroyed pools.
1966 * -a Import all pools found.
1970 * The import command scans for pools to import, and import pools based on pool
1980 nvlist_t *pools = NULL; local
2140 * here because otherwise any attempt to discover pools wil
    [all...]
  /src/external/mpl/dhcp/dist/includes/
dhcpd.h 1022 * this is set after parsing the pools and before
1065 struct pool *pools; member in struct:shared_network
1696 * all the pools adding up to comprise the entire range. When
1698 * pools until it finds one that is available.
1848 extern struct ipv6_pool **pools;

Completed in 84 milliseconds