OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:l2_cache
(Results
1 - 3
of
3
) sorted by null
/external/qemu/block/
qcow2.h
95
uint64_t *
l2_cache
;
member in struct:BDRVQcowState
qcow.c
67
uint64_t *
l2_cache
;
member in struct:BDRVQcowState
142
s->
l2_cache
= qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
143
if (!s->
l2_cache
)
166
qemu_free(s->
l2_cache
);
290
l2_table = s->
l2_cache
+ (i << s->l2_bits);
303
l2_table = s->
l2_cache
+ (min_index << s->l2_bits);
737
qemu_free(s->
l2_cache
);
846
memset(s->
l2_cache
, 0, s->l2_size * L2_CACHE_SIZE * sizeof(uint64_t));
vmdk.c
73
uint32_t *
l2_cache
;
member in struct:BDRVVmdkState
427
s->
l2_cache
= qemu_malloc(s->l2_size * L2_CACHE_SIZE * sizeof(uint32_t));
432
qemu_free(s->
l2_cache
);
514
l2_table = s->
l2_cache
+ (i * s->l2_size);
527
l2_table = s->
l2_cache
+ (min_index * s->l2_size);
823
qemu_free(s->
l2_cache
);
Completed in 772 milliseconds