Lines Matching refs:value
275 static inline void out##bwl(unsigned type value, int port) \
278 : : "a"(value), "Nd"(port)); \
283 unsigned type value; \
285 : "=a"(value) : "Nd"(port)); \
286 return value; \
289 static inline void out##bwl##_p(unsigned type value, int port) \
291 out##bwl(value, port); \
297 unsigned type value = in##bwl(port); \
299 return value; \
305 unsigned type *value = (unsigned type *)addr; \
307 out##bwl(*value, port); \
308 value++; \
321 unsigned type *value = (unsigned type *)addr; \
323 *value = in##bwl(port); \
324 value++; \