Lines Matching refs:virtualAddress
1920 int *virtualAddress // where it got mapped to in MapPhysicalMemory() argument
1941 virtualAddress, in MapPhysicalMemory()
1955 int virtualAddress, // what memory to unmap in UnmapPhysicalMemory() argument
1963 & virtualAddress, in UnmapPhysicalMemory()
1981 MapPhysicalMemory(int startAddress,int addressLength, int *virtualAddress ) in MapPhysicalMemory() argument
2037 *virtualAddress = (long)(startvAddress + diff); in MapPhysicalMemory()
2043 UnmapPhysicalMemory( int virtualAddress, int Length ) in UnmapPhysicalMemory() argument
2048 diff = ((unsigned int) virtualAddress) % PAGESIZE; in UnmapPhysicalMemory()
2049 virtualAddress -= diff; in UnmapPhysicalMemory()
2052 DEBUG("%s: calling munmap(0x%x,%d)\n",__FUNCTION__,virtualAddress,Length); in UnmapPhysicalMemory()
2055 if(munmap(&virtualAddress, Length) != 0) in UnmapPhysicalMemory()
2065 DEBUG("%s: munmap(0x%x,%d) success\n",__FUNCTION__,virtualAddress,Length); in UnmapPhysicalMemory()