| /freebsd-12-stable/contrib/subversion/subversion/libsvn_subr/ |
| D | cache_config.c | 87 apr_uint64_t cache_size = MIN(cache_settings.cache_size, in initialize_cache() local 91 if (cache_size) in initialize_cache() 125 (apr_size_t)cache_size, in initialize_cache() 126 (apr_size_t)(cache_size / 5), in initialize_cache() 141 cache_settings.cache_size = 0; in initialize_cache()
|
| /freebsd-12-stable/sys/powerpc/mpc85xx/ |
| D | mpc85xx_cache.c | 117 int cache_line_size, cache_size; in mpc85xx_cache_attach() local 133 cache_size = 0; in mpc85xx_cache_attach() 134 OF_getencprop(ofw_bus_get_node(dev), "cache-size", &cache_size, in mpc85xx_cache_attach() 135 sizeof(cache_size)); in mpc85xx_cache_attach() 139 if (cache_line_size != 0 && cache_size != 0) in mpc85xx_cache_attach() 142 cache_size / 1024, cache_line_size); in mpc85xx_cache_attach()
|
| /freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_quarantine.h | 84 void Init(uptr size, uptr cache_size) { in Init() argument 87 CHECK((size == 0 && cache_size == 0) || cache_size != 0); in Init() 91 atomic_store_relaxed(&max_cache_size_, cache_size); in Init() 103 uptr cache_size = GetCacheSize(); in Put() local 104 if (cache_size) { in Put() 111 if (c->Size() > cache_size) in Put() 162 uptr cache_size = cache_.Size(); in Recycle() local 164 CHECK_GE(cache_size, overhead_size); in Recycle() 169 if (cache_size > overhead_size && in Recycle() 171 cache_size * kOverheadThresholdPercents) { in Recycle()
|
| /freebsd-12-stable/contrib/libarchive/libarchive/ |
| D | archive_write_disk_set_standard_lookup.c | 59 static const size_t cache_size = 127; variable 87 struct bucket *ucache = calloc(cache_size, sizeof(struct bucket)); in archive_write_disk_set_standard_lookup() 88 struct bucket *gcache = calloc(cache_size, sizeof(struct bucket)); in archive_write_disk_set_standard_lookup() 112 b = &gcache[h % cache_size ]; in lookup_gid() 181 b = &ucache[h % cache_size ]; in lookup_uid() 243 for (i = 0; i < cache_size; i++) in cleanup()
|
| /freebsd-12-stable/contrib/xz/src/liblzma/rangecoder/ |
| D | range_encoder.h | 29 uint64_t cache_size; member 58 rc->cache_size = 1; in rc_reset() 137 } while (--rc->cache_size != 0); in rc_shift_low() 142 ++rc->cache_size; in rc_shift_low() 228 return rc->cache_size + 5 - 1; in rc_pending()
|
| /freebsd-12-stable/sys/compat/linuxkpi/common/src/ |
| D | linux_slab.c | 41 (c)->cache_size - sizeof(struct linux_kmem_rcu))) 45 (r)->cache->cache_size)) 106 c->cache_size = size; in linux_kmem_cache_create()
|
| /freebsd-12-stable/contrib/subversion/subversion/include/ |
| D | svn_cache_config.h | 55 apr_uint64_t cache_size; member
|
| /freebsd-12-stable/contrib/subversion/subversion/svnfsfs/ |
| D | svnfsfs.c | 261 opt_state.memory_cache_size = svn_cache_config_get()->cache_size; in sub_main() 451 settings.cache_size = opt_state.memory_cache_size; in sub_main()
|
| /freebsd-12-stable/lib/libifconfig/ |
| D | libifconfig_bridge.c | 89 bridge->inner.cache_size = cache_param.ifbrp_csize; in ifconfig_bridge_get_bridge_status()
|
| D | libifconfig.h | 65 uint32_t cache_size; /**< size of address cache */ member
|
| /freebsd-12-stable/sys/arm64/arm64/ |
| D | identcpu.c | 532 size_t cache_size; in print_cpu_cache() local 543 cache_size = (CCSIDR_NSETS_64(ccs) + 1) * in print_cpu_cache() 546 cache_size = (CCSIDR_NSETS(ccs) + 1) * (CCSIDR_ASSOC(ccs) + 1); in print_cpu_cache() 548 cache_size *= line_size; in print_cpu_cache() 549 sbuf_printf(sb, "%zuKB (%s)", cache_size / 1024, in print_cpu_cache()
|
| /freebsd-12-stable/contrib/gcc/ |
| D | sched-deps.c | 81 static int cache_size; variable 1779 cache_size = 0; in init_dependency_caches() 1791 int i, luid = cache_size + n; in extend_dependency_caches() 1807 for (i = cache_size; i < luid; i++) in extend_dependency_caches() 1818 cache_size = luid; in extend_dependency_caches() 1831 for (i = 0; i < cache_size; i++) in free_dependency_caches()
|
| /freebsd-12-stable/sys/compat/linprocfs/ |
| D | linprocfs.c | 202 u_int cache_size[4]; in linprocfs_docpuinfo() local 291 do_cpuid(0x80000006, cache_size); in linprocfs_docpuinfo() 293 memset(cache_size, 0, sizeof(cache_size)); in linprocfs_docpuinfo() 324 (cache_size[2] >> 16), 0, mp_ncpus, i, mp_ncpus, in linprocfs_docpuinfo()
|
| /freebsd-12-stable/sys/cam/scsi/ |
| D | scsi_ses.h | 1471 uint8_t cache_size[2]; member 1502 uintmax_t cache_size; in GEN_SES_STATUS_NV_CACHE_ACCESSORS() local 1506 cache_size = scsi_2btoul(elem->cache_size); in GEN_SES_STATUS_NV_CACHE_ACCESSORS() 1508 return (cache_size << multiplier); in GEN_SES_STATUS_NV_CACHE_ACCESSORS()
|
| /freebsd-12-stable/sys/compat/linuxkpi/common/include/linux/ |
| D | slab.h | 80 unsigned cache_size; member
|
| /freebsd-12-stable/contrib/byacc/ |
| D | reader.c | 32 static int cinc, cache_size; variable 101 if (cinc >= cache_size) in cachec() 103 cache_size += CACHE_SIZE; in cachec() 104 cache = TREALLOC(char, cache, cache_size); in cachec() 1647 cache_size = CACHE_SIZE; in read_declarations() 1648 cache = TMALLOC(char, cache_size); in read_declarations() 2328 assert(cache_size >= CACHE_SIZE); in insert_empty_rule()
|
| /freebsd-12-stable/sys/dev/dpt/ |
| D | dpt.h | 1111 u_int32_t cache_size; member 1198 cache_size :30; member
|
| D | dpt_scsi.c | 495 dpt->cache_size = 0; in dpt_detect_cache() 593 dpt->cache_size = param[5] in dpt_detect_cache() 1371 && dpt->cache_size != 0) { in dpt_init()
|
| /freebsd-12-stable/contrib/subversion/subversion/svnserve/ |
| D | svnserve.c | 1280 settings.cache_size = params.memory_cache_size; in sub_main()
|
| /freebsd-12-stable/contrib/subversion/subversion/svnadmin/ |
| D | svnadmin.c | 691 = svn_cache_config_get()->cache_size > BLOCK_READ_CACHE_THRESHOLD; in open_repos() 3078 opt_state.memory_cache_size = svn_cache_config_get()->cache_size; in sub_main() 3419 settings.cache_size = opt_state.memory_cache_size; in sub_main()
|
| /freebsd-12-stable/sys/dev/mly/ |
| D | mlyreg.h | 586 u_int16_t cache_size; member
|
| D | mly.c | 2526 mi->cache_size); in mly_describe_controller()
|
| /freebsd-12-stable/contrib/subversion/subversion/svnlook/ |
| D | svnlook.c | 2499 opt_state.memory_cache_size = svn_cache_config_get()->cache_size; in sub_main() 2827 settings.cache_size = opt_state.memory_cache_size; in sub_main()
|
| /freebsd-12-stable/sys/geom/raid/ |
| D | md_intel.c | 185 uint32_t cache_size; member 481 printf("cache_size %u\n", meta->cache_size); in g_raid_md_intel_print()
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_ra_local/ |
| D | ra_plugin.c | 163 settings.cache_size = 1024 * 1024 * memory_cache_size; in cache_init()
|