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

1234

/freebsd-10-stable/contrib/gcc/
H A Dgthr-single.h172 /* Backend condition mutex functions */
174 /* Allocate a condition. */
176 __gthread_objc_condition_allocate (objc_condition_t UNUSED(condition))
181 /* Deallocate a condition. */
183 __gthread_objc_condition_deallocate (objc_condition_t UNUSED(condition))
188 /* Wait on the condition */
190 __gthread_objc_condition_wait (objc_condition_t UNUSED(condition),
196 /* Wake up all threads waiting on this condition. */
198 __gthread_objc_condition_broadcast (objc_condition_t UNUSED(condition))
203 /* Wake up one thread waiting on this condition
[all...]
H A Dgthr-nks.h221 /* Backend condition mutex functions */
223 /* Allocate a condition. */
225 __gthread_objc_condition_allocate (objc_condition_t condition) argument
227 condition->backend = NXCondAlloc (NULL);
228 if (condition->backend == NULL)
234 /* Deallocate a condition. */
236 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
238 if (NXCondFree ((NXCond_t *)condition->backend) != 0)
240 condition->backend = NULL;
244 /* Wait on the condition */
246 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex) argument
253 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
260 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
H A Dgthr-posix.h505 /* Backend condition mutex functions */
507 /* Allocate a condition. */
509 __gthread_objc_condition_allocate (objc_condition_t condition) argument
513 condition->backend = objc_malloc (sizeof (pthread_cond_t));
515 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL))
517 objc_free (condition->backend);
518 condition->backend = NULL;
526 /* Deallocate a condition. */
528 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
532 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition
543 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex) argument
554 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
564 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
H A Dgthr-posix95.h471 /* Backend condition mutex functions */
473 /* Allocate a condition. */
475 __gthread_objc_condition_allocate (objc_condition_t condition) argument
479 condition->backend = objc_malloc (sizeof (pthread_cond_t));
481 if (__gthrw_(pthread_cond_init) ((pthread_cond_t *) condition->backend, NULL))
483 objc_free (condition->backend);
484 condition->backend = NULL;
492 /* Deallocate a condition. */
494 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
498 if (__gthrw_(pthread_cond_destroy) ((pthread_cond_t *) condition
509 __gthread_objc_condition_wait(objc_condition_t condition, objc_mutex_t mutex) argument
520 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
530 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
H A Dloop-doloop.c53 used elsewhere. If the loop-variable or condition register are
60 condition is unused at all except for the exit test, or if we do not have to
69 /* Return the loop termination condition for PATTERN or zero
79 rtx condition; local
83 (parallel [(set (pc) (if_then_else (condition)
120 /* Check for (set (pc) (if_then_else (condition)
130 /* Extract loop termination condition. */
131 condition = XEXP (SET_SRC (cmp), 0);
134 if ((GET_CODE (condition) != GE
135 && GET_CODE (condition) !
290 doloop_modify(struct loop *loop, struct niter_desc *desc, rtx doloop_seq, rtx condition, rtx count) argument
486 rtx condition; local
[all...]
H A Dgthr-solaris.h349 /* Backend condition mutex functions */
351 /* Allocate a condition. */
353 __gthread_objc_condition_allocate (objc_condition_t condition) argument
356 return __gthrw_(cond_init) ((cond_t *) (&(condition->backend)), USYNC_THREAD,
362 /* Deallocate a condition. */
364 __gthread_objc_condition_deallocate (objc_condition_t condition) argument
367 return __gthrw_(cond_destroy) ((cond_t *) (&(condition->backend)));
372 /* Wait on the condition */
374 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) argument
377 return __gthrw_(cond_wait) ((cond_t *) (&(condition
385 __gthread_objc_condition_broadcast(objc_condition_t condition) argument
395 __gthread_objc_condition_signal(objc_condition_t condition) argument
[all...]
H A Dgthr-dce.h367 /* Backend condition mutex functions */
369 /* Allocate a condition. */
371 __gthread_objc_condition_allocate (objc_condition_t condition
381 /* Deallocate a condition. */
383 __gthread_objc_condition_deallocate (objc_condition_t condition
393 /* Wait on the condition */
395 __gthread_objc_condition_wait (objc_condition_t condition
406 /* Wake up all threads waiting on this condition. */
408 __gthread_objc_condition_broadcast (objc_condition_t condition
418 /* Wake up one thread waiting on this condition
[all...]
H A Doptc-gen.awk193 condition = opt_args("Condition", flags[i])
195 if (condition != "")
201 condition, cl_flags, cl_flags)
/freebsd-10-stable/contrib/gdb/gdb/
H A Dgdb.h52 enum gdb_rc gdb_breakpoint (char *address, char *condition,
/freebsd-10-stable/contrib/llvm/lib/Support/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const {
36 return default_error_condition(code) == condition;
40 error_category::equivalent(const error_code& code, int condition) const {
41 return *this == code.category() && code.value() == condition;
/freebsd-10-stable/tools/regression/security/cap_test/
H A Dcap_test.h62 #define CHECK(condition) do { \
63 if (!(condition)) \
65 __func__, __LINE__, #condition); \
/freebsd-10-stable/contrib/gdb/gdb/mi/
H A Dmi-cmd-break.c78 char *condition = NULL; local
119 condition = optarg;
141 rc = gdb_breakpoint (address, condition,
146 rc = gdb_breakpoint (address, condition,
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dmatch.c153 char *condition; local
155 /* do we have an appended condition? */
156 condition = strpbrk(pattern, "<>=");
157 if (condition) {
159 /* yes, isolate the pattern from the condition ... */
160 if (condition > pattern && condition[-1] == '!')
161 condition--;
162 condchar = *condition;
163 *condition
[all...]
/freebsd-10-stable/contrib/libc++/src/
H A Dsystem_error.cpp35 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT
37 return default_error_condition(code) == condition;
41 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT
43 return *this == code.category() && code.value() == condition;
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h35 /// Default constructor. The breakpoint is enabled, and has no condition,
46 /// @param[in] condition
64 BreakpointOptions(void *condition,
93 // c) If the condition says we shouldn't stop, then ditto.
96 // callback does. We will relax this condition at some point, but it will take a bit of plumbing to get
172 /// Set the breakpoint option's condition.
174 /// @param[in] condition
175 /// The condition expression to evaluate when the breakpoint is hit.
177 void SetCondition (const char *condition);
180 /// Return a pointer to the text of the condition expressio
[all...]
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-utils.h136 #define CVMX_BUILD_ASSERT(condition) ((void)CVMX_BUILD_ASSERT_ZERO(condition))
/freebsd-10-stable/contrib/apr-util/test/
H A Dabts.h79 void abts_true(abts_case *tc, int condition, int lineno);
82 void abts_assert(abts_case *tc, const char *message, int condition, int lineno);
/freebsd-10-stable/contrib/subversion/subversion/libsvn_ra/
H A Ddebug_reporter.c37 #define BOOLEAN_TO_WORD(condition) ((condition) ? "True" : "False")
/freebsd-10-stable/contrib/ntp/sntp/unity/
H A Dunity_fixture.h79 #define CHECK(condition) TEST_ASSERT_TRUE((condition))
H A Dunity.h68 #define TEST_ASSERT(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expression Evaluated To FALSE")
69 #define TEST_ASSERT_TRUE(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expected TRUE Was FALSE")
70 #define TEST_ASSERT_UNLESS(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expression Evaluated To TRUE")
71 #define TEST_ASSERT_FALSE(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expected FALSE Was TRUE")
172 #define TEST_ASSERT_MESSAGE(condition, message) UNITY_TEST_ASSERT( (condition), __LINE_
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpointLocation.h56 SetCondition (const char *condition);
H A DSBWatchpoint.h70 SetCondition (const char *condition);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp163 BreakpointOptions::SetCondition (const char *condition) argument
165 if (!condition)
166 condition = "";
168 m_condition_text.assign(condition);
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
H A Drwlock.h25 #include <isc/condition.h>
/freebsd-10-stable/contrib/ntp/lib/isc/pthreads/
H A Dcondition.c18 /* $Id: condition.c,v 1.36 2007/06/19 23:47:18 tbox Exp $ */
26 #include <isc/condition.h>

Completed in 300 milliseconds

1234