Lines Matching +defs:val +defs:condition
90 #define BUILD_BUG_ON(condition) static_assert(!(condition)) argument
92 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2 * !!(condition)])) argument
94 #define BUILD_BUG_ON(condition) assert(!(condition)) argument
173 #define DBG_BUGON(condition) ((void)(condition)) argument
175 #define DBG_BUGON(condition) BUG_ON(condition) argument
189 #define __put_unaligned_t(type, val, ptr) do { \ argument
195 #define put_unaligned(val, ptr) __put_unaligned_t(typeof(*(ptr)), (val), (ptr)) argument
202 static inline void put_unaligned_le32(u32 val, void *p) in put_unaligned_le32()
335 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtim.tv_nsec = (val) argument
341 #define ST_MTIM_NSEC_SET(stbuf, val) (stbuf)->st_mtimensec = (val) argument
346 #define ST_MTIM_NSEC_SET(stbuf, val) do { } while (0) argument