Lines Matching defs:align
93 * align the address to a page boundary, and adjust the size accordingly
308 * Align file position and save offset into page. Adjust size
848 * - caller must page-align the file offset
859 vaddr_t align = 0;
895 align = (flags & MAP_ALIGNMENT_MASK) >> MAP_ALIGNMENT_SHIFT;
896 if (align) {
897 if (align >= sizeof(vaddr_t) * NBBY)
899 align = 1UL << align;
900 if (align < PAGE_SIZE)
902 if (align >= vm_map_max(map))
905 if ((*addr & (align-1)) != 0)
907 align = 0;
945 error = uvm_map(map, addr, size, uobj, foff, align, uvmflag);