Lines Matching refs:x

45 #define DECLARE_WAITQUEUE(x,y) struct wait_queue x = {y,NULL}  argument
46 #define DECLARE_WAIT_QUEUE_HEAD(x) struct wait_queue *x = NULL argument
48 #define DECLARE_MUTEX(x) struct semaphore x = MUTEX argument
49 #define DECLARE_MUTEX_LOCKED(x) struct semaphore x = MUTEX_LOCKED argument
81 # define cpu_to_le16(x) (x) argument
82 # define cpu_to_le32(x) (x) argument
83 # define cpu_to_be16(x) htons((x)) argument
84 # define cpu_to_be32(x) htonl((x)) argument
86 # define cpu_to_be16(x) (x) argument
87 # define cpu_to_be32(x) (x) argument
88 extern inline __u16 cpu_to_le16(__u16 x) { return (x<<8) | (x>>8);} in cpu_to_le16() argument
89 extern inline __u32 cpu_to_le32(__u32 x) { return((x>>24) | in cpu_to_le32() argument
90 ((x>>8)&0xff00) | ((x<<8)&0xff0000) | (x<<24));} in cpu_to_le32()
93 # define le16_to_cpu(x) cpu_to_le16(x) argument
94 # define le32_to_cpu(x) cpu_to_le32(x) argument
95 # define be16_to_cpu(x) cpu_to_be16(x) argument
96 # define be32_to_cpu(x) cpu_to_be32(x) argument
111 # define le16_to_cpup(x) cpu_to_le16p(x) argument
112 # define le32_to_cpup(x) cpu_to_le32p(x) argument
113 # define be16_to_cpup(x) cpu_to_be16p(x) argument
114 # define be32_to_cpup(x) cpu_to_be32p(x) argument
116 # define le16_to_cpus(x) cpu_to_le16s(x) argument
117 # define le32_to_cpus(x) cpu_to_le32s(x) argument
118 # define be16_to_cpus(x) cpu_to_be16s(x) argument
119 # define be32_to_cpus(x) cpu_to_be32s(x) argument
222 # define release_return(x) return argument
225 # define release_return(x) return (x) argument
238 #define init_MUTEX(x) do {*(x) = MUTEX;} while (0) argument
239 #define init_MUTEX_LOCKED(x) do {*(x) = MUTEX_LOCKED;} while (0) argument
269 static inline void *inter_module_get(char *x) {return NULL;} in inter_module_get() argument
270 static inline void *inter_module_get_request(char *x, char *y) {return NULL;} in inter_module_get_request() argument
271 static inline void inter_module_put(const char *x) {} in inter_module_put() argument
272 static inline void inter_module_register(const char *x, struct module *y, const void *z) {} in inter_module_register() argument
273 static inline void inter_module_unregister(const char *x) {} in inter_module_unregister() argument
278 #define DECLARE_WAIT_QUEUE_HEAD(x) struct wait_queue *x = NULL argument
307 #define __constant_cpu_to_le64(x) ___swab64((x)) argument
308 #define __constant_le64_to_cpu(x) ___swab64((x)) argument
309 #define __constant_cpu_to_le32(x) ___swab32((x)) argument
310 #define __constant_le32_to_cpu(x) ___swab32((x)) argument
311 #define __constant_cpu_to_le16(x) ___swab16((x)) argument
312 #define __constant_le16_to_cpu(x) ___swab16((x)) argument
313 #define __constant_cpu_to_be64(x) ((__u64)(x)) argument
314 #define __constant_be64_to_cpu(x) ((__u64)(x)) argument
315 #define __constant_cpu_to_be32(x) ((__u32)(x)) argument
316 #define __constant_be32_to_cpu(x) ((__u32)(x)) argument
317 #define __constant_cpu_to_be16(x) ((__u16)(x)) argument
318 #define __constant_be16_to_cpu(x) ((__u16)(x)) argument
321 #define __constant_cpu_to_le64(x) ((__u64)(x)) argument
322 #define __constant_le64_to_cpu(x) ((__u64)(x)) argument
323 #define __constant_cpu_to_le32(x) ((__u32)(x)) argument
324 #define __constant_le32_to_cpu(x) ((__u32)(x)) argument
325 #define __constant_cpu_to_le16(x) ((__u16)(x)) argument
326 #define __constant_le16_to_cpu(x) ((__u16)(x)) argument
327 #define __constant_cpu_to_be64(x) ___swab64((x)) argument
328 #define __constant_be64_to_cpu(x) ___swab64((x)) argument
329 #define __constant_cpu_to_be32(x) ___swab32((x)) argument
330 #define __constant_be32_to_cpu(x) ___swab32((x)) argument
331 #define __constant_cpu_to_be16(x) ___swab16((x)) argument
332 #define __constant_be16_to_cpu(x) ___swab16((x)) argument
405 #define min(x,y) ({ \ argument
406 const typeof(x) _x = (x); \
411 #define max(x,y) ({ \ argument
412 const typeof(x) _x = (x); \
423 #define min_t(type,x,y) \ argument
424 ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
425 #define max_t(type,x,y) \ argument
426 ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; })
483 #define MODULE_LICENSE(x) /* */ argument
517 #define kdev_t_to_nr(x) (x) argument
529 #define rq_data_dir(x) ((x)->cmd) argument
572 #define PageUptodate(x) Page_Uptodate(x) argument