Searched refs:system_allocator (Results 1 – 11 of 11) sorted by relevance
| /external/pigweed/pw_malloc/ |
| D | dual_first_fit_block_allocator.cc | 29 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()
|
| D | best_fit_block_allocator.cc | 36 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()
|
| D | last_fit_block_allocator.cc | 36 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()
|
| D | first_fit_block_allocator.cc | 36 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()
|
| D | worst_fit_block_allocator.cc | 36 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()
|
| D | bucket_block_allocator.cc | 38 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/ |
| D | lib.rs | 13 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/ |
| D | lib.rs | 182 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/ |
| D | lib.rs | 428 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/ |
| D | lib.rs | 709 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/ |
| D | lib.rs | 475 system_allocator: &mut SystemAllocator, in build_vm()
|