Lines Matching refs:MemoryAddress
218 PVOID MemoryAddress; in IntInt10AllocateBuffer() local
228 MemoryAddress = (PVOID)0x20000; in IntInt10AllocateBuffer()
231 &MemoryAddress, in IntInt10AllocateBuffer()
243 if (MemoryAddress > (PVOID)(0x100000 - Size)) in IntInt10AllocateBuffer()
246 &MemoryAddress, in IntInt10AllocateBuffer()
255 *Seg = (USHORT)((ULONG_PTR)MemoryAddress >> 4); in IntInt10AllocateBuffer()
256 *Off = (USHORT)((ULONG_PTR)MemoryAddress & 0xF); in IntInt10AllocateBuffer()
258 INFO_(VIDEOPRT, "- Segment: %x\n", (ULONG_PTR)MemoryAddress >> 4); in IntInt10AllocateBuffer()
259 INFO_(VIDEOPRT, "- Offset: %x\n", (ULONG_PTR)MemoryAddress & 0xF); in IntInt10AllocateBuffer()
280 PVOID MemoryAddress = (PVOID)((ULONG_PTR)(Seg << 4) | Off); in IntInt10FreeBuffer() local
291 &MemoryAddress, in IntInt10FreeBuffer()