| /freebsd-12.1/contrib/gcc/ |
| H A D | gthr-nks.h | 225 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 227 condition->backend = NXCondAlloc (NULL); in __gthread_objc_condition_allocate() 228 if (condition->backend == NULL) in __gthread_objc_condition_allocate() 236 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 238 if (NXCondFree ((NXCond_t *)condition->backend) != 0) in __gthread_objc_condition_deallocate() 240 condition->backend = NULL; in __gthread_objc_condition_deallocate() 246 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument 253 __gthread_objc_condition_broadcast (objc_condition_t condition) in __gthread_objc_condition_broadcast() argument 255 return NXCondBroadcast ((NXCond_t *)condition->backend); in __gthread_objc_condition_broadcast() 260 __gthread_objc_condition_signal (objc_condition_t condition) in __gthread_objc_condition_signal() argument [all …]
|
| H A D | gthr-posix.h | 509 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 513 condition->backend = objc_malloc (sizeof (pthread_cond_t)); in __gthread_objc_condition_allocate() 517 objc_free (condition->backend); in __gthread_objc_condition_allocate() 518 condition->backend = NULL; in __gthread_objc_condition_allocate() 528 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 535 objc_free (condition->backend); in __gthread_objc_condition_deallocate() 536 condition->backend = NULL; in __gthread_objc_condition_deallocate() 543 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument 546 return __gthrw_(pthread_cond_wait) ((pthread_cond_t *) condition->backend, in __gthread_objc_condition_wait() 554 __gthread_objc_condition_broadcast (objc_condition_t condition) in __gthread_objc_condition_broadcast() argument [all …]
|
| H A D | gthr-posix95.h | 475 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 479 condition->backend = objc_malloc (sizeof (pthread_cond_t)); in __gthread_objc_condition_allocate() 483 objc_free (condition->backend); in __gthread_objc_condition_allocate() 484 condition->backend = NULL; in __gthread_objc_condition_allocate() 494 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 501 objc_free (condition->backend); in __gthread_objc_condition_deallocate() 502 condition->backend = NULL; in __gthread_objc_condition_deallocate() 509 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument 512 return __gthrw_(pthread_cond_wait) ((pthread_cond_t *) condition->backend, in __gthread_objc_condition_wait() 520 __gthread_objc_condition_broadcast (objc_condition_t condition) in __gthread_objc_condition_broadcast() argument [all …]
|
| H A D | loop-doloop.c | 79 rtx condition; in doloop_condition_get() local 131 condition = XEXP (SET_SRC (cmp), 0); in doloop_condition_get() 134 if ((GET_CODE (condition) != GE in doloop_condition_get() 135 && GET_CODE (condition) != NE) in doloop_condition_get() 136 || (XEXP (condition, 1) != const0_rtx in doloop_condition_get() 140 if ((XEXP (condition, 0) == reg) in doloop_condition_get() 143 return condition; in doloop_condition_get() 319 counter_reg = XEXP (condition, 0); in doloop_modify() 325 switch (GET_CODE (condition)) in doloop_modify() 329 noloop = XEXP (condition, 1); in doloop_modify() [all …]
|
| H A D | gthr-solaris.h | 353 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 356 return __gthrw_(cond_init) ((cond_t *) (&(condition->backend)), USYNC_THREAD, in __gthread_objc_condition_allocate() 364 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 367 return __gthrw_(cond_destroy) ((cond_t *) (&(condition->backend))); in __gthread_objc_condition_deallocate() 374 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument 377 return __gthrw_(cond_wait) ((cond_t *) (&(condition->backend)), in __gthread_objc_condition_wait() 385 __gthread_objc_condition_broadcast (objc_condition_t condition) in __gthread_objc_condition_broadcast() argument 388 return __gthrw_(cond_broadcast) ((cond_t *) (&(condition->backend))); in __gthread_objc_condition_broadcast() 395 __gthread_objc_condition_signal (objc_condition_t condition) in __gthread_objc_condition_signal() argument 398 return __gthrw_(cond_signal) ((cond_t *) (&(condition->backend))); in __gthread_objc_condition_signal()
|
| H A D | gthr-single.h | 176 __gthread_objc_condition_allocate (objc_condition_t UNUSED(condition)) in __gthread_objc_condition_allocate() argument 183 __gthread_objc_condition_deallocate (objc_condition_t UNUSED(condition)) in __gthread_objc_condition_deallocate() argument 190 __gthread_objc_condition_wait (objc_condition_t UNUSED(condition), in __gthread_objc_condition_wait() argument 198 __gthread_objc_condition_broadcast (objc_condition_t UNUSED(condition)) in __gthread_objc_condition_broadcast() argument 205 __gthread_objc_condition_signal (objc_condition_t UNUSED(condition)) in __gthread_objc_condition_signal() argument
|
| H A D | gthr-dce.h | 371 __gthread_objc_condition_allocate (objc_condition_t condition in __gthread_objc_condition_allocate() argument 383 __gthread_objc_condition_deallocate (objc_condition_t condition in __gthread_objc_condition_deallocate() argument 395 __gthread_objc_condition_wait (objc_condition_t condition in __gthread_objc_condition_wait() argument 408 __gthread_objc_condition_broadcast (objc_condition_t condition in __gthread_objc_condition_broadcast() argument 420 __gthread_objc_condition_signal (objc_condition_t condition in __gthread_objc_condition_signal() argument
|
| H A D | gthr-win32.h | 292 __gthread_objc_condition_allocate (objc_condition_t condition) in __gthread_objc_condition_allocate() argument 300 __gthread_objc_condition_deallocate (objc_condition_t condition) in __gthread_objc_condition_deallocate() argument 308 __gthread_objc_condition_wait (objc_condition_t condition, objc_mutex_t mutex) in __gthread_objc_condition_wait() argument 316 __gthread_objc_condition_broadcast (objc_condition_t condition) in __gthread_objc_condition_broadcast() argument 324 __gthread_objc_condition_signal (objc_condition_t condition) in __gthread_objc_condition_signal() argument
|
| H A D | reorg.c | 963 mostly_true_jump (rtx jump_insn, rtx condition) in mostly_true_jump() argument 1007 if (condition == 0) in mostly_true_jump() 1074 enum rtx_code code = GET_CODE (condition); in condition_dominates_p() 1077 if (rtx_equal_p (condition, other_condition) in condition_dominates_p() 1288 && ((condition == const_true_rtx in steal_delay_list_from_target() 1382 && ((condition == const_true_rtx in steal_delay_list_from_fallthrough() 2521 if (condition == const_true_rtx) in fill_slots_from_thread() 2607 && (condition == const_true_rtx in fill_slots_from_thread() 2925 rtx condition; in fill_eager_delay_slots() local 2958 if (condition == 0) in fill_eager_delay_slots() [all …]
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | BIO_should_retry.pod | 30 BIO_should_retry() is true if the call that produced this condition 33 If BIO_should_retry() is false then the cause is an error condition. 43 BIO_should_io_special() is true if some "special" condition, that is a 44 reason other than reading or writing is the cause of the condition. 46 BIO_retry_type() returns a mask of the cause of a retry condition 52 condition, it returns the BIO that caused this condition and if 55 the type of BIO that resulted in this condition. 57 BIO_get_retry_reason() returns the reason for a special condition if 92 will normally wait until the necessary condition is satisfied. How 123 condition or false if there is no retry condition. [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Architecture/Arm/ |
| H A D | ArchitectureArm.cpp | 105 const uint32_t condition = Bits32((uint32_t)opcode, 31, 28); in OverrideStopInfo() 106 if (!ARMConditionPassed(condition, cpsr)) in OverrideStopInfo() 119 const uint32_t condition = Bits32(ITSTATE, 7, 4); in OverrideStopInfo() local 120 if (!ARMConditionPassed(condition, cpsr)) { in OverrideStopInfo()
|
| /freebsd-12.1/contrib/ntp/sntp/unity/ |
| H A D | unity.h | 68 …define TEST_ASSERT(condition) … argument 69 …fine TEST_ASSERT_TRUE(condition) UN… argument 70 …ine TEST_ASSERT_UNLESS(condition) UNI… argument 71 …ine TEST_ASSERT_FALSE(condition) UNI… argument 172 …ne TEST_ASSERT_MESSAGE(condition, message) UNIT… argument 173 … TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_… argument 174 …TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_T… argument 175 …TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_T… argument
|
| /freebsd-12.1/contrib/gdb/gdb/mi/ |
| H A D | mi-cmd-break.c | 78 char *condition = NULL; in mi_cmd_break_insert() local 119 condition = optarg; in mi_cmd_break_insert() 141 rc = gdb_breakpoint (address, condition, in mi_cmd_break_insert() 146 rc = gdb_breakpoint (address, condition, in mi_cmd_break_insert()
|
| /freebsd-12.1/sys/contrib/vchiq/interface/compat/ |
| H A D | vchi_bsd.h | 269 #define WARN(condition, msg) \ argument 271 int __ret_warn_on = !!(condition); \ 279 #define WARN_ON(condition) \ argument 281 int __ret_warn_on = !!(condition); \ 283 printf("WARN_ON: " #condition "\n"); \ 287 #define WARN_ON_ONCE(condition) ({ \ argument 289 int __ret_warn_once = !!(condition); \
|
| /freebsd-12.1/contrib/googletest/googlemock/include/gmock/internal/ |
| H A D | gmock-internal-utils.h | 295 inline void Assert(bool condition, const char* file, int line, 297 if (!condition) { 302 inline void Assert(bool condition, const char* file, int line) { 303 Assert(condition, file, line, "Assertion failed."); 308 inline void Expect(bool condition, const char* file, int line, 310 if (!condition) { 315 inline void Expect(bool condition, const char* file, int line) { 316 Expect(condition, file, line, "Expectation failed.");
|
| /freebsd-12.1/tools/regression/security/cap_test/ |
| H A D | cap_test.h | 62 #define CHECK(condition) do { \ argument 63 if (!(condition)) \ 65 __func__, __LINE__, #condition); \
|
| /freebsd-12.1/contrib/gcc/config/sparc/ |
| H A D | sparc-modes.def | 27 /* Add any extra modes needed to represent the condition code. 30 subtract insn is used to set the condition code. Different branches are 33 We also have two modes to indicate that the relevant condition code is 34 in the floating-point condition code register. One for comparisons which
|
| /freebsd-12.1/contrib/libc++/src/ |
| H A D | system_error.cpp | 48 error_category::equivalent(int code, const error_condition& condition) const _NOEXCEPT in equivalent() 50 return default_error_condition(code) == condition; in equivalent() 54 error_category::equivalent(const error_code& code, int condition) const _NOEXCEPT in equivalent() 56 return *this == code.category() && code.value() == condition; in equivalent()
|
| /freebsd-12.1/contrib/ntp/scripts/stats/ |
| H A D | README.timecodes | 44 Note: alarm condition is indicated by other than <SP> at A, which 66 Note: alarm condition is indicated by other than <SP> at A, which 68 been lost for about ten hours; unlock condition is indicated by 85 Note: alarm condition is indicated by ? at A, which occurs during 87 extended period; unlock condition is indicated by other than <SP> 138 Note: The alarm condition is indicated by other than ? at A, which 140 lost for an extended period. A receiver unlock condition is
|
| /freebsd-12.1/contrib/googletest/googletest/test/ |
| H A D | googletest-param-test-invalid-name1-test.py | 39 def Assert(condition): argument 40 if not condition:
|
| H A D | googletest-param-test-invalid-name2-test.py | 39 def Assert(condition): argument 40 if not condition:
|
| H A D | googletest-uninitialized-test.py | 39 def Assert(condition): argument 40 if not condition:
|
| H A D | gtest_testbridge_test.py | 41 def Assert(condition): argument 42 if not condition:
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 136 BreakpointOptions::BreakpointOptions(const char *condition, bool enabled, in BreakpointOptions() argument 146 if (condition && *condition != '\0') { in BreakpointOptions() 147 SetCondition(condition); in BreakpointOptions() 500 void BreakpointOptions::SetCondition(const char *condition) { in SetCondition() argument 501 if (!condition || condition[0] == '\0') { in SetCondition() 502 condition = ""; in SetCondition() 508 m_condition_text.assign(condition); in SetCondition()
|
| /freebsd-12.1/contrib/netbsd-tests/kernel/ |
| H A D | t_pty.c | 109 condition(int fd) in condition() function 138 condition(fd); in pty_open() 144 condition(fd); in pty_open() 169 condition(fd); in tty_open()
|