Searched refs:condition (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/tools/perf/util/include/asm/
H A Dbug.h6 #define WARN(condition, format...) ({ \
7 int __ret_warn_on = !!(condition); \
13 #define WARN_ONCE(condition, format...) ({ \
15 int __ret_warn_once = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/tools/perf/util/include/asm/
H A Dbug.h6 #define WARN(condition, format...) ({ \
7 int __ret_warn_on = !!(condition); \
13 #define WARN_ONCE(condition, format...) ({ \
15 int __ret_warn_once = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/libexif/test/
H A Dtest-integers.c39 # define CHECK(condition) \
40 if (!(condition)) { \
42 __FILE__, __LINE__, #condition); \
46 # define CHECK(condition) \
47 if (!(condition)) { \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/libexif/test/
H A Dtest-integers.c39 # define CHECK(condition) \
40 if (!(condition)) { \
42 __FILE__, __LINE__, #condition); \
46 # define CHECK(condition) \
47 if (!(condition)) { \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/libexif/test/
H A Dtest-integers.c39 # define CHECK(condition) \
40 if (!(condition)) { \
42 __FILE__, __LINE__, #condition); \
46 # define CHECK(condition) \
47 if (!(condition)) { \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/
H A Dbug.h53 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while(0)
84 #define WARN_ON(condition) ({ \
85 int __ret_warn_on = !!(condition); \
93 #define WARN(condition, format...) ({ \
94 int __ret_warn_on = !!(condition); \
101 #define WARN_TAINT(condition, taint, format...) ({ \
102 int __ret_warn_on = !!(condition); \
114 #define BUG_ON(condition) do { if (condition) ; } whil
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/asm-generic/
H A Dbug.h53 #define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while(0)
84 #define WARN_ON(condition) ({ \
85 int __ret_warn_on = !!(condition); \
93 #define WARN(condition, format...) ({ \
94 int __ret_warn_on = !!(condition); \
101 #define WARN_TAINT(condition, taint, format...) ({ \
102 int __ret_warn_on = !!(condition); \
114 #define BUG_ON(condition) do { if (condition) ; } whil
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/powerpc/include/asm/
H A Ddelay.h37 * spin_event_timeout - spin until a condition gets true or a timeout elapses
38 * @condition: a C expression to evalate
41 * @condition
43 * The process spins until the condition evaluates to true (non-zero) or the
45 * @condition when the loop terminates. This allows you to determine the cause
56 #define spin_event_timeout(condition, timeout, delay) \
58 typeof(condition) __ret; \
61 while (!(__ret = (condition)) && (tb_ticks_since(__start) <= __loops)) \
67 __ret = (condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Ddelay.h37 * spin_event_timeout - spin until a condition gets true or a timeout elapses
38 * @condition: a C expression to evalate
41 * @condition
43 * The process spins until the condition evaluates to true (non-zero) or the
45 * @condition when the loop terminates. This allows you to determine the cause
56 #define spin_event_timeout(condition, timeout, delay) \
58 typeof(condition) __ret; \
61 while (!(__ret = (condition)) && (tb_ticks_since(__start) <= __loops)) \
67 __ret = (condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/mips/include/asm/
H A Dbug.h25 static inline void __BUG_ON(unsigned long condition) argument
27 if (__builtin_constant_p(condition)) {
28 if (condition)
35 : : "r" (condition), "i" (MM_BRK_BUG));
37 : : "r" (condition), "i" (BRK_BUG));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mips/include/asm/
H A Dbug.h25 static inline void __BUG_ON(unsigned long condition) argument
27 if (__builtin_constant_p(condition)) {
28 if (condition)
35 : : "r" (condition), "i" (MM_BRK_BUG));
37 : : "r" (condition), "i" (BRK_BUG));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dfreezer.h141 #define wait_event_freezable(wq, condition) \
146 (condition) || freezing(current)); \
149 else if (!(condition)) \
156 #define wait_event_freezable_timeout(wq, condition, timeout) \
161 (condition) || freezing(current), \
185 #define wait_event_freezable(wq, condition) \
186 wait_event_interruptible(wq, condition)
188 #define wait_event_freezable_timeout(wq, condition, timeout) \
189 wait_event_interruptible_timeout(wq, condition, timeout)
H A Dwait.h195 #define __wait_event(wq, condition) \
201 if (condition) \
209 * wait_event - sleep until a condition gets true
211 * @condition: a C expression for the event to wait for
214 * @condition evaluates to true. The @condition is checked each time
218 * change the result of the wait condition.
220 #define wait_event(wq, condition) \
222 if (condition) \
224 __wait_event(wq, condition); \
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dfreezer.h141 #define wait_event_freezable(wq, condition) \
146 (condition) || freezing(current)); \
149 else if (!(condition)) \
156 #define wait_event_freezable_timeout(wq, condition, timeout) \
161 (condition) || freezing(current), \
185 #define wait_event_freezable(wq, condition) \
186 wait_event_interruptible(wq, condition)
188 #define wait_event_freezable_timeout(wq, condition, timeout) \
189 wait_event_interruptible_timeout(wq, condition, timeout)
H A Dwait.h195 #define __wait_event(wq, condition) \
201 if (condition) \
209 * wait_event - sleep until a condition gets true
211 * @condition: a C expression for the event to wait for
214 * @condition evaluates to true. The @condition is checked each time
218 * change the result of the wait condition.
220 #define wait_event(wq, condition) \
222 if (condition) \
224 __wait_event(wq, condition); \
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/hspot/include/
H A Dtest.h33 #define TEST(condition, error) \
36 if ((condition)) { \
46 #define TEST_FATAL(condition, error) \
49 if ((condition)) { \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/avr32/include/asm/
H A Dbug.h58 #define WARN_ON(condition) \
60 int __ret_warn_on = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/blackfin/include/asm/
H A Dbug.h58 #define WARN_ON(condition) \
60 int __ret_warn_on = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/avr32/include/asm/
H A Dbug.h58 #define WARN_ON(condition) \
60 int __ret_warn_on = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/blackfin/include/asm/
H A Dbug.h58 #define WARN_ON(condition) \
60 int __ret_warn_on = !!(condition); \
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/net/ax25/
H A Dax25_std_subr.c41 ax25->condition = 0x00;
58 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
63 ax25->condition &= ~AX25_COND_ACK_PENDING;
71 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
76 ax25->condition &= ~AX25_COND_ACK_PENDING;
81 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
86 ax25->condition &= ~AX25_COND_ACK_PENDING;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/net/ax25/
H A Dax25_std_subr.c41 ax25->condition = 0x00;
58 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
63 ax25->condition &= ~AX25_COND_ACK_PENDING;
71 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
76 ax25->condition &= ~AX25_COND_ACK_PENDING;
81 if (ax25->condition & AX25_COND_OWN_RX_BUSY)
86 ax25->condition &= ~AX25_COND_ACK_PENDING;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/arm-none-eabi/armv6-m/bits/
H A Dgthr-default.h170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition
[all...]
H A Dgthr-single.h170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-armeabi-2013.11/arm-none-eabi/include/c++/4.8.1/arm-none-eabi/bits/
H A Dgthr-default.h170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition
[all...]

Completed in 313 milliseconds

1234567891011>>