Searched refs:byteOffset (Results 1 – 6 of 6) sorted by relevance
| /xnu-10063.141.1/libkern/libkern/ |
| H A D | OSByteOrder.h | 104 uintptr_t byteOffset in _OSReadInt16() argument 107 return *(volatile uint16_t *)((uintptr_t)base + byteOffset); in _OSReadInt16() 114 uintptr_t byteOffset in _OSReadInt32() argument 117 return *(volatile uint32_t *)((uintptr_t)base + byteOffset); in _OSReadInt32() 124 uintptr_t byteOffset in _OSReadInt64() argument 127 return *(volatile uint64_t *)((uintptr_t)base + byteOffset); in _OSReadInt64() 136 uintptr_t byteOffset, in _OSWriteInt16() argument 140 *(volatile uint16_t *)((uintptr_t)base + byteOffset) = data; in _OSWriteInt16() 147 uintptr_t byteOffset, in _OSWriteInt32() argument 151 *(volatile uint32_t *)((uintptr_t)base + byteOffset) = data; in _OSWriteInt32() [all …]
|
| /xnu-10063.141.1/libkern/libkern/i386/ |
| H A D | OSByteOrder.h | 42 uintptr_t byteOffset in OSReadSwapInt16() argument 47 result = *(volatile uint16_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt16() 55 uintptr_t byteOffset in OSReadSwapInt32() argument 60 result = *(volatile uint32_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt32() 68 uintptr_t byteOffset in OSReadSwapInt64() argument 73 result = *(volatile uint64_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt64() 83 uintptr_t byteOffset, in OSWriteSwapInt16() argument 87 *(volatile uint16_t *)((uintptr_t)base + byteOffset) = _OSSwapInt16(data); in OSWriteSwapInt16() 94 uintptr_t byteOffset, in OSWriteSwapInt32() argument 98 *(volatile uint32_t *)((uintptr_t)base + byteOffset) = _OSSwapInt32(data); in OSWriteSwapInt32() [all …]
|
| /xnu-10063.141.1/libkern/libkern/machine/ |
| H A D | OSByteOrder.h | 79 uintptr_t byteOffset in OSReadSwapInt16() argument 82 uint16_t data = *(volatile uint16_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt16() 90 uintptr_t byteOffset in OSReadSwapInt32() argument 93 uint32_t data = *(volatile uint32_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt32() 101 uintptr_t byteOffset in OSReadSwapInt64() argument 104 uint64_t data = *(volatile uint64_t *)((uintptr_t)base + byteOffset); in OSReadSwapInt64() 114 uintptr_t byteOffset, in OSWriteSwapInt16() argument 118 *(volatile uint16_t *)((uintptr_t)base + byteOffset) = _OSSwapInt16(data); in OSWriteSwapInt16() 125 uintptr_t byteOffset, in OSWriteSwapInt32() argument 129 *(volatile uint32_t *)((uintptr_t)base + byteOffset) = _OSSwapInt32(data); in OSWriteSwapInt32() [all …]
|
| /xnu-10063.141.1/iokit/Kernel/ |
| H A D | IODMAEventSource.cpp | 104 …and(IODMACommand *dmaCommand, IODirection direction, IOByteCount byteCount, IOByteCount byteOffset) in startDMACommand() argument 120 result = dmaController->startDMACommand(dmaIndex, dmaCommand, direction, byteCount, byteOffset); in startDMACommand()
|
| /xnu-10063.141.1/iokit/IOKit/ |
| H A D | IODMAController.h | 53 IOByteCount byteCount = 0, IOByteCount byteOffset = 0) = 0;
|
| H A D | IODMAEventSource.h | 61 …Command *dmaCommand, IODirection direction, IOByteCount byteCount = 0, IOByteCount byteOffset = 0);
|