OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:qemu_cache_conf
(Results
1 - 2
of
2
) sorted by null
/external/qemu/
cache-utils.h
5
struct
qemu_cache_conf
{
struct
10
extern struct
qemu_cache_conf
qemu_cache_conf
;
18
unsigned long dsize =
qemu_cache_conf
.dcache_bsize;
19
unsigned long isize =
qemu_cache_conf
.icache_bsize;
cache-utils.c
4
struct
qemu_cache_conf
qemu_cache_conf
= {
variable in typeref:struct:qemu_cache_conf
14
qemu_cache_conf
.icache_bsize = _system_configuration.icache_line;
15
qemu_cache_conf
.dcache_bsize = _system_configuration.dcache_line;
32
case QEMU_AT_DCACHEBSIZE:
qemu_cache_conf
.dcache_bsize = auxv[1]; break;
33
case QEMU_AT_ICACHEBSIZE:
qemu_cache_conf
.icache_bsize = auxv[1]; break;
54
qemu_cache_conf
.dcache_bsize = cacheline;
55
qemu_cache_conf
.icache_bsize = cacheline;
79
qemu_cache_conf
.dcache_bsize = cacheline;
80
qemu_cache_conf
.icache_bsize = cacheline
[
all
...]
Completed in 25 milliseconds