HomeSort by relevance Sort by last modified time
    Searched refs:l2_cache (Results 1 - 5 of 5) sorted by null

  /external/qemu/block/
qcow.c 67 uint64_t *l2_cache; member in struct:BDRVQcowState
145 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
146 if (!s->l2_cache)
169 qemu_free(s->l2_cache);
293 l2_table = s->l2_cache + (i << s->l2_bits);
306 l2_table = s->l2_cache + (min_index << s->l2_bits);
739 qemu_free(s->l2_cache);
830 memset(s->l2_cache, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
qcow2-cluster.c 85 memset(s->l2_cache, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
111 * seek l2_offset in the l2_cache table
132 return s->l2_cache + (i << s->l2_bits);
163 l2_table = s->l2_cache + (min_index << s->l2_bits);
231 l2_table = s->l2_cache + (min_index << s->l2_bits);
qcow2.h 91 uint64_t *l2_cache; member in struct:BDRVQcowState
vmdk.c 73 uint32_t *l2_cache; member in struct:BDRVVmdkState
445 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
450 qemu_free(s->l2_cache);
534 l2_table = s->l2_cache + (i * s->l2_size);
547 l2_table = s->l2_cache + (min_index * s->l2_size);
817 qemu_free(s->l2_cache);
qcow2.c 223 s->l2_cache = qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
262 qemu_free(s->l2_cache);
624 qemu_free(s->l2_cache);

Completed in 35 milliseconds