Searched refs:rettype (Results 1 – 3 of 3) sorted by relevance
/math/ |
A D | test-tgmath-ret.c | 41 #define CHECK_RET_CONST_TYPE(func, rettype, arg, name, ...) \ argument 42 if (sizeof (func (arg, ## __VA_ARGS__)) != sizeof (rettype)) \ 45 #define CHECK_RET_CONST_FLOAT(func, rettype, ...) \ argument 46 CHECK_RET_CONST_TYPE (func, rettype, fx, float, ## __VA_ARGS__) 47 #define CHECK_RET_CONST_DOUBLE(func, rettype, ...) \ argument 48 CHECK_RET_CONST_TYPE (func, rettype, dx, double, ## __VA_ARGS__) 49 #define CHECK_RET_CONST_LDOUBLE(func, rettype, ...) \ argument 52 #define CHECK_RET_CONST(func, rettype, ...) \ argument 56 CHECK_RET_CONST_FLOAT (func, rettype, ## __VA_ARGS__) \ 57 CHECK_RET_CONST_DOUBLE (func, rettype, ## __VA_ARGS__) \ [all …]
|
A D | test-tgmath2.c | 97 #define TEST_TYPE_ONLY(expr, rettype) \ argument 101 __typeof__ (rettype) ttype = 0, *ptype; \ 102 if (sizeof (expr) != sizeof (rettype)) \ 104 if (__alignof__ (expr) != __alignof__ (rettype)) \ 111 #define TEST2(expr, type, rettype, fn) \ argument 115 TEST_TYPE_ONLY (expr, rettype); \
|
A D | test-tgmath-int.c | 33 #define CHECK_RET_CONST_TYPE(func, rettype, name) \ argument 34 if (sizeof (func) != sizeof (rettype)) \
|
Completed in 6 milliseconds