Lines Matching defs:y
62 #define __round_mask(x, y) ((__typeof__(x))((y)-1))
63 #define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
64 #define round_down(x, y) ((x) & ~__round_mask(x, y))
78 #define roundup(x, y) ( \
80 const typeof(y) __y = y; \
84 #define rounddown(x, y) ( \
87 __x - (__x % (y)); \
721 #define min(x, y) ({ \
723 typeof(y) _min2 = (y); \
727 #define max(x, y) ({ \
729 typeof(y) _max2 = (y); \
733 #define min3(x, y, z) min((typeof(x))min(x, y), z)
734 #define max3(x, y, z) max((typeof(x))max(x, y), z)
739 * @y: value2
741 #define min_not_zero(x, y) ({ \
743 typeof(y) __y = (y); \
763 #define min_t(type, x, y) ({ \
765 type __min2 = (y); \
768 #define max_t(type, x, y) ({ \
770 type __max2 = (y); \