Searched refs:L2_CACHE_SIZE (Results 1 - 5 of 5) sorted by relevance

/external/qemu/block/
H A Dqcow2.h52 #define L2_CACHE_SIZE 16 macro
96 uint64_t l2_cache_offsets[L2_CACHE_SIZE];
97 uint32_t l2_cache_counts[L2_CACHE_SIZE];
H A Dqcow.c54 #define L2_CACHE_SIZE 16 macro
68 uint64_t l2_cache_offsets[L2_CACHE_SIZE];
69 uint32_t l2_cache_counts[L2_CACHE_SIZE];
142 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
282 for(i = 0; i < L2_CACHE_SIZE; i++) {
286 for(j = 0; j < L2_CACHE_SIZE; j++) {
297 for(i = 0; i < L2_CACHE_SIZE; i++) {
846 memset(s->l2_cache, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
847 memset(s->l2_cache_offsets, 0, L2_CACHE_SIZE * sizeof(uint64_t));
848 memset(s->l2_cache_counts, 0, L2_CACHE_SIZE * sizeo
[all...]
H A Dvmdk.c61 #define L2_CACHE_SIZE 16 macro
74 uint32_t l2_cache_offsets[L2_CACHE_SIZE];
75 uint32_t l2_cache_counts[L2_CACHE_SIZE];
427 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
506 for(i = 0; i < L2_CACHE_SIZE; i++) {
510 for(j = 0; j < L2_CACHE_SIZE; j++) {
521 for(i = 0; i < L2_CACHE_SIZE; i++) {
H A Dqcow2-cluster.c97 memset(s->l2_cache, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
98 memset(s->l2_cache_offsets, 0, L2_CACHE_SIZE * sizeof(uint64_t));
99 memset(s->l2_cache_counts, 0, L2_CACHE_SIZE * sizeof(uint32_t));
111 for(i = 0; i < L2_CACHE_SIZE; i++) {
136 for(i = 0; i < L2_CACHE_SIZE; i++) {
140 for(j = 0; j < L2_CACHE_SIZE; j++) {
H A Dqcow2.c207 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));

Completed in 56 milliseconds