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

12345

/freebsd-11-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-11-stable/contrib/gdb/gdb/
H A Dgdb.h52 enum gdb_rc gdb_breakpoint (char *address, char *condition,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp45 // detect if the condition doesn't pass. If this is the case it means we
88 // and the condition doesn't pass. This can happen if you set a breakpoint on
96 // ARM mode: check for condition on instruction
104 const uint32_t condition = Bits32((uint32_t)opcode, 31, 28);
105 if (!ARMConditionPassed(condition, cpsr))
107 // We ARE stopped on an ARM instruction whose condition doesn't
118 const uint32_t condition = Bits32(ITSTATE, 7, 4); local
119 if (!ARMConditionPassed(condition, cpsr)) {
121 // condition doesn't pass so this instruction won't get executed.
/freebsd-11-stable/tools/regression/security/cap_test/
H A Dcap_test.h62 #define CHECK(condition) do { \
63 if (!(condition)) \
65 __func__, __LINE__, #condition); \
/freebsd-11-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-11-stable/contrib/llvm-project/libcxx/src/
H A Dsystem_error.cpp47 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT
49 return default_error_condition(code) == condition;
53 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT
55 return *this == code.category() && code.value() == condition;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-utils.h136 #define CVMX_BUILD_ASSERT(condition) ((void)CVMX_BUILD_ASSERT_ZERO(condition))
/freebsd-11-stable/sys/dev/liquidio/
H A Dlio_main.h114 lio_sleep_cond(struct octeon_device *oct, volatile int *condition) argument
117 while (!(*condition)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/OrcError/
H A DOrcError.cpp31 std::string message(int condition) const override {
32 switch (static_cast<OrcErrorCode>(condition)) {
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBWatchpoint.i72 Get the condition expression for the watchpoint.") GetCondition;
77 The watchpoint stops only if the condition expression evaluates to true.") SetCondition;
79 SetCondition (const char *condition);
H A DSBBreakpointLocation.i61 The breakpoint location stops only if the condition expression evaluates
64 SetCondition (const char *condition);
67 Get the condition expression for the breakpoint location.") GetCondition;
H A DSBBreakpointName.i61 void SetCondition(const char *condition);
/freebsd-11-stable/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.h269 #define WARN(condition, msg) \
271 int __ret_warn_on = !!(condition); \
279 #define WARN_ON(condition) \
281 int __ret_warn_on = !!(condition); \
283 printf("WARN_ON: " #condition "\n"); \
287 #define WARN_ON_ONCE(condition) ({ \
289 int __ret_warn_once = !!(condition); \
315 #define KERN_NOTICE "<5>" /* normal but significant condition */
/freebsd-11-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-11-stable/contrib/subversion/subversion/libsvn_ra/
H A Ddebug_reporter.c37 #define BOOLEAN_TO_WORD(condition) ((condition) ? "True" : "False")
/freebsd-11-stable/contrib/ntp/sntp/unity/
H A Dunity_fixture.h79 #define CHECK(condition) TEST_ASSERT_TRUE((condition))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DARMDefines.h104 llvm_unreachable("Unknown condition code");
107 static inline bool ARMConditionPassed(const uint32_t condition, argument
109 const uint32_t cpsr_n = (cpsr >> 31) & 1u; // Negative condition code flag
110 const uint32_t cpsr_z = (cpsr >> 30) & 1u; // Zero condition code flag
111 const uint32_t cpsr_c = (cpsr >> 29) & 1u; // Carry condition code flag
112 const uint32_t cpsr_v = (cpsr >> 28) & 1u; // Overflow condition code flag
114 switch (condition) {
/freebsd-11-stable/contrib/ntp/lib/isc/include/isc/
H A Drwlock.h25 #include <isc/condition.h>

Completed in 239 milliseconds

12345