/xen-4.10.0-shim-comet/xen/arch/x86/efi/ |
A D | mkreloc.c | 165 unsigned long offs; in map_section() local 169 offs = sec->file_offset & (page_size - 1); in map_section() 171 ptr = mmap(0, offs + sec->file_size, PROT_READ, MAP_PRIVATE, in, in map_section() 172 sec->file_offset - offs); in map_section() 179 return ptr + offs; in map_section() 184 unsigned long offs = sec->file_offset & (page_size - 1); in unmap_section() local 186 munmap((char *)ptr - offs, offs + sec->file_size); in unmap_section()
|
/xen-4.10.0-shim-comet/xen/include/asm-arm/ |
A D | lpae.h | 187 #define TABLE_OFFSET(offs, gran) (offs & lpae_entry_mask(gran)) argument 259 #define TABLE_OFFSET(offs) ((unsigned int)(offs) & LPAE_ENTRY_MASK) argument
|
/xen-4.10.0-shim-comet/xen/arch/arm/ |
A D | kernel.c | 160 unsigned long offs; in kernel_zimage_load() local 168 for ( offs = 0; offs < len; ) in kernel_zimage_load() 174 s = offs & ~PAGE_MASK; in kernel_zimage_load() 177 par = gvirt_to_maddr(load_addr + offs, &ma, GV2M_WRITE); in kernel_zimage_load() 186 copy_from_paddr(dst + s, paddr + offs, l); in kernel_zimage_load() 189 offs += l; in kernel_zimage_load()
|
A D | domain_build.c | 1969 unsigned long offs; in initrd_load() local 2003 for ( offs = 0; offs < len; ) in initrd_load() 2009 s = offs & ~PAGE_MASK; in initrd_load() 2012 par = gvirt_to_maddr(load_addr + offs, &ma, GV2M_WRITE); in initrd_load() 2021 copy_from_paddr(dst + s, paddr + offs, l); in initrd_load() 2024 offs += l; in initrd_load()
|
A D | mm.c | 948 unsigned int offs = pa & (PAGE_SIZE - 1); in ioremap_attr() local 949 unsigned int nr = PFN_UP(offs + len); in ioremap_attr() 955 return ptr + offs; in ioremap_attr()
|
/xen-4.10.0-shim-comet/xen/drivers/acpi/ |
A D | osl.c | 92 unsigned int offs = phys & (PAGE_SIZE - 1); in acpi_os_map_memory() local 97 return __vmap(&mfn, PFN_UP(offs + size), 1, 1, in acpi_os_map_memory() 98 ACPI_MAP_MEM_ATTR, VMAP_DEFAULT) + offs; in acpi_os_map_memory()
|
/xen-4.10.0-shim-comet/xen/common/ |
A D | unlzma.c | 294 uint32_t offs) in peek_old_byte() argument 298 while (offs > wr->header->dict_size) in peek_old_byte() 299 offs -= wr->header->dict_size; in peek_old_byte() 300 pos = wr->buffer_pos - offs; in peek_old_byte() 303 uint32_t pos = wr->buffer_pos - offs; in peek_old_byte() 325 static inline int INIT copy_byte(struct writer *wr, uint32_t offs) in copy_byte() argument 327 return write_byte(wr, peek_old_byte(wr, offs)); in copy_byte()
|
/xen-4.10.0-shim-comet/xen/include/asm-x86/ |
A D | asm_defns.h | 22 #define SETUP_EXCEPTION_FRAME_POINTER(offs) \ argument 23 leaq offs(%rsp),%rbp; \ 26 #define SETUP_EXCEPTION_FRAME_POINTER(offs) argument
|
A D | xstate.h | 84 uint32_t offs; member
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | mm.c | 2943 unsigned int vcpu_id, vcpu_bias, offs; in vcpumask_to_pcpumask() local 2949 for ( vmask = 0, offs = 0; ; ++offs ) in vcpumask_to_pcpumask() 2951 vcpu_bias = offs * (is_native ? BITS_PER_LONG : 32); in vcpumask_to_pcpumask() 2956 copy_from_guest_offset(&vmask, bmap, offs, 1) : in vcpumask_to_pcpumask() 2958 offs, 1)) ) in vcpumask_to_pcpumask() 5238 unsigned int offs = pa & (PAGE_SIZE - 1); in ioremap() local 5239 unsigned int nr = PFN_UP(offs + len); in ioremap() 5241 va = __vmap(&mfn, nr, 1, 1, PAGE_HYPERVISOR_UCMINUS, VMAP_DEFAULT) + offs; in ioremap()
|
/xen-4.10.0-shim-comet/xen/arch/x86/hvm/ |
A D | emulate.c | 1959 fpu_ctxt->fip.offs = aux->ip; in hvmemul_put_fpu() 1963 fpu_ctxt->fdp.offs = aux->dp; in hvmemul_put_fpu()
|
/xen-4.10.0-shim-comet/xen/arch/x86/x86_emulate/ |
A D | x86_emulate.c | 1976 static bool is_aligned(enum x86_segment seg, unsigned long offs, in is_aligned() argument 1997 return !((reg.base + offs) & (size - 1)); in is_aligned()
|