Home
last modified time | relevance | path

Searched refs:BUILD_BUG_ON_MSG (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/include/linux/
H A Dbuild_bug.h12 #define BUILD_BUG_ON_MSG(cond, msg) (0) macro
46 #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg) macro
70 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
80 #define BUILD_BUG() BUILD_BUG_ON_MSG(1, "BUILD_BUG failed")
H A Dbitfield.h53 BUILD_BUG_ON_MSG(!__builtin_constant_p(_mask), \
55 BUILD_BUG_ON_MSG(!(_mask), _pfx "mask is zero"); \
56 BUILD_BUG_ON_MSG(__builtin_constant_p(_val) ? \
59 BUILD_BUG_ON_MSG((_mask) > (typeof(_reg))~0ull, \