Home
last modified time | relevance | path

Searched defs:condition (Results 1 – 8 of 8) sorted by relevance

/rk3399_rockchip-uboot/include/linux/
H A Dbug.h14 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0) argument
16 #define WARN_ON(condition) ({ \ argument
23 #define WARN(condition, format...) ({ \ argument
30 #define WARN_ON_ONCE(condition) ({ \ argument
41 #define WARN_ONCE(condition, format...) ({ \ argument
H A Dbuild_bug.h13 #define BUILD_BUG_ON(condition) (0) argument
67 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)])) argument
69 #define BUILD_BUG_ON(condition) \ argument
H A Dcompiler.h471 # define __compiletime_error_fallback(condition) \ argument
476 # define __compiletime_error_fallback(condition) do { } while (0) argument
480 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument
489 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument
492 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument
504 #define compiletime_assert(condition, msg) \ argument
/rk3399_rockchip-uboot/drivers/keylad/
H A Drk_keylad.c50 #define KEYLAD_POLL_TIMEOUT(condition, timeout, ret) do { \ argument
/rk3399_rockchip-uboot/drivers/i2c/
H A Dmv_i2c.c28 u8 condition; member
/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Drkce_core.c51 #define POLL_TIMEOUT(condition, timeout_ms) ({ \ argument
H A Dcrypto_v2.c84 #define RK_POLL_TIMEOUT(condition, timeout) \ argument
/rk3399_rockchip-uboot/drivers/net/
H A Dtsi108_eth.c532 static void phy_wait (unsigned int base, unsigned int condition) in phy_wait()