Lines Matching defs:best
1633 uint64_t best;
1650 best = (uint64_t)-size;
1662 best = next_avail_addr;
1667 * if not is this address the best so far?
1669 if (start > next_avail_addr && start < best &&
1671 best = RNDUP(start, align);
1676 * end of a memory region. Return the best found memory address.
1679 next_avail_addr = best + size;
1686 (void) memset((void *)(uintptr_t)best, 0, size);
1687 return ((void *)(uintptr_t)best);