Home
last modified time | relevance | path

Searched refs:condition (Results 1 – 13 of 13) sorted by relevance

/u-boot/include/linux/
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); \
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)
A Dcompiler.h323 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument
326 if (!(condition)) \
330 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument
333 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument
334 __compiletime_assert(condition, msg, prefix, suffix)
345 #define compiletime_assert(condition, msg) \ argument
346 _compiletime_assert(condition, msg, __compiletime_assert_, __COUNTER__)
A Dcompat.h90 #define __wait_event_timeout(condition, timeout, ret) \ argument
96 if (condition) { \
122 #define wait_event_timeout(wq_head, condition, timeout) \ argument
125 if (condition) \
128 __ret = __wait_event_timeout(condition, timeout, __ret);\
/u-boot/drivers/i2c/
A Dmv_i2c.c29 u8 condition; member
256 msg.condition = I2C_COND_START; in __i2c_read()
271 msg.condition = I2C_COND_NORMAL; in __i2c_read()
281 msg.condition = I2C_COND_START; in __i2c_read()
292 msg.condition = I2C_COND_STOP; in __i2c_read()
295 msg.condition = I2C_COND_NORMAL; in __i2c_read()
327 msg.condition = I2C_COND_START; in __i2c_write()
342 msg.condition = I2C_COND_NORMAL; in __i2c_write()
356 msg.condition = I2C_COND_STOP; in __i2c_write()
454 msg.condition = I2C_COND_START; in __i2c_probe_chip()
[all …]
/u-boot/arch/x86/include/asm/arch-apollolake/acpi/
A Dpcie_port.asl56 /* Enter this condition if device
83 } /* End PDS condition check */
90 /* enter this condition if device
108 } /* End PDS condition check */
/u-boot/arch/x86/cpu/slimbootloader/
A Dsdram.c37 #define for_each_if(condition) if (!(condition)) {} else argument
/u-boot/doc/
A DI2C_Edge_Conditions7 The edge condition is as follows:
33 This reset edge condition could possibly be present in every I2C
A DREADME.POST424 values into the condition register (mtcrf), moving its value to
428 value to the condition register (mcrxr), moving it to a
431 tested by loading a fixed value into the condition register
433 4-bit condition fields, moving the value of the conditional
442 different combinations of operands, read the condition register
446 the operands, the condition field to save the result in and the
456 operands, expected results and expected states of the condition
490 and the condition register values will be checked. The list of
/u-boot/doc/imx/common/
A Dimx5.txt13 condition in an analog flip-flop when used at high frequencies.
/u-boot/scripts/
A Dcheckpatch.pl1519 my $condition = substr($blk, $soff, $coff - $soff + 1);
1526 return ($statement, $condition,
1575 my ($statement, $condition, $level);
1580 ($statement, $condition, $linenr, $remain, $off, $level) =
1583 push(@chunks, [ $condition, $statement ]);
1584 if (!($remain > 0 && $condition =~ /^\s*(?:\n[+-])?\s*(?:if|else|do)\b/s)) {
1591 ($statement, $condition, $linenr, $remain, $off, $level) =
1594 last if (!($remain > 0 && $condition =~ /^(?:\s*\n[+-])*\s*(?:else|do)\b/s));
1596 push(@chunks, [ $condition, $statement ]);
/u-boot/drivers/misc/
A DKconfig503 typically to reboot the board in error condition.
/u-boot/common/
A Ddlmalloc.src1073 /* repeat in case of race condition */

Completed in 67 milliseconds