Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 18 of 18) 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
17 int __ret_warn_on = !!(condition); \
23 #define WARN(condition, format...) ({ \ argument
24 int __ret_warn_on = !!(condition); \
30 #define WARN_ON_ONCE(condition) ({ \ argument
32 int __ret_warn_once = !!(condition); \
41 #define WARN_ONCE(condition, format...) ({ \ argument
43 int __ret_warn_once = !!(condition); \
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
70 BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
H A Dcompiler.h471 # define __compiletime_error_fallback(condition) \ argument
472 do { ((void)sizeof(char[1 - 2 * condition])); } while (0)
476 # define __compiletime_error_fallback(condition) do { } while (0) argument
480 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument
482 bool __cond = !(condition); \
489 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument
492 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument
493 __compiletime_assert(condition, msg, prefix, suffix)
504 #define compiletime_assert(condition, msg) \ argument
505 _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
/rk3399_rockchip-uboot/drivers/i2c/
H A Dmv_i2c.c28 u8 condition; member
143 if (msg->condition == I2C_COND_START) in i2c_transfer()
145 if (msg->condition == I2C_COND_STOP) in i2c_transfer()
176 if (msg->condition == I2C_COND_START) in i2c_transfer()
178 if (msg->condition == I2C_COND_STOP) in i2c_transfer()
255 msg.condition = I2C_COND_START; in __i2c_read()
270 msg.condition = I2C_COND_NORMAL; in __i2c_read()
280 msg.condition = I2C_COND_START; in __i2c_read()
291 msg.condition = I2C_COND_STOP; in __i2c_read()
294 msg.condition = I2C_COND_NORMAL; in __i2c_read()
[all …]
/rk3399_rockchip-uboot/doc/
H A DI2C_Edge_Conditions7 The edge condition is as follows:
33 This reset edge condition could possibly be present in every I2C
H A DREADME.imx513 condition in an analog flip-flop when used at high frequencies.
H A DREADME.POST435 values into the condition register (mtcrf), moving its value to
439 value to the condition register (mcrxr), moving it to a
442 tested by loading a fixed value into the condition register
444 4-bit condition fields, moving the value of the conditional
453 different combinations of operands, read the condition register
457 the operands, the condition field to save the result in and the
467 operands, expected results and expected states of the condition
501 and the condition register values will be checked. The list of
H A DREADME.log31 LOGL_WARNING - Warning about an unexpected condition
/rk3399_rockchip-uboot/drivers/keylad/
H A Drk_keylad.c50 #define KEYLAD_POLL_TIMEOUT(condition, timeout, ret) do { \ argument
52 while (condition) { \
/rk3399_rockchip-uboot/drivers/crypto/rockchip/
H A Drkce_core.c51 #define POLL_TIMEOUT(condition, timeout_ms) ({ \ argument
53 while ((condition) && timeout--) { \
57 rk_err("%s timeout!\n", #condition); \
H A Dcrypto_v2.c84 #define RK_POLL_TIMEOUT(condition, timeout) \ argument
87 while (condition) { \
/rk3399_rockchip-uboot/drivers/net/
H A Dtsi108_eth.c532 static void phy_wait (unsigned int base, unsigned int condition) in phy_wait() argument
537 while (reg_MII_MGMT_INDICATORS(base) & condition) { in phy_wait()
541 condition); in phy_wait()
/rk3399_rockchip-uboot/scripts/
H A Dcheckpatch.pl1393 my $condition = substr($blk, $soff, $coff - $soff + 1);
1400 return ($statement, $condition,
1449 my ($statement, $condition, $level);
1454 ($statement, $condition, $linenr, $remain, $off, $level) =
1457 push(@chunks, [ $condition, $statement ]);
1458 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1465 ($statement, $condition, $linenr, $remain, $off, $level) =
1468 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1470 push(@chunks, [ $condition, $statement ]);
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dzconf.lex.c_shipped140 /* Enter a start condition. This macro really ought to take a parameter,
991 /* Number of entries by which start-condition stack grows. */
1803 * @note This function does not reset the start condition to @c INITIAL .
/rk3399_rockchip-uboot/scripts/dtc/
H A Ddtc-lexer.lex.c_shipped110 /* Enter a start condition. This macro really ought to take a parameter,
805 /* Number of entries by which start-condition stack grows. */
1668 * @note This function does not reset the start condition to @c INITIAL .
H A Ddtc-parser.tab.c_shipped1811 * condition is true if when we set all bits
/rk3399_rockchip-uboot/common/
H A DKconfig287 5 (KERN_NOTICE) normal but significant condition
H A Ddlmalloc.src1073 /* repeat in case of race condition */