Searched defs:y (Results 1 – 5 of 5) sorted by relevance
/DragonStub/inc/dragonstub/ |
H A D | minmax.h | 21 #define __typecheck(x, y) (!!(sizeof((typeof(x) *)1 == (typeof(y) *)1))) argument 23 #define __no_side_effects(x, y) (__is_constexpr(x) && __is_constexpr(y)) argument 25 #define __safe_cmp(x, y) (__typecheck(x, y) && __no_side_effects(x, y)) argument 27 #define __cmp(x, y, op) ((x)op(y) ? (x) : (y)) argument 29 #define __cmp_once(x, y, unique_x, unique_y, op) \ argument 36 #define __careful_cmp(x, y, op) \ argument 77 #define min(x, y) __careful_cmp(x, y, <) argument 84 #define max(x, y) __careful_cmp(x, y, >) argument 92 #define min3(x, y, z) min((typeof(x))min(x, y), z) argument 100 #define max3(x, y, z) max((typeof(x))max(x, y), z) argument [all …]
|
H A D | compiler_types.h | 86 #define __builtin_warning(x, y...) (1) argument
|
/DragonStub/inc/dragonstub/linux/ |
H A D | math.h | 12 #define __round_mask(x, y) ((__typeof__(x))((y)-1)) argument 22 #define round_up(x, y) ((((x)-1) | __round_mask(x, y)) + 1) argument 32 #define round_down(x, y) ((x) & ~__round_mask(x, y)) argument 60 #define roundup(x, y) \ argument 73 #define rounddown(x, y) \ argument
|
H A D | swab.h | 140 static __always_inline unsigned long __swab(const unsigned long y) in __swab()
|
/DragonStub/lib/ |
H A D | dpath.c | 801 #define CatPrintIPv6_ADD( x , y ) ( ( (UINT16) ( x ) ) << 8 | ( y ) ) argument
|