Searched refs:assoc (Results 1 – 4 of 4) sorted by relevance
/qemu/contrib/plugins/ |
H A D | cache.c | 75 int assoc; member 145 cache->sets[i].lru_priorities = g_new0(uint64_t, cache->assoc); in lru_priorities_init() 164 for (i = 1; i < cache->assoc; i++) { in lru_get_lru_block() 233 static const char *cache_config_error(int blksize, int assoc, int cachesize) in cache_config_error() argument 237 } else if (cachesize % (blksize * assoc) != 0) { in cache_config_error() 244 static bool bad_cache_params(int blksize, int assoc, int cachesize) in bad_cache_params() argument 246 return (cachesize % blksize) != 0 || (cachesize % (blksize * assoc) != 0); in bad_cache_params() 249 static Cache *cache_init(int blksize, int assoc, int cachesize) in cache_init() argument 259 g_assert(!bad_cache_params(blksize, assoc, cachesize)); in cache_init() 262 cache->assoc = assoc; in cache_init() [all …]
|
/qemu/target/arm/ |
H A D | cpu-features.h | 1057 static inline uint64_t make_ccsidr(CCSIDRFormat format, unsigned assoc, in make_ccsidr() argument 1065 assert(assoc != 0); in make_ccsidr() 1070 sets = cachesize / (assoc * linesize); in make_ccsidr() 1071 assert(cachesize % (assoc * linesize) == 0); in make_ccsidr() 1083 ccsidr = deposit32(ccsidr, 3, 10, assoc - 1); in make_ccsidr() 1094 ccsidr = deposit64(ccsidr, 3, 21, assoc - 1); in make_ccsidr()
|
/qemu/tests/data/qobject/ |
H A D | qdict.txt | 1071 assoc.c: 36 1072 assoc.h: 408
|
/qemu/target/ppc/ |
H A D | cpu_init.c | 830 static inline uint32_t register_tlbncfg(uint32_t assoc, uint32_t minsize, in register_tlbncfg() argument 834 return (assoc << TLBnCFG_ASSOC_SHIFT) | in register_tlbncfg()
|