gehe zum Quellcode dieser Datei
void* exmem_alloc_uncached |
( |
unsigned int |
type, |
|
|
unsigned int |
size, |
|
|
exmem_alloc_info * |
allocinf |
|
) |
| |
void exmem_free_uncached |
( |
unsigned int |
type) | |
|
char* get_exmem_type_name |
( |
unsigned int |
type) | |
|
Definiert in Zeile 317 der Datei memmgmt.c.
319 extern char* exmem_types_table[];
321 if (type<exmem_type_count) {
322 return exmem_types_table[type];
Definiert in Zeile 329 der Datei memmgmt.c.
332 if (type<exmem_type_count && allocinf) {
333 allocinf->
addr = exmem_alloc_table[type].
addr;
334 allocinf->
len = exmem_alloc_table[type].
len;
unsigned int exmem_type_count |