Lines Matching refs:value
215 static inline void out##bwl(unsigned type value, int port) \
217 out##bwl##_local(value, port); \
226 static inline void out##bwl##_local(unsigned type value, int port) \
229 : : "a"(value), "Nd"(port)); \
234 unsigned type value; \
236 : "=a"(value) : "Nd"(port)); \
237 return value; \
240 static inline void out##bwl##_local_p(unsigned type value, int port) \
242 out##bwl##_local(value, port); \
248 unsigned type value = in##bwl##_local(port); \
250 return value; \
255 static inline void out##bwl##_p(unsigned type value, int port) \
257 out##bwl(value, port); \
263 unsigned type value = in##bwl(port); \
265 return value; \