Lines Matching refs:offset
60 int offset;
68 static inline void MgxWrite1(MgxPtr pMgx, int offset, uint8_t val)
70 MMIO_OUT8(pMgx->blt, offset ^ 3, val);
73 static inline void MgxWrite2(MgxPtr pMgx, int offset, uint16_t val)
75 MMIO_OUT16(pMgx->blt, offset ^ 2, val);
78 static inline void MgxWrite4(MgxPtr pMgx, int offset, uint32_t val)
80 MMIO_OUT32(pMgx->blt, offset, val);
83 static inline uint8_t MgxRead1(MgxPtr pMgx, int offset)
85 uint8_t val = MMIO_IN8(pMgx->blt, offset ^ 3);
89 static inline uint32_t MgxRead4(MgxPtr pMgx, int offset)
91 uint32_t val = MMIO_IN32(pMgx->blt, offset);