Searched refs:candidate_spaces (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/kernel/vm/
H A Dvm_address_region.cpp937 size_t candidate_spaces = 0; local
938 ForEachGap([align, align_pow2, size, &candidate_spaces](vaddr_t gap_base, size_t gap_len) -> bool {
941 candidate_spaces += AllocationSpotsInRange(gap_len, size, align_pow2);
947 if (candidate_spaces == 0) {
952 size_t selected_index = aspace_->AslrPrng().RandInt(candidate_spaces);
953 DEBUG_ASSERT(selected_index < candidate_spaces);

Completed in 32 milliseconds