Searched defs:cache_size (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/libc/amd64/gen/
H A Dproc64_id.c62 uint_t cache_size; local
92 cache_size = ways * partitions * line_size * sets;
95 l1_cache_size = cache_size;
98 l2_cache_size = cache_size;
102 largest_level_cache = cache_size;
/illumos-gate/usr/src/uts/i86pc/io/apix/
H A Dapix_irm.c112 int cache_size; local
181 cache_size = apix_irm_reserve_fixed_vectors;
182 if ((cache_size == -1) ||
183 (cache_size > apix_irminfo.apix_ioapic_max_vectors))
184 cache_size = apix_irminfo.apix_ioapic_max_vectors;
185 total_avail_vectors -= cache_size;
186 apix_irm_cache_size = cache_size;
/illumos-gate/usr/src/uts/sun4/io/px/
H A Dpx_mmu.c49 uint32_t cache_size, tsb_entries; local
103 cache_size = MMU_PTOB(px_dvma_page_cache_entries *
106 cache_size - 1;
110 MMU_PTOB(tsb_entries) - cache_size, MMU_PAGE_SIZE,
/illumos-gate/usr/src/uts/sun4u/io/pci/
H A Dpci_iommu.c55 size_t cache_size; local
150 cache_size = IOMMU_PTOB(pci_dvma_page_cache_entries *
153 cache_size - 1;
156 IOMMU_PTOB(tsb_entries) - cache_size, IOMMU_PAGE_SIZE,
/illumos-gate/usr/src/uts/common/sys/
H A Dautoconf.h195 size_t cache_size; member in struct:di_cache
/illumos-gate/usr/src/cmd/keyserv/
H A Dkeyserv.c151 * same goes for non-null entries in cache_size
155 int *cache_size; variable
218 cache_size = NULL;
288 cache_size[d] = get_cache_size(value);
319 int *ip = cache_size;
356 cache_size[i] ? cache_size[i] : default_cache);
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibcm/
H A Dibcm_path.c208 int cache_size = ibcm_path_cache_size_init; local
212 path_cachep = kmem_zalloc(cache_size * sizeof (*path_cachep), KM_SLEEP);
215 ibcm_path_cache_size = cache_size;
226 int cache_size; local
234 cache_size = ibcm_path_cache_size;
240 kmem_free(path_cachep, cache_size * sizeof (*path_cachep));
/illumos-gate/usr/src/lib/libsqlite/src/
H A DsqliteInt.h358 int cache_size; /* Number of pages to use in the cache */ member in struct:sqlite
/illumos-gate/usr/src/lib/libumem/common/
H A Dumem.c3190 size_t cache_size = umem_alloc_sizes[i]; local
3193 if (cache_size == 0)
3200 if (IS_P2ALIGNED(cache_size, 64))
3202 if (IS_P2ALIGNED(cache_size, pagesize))
3205 (long)cache_size);
3207 cp = umem_cache_create(name, cache_size, align,
3231 size_t cache_size = umem_alloc_sizes[i]; local
3233 if (cache_size == 0)
3238 while (size <= cache_size) {
/illumos-gate/usr/src/uts/sun4u/sunfire/sys/
H A Dfhc.h529 int cache_size; /* Cache size in bytes */ member in struct:cpu_info
/illumos-gate/usr/src/uts/common/os/
H A Dkmem.c4219 size_t cache_size = array[i]; local
4228 ASSERT(P2PHASE(cache_size, table_unit) == 0);
4234 if (IS_P2ALIGNED(cache_size, 64))
4236 if (IS_P2ALIGNED(cache_size, PAGESIZE))
4239 "kmem_alloc_%lu", cache_size);
4240 cp = kmem_cache_create(name, cache_size, align,
4243 while (size <= cache_size) {
4249 ASSERT(size > maxbuf); /* i.e. maxbuf <= max(cache_size) */

Completed in 138 milliseconds