Searched refs:mapped_addr (Results 1 – 3 of 3) sorted by relevance
205 uptr mapped_addr = in MmapAlignedOrDieOnFatalError() local207 if (!mapped_addr) in MmapAlignedOrDieOnFatalError()212 if (IsAligned(mapped_addr, alignment)) in MmapAlignedOrDieOnFatalError()213 return (void*)mapped_addr; in MmapAlignedOrDieOnFatalError()214 if (VirtualFree((void *)mapped_addr, 0, MEM_RELEASE) == 0) in MmapAlignedOrDieOnFatalError()222 (mapped_addr == 0 || !IsAligned(mapped_addr, alignment)); in MmapAlignedOrDieOnFatalError()225 mapped_addr = in MmapAlignedOrDieOnFatalError()227 if (!mapped_addr) in MmapAlignedOrDieOnFatalError()231 uptr aligned_addr = RoundUpTo(mapped_addr, alignment); in MmapAlignedOrDieOnFatalError()234 if (VirtualFree((void *)mapped_addr, 0, MEM_RELEASE) == 0) in MmapAlignedOrDieOnFatalError()[all …]
397 src8 = (uint8_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_read()401 src16 = (uint16_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_read()405 src32 = (uint32_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_read()409 src64 = (uint64_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_read()471 dest8 = (uint8_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_write()475 dest16 = (uint16_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_write()479 dest32 = (uint32_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_write()483 dest64 = (uint64_t *)(pi->pi_msix.mapped_addr + offset); in msix_table_write()550 pi->pi_msix.mapped_addr = (uint8_t *)(uintptr_t)pbm.pbm_map_base; in init_msix_table()565 if (mprotect(pi->pi_msix.mapped_addr, table_offset, in init_msix_table()[all …]
157 uint8_t *mapped_addr; member