Lines Matching refs:offset
89 static inline int __pcilg(u64 *data, u64 req, u64 offset, u8 *status) in __pcilg() argument
92 register u64 __offset asm("3") = offset; in __pcilg()
112 int zpci_load(u64 *data, u64 req, u64 offset) in zpci_load() argument
118 cc = __pcilg(data, req, offset, &status); in zpci_load()
125 __func__, cc, status, req, offset); in zpci_load()
131 static inline int __pcistg(u64 data, u64 req, u64 offset, u8 *status) in __pcistg() argument
134 register u64 __offset asm("3") = offset; in __pcistg()
150 int zpci_store(u64 data, u64 req, u64 offset) in zpci_store() argument
156 cc = __pcistg(data, req, offset, &status); in zpci_store()
163 __func__, cc, status, req, offset); in zpci_store()
169 static inline int __pcistb(const u64 *data, u64 req, u64 offset, u8 *status) in __pcistb() argument
180 : [offset] "d" (offset), [data] "Q" (*data) in __pcistb()
186 int zpci_store_block(const u64 *data, u64 req, u64 offset) in zpci_store_block() argument
192 cc = __pcistb(data, req, offset, &status); in zpci_store_block()
199 __func__, cc, status, req, offset); in zpci_store_block()