Home
last modified time | relevance | path

Searched refs:system_allocator (Results 1 – 11 of 11) sorted by relevance

/external/pigweed/pw_malloc/
Ddual_first_fit_block_allocator.cc29 static DualFirstFitBlockAllocator system_allocator; in GetDualFirstFitBlockAllocator() local
30 return system_allocator; in GetDualFirstFitBlockAllocator()
36 auto& system_allocator = GetDualFirstFitBlockAllocator(); in GetSystemAllocator() local
37 return &system_allocator; in GetSystemAllocator()
41 auto& system_allocator = GetDualFirstFitBlockAllocator(); in InitSystemAllocator() local
42 system_allocator.set_threshold(PW_MALLOC_DUAL_FIRST_FIT_THRESHOLD); in InitSystemAllocator()
43 system_allocator.Init(heap); in InitSystemAllocator()
Dbest_fit_block_allocator.cc36 auto& system_allocator = GetBestFitBlockAllocator(); in GetSystemAllocator() local
37 return &system_allocator; in GetSystemAllocator()
41 auto& system_allocator = GetBestFitBlockAllocator(); in InitSystemAllocator() local
42 system_allocator.Init(heap); in InitSystemAllocator()
Dlast_fit_block_allocator.cc36 auto& system_allocator = GetLastFitBlockAllocator(); in GetSystemAllocator() local
37 return &system_allocator; in GetSystemAllocator()
41 auto& system_allocator = GetLastFitBlockAllocator(); in InitSystemAllocator() local
42 system_allocator.Init(heap); in InitSystemAllocator()
Dfirst_fit_block_allocator.cc36 auto& system_allocator = GetFirstFitBlockAllocator(); in GetSystemAllocator() local
37 return &system_allocator; in GetSystemAllocator()
41 auto& system_allocator = GetFirstFitBlockAllocator(); in InitSystemAllocator() local
42 system_allocator.Init(heap); in InitSystemAllocator()
Dworst_fit_block_allocator.cc36 auto& system_allocator = GetWorstFitBlockAllocator(); in GetSystemAllocator() local
37 return &system_allocator; in GetSystemAllocator()
41 auto& system_allocator = GetWorstFitBlockAllocator(); in InitSystemAllocator() local
42 system_allocator.Init(heap); in InitSystemAllocator()
Dbucket_block_allocator.cc38 auto& system_allocator = GetBucketBlockAllocator(); in GetSystemAllocator() local
39 return &system_allocator; in GetSystemAllocator()
43 auto& system_allocator = GetBucketBlockAllocator(); in InitSystemAllocator() local
44 system_allocator.Init(heap); in InitSystemAllocator()
/external/crosvm/resources/src/
Dlib.rs13 pub use crate::system_allocator::AllocOptions;
14 pub use crate::system_allocator::MmioType;
15 pub use crate::system_allocator::SystemAllocator;
16 pub use crate::system_allocator::SystemAllocatorConfig;
20 mod system_allocator; module
/external/crosvm/riscv64/src/
Dlib.rs182 system_allocator: &mut SystemAllocator, in build_vm()
244 system_allocator, in build_vm()
268 system_allocator, in build_vm()
348 .finalize_devices(system_allocator, &io_bus, &mmio_bus) in build_vm()
357 let pci_ranges: Vec<fdt::PciRange> = system_allocator in build_vm()
/external/crosvm/aarch64/src/
Dlib.rs428 system_allocator: &mut SystemAllocator, in build_vm()
598 system_allocator, in build_vm()
622 system_allocator, in build_vm()
721 let pci_ranges: Vec<fdt::PciRange> = system_allocator in build_vm()
745 system_allocator, in build_vm()
/external/crosvm/x86_64/src/
Dlib.rs709 system_allocator: &mut SystemAllocator, in build_vm()
753 system_allocator in build_vm()
762 if !system_allocator.reserve_irq(sci_irq) { in build_vm()
789 system_allocator, in build_vm()
835 system_allocator, in build_vm()
923 system_allocator, in build_vm()
949 .finalize_devices(system_allocator, &io_bus, &mmio_bus) in build_vm()
/external/crosvm/arch/src/
Dlib.rs475 system_allocator: &mut SystemAllocator, in build_vm()