Lines Matching refs:base
32 zx_status_t FindEntryPoint(const uint8_t** base, smbios::EntryPointVersion* version) { in FindEntryPoint() argument
37 *base = p; in FindEntryPoint()
41 *base = p; in FindEntryPoint()
51 *base = p; in FindEntryPoint()
56 *base = p; in FindEntryPoint()
67 paddr_t base = ep->struct_table_phys; in MapStructs2_1() local
68 paddr_t end = base + ep->struct_table_length; in MapStructs2_1()
69 const size_t subpage_offset = base & (PAGE_SIZE - 1); in MapStructs2_1()
70 base -= subpage_offset; in MapStructs2_1()
71 size_t len = ROUNDUP(end - base, PAGE_SIZE); in MapStructs2_1()
75 zx_status_t status = VmObjectPhysical::Create(base, len, &vmo); in MapStructs2_1()
86 *struct_table_virt = m->base() + subpage_offset; in MapStructs2_1()